| 414 | } |
| 415 | |
| 416 | void Map::PlayMonsterSound( |
| 417 | const EntityId monster_id, |
| 418 | const unsigned int monster_sound_id ) |
| 419 | { |
| 420 | monsters_sounds_messages_.emplace_back(); |
| 421 | Messages::MonsterSound& message= monsters_sounds_messages_.back(); |
| 422 | |
| 423 | message.monster_id= monster_id; |
| 424 | message.monster_sound_id= monster_sound_id; |
| 425 | } |
| 426 | |
| 427 | void Map::PlayMapEventSound( const m_Vec3& pos, const unsigned int sound_id ) |
| 428 | { |