26 lines
1.0 KiB
C#
26 lines
1.0 KiB
C#
//------------------------------------------------------------
|
|
// Game Framework
|
|
// Copyright © 2013-2021 Jiang Yin. All rights reserved.
|
|
// Homepage: https://gameframework.cn/
|
|
// Feedback: mailto:ellan@gameframework.cn
|
|
//------------------------------------------------------------
|
|
|
|
namespace Definition
|
|
{
|
|
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";
|
|
}
|
|
}
|
|
}
|