2023-06-21 13:28:15 -04:00
|
|
|
namespace UnityEditor.TestTools.TestRunner.Api
|
|
|
|
{
|
|
|
|
internal interface ICallbacksHolder
|
|
|
|
{
|
|
|
|
void Add(ICallbacks callback, int priority);
|
|
|
|
void Remove(ICallbacks callback);
|
|
|
|
ICallbacks[] GetAll();
|
|
|
|
void Clear();
|
|
|
|
}
|
2023-06-19 23:21:21 -04:00
|
|
|
}
|