
Add Javadocs for API classes that didn't already have them Redo 'nother redo Another redo Update ItemSigil.java Last one, I swear Fix
10 lines
192 B
Java
10 lines
192 B
Java
package WayofTime.bloodmagic.client;
|
|
|
|
import org.apache.commons.lang3.tuple.Pair;
|
|
|
|
import java.util.List;
|
|
|
|
public interface IVariantProvider
|
|
{
|
|
List<Pair<Integer, String>> getVariants();
|
|
}
|