bea2dce063
test
10 lines
250 B
C#
10 lines
250 B
C#
namespace UnityEditor.TestTools.TestRunner.Api
|
|
{
|
|
internal interface ICallbacksHolder
|
|
{
|
|
void Add(ICallbacks callback, int priority);
|
|
void Remove(ICallbacks callback);
|
|
ICallbacks[] GetAll();
|
|
void Clear();
|
|
}
|
|
} |