mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 04:49:10 +01:00
23 lines
509 B
Java
23 lines
509 B
Java
|
package de.ellpeck.naturesaura.reg;
|
||
|
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
import net.minecraft.util.ResourceLocation;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
public interface IModelProvider {
|
||
|
|
||
|
Map<ItemStack, ModelVariant> getModelLocations();
|
||
|
|
||
|
class ModelVariant {
|
||
|
|
||
|
public final ResourceLocation location;
|
||
|
public final String variant;
|
||
|
|
||
|
public ModelVariant(ResourceLocation location, String variant) {
|
||
|
this.location = location;
|
||
|
this.variant = variant;
|
||
|
}
|
||
|
}
|
||
|
}
|