diff options
Diffstat (limited to 'OpenSim/ScriptEngine/Components/DotNetEngine/Scheduler/LoadUnloadStructure.cs')
-rw-r--r-- | OpenSim/ScriptEngine/Components/DotNetEngine/Scheduler/LoadUnloadStructure.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/OpenSim/ScriptEngine/Components/DotNetEngine/Scheduler/LoadUnloadStructure.cs b/OpenSim/ScriptEngine/Components/DotNetEngine/Scheduler/LoadUnloadStructure.cs new file mode 100644 index 0000000..d3d0509 --- /dev/null +++ b/OpenSim/ScriptEngine/Components/DotNetEngine/Scheduler/LoadUnloadStructure.cs | |||
@@ -0,0 +1,22 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using OpenSim.ScriptEngine.Shared; | ||
5 | |||
6 | namespace OpenSim.ScriptEngine.Components.DotNetEngine.Scheduler | ||
7 | { | ||
8 | public struct LoadUnloadStructure | ||
9 | { | ||
10 | public ScriptStructure Script; | ||
11 | public LUType Action; | ||
12 | public bool PostOnRez; | ||
13 | public int StartParam; | ||
14 | |||
15 | public enum LUType | ||
16 | { | ||
17 | Unknown = 0, | ||
18 | Load = 1, | ||
19 | Unload = 2 | ||
20 | } | ||
21 | } | ||
22 | } | ||