package fr.jackcartersmith.ob.blocks; import fr.jackcartersmith.ob.interfaces.PhotonRecieving; import net.minecraft.nbt.NBTTagCompound; public class PhotonDeceleratorTileEntity extends PhotonRecieving { /** * Writes a tile entity to NBT. */ public void writeToNBT(NBTTagCompound par1) { super.writeToNBT(par1); } /** * Reads a tile entity from NBT. */ public void readFromNBT(NBTTagCompound par1) { super.readFromNBT(par1); } }