Minor achievement cleanup

This commit is contained in:
Anuken
2020-11-03 17:19:00 -05:00
parent dc3e376be5
commit 775327ebcb
7 changed files with 38 additions and 40 deletions

View File

@@ -96,6 +96,14 @@ public class EventType{
}
}
public static class SectorLaunchEvent{
public final Sector sector;
public SectorLaunchEvent(Sector sector){
this.sector = sector;
}
}
public static class CommandIssueEvent{
public final Building tile;
public final UnitCommand command;