blob: 0063eb57c627770300e9e14aef1b2c4b1dbe900d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package gregtech.api.interfaces.tileentity;
import net.minecraft.entity.player.EntityPlayer;
import java.util.ArrayList;
public interface IDebugableTileEntity {
/**
* Returns a Debug Message, for a generic DebugItem
*
* @param aPlayer the Player, who rightclicked with his Debug Item
* @param aLogLevel the Log Level of the Debug Item.
* 0 = Obvious
* 1 = Visible for the regular Scanner
* 2 = Only visible to more advanced Scanners
* 3 = Debug ONLY
* @return a String-Array containing the DebugInfo, every Index is a separate line (0 = first Line)
*/
ArrayList<String> getDebugInfo(EntityPlayer aPlayer, int aLogLevel);
}
|