Mirror of Svelto.ECS because we're a fan of it
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.

14 lines
241B

  1. namespace Utility
  2. {
  3. public enum LogType
  4. {
  5. Log,
  6. Exception,
  7. Warning,
  8. Error
  9. }
  10. public interface ILogger
  11. {
  12. void Log (string txt, string stack = null, LogType type = LogType.Log);
  13. }
  14. }