Simplify the module invocation registration. The types and method name

can be pulled fromt he delegate so we don't need to pass them explicitly
This commit is contained in:
Melanie
2012-03-25 19:52:38 +01:00
parent a07fa0395f
commit cb44808504
2 changed files with 20 additions and 3 deletions

View File

@@ -46,7 +46,8 @@ namespace OpenSim.Region.Framework.Interfaces
/// </summary>
event ScriptCommand OnScriptCommand;
void RegisterScriptInvocation(string name, ScriptInvocation fn, Type[] csig, Type rsig);
void RegisterScriptInvocation(ScriptInvocation fn);
ScriptInvocation[] GetScriptInvocationList();
ScriptInvocation LookupScriptInvocation(string fname);
string LookupModInvocation(string fname);