Weapon mount cleanup

This commit is contained in:
Anuken
2020-01-11 17:02:38 -05:00
parent 6f3c771d73
commit f7c4ea3e58
11 changed files with 173 additions and 160 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;
}