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