blob: 85a90d21e2672571838ac8aeb12bd389578c0e35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package darkknight.jewelrycraft.tileentity.renders;
import darkknight.jewelrycraft.model.ModelHandPedestal;
import net.minecraft.util.ResourceLocation;
/**
* @author Paul Fulham (pau101)
*/
public class TileEntityShadowHandRender extends TileEntityHandPedestalRender
{
/**
* @param model
* @param texture
*/
public TileEntityShadowHandRender(ModelHandPedestal model, ResourceLocation texture)
{
super(model, texture);
}
}
|