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

21 lines
373 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 "MixingPlayer.h"
2026-03-03 12:04:17 +01:00
#include <string>
2026-02-01 02:54:05 +01:00
class PlaybackEngine {
public:
PlaybackEngine(std::string filesDir, int resid);
2026-02-01 02:54:05 +01:00
virtual ~PlaybackEngine();
private:
MixingPlayer *mPlayer;
2026-03-03 12:04:17 +01:00
std::string mFilesDir;
2026-02-01 02:54:05 +01:00
};
#endif //LOCKSTEP_PLAYBACKENGINE_H