com.alicizax.unity/Runtime/Constant/Constant.cs
陈思海 bf0d8340af init
2025-02-07 16:04:12 +08:00

22 lines
901 B
C#

namespace AlicizaX.Runtime
{
/// <summary>
/// 常用设置相关常量。
/// </summary>
public static partial class PrefsKey
{
public static class Setting
{
public const string WirtedSetting = "WirtedSetting";
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";
}
}
}