using System.Collections; using System.Collections.Generic; using UnityEngine; public static class Debugging { public static void Log(string str) { #if MODE_TEST Debug.Log(str); #endif } public static void Warning(string str) { #if MODE_TEST Debug.LogWarning(str); #endif } public static void Error(string str) { #if MODE_TEST Debug.LogError(str); #endif } }