From a9ce78128d919e9798d7d2ec043879a4c685a9d1 Mon Sep 17 00:00:00 2001 From: jussi Date: Tue, 25 Apr 2023 18:19:14 +0300 Subject: Can now have multiple Music objects like other Raylib objects instead of just one. --- include/state.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'include/state.h') diff --git a/include/state.h b/include/state.h index 305be56..eeef14a 100644 --- a/include/state.h +++ b/include/state.h @@ -41,7 +41,9 @@ typedef struct { size_t soundCount; size_t soundAlloc; /* Music. */ - Music music; + Music **musics; + size_t musicCount; + size_t musicAlloc; /* Camera2D's. */ Camera2D **camera2Ds; size_t camera2DCount; -- cgit v1.2.3