mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
10 lines
No EOL
250 B
C#
10 lines
No EOL
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();
|
|
}
|
|
} |