* Creates a MusicUnmanaged with the given components. */
| 21 | * Creates a MusicUnmanaged with the given components. |
| 22 | */ |
| 23 | MusicUnmanaged( |
| 24 | ::AudioStream stream = {nullptr, nullptr, 0, 0, 0}, |
| 25 | unsigned int frameCount = 0, |
| 26 | bool looping = false, |
| 27 | int ctxType = 0, |
| 28 | void* ctxData = nullptr) |
| 29 | : ::Music{stream, frameCount, looping, ctxType, ctxData} {} |
| 30 | |
| 31 | /** |
| 32 | * Creates a MusicUnmanaged from an existing Music struct. |
nothing calls this directly
no outgoing calls
no test coverage detected