add Audio

This commit is contained in:
2025-05-05 23:08:48 -05:00
parent 21d07cab07
commit b8fba92ea7
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#ifndef AUDIO_H
#define AUDIO_H
#include <SDL3/SDL_audio.h>
namespace Archimedes {
class Audio {
};
}
#endif

View File

@@ -9,8 +9,12 @@
#include <SDL3/SDL.h>
#if RENDERER == 2
#include <SDL3/SDL_opengl.h>
#endif
namespace Archimedes {
class Window;