1
0
mirror of synced 2025-02-20 04:31:01 +01:00
TaikoSoundEditor/Genre.cs

16 lines
239 B
C#
Raw Normal View History

2023-07-22 08:21:29 +03:00
namespace TaikoSoundEditor
{
public enum Genre
{
Pop=0,
Anime=1,
Kids=2,
Vocaloid=3,
GameMusic=4,
NamcoOriginal=5,
Variety=7,
2023-09-30 18:52:05 +03:00
Classical=8,
Custom=9
2023-07-22 08:21:29 +03:00
}
}