added reaaly basic audio

This commit is contained in:
herbglitch 2023-09-13 21:32:30 -06:00
parent 46e26e41e5
commit 9bfcd5552e
8 changed files with 111 additions and 3 deletions

View file

@ -0,0 +1,12 @@
#ifndef ARC_SDL_AUDIO_H_
#define ARC_SDL_AUDIO_H_
#ifdef ARC_SDL
#include <SDL2/SDL_mixer.h>
typedef struct ARC_Audio {
Mix_Chunk *chunk;
} ARC_Audio;
#endif // !ARC_SDL
#endif // !ARC_SDL_AUDIO_H_