// // Created by david on 01.02.2026. // #ifndef LOCKSTEP_PLAYBACKENGINE_H #define LOCKSTEP_PLAYBACKENGINE_H #include "OboeSinePlayer.h" #include class PlaybackEngine { public: PlaybackEngine(std::string filesDir); virtual ~PlaybackEngine(); private: OboeSinePlayer *mPlayer; std::string mFilesDir; }; #endif //LOCKSTEP_PLAYBACKENGINE_H