summaryrefslogtreecommitdiff
path: root/src/main/java/cuchaz/enigma/translation/representation/entry/DefEntry.java
blob: 82536c7350890ae82562a4afcacbf9e0eed81c76 (plain) (blame)
1
2
3
4
5
6
7
package cuchaz.enigma.translation.representation.entry;

import cuchaz.enigma.translation.representation.AccessFlags;

public interface DefEntry<P extends Entry<?>> extends Entry<P> {
	AccessFlags getAccess();
}