Introduce concept of stars

Rename IVConquestBase
This commit is contained in:
drdev
2014-12-06 21:18:34 +00:00
parent 43ca7ffe71
commit ce3b8e6c76
5 changed files with 10 additions and 5 deletions

View File

@@ -9,6 +9,7 @@ public class ConquestCommander {
private final PaperCard card;
private final Deck deck;
private int stars; //think 1-star/4-star general
private Region deployedRegion;
private ConquestAction currentDayAction;
@@ -43,6 +44,10 @@ public class ConquestCommander {
currentDayAction = currentDayAction0;
}
public int getStars() {
return stars;
}
public String toString() {
return card.getName();
}

View File

@@ -94,7 +94,7 @@ public final class ConquestData {
return day;
}
public void endDay(final IVConquestBase base) {
public void endDay(final IVCommandCenter base) {
FThreads.invokeInBackgroundThread(new Runnable() {
@Override
public void run() {

View File

@@ -1,5 +1,5 @@
package forge.planarconquest;
public interface IVConquestBase {
public interface IVCommandCenter {
void updateCurrentDay();
}