Skip to content

Instantly share code, notes, and snippets.

@alesharik
Created August 12, 2015 11:14
Show Gist options
  • Save alesharik/ed46f839c5ca7d34eda8 to your computer and use it in GitHub Desktop.
Save alesharik/ed46f839c5ca7d34eda8 to your computer and use it in GitHub Desktop.
package TheBasement.tile;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
public abstract class TileEntityLampBlock extends TileEntity implements TheBasement.API.ITBTileEntity {
@Override
public void onAdded(World world, int x, int y, int z) {
}
@Override
public void onPlaced(World world, EntityLivingBase entityLiving) {
}
@Override
public void onDestroyed() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment