IW4M-Admin/SharedLibraryCore/Interfaces/IScriptPluginServiceResolver.cs

11 lines
266 B
C#
Raw Normal View History

namespace SharedLibraryCore.Interfaces
{
/// <summary>
/// interface used to dynamically resolve services by string name
/// </summary>
public interface IScriptPluginServiceResolver
{
object ResolveService(string serviceName);
}
}