Mekanism-tilera-Edition/common/mekanism/common/IBoundingBlock.java
2013-06-28 18:01:00 -04:00

20 lines
415 B
Java

package mekanism.common;
/**
* Internal interface. A bounding block is not actually a 'bounding' block, it is really just a fake block that is
* used to mimic actual block bounds.
* @author AidanBrady
*
*/
public interface IBoundingBlock
{
/**
* Called when the main block is placed.
*/
public void onPlace();
/**
* Called when any part of the structure is broken.
*/
public void onBreak();
}