mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-01-25 14:01:03 -08:00
remove unused DataType.java
This commit is contained in:
parent
cda6a6973d
commit
1f9ed90cc0
1 changed files with 0 additions and 24 deletions
|
|
@ -1,24 +0,0 @@
|
|||
package mindustry.logic;
|
||||
|
||||
import arc.graphics.*;
|
||||
import mindustry.graphics.*;
|
||||
|
||||
/** The types of data a node field can be. */
|
||||
public enum DataType{
|
||||
/** A double. Used for integer calculations as well. */
|
||||
number(Pal.place),
|
||||
/** Any type of content, e.g. item. */
|
||||
content(Color.cyan),
|
||||
/** A building of a tile. */
|
||||
building(Pal.items),
|
||||
/** A unit on the map. */
|
||||
unit(Pal.health),
|
||||
/** Java string */
|
||||
string(Color.royal);
|
||||
|
||||
public final Color color;
|
||||
|
||||
DataType(Color color){
|
||||
this.color = color;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue