initial: oboe, logging

This commit is contained in:
2026-02-01 02:54:05 +01:00
commit 8b6de6a883
45 changed files with 1514 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
//
// 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