| 154 | } |
| 155 | |
| 156 | bool Room::addCreatureUsingRoom(Creature* c) |
| 157 | { |
| 158 | if(!hasOpenCreatureSpot(c)) |
| 159 | return false; |
| 160 | |
| 161 | mCreaturesUsingRoom.push_back(c); |
| 162 | return true; |
| 163 | } |
| 164 | |
| 165 | void Room::removeCreatureUsingRoom(Creature *c) |
| 166 | { |
no outgoing calls
no test coverage detected