diff --git a/song.h b/song.h new file mode 100644 index 0000000..b131f7c --- /dev/null +++ b/song.h @@ -0,0 +1,16 @@ +#pragma once + +#include +#include + +//typedef uint16_t[4][64] Pattern; + +class Song { + public: + Song(); + + uint16_t GetCurrentNote(const int channel); + + private: + std::vector patterns; +};