resonant-induction/APIs/ic2/api/item/IDebuggable.java

23 lines
510 B
Java
Raw Normal View History

2013-08-26 19:36:24 +02:00
package ic2.api.item;
/**
* Allows a tile entity to output a debug message when the debugItem is used on it. Suggestions by
* Myrathi
*/
public abstract interface IDebuggable
{
/**
* Checks if the tile entity is in a state that can be debugged.
*
* @return True if the tile entity can be debugged
*/
public abstract boolean isDebuggable();
/**
* Gets the debug text for the tile entity.
*
* @return The text that the debugItem should show
*/
public abstract String getDebugText();
}