mirror of
https://github.com/opensim/opensim.git
synced 2026-07-31 13:55:35 +08:00
Dynamically create the delegate type to reduce complexity in the caller
This commit is contained in:
@@ -26,6 +26,7 @@
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
using OpenMetaverse;
|
||||
|
||||
namespace OpenSim.Region.Framework.Interfaces
|
||||
@@ -45,7 +46,7 @@ namespace OpenSim.Region.Framework.Interfaces
|
||||
/// </summary>
|
||||
event ScriptCommand OnScriptCommand;
|
||||
|
||||
void RegisterScriptInvocation(Delegate fn);
|
||||
void RegisterScriptInvocation(object target, MethodInfo mi);
|
||||
Delegate[] GetScriptInvocationList();
|
||||
|
||||
Delegate LookupScriptInvocation(string fname);
|
||||
|
||||
Reference in New Issue
Block a user