diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/ScriptEngine/Components/DotNetEngine/Commands_OSSL/Commands_OSSL.cs | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/OpenSim/ScriptEngine/Components/DotNetEngine/Commands_OSSL/Commands_OSSL.cs b/OpenSim/ScriptEngine/Components/DotNetEngine/Commands_OSSL/Commands_OSSL.cs index 6ba0c63..6b5dc14 100644 --- a/OpenSim/ScriptEngine/Components/DotNetEngine/Commands_OSSL/Commands_OSSL.cs +++ b/OpenSim/ScriptEngine/Components/DotNetEngine/Commands_OSSL/Commands_OSSL.cs | |||
@@ -28,18 +28,17 @@ | |||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Text; | 30 | using System.Text; |
31 | using OpenSim.ApplicationPlugins.ScriptEngine.Components; | 31 | using OpenSim.ScriptEngine.Shared; |
32 | 32 | ||
33 | namespace OpenSim.ScriptEngine.Components.DotNetEngine.Commands_OSSL | 33 | namespace OpenSim.ScriptEngine.Components.DotNetEngine.Commands_OSSL |
34 | { | 34 | { |
35 | public class Commands_OSSL: CommandBase | 35 | public class Commands_OSSL : IScriptEngineComponent |
36 | { | 36 | { |
37 | public override void Start() | 37 | private RegionInfoStructure CurrentRegion; |
38 | public void Initialize(RegionInfoStructure currentRegion) | ||
38 | { | 39 | { |
40 | CurrentRegion = currentRegion; | ||
39 | } | 41 | } |
40 | 42 | ||
41 | public override void Close() | ||
42 | { | ||
43 | } | ||
44 | } | 43 | } |
45 | } | 44 | } |