* update GenerateGuidFromString to resolve to a stable hash code. fix bots not showing up on live radar * add 0.0.0.0 as internal "ip" even though it's not actually a valid IP but for cod4x * implement pm admins command for issue #170 * implement service resolver for script plugins
11 lines
266 B
C#
11 lines
266 B
C#
namespace SharedLibraryCore.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// interface used to dynamically resolve services by string name
|
|
/// </summary>
|
|
public interface IScriptPluginServiceResolver
|
|
{
|
|
object ResolveService(string serviceName);
|
|
}
|
|
}
|