diff options
Diffstat (limited to 'OpenSim/ScriptEngine/Components/DotNetEngine/Commands_LSL/Commands_LSL.cs')
-rw-r--r-- | OpenSim/ScriptEngine/Components/DotNetEngine/Commands_LSL/Commands_LSL.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/OpenSim/ScriptEngine/Components/DotNetEngine/Commands_LSL/Commands_LSL.cs b/OpenSim/ScriptEngine/Components/DotNetEngine/Commands_LSL/Commands_LSL.cs new file mode 100644 index 0000000..d4e9a08 --- /dev/null +++ b/OpenSim/ScriptEngine/Components/DotNetEngine/Commands_LSL/Commands_LSL.cs | |||
@@ -0,0 +1,18 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using OpenSim.ApplicationPlugins.ScriptEngine.Components; | ||
5 | |||
6 | namespace OpenSim.ScriptEngine.Components.DotNetEngine.Commands_LSL | ||
7 | { | ||
8 | public class Commands_LSL : CommandBase | ||
9 | { | ||
10 | public override void Start() | ||
11 | { | ||
12 | } | ||
13 | |||
14 | public override void Close() | ||
15 | { | ||
16 | } | ||
17 | } | ||
18 | } | ||