| 164 | |
| 165 | protected: |
| 166 | void set(const ::Wave& wave) { |
| 167 | frameCount = wave.frameCount; |
| 168 | sampleRate = wave.sampleRate; |
| 169 | sampleSize = wave.sampleSize; |
| 170 | channels = wave.channels; |
| 171 | data = wave.data; |
| 172 | } |
| 173 | }; |
| 174 | } // namespace raylib |
| 175 |
nothing calls this directly
no outgoing calls
no test coverage detected