13 lines
		
	
	
		
			266 B
		
	
	
	
		
			C#
		
	
	
	
	
	
		
		
			
		
	
	
			13 lines
		
	
	
		
			266 B
		
	
	
	
		
			C#
		
	
	
	
	
	
|  | using System; | ||
|  | 
 | ||
|  | namespace UnityEditor.TestTools.TestRunner.Api | ||
|  | { | ||
|  |     internal interface ICallbacksHolder | ||
|  |     { | ||
|  |         void Add(ICallbacks callback, int priority); | ||
|  |         void Remove(ICallbacks callback); | ||
|  |         ICallbacks[] GetAll(); | ||
|  |         void Clear(); | ||
|  |     } | ||
|  | } |