aboutsummaryrefslogtreecommitdiff
path: root/V3/Data/DebugMode.cs
diff options
context:
space:
mode:
Diffstat (limited to 'V3/Data/DebugMode.cs')
-rw-r--r--V3/Data/DebugMode.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/V3/Data/DebugMode.cs b/V3/Data/DebugMode.cs
new file mode 100644
index 0000000..b93ae7a
--- /dev/null
+++ b/V3/Data/DebugMode.cs
@@ -0,0 +1,21 @@
+namespace V3.Data
+{
+ /// <summary>
+ /// A debug level that can be set by the player.
+ /// </summary>
+ public enum DebugMode
+ {
+ /// <summary>
+ /// Disable all debug utils.
+ /// </summary>
+ Off,
+ /// <summary>
+ /// Show the FPS counter.
+ /// </summary>
+ Fps,
+ /// <summary>
+ /// Show all debug information.
+ /// </summary>
+ Full
+ }
+}