| 1726 | void NetworkManager::PlaySound(RString name, Vector3Par position, Vector3Par speed, float volume, float freq, |
| 1727 | IWave* wave) |
| 1728 | { |
| 1729 | if (_client) |
| 1730 | { |
| 1731 | _client->PlaySound(name, position, speed, volume, freq, wave); |
| 1732 | } |
| 1733 | } |
| 1734 | |
| 1735 | void NetworkManager::SoundState(IWave* wave, SoundStateType state) |
| 1736 | { |
| 1737 | if (_client) |
| 1738 | { |
| 1739 | _client->SoundState(wave, state); |
| 1740 | } |
| 1741 | } |
no outgoing calls
no test coverage detected