| 403 | } |
| 404 | |
| 405 | void Map::PlayMonsterLinkedSound( |
| 406 | const EntityId monster_id, |
| 407 | const unsigned int sound_id ) |
| 408 | { |
| 409 | monster_linked_sounds_messages_.emplace_back(); |
| 410 | Messages::MonsterLinkedSound& message= monster_linked_sounds_messages_.back(); |
| 411 | |
| 412 | message.monster_id= monster_id; |
| 413 | message.sound_id= sound_id; |
| 414 | } |
| 415 | |
| 416 | void Map::PlayMonsterSound( |
| 417 | const EntityId monster_id, |
no outgoing calls
no test coverage detected