feat: audio resources

This commit is contained in:
2026-03-03 12:04:17 +01:00
parent d2c9a7b2ff
commit bc8002fd59
7 changed files with 109 additions and 9 deletions

View File

@@ -6,13 +6,15 @@
#define LOCKSTEP_PLAYBACKENGINE_H
#include "OboeSinePlayer.h"
#include <string>
class PlaybackEngine {
public:
PlaybackEngine();
PlaybackEngine(std::string filesDir);
virtual ~PlaybackEngine();
private:
OboeSinePlayer *mPlayer;
std::string mFilesDir;
};
#endif //LOCKSTEP_PLAYBACKENGINE_H