summaryrefslogtreecommitdiff
path: root/audio.h
diff options
context:
space:
mode:
Diffstat (limited to 'audio.h')
-rw-r--r--audio.h24
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