Bez popisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ICallbacksHolder.cs 250B

12345678910
  1. namespace UnityEditor.TestTools.TestRunner.Api
  2. {
  3. internal interface ICallbacksHolder
  4. {
  5. void Add(ICallbacks callback, int priority);
  6. void Remove(ICallbacks callback);
  7. ICallbacks[] GetAll();
  8. void Clear();
  9. }
  10. }