Implemented #1129 / Bugfixes
This commit is contained in:
16
core/src/mindustry/world/meta/BlockStatus.java
Normal file
16
core/src/mindustry/world/meta/BlockStatus.java
Normal file
@@ -0,0 +1,16 @@
|
||||
package mindustry.world.meta;
|
||||
|
||||
import arc.graphics.*;
|
||||
import mindustry.graphics.*;
|
||||
|
||||
public enum BlockStatus{
|
||||
active(Color.valueOf("5ce677")),
|
||||
noOutput(Color.orange),
|
||||
noInput(Pal.remove);
|
||||
|
||||
public final Color color;
|
||||
|
||||
BlockStatus(Color color){
|
||||
this.color = color;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user