MCPcopy Create free account
hub / github.com/RobLoach/raylib-cpp / MusicUnmanaged

Method MusicUnmanaged

include/MusicUnmanaged.hpp:23–29  ·  view source on GitHub ↗

* Creates a MusicUnmanaged with the given components. */

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected