initial commit

This commit is contained in:
jettis
2024-12-05 20:49:37 +02:00
commit 688def7e01
235 changed files with 3334 additions and 0 deletions

15
SoundData.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef SOUND_DATA_H
#define SOUND_DATA_H
#include <SDL3/SDL.h>
class SoundData {
public:
bool is_played;
bool loop;
SDL_AudioSpec spec;
Uint8 *buf;
Uint32 len;
};
#endif