blob: df54a969ad5ccd04a0581f71f2a51950486577e5 [file] [log] [blame] [raw]
package cofh.api.tileentity;
/**
* Implement this interface on Tile Entities which need to know when they are placed into the world.
*
* @author Zeldo
*
*/
public interface IPlacedTile {
public void tilePlaced();
}