Advertisement
TechMage66

TileEntityCauldron_Empty

Aug 16th, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.65 KB | None | 0 0
  1. package com.techmage.magetech.tileentity;
  2.  
  3. import net.minecraft.nbt.NBTTagCompound;
  4. import net.minecraft.server.gui.IUpdatePlayerListBox;
  5. import net.minecraft.tileentity.TileEntity;
  6.  
  7. public class TileEntityCauldron extends TileEntity implements IUpdatePlayerListBox
  8. {
  9.     public TileEntityCauldron()
  10.     {
  11.  
  12.     }
  13.  
  14.     @Override
  15.     public void writeToNBT(NBTTagCompound nbtTagCompound)
  16.     {
  17.         super.writeToNBT(nbtTagCompound);
  18.     }
  19.  
  20.     @Override
  21.     public void readFromNBT(NBTTagCompound nbtTagCompound)
  22.     {
  23.         super.readFromNBT(nbtTagCompound);
  24.     }
  25.    
  26.  
  27.     @Override
  28.     public void update()
  29.     {
  30.        
  31.     }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement