quantum-space-buddies/QSB/Utility/DebugSettings.cs

26 lines
624 B
C#
Raw Normal View History

2021-11-25 22:44:15 +00:00
using Newtonsoft.Json;
namespace QSB.Utility
{
public class DebugSettings
{
[JsonProperty("debugMode")]
public bool DebugMode { get; set; } = false;
[JsonProperty("drawLines")]
public bool DrawLines { get; set; } = false;
[JsonProperty("showQuantumVisibilityObjects")]
public bool ShowQuantumVisibilityObjects { get; set; } = false;
2021-12-28 18:06:34 +00:00
[JsonProperty("showDebugLabels")]
public bool ShowDebugLabels { get; set; } = false;
2021-11-25 22:44:15 +00:00
[JsonProperty("avoidTimeSync")]
public bool AvoidTimeSync { get; set; } = false;
[JsonProperty("skipTitleScreen")]
public bool SkipTitleScreen { get; set; } = false;
}
}