summaryrefslogtreecommitdiff
path: root/src/main/java/cuchaz/enigma/ClassProvider.java
blob: 2b913792e678bf6869af0f4d30565ebb21059fe7 (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 ClassProvider {
	@Nullable
	ClassNode getClassNode(String name);
}