blob: 403961e28d313240a7f765c464b03d9ad4ea44d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package gregtech.common.tileentities.machines.multi.purification;
/**
* Represents the status of a linked purification unit. This is updated by the main purification plant
* controller by checking the linked machines.
*/
public enum PurificationUnitStatus {
// The purification unit is online and ready to work
ONLINE,
// The purification unit is correctly formed, but switched off.
DISABLED,
// The purification unit has failed its structure check
INCOMPLETE_STRUCTURE,
}
|