Files
2020-07-21 15:43:56 +09:00

8 lines
151 B
C#

namespace UnityEditor.TestTools.TestRunner.Api
{
public interface IErrorCallbacks : ICallbacks
{
void OnError(string message);
}
}