Gradual component conversion

This commit is contained in:
Anuken
2020-02-02 20:17:22 -05:00
70 changed files with 1061 additions and 1217 deletions

View File

@@ -321,11 +321,12 @@ public class EventType{
}
//TODO rename
public static class MechChangeEvent{
public final Player player;
public final Mech mech;
public final UnitDef mech;
public MechChangeEvent(Player player, Mech mech){
public MechChangeEvent(Player player, UnitDef mech){
this.player = player;
this.mech = mech;
}