implement service resolver for script plugins

This commit is contained in:
RaidMax
2020-09-26 18:13:56 -05:00
parent 2ab0cfa9be
commit 70cae976a0
6 changed files with 56 additions and 4 deletions

View File

@ -0,0 +1,10 @@
namespace SharedLibraryCore.Interfaces
{
/// <summary>
/// interface used to dynamically resolve services by string name
/// </summary>
public interface IScriptPluginServiceResolver
{
object ResolveService(string serviceName);
}
}