Implemented elevation in editor and mechanically in-game

This commit is contained in:
Anuken
2018-06-11 15:18:25 -04:00
parent cbd83b5e39
commit b609b5909b
25 changed files with 534 additions and 376 deletions
+3 -1
View File
@@ -6,7 +6,9 @@ public enum Team {
none(Color.DARK_GRAY),
blue(Color.ROYAL),
red(Color.valueOf("e84737")),
green(Color.valueOf("1dc645"));
green(Color.valueOf("1dc645")),
purple(Color.valueOf("ba5bd9")),
orange(Color.valueOf("e8c66a"));
public final Color color;
public final int intColor;