Update Constant.cs

This commit is contained in:
ALEXTANG
2023-05-13 21:12:29 +08:00
parent dff6ba4e6d
commit 6b64f3b261

View File

@@ -3,11 +3,27 @@
/// <summary> /// <summary>
/// 资源相关常量。 /// 资源相关常量。
/// </summary> /// </summary>
internal static class Constant public static partial class Constant
{ {
/// <summary> /// <summary>
/// 默认资源加载优先级。 /// 默认资源加载优先级。
/// </summary> /// </summary>
internal const int DefaultPriority = 0; internal const int DefaultPriority = 0;
} }
public static partial class Constant
{
public static class Setting
{
public const string Language = "Setting.Language";
public const string SoundGroupMuted = "Setting.{0}Muted";
public const string SoundGroupVolume = "Setting.{0}Volume";
public const string MusicMuted = "Setting.MusicMuted";
public const string MusicVolume = "Setting.MusicVolume";
public const string SoundMuted = "Setting.SoundMuted";
public const string SoundVolume = "Setting.SoundVolume";
public const string UISoundMuted = "Setting.UISoundMuted";
public const string UISoundVolume = "Setting.UISoundVolume";
}
}
} }