Files
SeeSynth/inc/Note.h
2023-08-06 23:33:51 +04:00

8 lines
87 B
C++

#pragma once
#include <string>
struct Note {
std::string& name;
int length;
}