3a6b22c7cc
Renamed MobObelisk to MobMonolith. Renamed LimboSkyProvider and PocketProvider to have Xs at the ends of their names. This is temporary so that I can change the name's capitalization. Windows considers the names the same because it's file naming is case insensitive.
24 lines
No EOL
609 B
Java
24 lines
No EOL
609 B
Java
package StevenDimDoors.mod_pocketDimClient;
|
|
|
|
import StevenDimDoors.mod_pocketDim.ticking.MobMonolith;
|
|
import net.minecraft.client.renderer.entity.RenderLiving;
|
|
import net.minecraft.entity.Entity;
|
|
import net.minecraft.entity.EntityLiving;
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public class RenderMobObelisk extends RenderLiving
|
|
{
|
|
protected ModelMobObelisk obeliskModel;
|
|
|
|
public RenderMobObelisk(float f)
|
|
{
|
|
super(new ModelMobObelisk(), f);
|
|
this.obeliskModel = (ModelMobObelisk)this.mainModel;
|
|
|
|
|
|
}
|
|
|
|
|
|
} |