설명 없음
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 266B

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