| 425 | } |
| 426 | |
| 427 | void Map::PlayMapEventSound( const m_Vec3& pos, const unsigned int sound_id ) |
| 428 | { |
| 429 | map_events_sounds_messages_.emplace_back(); |
| 430 | Messages::MapEventSound& message= map_events_sounds_messages_.back(); |
| 431 | |
| 432 | PositionToMessagePosition( pos, message.xyz ); |
| 433 | message.sound_id= sound_id; |
| 434 | } |
| 435 | |
| 436 | void Map::AddParticleEffect( const m_Vec3& pos, const ParticleEffect particle_effect ) |
| 437 | { |
nothing calls this directly
no test coverage detected