From 7efa3bf15556a9f049d8c15ee3c1386891cf1911 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Zurcher?= Date: Wed, 16 Dec 2015 16:05:46 +0100 Subject: Config: MINE/ORIGINAL -> CHITS/TANKS --- core/src/ch/asynk/rustanddust/game/Config.java | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/core/src/ch/asynk/rustanddust/game/Config.java b/core/src/ch/asynk/rustanddust/game/Config.java index 56fa662..4085d1b 100644 --- a/core/src/ch/asynk/rustanddust/game/Config.java +++ b/core/src/ch/asynk/rustanddust/game/Config.java @@ -3,8 +3,8 @@ package ch.asynk.rustanddust.game; public class Config { public enum Graphics { - MINE("mine", 0), - ORIGINAL("original", 1); + CHITS("chits", 0), + TANKS("tanks", 1); public String s; public int i; Graphics(String s, int i) @@ -14,16 +14,16 @@ public class Config } public Graphics next() { - if (this == ORIGINAL) - return MINE; - return ORIGINAL; + if (this == TANKS) + return CHITS; + return TANKS; } public Graphics get(int i) { - if (i == MINE.i) - return MINE; - else if (i == ORIGINAL.i) - return ORIGINAL; + if (i == CHITS.i) + return CHITS; + else if (i == TANKS.i) + return TANKS; return null; } }; @@ -68,7 +68,7 @@ public class Config this.showTargets = true; this.showMoveAssists = true; this.showEnemyPossibilities = false; - this.graphics = Graphics.MINE; + this.graphics = Graphics.TANKS; this.battle = null; this.fxVolume = 1f; } -- cgit v1.1-2-g2b99