Files
2026-06-17 20:44:53 +03:00

11 lines
171 B
C#

using UnityEngine;
namespace QFSW.QC
{
public interface ILog
{
string Text { get; }
LogType Type { get; }
bool NewLine { get; }
}
}