2022-09-15 07:18:50 +02:00
|
|
|
|
namespace TaikoWebUI.Shared;
|
|
|
|
|
|
|
|
|
|
public static class Constants
|
|
|
|
|
{
|
|
|
|
|
public const int COSTUME_HEAD_MAX = 140;
|
|
|
|
|
public const int COSTUME_FACE_MAX = 58;
|
|
|
|
|
public const int COSTUME_BODY_MAX = 156;
|
|
|
|
|
public const int COSTUME_KIGURUMI_MAX = 154;
|
|
|
|
|
public const int COSTUME_PUCHI_MAX = 129;
|
|
|
|
|
public const int COSTUME_COLOR_MAX = 63;
|
|
|
|
|
public const int PLAYER_TITLE_MAX = 750;
|
2022-09-19 17:02:01 +02:00
|
|
|
|
|
|
|
|
|
public const string MUSIC_INFO_BASE_NAME = "musicinfo";
|
|
|
|
|
public const string WORD_LIST_BASE_NAME = "wordlist";
|
|
|
|
|
public const string MUSIC_ORDER_BASE_NAME = "music_order";
|
2022-09-15 07:18:50 +02:00
|
|
|
|
}
|