Files
lockstep/app/src/main/cpp/PlaybackEngine.h

21 lines
366 B
C
Raw Normal View History

2026-02-01 02:54:05 +01:00
//
// Created by david on 01.02.2026.
//
#ifndef LOCKSTEP_PLAYBACKENGINE_H
#define LOCKSTEP_PLAYBACKENGINE_H
#include "OboeSinePlayer.h"
2026-03-03 12:04:17 +01:00
#include <string>
2026-02-01 02:54:05 +01:00
class PlaybackEngine {
public:
2026-03-03 12:04:17 +01:00
PlaybackEngine(std::string filesDir);
2026-02-01 02:54:05 +01:00
virtual ~PlaybackEngine();
private:
OboeSinePlayer *mPlayer;
2026-03-03 12:04:17 +01:00
std::string mFilesDir;
2026-02-01 02:54:05 +01:00
};
#endif //LOCKSTEP_PLAYBACKENGINE_H