14 lines
221 B
C#
14 lines
221 B
C#
|
|
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;
|
||
|
|
}
|
||
|
|
}
|