Initial Commit

This commit is contained in:
DavidOnTop 2024-01-20 13:52:41 +01:00
commit d2176afff9
No known key found for this signature in database
GPG key ID: FAB914DDC2F180EB
23 changed files with 778 additions and 0 deletions

21
CruelMan/Utils/Log.cs Normal file
View file

@ -0,0 +1,21 @@
namespace CruelMan.Utils {
public static class Log {
public static void Info(string message) {
#if DEBUG
UnityEngine.Debug.Log($"[CruelMan] {message}");
#endif
}
public static void Warn(string message) {
#if DEBUG
UnityEngine.Debug.LogWarning($"[CruelMan] {message}");
#endif
}
public static void Error(string message) {
#if DEBUG
UnityEngine.Debug.LogError($"[CruelMan] {message}");
#endif
}
}
}