mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
Introduce concept of stars
Rename IVConquestBase
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
@@ -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() {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package forge.planarconquest;
|
||||
|
||||
public interface IVConquestBase {
|
||||
public interface IVCommandCenter {
|
||||
void updateCurrentDay();
|
||||
}
|
||||
Reference in New Issue
Block a user