Files
SeeSynth/inc/Note.h
e1lama a445fc44b3 [refactor]: c++ implementation (#13)
implemented in c++ to improve readability and simplify maintenance

Co-authored-by: HiveBeats <e1lama@protonmail.com>
Reviewed-on: #13
2023-08-08 22:08:18 +03:00

8 lines
88 B
C++

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