Files

11 lines
194 B
C#
Raw Normal View History

2019-09-29 19:40:54 -04:00
using System;
using System.Collections.Generic;
namespace UnityEngine.TestTools.Logging
{
internal interface ILogScope : IDisposable
{
List<LogEvent> LogEvents { get; }
}
}