Constant.Setting.cs 1.0 KB

1234567891011121314151617181920212223242526
  1. //------------------------------------------------------------
  2. // Game Framework
  3. // Copyright © 2013-2021 Jiang Yin. All rights reserved.
  4. // Homepage: https://gameframework.cn/
  5. // Feedback: mailto:ellan@gameframework.cn
  6. //------------------------------------------------------------
  7. namespace MetaClient
  8. {
  9. public static partial class Constant
  10. {
  11. public static class Setting
  12. {
  13. public const string Language = "Setting.Language";
  14. public const string SoundGroupMuted = "Setting.{0}Muted";
  15. public const string SoundGroupVolume = "Setting.{0}Volume";
  16. public const string MusicMuted = "Setting.MusicMuted";
  17. public const string MusicVolume = "Setting.MusicVolume";
  18. public const string SoundMuted = "Setting.SoundMuted";
  19. public const string SoundVolume = "Setting.SoundVolume";
  20. public const string UISoundMuted = "Setting.UISoundMuted";
  21. public const string UISoundVolume = "Setting.UISoundVolume";
  22. }
  23. }
  24. }