Add plane name and End Day button to bottom of map screen

This commit is contained in:
drdev
2014-11-25 22:01:49 +00:00
parent 288113ae88
commit 74ed949717
2 changed files with 16 additions and 1 deletions

View File

@@ -40,6 +40,7 @@ public final class ConquestData {
private int wins, losses;
private int winStreakBest = 0;
private int winStreakCurrent = 0;
private int day = 1;
private int difficulty;
private ConquestPlane startingPlane, currentPlane;
private int currentRegionIndex;
@@ -75,6 +76,10 @@ public final class ConquestData {
return difficulty;
}
public int getDay() {
return day;
}
public ConquestPlane getStartingPlane() {
return startingPlane;
}