diff options
author | Melanie | 2012-03-26 16:47:02 +0100 |
---|---|---|
committer | Melanie | 2012-03-26 16:47:02 +0100 |
commit | 0bd0514e811b03e4a52fa6d006f901b1a50d2d92 (patch) | |
tree | 26ec87e5b19697a56a2daaa8b31c2f2603485b84 /OpenSim/Region/Framework/Interfaces | |
parent | Merge branch 'master' into careminster (diff) | |
parent | Add some more overloads to allow registering overloaded methods and lists (diff) | |
download | opensim-SC_OLD-0bd0514e811b03e4a52fa6d006f901b1a50d2d92.zip opensim-SC_OLD-0bd0514e811b03e4a52fa6d006f901b1a50d2d92.tar.gz opensim-SC_OLD-0bd0514e811b03e4a52fa6d006f901b1a50d2d92.tar.bz2 opensim-SC_OLD-0bd0514e811b03e4a52fa6d006f901b1a50d2d92.tar.xz |
Merge branch 'master' into careminster
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs b/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs index 34a4bfc..bfe1e8d 100644 --- a/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs +++ b/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs | |||
@@ -47,6 +47,8 @@ namespace OpenSim.Region.Framework.Interfaces | |||
47 | event ScriptCommand OnScriptCommand; | 47 | event ScriptCommand OnScriptCommand; |
48 | 48 | ||
49 | void RegisterScriptInvocation(object target, string method); | 49 | void RegisterScriptInvocation(object target, string method); |
50 | void RegisterScriptInvocation(object target, MethodInfo method); | ||
51 | void RegisterScriptInvocation(object target, string[] methods); | ||
50 | Delegate[] GetScriptInvocationList(); | 52 | Delegate[] GetScriptInvocationList(); |
51 | 53 | ||
52 | Delegate LookupScriptInvocation(string fname); | 54 | Delegate LookupScriptInvocation(string fname); |