diff options
author | lbsa71 | 2007-08-06 12:54:13 +0000 |
---|---|---|
committer | lbsa71 | 2007-08-06 12:54:13 +0000 |
commit | 74cd26b7228f20bcd9fb2503a81045a36d80a63a (patch) | |
tree | 77770b931db549155b9340fb6f8d60fa8d601287 /OpenSim/Region/Environment/Scenes/scripting/ScriptInterpretedEvents.cs | |
parent | * Now we have boxes. Yay! (diff) | |
download | opensim-SC-74cd26b7228f20bcd9fb2503a81045a36d80a63a.zip opensim-SC-74cd26b7228f20bcd9fb2503a81045a36d80a63a.tar.gz opensim-SC-74cd26b7228f20bcd9fb2503a81045a36d80a63a.tar.bz2 opensim-SC-74cd26b7228f20bcd9fb2503a81045a36d80a63a.tar.xz |
Part 1 of a two-part commit to change caps of 'scripting' dir...
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 | } | ||