1234567891011121314151617181920212223 |
- using TFramework;
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- using System;
- namespace TFramework
- {
- public class ConsoleLog:IReference
- {
- public string Name;
- public DateTime Time;
- public LogType Type;
- public string Message;
- public string StackTrace;
- public void Reset()
- {
- throw new System.NotImplementedException();
- }
- }
- }
|