diff options
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs b/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs index ff8213c..dae7c00 100644 --- a/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs +++ b/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs | |||
@@ -54,9 +54,9 @@ namespace OpenSim.Region.Framework.Interfaces | |||
54 | void RegisterScriptInvocation(object target, string method); | 54 | void RegisterScriptInvocation(object target, string method); |
55 | 55 | ||
56 | /// <summary> | 56 | /// <summary> |
57 | /// Register an instance method as a script call by method info | 57 | /// Register a static or instance method as a script call by method info |
58 | /// </summary> | 58 | /// </summary> |
59 | /// <param name="target"></param> | 59 | /// <param name="target">If target is a Type object, will assume method is static.</param> |
60 | /// <param name="method"></param> | 60 | /// <param name="method"></param> |
61 | void RegisterScriptInvocation(object target, MethodInfo method); | 61 | void RegisterScriptInvocation(object target, MethodInfo method); |
62 | 62 | ||
@@ -68,6 +68,13 @@ namespace OpenSim.Region.Framework.Interfaces | |||
68 | void RegisterScriptInvocation(object target, string[] methods); | 68 | void RegisterScriptInvocation(object target, string[] methods); |
69 | 69 | ||
70 | /// <summary> | 70 | /// <summary> |
71 | /// Register one or more static methods as script calls by method name | ||
72 | /// </summary> | ||
73 | /// <param name="target"></param> | ||
74 | /// <param name="methods"></param> | ||
75 | void RegisterScriptInvocation(Type target, string[] methods); | ||
76 | |||
77 | /// <summary> | ||
71 | /// Returns an array of all registered script calls | 78 | /// Returns an array of all registered script calls |
72 | /// </summary> | 79 | /// </summary> |
73 | /// <returns></returns> | 80 | /// <returns></returns> |