quantum-space-buddies/QSB/Utility/DebugSettings.cs
Mister_Nebula 2c903f079a aaaaaaaaa
2021-12-28 18:06:34 +00:00

26 lines
624 B
C#

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;
[JsonProperty("showDebugLabels")]
public bool ShowDebugLabels { get; set; } = false;
[JsonProperty("avoidTimeSync")]
public bool AvoidTimeSync { get; set; } = false;
[JsonProperty("skipTitleScreen")]
public bool SkipTitleScreen { get; set; } = false;
}
}