blob: fc051d33a2190704e5840ddd44596a3c0752b601 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
package cuchaz.enigma;
import org.objectweb.asm.tree.ClassNode;
import javax.annotation.Nullable;
public interface CompiledSource {
@Nullable
ClassNode getClassNode(String name);
}
|