wip: oscillator class

This commit is contained in:
2023-08-06 23:33:51 +04:00
parent bcb75a65f9
commit 850dedb319
5 changed files with 172 additions and 0 deletions

8
inc/Note.h Normal file
View File

@@ -0,0 +1,8 @@
#pragma once
#include <string>
struct Note {
std::string& name;
int length;
}