From dc23d8f9c1219e126723877d12aa862ae0cc5d2c Mon Sep 17 00:00:00 2001 From: Raimon Zamora Date: Wed, 15 Sep 2021 12:33:07 +0200 Subject: [PATCH] canvie de comp --- song.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 song.h 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; +};