Begin new model system

Includes some examples for both ways.
This commit is contained in:
Nick 2016-03-15 22:48:01 -07:00
parent 5c2ba20a32
commit ba0b24d231
28 changed files with 332 additions and 104 deletions

View file

@ -0,0 +1,10 @@
package WayofTime.bloodmagic.client;
import org.apache.commons.lang3.tuple.Pair;
import java.util.List;
public interface IVariantProvider {
List<Pair<Integer, String>> getVariants();
}