start on MusicDB

This commit is contained in:
msk
2023-09-30 15:58:08 -07:00
parent a20ace4e5d
commit c6246131f3
5 changed files with 123 additions and 39 deletions
+14
View File
@@ -0,0 +1,14 @@
namespace WacK.MusicDB
{
public class Song
{
string name, artist, category, copyright;
int tempo;
// chart path relative to user://songs
string dirPath;
// should only hold 4 values
Difficulty[] diff;
}
}