Exemplo n.º 1
0
 public MoveAndAttackCommand(MoveUnitCommand moveCommand, Level level, Unit attacking, Unit defending)
 {
     this.level       = level;
     this.attacking   = attacking;
     this.defending   = defending;
     this.moveCommand = moveCommand;
 }
Exemplo n.º 2
0
 public MoveAndRerollCommand(MoveUnitCommand moveUnitCommand, Level level, Unit unit)
 {
     this.level           = level;
     this.unit            = unit;
     this.moveUnitCommand = moveUnitCommand;
 }