diff options
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scripting/ScriptInterpretedEvents.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scripting/ScriptInterpretedEvents.cs | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scripting/ScriptInterpretedEvents.cs b/OpenSim/Region/Environment/Scenes/Scripting/ScriptInterpretedEvents.cs deleted file mode 100644 index 41fe9c5..0000000 --- a/OpenSim/Region/Environment/Scenes/Scripting/ScriptInterpretedEvents.cs +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using OpenSim.Region.Environment.Scenes; | ||
5 | using libsecondlife; | ||
6 | using Key = libsecondlife.LLUUID; | ||
7 | |||
8 | namespace OpenSim.Region.Scripting | ||
9 | { | ||
10 | |||
11 | public class ScriptInterpretedEvents | ||
12 | { | ||
13 | public delegate void OnTouchStartDelegate(Key user); | ||
14 | public event OnTouchStartDelegate OnTouchStart; | ||
15 | |||
16 | |||
17 | public void TriggerTouchStart(Key user) | ||
18 | { | ||
19 | if (OnTouchStart != null) | ||
20 | OnTouchStart(user); | ||
21 | } | ||
22 | } | ||
23 | } | ||