diff options
Diffstat (limited to 'OpenSim/Region/ExtensionsScriptModule/ScriptInterpretedEvents.cs')
-rw-r--r-- | OpenSim/Region/ExtensionsScriptModule/ScriptInterpretedEvents.cs | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/OpenSim/Region/ExtensionsScriptModule/ScriptInterpretedEvents.cs b/OpenSim/Region/ExtensionsScriptModule/ScriptInterpretedEvents.cs index 068df33..44feaff 100644 --- a/OpenSim/Region/ExtensionsScriptModule/ScriptInterpretedEvents.cs +++ b/OpenSim/Region/ExtensionsScriptModule/ScriptInterpretedEvents.cs | |||
@@ -26,19 +26,14 @@ | |||
26 | * | 26 | * |
27 | */ | 27 | */ |
28 | 28 | ||
29 | using System; | ||
30 | using System.Collections.Generic; | ||
31 | using System.Text; | ||
32 | using OpenSim.Region.Environment.Scenes; | ||
33 | using libsecondlife; | ||
34 | using Key = libsecondlife.LLUUID; | 29 | using Key = libsecondlife.LLUUID; |
35 | 30 | ||
36 | namespace OpenSim.Region.ExtensionsScriptModule | 31 | namespace OpenSim.Region.ExtensionsScriptModule |
37 | { | 32 | { |
38 | |||
39 | public class ScriptInterpretedEvents | 33 | public class ScriptInterpretedEvents |
40 | { | 34 | { |
41 | public delegate void OnTouchStartDelegate(Key user); | 35 | public delegate void OnTouchStartDelegate(Key user); |
36 | |||
42 | public event OnTouchStartDelegate OnTouchStart; | 37 | public event OnTouchStartDelegate OnTouchStart; |
43 | 38 | ||
44 | 39 | ||
@@ -48,4 +43,4 @@ namespace OpenSim.Region.ExtensionsScriptModule | |||
48 | OnTouchStart(user); | 43 | OnTouchStart(user); |
49 | } | 44 | } |
50 | } | 45 | } |
51 | } | 46 | } \ No newline at end of file |