15 lines
458 B
Java
Executable File
15 lines
458 B
Java
Executable File
package com.crazycrafter642.accelerometerrender.proxy;
|
|
|
|
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
|
|
import net.minecraft.item.Item;
|
|
import net.minecraftforge.client.model.ModelLoader;
|
|
|
|
public class ClientProxy extends ServerProxy
|
|
{
|
|
public void registerItemRenderer(Item item, int meta, String id)
|
|
{
|
|
ModelLoader.setCustomModelResourceLocation(
|
|
item, meta, new ModelResourceLocation(
|
|
item.getRegistryName(), id));
|
|
}
|
|
} |