blob: dd960d002c58ed0e470f661c1f8ff0bbacc17f0e (
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);
}
}
|