| 44 | ~AudioStream() { Unload(); } |
| 45 | |
| 46 | void Load(unsigned int sampleRate, unsigned int sampleSize, unsigned int channels = 2) { |
| 47 | Unload(); |
| 48 | AudioStreamUnmanaged::Load(sampleRate, sampleSize, channels); |
| 49 | } |
| 50 | }; |
| 51 | } // namespace raylib |
| 52 |
nothing calls this directly
no outgoing calls
no test coverage detected