| 42 | return c; |
| 43 | } |
| 44 | UnitCommand UnitCommand::buildAddon(Unit unit, UnitType type) |
| 45 | { |
| 46 | UnitCommand c{ unit, UnitCommandTypes::Build_Addon }; |
| 47 | c.extra = type; |
| 48 | return c; |
| 49 | } |
| 50 | UnitCommand UnitCommand::train(Unit unit, UnitType type) |
| 51 | { |
| 52 | UnitCommand c{ unit, UnitCommandTypes::Train }; |