diff options
author | cflip <cflip@cflip.net> | 2022-02-20 09:15:40 -0700 |
---|---|---|
committer | cflip <cflip@cflip.net> | 2022-02-20 09:15:40 -0700 |
commit | a3f4ac00ee76f5e3b2dae7838a6c13ccae40ceac (patch) | |
tree | af8575869f901657b2252c56c7a15e278ef2c0f7 /audio.h | |
parent | 3828bb56022c636a7dd056a4781249222ea0d3ca (diff) |
Diffstat (limited to 'audio.h')
-rw-r--r-- | audio.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/audio.h b/audio.h deleted file mode 100644 index 6205de7..0000000 --- a/audio.h +++ /dev/null @@ -1,24 +0,0 @@ -#pragma once - -class Sequence; - -struct CallbackInfo { - int samplesDone; - int samplesPerStep; - int currentStep; - int sampleRate; - Sequence* seq; -}; - -class AudioContext { -public: - AudioContext(Sequence&); - ~AudioContext(); - - void Start(); - void Stop(); - - int CurrentStep(); -private: - CallbackInfo m_info; -};
\ No newline at end of file |