2016-03-15 22:48:01 -07:00
|
|
|
package WayofTime.bloodmagic.client;
|
|
|
|
|
|
|
|
import net.minecraft.client.renderer.ItemMeshDefinition;
|
|
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Provides a custom {@link ItemMeshDefinition} for automatic registration of
|
|
|
|
* renders.
|
|
|
|
*/
|
2016-03-16 18:41:06 -04:00
|
|
|
public interface IMeshProvider
|
|
|
|
{
|
2016-03-15 22:48:01 -07:00
|
|
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
ItemMeshDefinition getMeshDefinition();
|
|
|
|
|
|
|
|
List<String> getVariants();
|
|
|
|
}
|