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

11 lines
244 B
C#
Raw Normal View History

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