WIP campaign completion text

This commit is contained in:
Anuken
2022-10-29 19:25:37 -04:00
parent b3874b76e0
commit 3bdf0bdc1f
11 changed files with 54 additions and 7 deletions

View File

@@ -195,9 +195,11 @@ public class EventType{
/** Called when a sector is conquered, e.g. a boss or base is defeated. */
public static class SectorCaptureEvent{
public final Sector sector;
public final boolean initialCapture;
public SectorCaptureEvent(Sector sector){
public SectorCaptureEvent(Sector sector, boolean initialCapture){
this.sector = sector;
this.initialCapture = initialCapture;
}
}