Add some more overloads to allow registering overloaded methods and lists

of methods.
This commit is contained in:
Melanie
2012-03-26 16:46:07 +01:00
parent 2fcdecf090
commit ad865ab4fc
2 changed files with 16 additions and 4 deletions

View File

@@ -47,6 +47,8 @@ namespace OpenSim.Region.Framework.Interfaces
event ScriptCommand OnScriptCommand;
void RegisterScriptInvocation(object target, string method);
void RegisterScriptInvocation(object target, MethodInfo method);
void RegisterScriptInvocation(object target, string[] methods);
Delegate[] GetScriptInvocationList();
Delegate LookupScriptInvocation(string fname);