Advertisement
Pinkishu

genericEntity

Apr 3rd, 2013
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.31 KB | None | 0 0
  1. package tutorial.generic;
  2.  
  3. import cpw.mods.fml.common.FMLCommonHandler;
  4. import net.minecraft.tileentity.TileEntity;
  5.  
  6. public class GenericEntity extends TileEntity {
  7.  
  8.     public GenericEntity()
  9.     {
  10.           System.out.println("Created: "+ FMLCommonHandler.instance().getEffectiveSide().toString());
  11.     }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement