aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs
diff options
context:
space:
mode:
authorMelanie2012-03-26 16:46:07 +0100
committerMelanie2012-03-26 16:46:07 +0100
commitad865ab4fc6703610d15336fa22fa2a62f628979 (patch)
tree5f1f78a6b7c82ed4b63868c5784047126fc7e926 /OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs
parentBulletSim: fix typo introducted by previous checkins (git merge sometimes mak... (diff)
downloadopensim-SC_OLD-ad865ab4fc6703610d15336fa22fa2a62f628979.zip
opensim-SC_OLD-ad865ab4fc6703610d15336fa22fa2a62f628979.tar.gz
opensim-SC_OLD-ad865ab4fc6703610d15336fa22fa2a62f628979.tar.bz2
opensim-SC_OLD-ad865ab4fc6703610d15336fa22fa2a62f628979.tar.xz
Add some more overloads to allow registering overloaded methods and lists
of methods.
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IScriptModuleComms.cs2
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);