11 lines
194 B
C#
11 lines
194 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace UnityEngine.TestTools.Logging
|
|
{
|
|
internal interface ILogScope : IDisposable
|
|
{
|
|
List<LogEvent> LogEvents { get; }
|
|
}
|
|
}
|