blob: a40535887c23aedfd9f1c9515debaac54b44b267 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package gtPlusPlus.api.thermal.tileentity;
public interface IThermalInfo {
int getInfoEnergyPerTick();
int getInfoMaxEnergyPerTick();
int getInfoEnergyStored();
int getInfoMaxEnergyStored();
}
|