Added terrain exporting and importing

This commit is contained in:
Anuken
2018-03-25 00:44:25 -04:00
parent 674d259df1
commit 59530909d6
19 changed files with 229 additions and 48 deletions
+2 -1
View File
@@ -5,7 +5,8 @@ import com.badlogic.gdx.graphics.Color;
public enum Team {
none(Color.DARK_GRAY),
blue(Color.ROYAL),
red(Color.valueOf("e84737"));
red(Color.valueOf("e84737")),
green(Color.valueOf("1dc645"));
public final Color color;