Log.cs 421 B

1234567891011121314151617181920212223242526272829
  1. namespace Model
  2. {
  3. public static class Log
  4. {
  5. public static void Warning(string msg)
  6. {
  7. UnityEngine.Debug.LogWarning(msg);
  8. }
  9. public static void Info(string msg)
  10. {
  11. UnityEngine.Debug.Log(msg);
  12. }
  13. public static void Error(string msg)
  14. {
  15. UnityEngine.Debug.LogError(msg);
  16. }
  17. public static void Debug(string msg)
  18. {
  19. UnityEngine.Debug.Log(msg);
  20. }
  21. public static void Flush()
  22. {
  23. }
  24. }
  25. }