implemented in c++ to improve readability and simplify maintenance Co-authored-by: HiveBeats <e1lama@protonmail.com> Reviewed-on: #13
8 lines
88 B
C++
8 lines
88 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
struct Note {
|
|
std::string& name;
|
|
int length;
|
|
}; |