8 lines
88 B
C++
8 lines
88 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
struct Note {
|
|
std::string& name;
|
|
int length;
|
|
}; |