You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
423 B
25 lines
423 B
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 |
|
} |
|
}
|
|
|