///////////////////////////////////////////////////////
| 42 | { |
| 43 | //////////////////////////////////////////////////////////// |
| 44 | SoundBuffer::SoundBuffer(const std::filesystem::path& filename) |
| 45 | { |
| 46 | if (!loadFromFile(filename)) |
| 47 | throw Exception("Failed to open sound buffer from file"); |
| 48 | } |
| 49 | |
| 50 | |
| 51 | //////////////////////////////////////////////////////////// |
nothing calls this directly
no test coverage detected