Files

14 lines
221 B
C#
Raw Permalink Normal View History

2023-09-30 15:58:08 -07:00
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;
}
}