diff options
author | chai <215380520@qq.com> | 2023-10-27 11:05:14 +0800 |
---|---|---|
committer | chai <215380520@qq.com> | 2023-10-27 11:05:14 +0800 |
commit | 766cdff5ffa72b65d7f106658d1603f47739b2ba (patch) | |
tree | 34d7799a94dfa9be182825577583c0fa6dc935f7 /GameCode/Debug.cs |
+ init
Diffstat (limited to 'GameCode/Debug.cs')
-rw-r--r-- | GameCode/Debug.cs | 53 |
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) + { + } +} |