From 752d3f3879f13dc77f35b5e8ada2cdf5ba625ee4 Mon Sep 17 00:00:00 2001 From: Tedd Hansen Date: Sun, 21 Sep 2008 00:03:13 +0000 Subject: EXPERIMENTAL: Early commit of new Script Engine Component System --- .../DotNetEngine/Commands_LSL/Commands_LSL.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 OpenSim/ScriptEngine/Components/DotNetEngine/Commands_LSL/Commands_LSL.cs (limited to 'OpenSim/ScriptEngine/Components/DotNetEngine/Commands_LSL/Commands_LSL.cs') 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 @@ +using System; +using System.Collections.Generic; +using System.Text; +using OpenSim.ApplicationPlugins.ScriptEngine.Components; + +namespace OpenSim.ScriptEngine.Components.DotNetEngine.Commands_LSL +{ + public class Commands_LSL : CommandBase + { + public override void Start() + { + } + + public override void Close() + { + } + } +} -- cgit v1.1