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

19 lines
301 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"
class PlaybackEngine {
public:
PlaybackEngine();
virtual ~PlaybackEngine();
private:
OboeSinePlayer *mPlayer;
};
#endif //LOCKSTEP_PLAYBACKENGINE_H