Unity 框架

ConsoleLog.cs 445B

1234567891011121314151617181920212223
  1. using TFramework;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using UnityEngine;
  5. using System;
  6. namespace TFramework
  7. {
  8. public class ConsoleLog:IReference
  9. {
  10. public string Name;
  11. public DateTime Time;
  12. public LogType Type;
  13. public string Message;
  14. public string StackTrace;
  15. public void Reset()
  16. {
  17. throw new System.NotImplementedException();
  18. }
  19. }
  20. }