NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Setting/GameSettingData.cs

10 lines
243 B
C#
Raw Normal View History

2023-12-08 14:16:12 +08:00
public class GameSettingData
{
public bool IsHighQuality = true;
public int FrameRate = 60;
public float BGMValue = 0.8f;
public float EffectValue = 0.8f;
public float TalkValue = 0.8f;
public bool IsOpenGrid = true;
}