13 lines
312 B
C#
13 lines
312 B
C#
using System;
|
|
|
|
namespace BriarQueen.Framework.Services.Settings.Data
|
|
{
|
|
[Serializable]
|
|
public class GameSettings
|
|
{
|
|
public float PopupDisplayDuration = 3f;
|
|
public bool TutorialsEnabled = true;
|
|
public bool TooltipsEnabled = true;
|
|
public bool AutoUseTools = false;
|
|
}
|
|
} |