summaryrefslogtreecommitdiff
path: root/GameCode/Debug.cs
diff options
context:
space:
mode:
Diffstat (limited to 'GameCode/Debug.cs')
-rw-r--r--GameCode/Debug.cs53
1 files changed, 53 insertions, 0 deletions
diff --git a/GameCode/Debug.cs b/GameCode/Debug.cs
new file mode 100644
index 0000000..b35bd1d
--- /dev/null
+++ b/GameCode/Debug.cs
@@ -0,0 +1,53 @@
+using System;
+using UnityEngine;
+
+public static class Debug
+{
+ public static void Log(object logMsg)
+ {
+ }
+
+ public static void Log(string logMsg)
+ {
+ }
+
+ public static void Log(Exception exeption)
+ {
+ }
+
+ public static void LogError(string logMsg)
+ {
+ }
+
+ public static void LogError(string logMsg, object ob)
+ {
+ }
+
+ public static void LogError(string logMsg, GameObject go)
+ {
+ }
+
+ public static void LogWarning(string logMsg)
+ {
+ }
+
+ public static void LogWarning(string logMsg, object ob)
+ {
+ }
+
+ public static void ClearDeveloperConsole()
+ {
+ }
+
+ public static void Assert(Transform t, string m)
+ {
+ }
+
+ public static void DrawLine(Vector3 v1, Vector3 v2, Color c, float t)
+ {
+ }
+
+ public static void DrawLine(Vector3 v1, Vector3 v2, Color c)
+ {
+ }
+}