feat: MixingPlayer - plays event sounds

This commit is contained in:
2026-03-03 14:19:56 +01:00
parent bc8002fd59
commit 804f83340f
8 changed files with 184 additions and 89 deletions

View File

@@ -5,15 +5,15 @@
#ifndef LOCKSTEP_PLAYBACKENGINE_H
#define LOCKSTEP_PLAYBACKENGINE_H
#include "OboeSinePlayer.h"
#include "MixingPlayer.h"
#include <string>
class PlaybackEngine {
public:
PlaybackEngine(std::string filesDir);
PlaybackEngine(std::string filesDir, int resid);
virtual ~PlaybackEngine();
private:
OboeSinePlayer *mPlayer;
MixingPlayer *mPlayer;
std::string mFilesDir;
};