diff options
author | MW | 2007-06-10 12:28:41 +0000 |
---|---|---|
committer | MW | 2007-06-10 12:28:41 +0000 |
commit | 9f25f70b248c37f9b112a83094cb471f2dbd31b2 (patch) | |
tree | 805ff84e93795865c74dada2e12f13c88af9fef3 /OpenSim/OpenSim.Reg/scripting/Script.cs | |
parent | Renamed folder (diff) | |
download | opensim-SC_OLD-9f25f70b248c37f9b112a83094cb471f2dbd31b2.zip opensim-SC_OLD-9f25f70b248c37f9b112a83094cb471f2dbd31b2.tar.gz opensim-SC_OLD-9f25f70b248c37f9b112a83094cb471f2dbd31b2.tar.bz2 opensim-SC_OLD-9f25f70b248c37f9b112a83094cb471f2dbd31b2.tar.xz |
Messed up the renaming of the folder, so part one of the fix
Diffstat (limited to 'OpenSim/OpenSim.Reg/scripting/Script.cs')
-rw-r--r-- | OpenSim/OpenSim.Reg/scripting/Script.cs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/OpenSim/OpenSim.Reg/scripting/Script.cs b/OpenSim/OpenSim.Reg/scripting/Script.cs new file mode 100644 index 0000000..c0c2c0c --- /dev/null +++ b/OpenSim/OpenSim.Reg/scripting/Script.cs | |||
@@ -0,0 +1,26 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using libsecondlife; | ||
5 | |||
6 | namespace OpenSim.Region.Scripting | ||
7 | { | ||
8 | public class Script | ||
9 | { | ||
10 | private LLUUID m_scriptId; | ||
11 | public virtual LLUUID ScriptId | ||
12 | { | ||
13 | get | ||
14 | { | ||
15 | return m_scriptId; | ||
16 | } | ||
17 | } | ||
18 | |||
19 | public Script( LLUUID scriptId ) | ||
20 | { | ||
21 | m_scriptId = scriptId; | ||
22 | } | ||
23 | |||
24 | public ScriptEventHandler OnFrame; | ||
25 | } | ||
26 | } | ||