24 lines
495 B
Java
24 lines
495 B
Java
package fr.jackcartersmith.ob.blocks;
|
|
|
|
import fr.jackcartersmith.ob.interfaces.PhotonSending;
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
|
|
public class PhotonAcceleratorTileEntity extends PhotonSending
|
|
{
|
|
/**
|
|
* 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);
|
|
}
|
|
}
|