16 lines
241 B
Java
16 lines
241 B
Java
package mindustry.logic;
|
|
|
|
public enum LSensor{
|
|
totalItems,
|
|
totalLiquids,
|
|
totalPower,
|
|
powerNetStored,
|
|
powerNetIn,
|
|
powerNetOut,
|
|
health,
|
|
heat,
|
|
efficiency;
|
|
|
|
public static final LSensor[] all = values();
|
|
}
|