mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-11-03 11:07:14 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			280 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			280 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections.Generic;
 | 
						|
using Kyoo.Models;
 | 
						|
 | 
						|
namespace Kyoo.Controllers
 | 
						|
{
 | 
						|
	public interface IPluginManager
 | 
						|
	{
 | 
						|
		public T GetPlugin<T>(string name);
 | 
						|
		public IEnumerable<T> GetPlugins<T>();
 | 
						|
		public IEnumerable<IPlugin> GetAllPlugins();
 | 
						|
		public void ReloadPlugins();
 | 
						|
	}
 | 
						|
} |