2023-09-09 14:58:20 +02:00
|
|
|
|
namespace TaikoWebUI.Shared;
|
|
|
|
|
|
|
|
|
|
public static class Constants
|
|
|
|
|
{
|
|
|
|
|
public const int COSTUME_COLOR_MAX = 63;
|
|
|
|
|
|
|
|
|
|
public const string MUSIC_INFO_BASE_NAME = "musicinfo";
|
2024-03-09 00:42:56 +01:00
|
|
|
|
public const string WORDLIST_BASE_NAME = "wordlist";
|
|
|
|
|
public const string MUSIC_ORDER_BASE_NAME = "music_order";
|
|
|
|
|
public const string DON_COS_REWARD_BASE_NAME = "don_cos_reward";
|
|
|
|
|
public const string SHOUGOU_BASE_NAME = "shougou";
|
2024-03-27 04:48:41 +01:00
|
|
|
|
|
|
|
|
|
public const string ICON_STYLE = "width:25px; height:25px;";
|
2023-09-09 14:58:20 +02:00
|
|
|
|
}
|