| 267 | return c; |
| 268 | } |
| 269 | UnitCommand UnitCommand::placeCOP(Unit unit, TilePosition target) |
| 270 | { |
| 271 | UnitCommand c{ unit, UnitCommandTypes::Place_COP }; |
| 272 | c.assignTarget(target); |
| 273 | return c; |
| 274 | } |
| 275 | UnitCommandType UnitCommand::getType() const |
| 276 | { |
| 277 | return type; |
nothing calls this directly
no test coverage detected