| 322 | } |
| 323 | |
| 324 | bool Building::canSeatSellBuilding(Seat* seat) const |
| 325 | { |
| 326 | if(!getSeat()->canBuildingBeDestroyedBy(seat)) |
| 327 | return false; |
| 328 | |
| 329 | return true; |
| 330 | } |
| 331 | |
| 332 | void Building::exportToStream(std::ostream& os) const |
| 333 | { |
no test coverage detected