From 766cdff5ffa72b65d7f106658d1603f47739b2ba Mon Sep 17 00:00:00 2001 From: chai <215380520@qq.com> Date: Fri, 27 Oct 2023 11:05:14 +0800 Subject: + init --- GameCode/Debug.cs | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 GameCode/Debug.cs (limited to 'GameCode/Debug.cs') 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) + { + } +} -- cgit v1.1-26-g67d0