pixelgon/Library/PackageCache/com.unity.test-framework@1.1.3/UnityEngine.TestRunner/Assertions/LogScope/ILogScope.cs
2020-06-05 11:54:36 -07:00

10 lines
194 B
C#

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