canvie de comp

This commit is contained in:
2021-09-15 12:33:07 +02:00
parent 636fd2c0fb
commit dc23d8f9c1

16
song.h Normal file
View File

@@ -0,0 +1,16 @@
#pragma once
#include <cstdint>
#include <vector>
//typedef uint16_t[4][64] Pattern;
class Song {
public:
Song();
uint16_t GetCurrentNote(const int channel);
private:
std::vector<uint16_t[4][64]> patterns;
};