Files
Fishing2/Assets/Scripts/Common/Services/Settings/SettingsDef.cs
2025-05-30 17:49:12 +08:00

13 lines
346 B
C#

namespace NBF
{
public class SettingsDef
{
public class Group
{
public const string Graphic = "Graphic";
public const string Keyboard = "Keyboard";
public const string Controller = "Controller";
public const string SoundAndLanguage = "SoundAndLanguage";
}
}
}