Files
SeeSynth/inc/Note.h
2023-08-07 02:28:06 +04:00

8 lines
88 B
C++

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