17 lines
No EOL
331 B
Java
17 lines
No EOL
331 B
Java
package universalelectricity.prefab.multiblock;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
/**
|
|
* A general interface to be implemented by anything that needs it.
|
|
*
|
|
* @author Calclavia
|
|
*
|
|
*/
|
|
public interface IBlockActivate
|
|
{
|
|
/**
|
|
* Called when activated
|
|
*/
|
|
public boolean onActivated(EntityPlayer entityPlayer);
|
|
} |