Files
2019-09-29 19:40:54 -04:00

11 lines
194 B
C#

using System;
using System.Collections.Generic;
namespace UnityEngine.TestTools.Logging
{
internal interface ILogScope : IDisposable
{
List<LogEvent> LogEvents { get; }
}
}