diff options
author | lbsa71 | 2007-09-19 00:30:55 +0000 |
---|---|---|
committer | lbsa71 | 2007-09-19 00:30:55 +0000 |
commit | 8f0b03597b0bc8ea6873af9a55495407fae1ec56 (patch) | |
tree | f9f4de38379aebf2223ad4cb10a3d9ebcfa52a4f /OpenSim/Region/Environment/Scenes/Scripting/ScriptEngineInterface.cs | |
parent | * Moved SendLogoutPacket back to IClientAPI. (diff) | |
download | opensim-SC_OLD-8f0b03597b0bc8ea6873af9a55495407fae1ec56.zip opensim-SC_OLD-8f0b03597b0bc8ea6873af9a55495407fae1ec56.tar.gz opensim-SC_OLD-8f0b03597b0bc8ea6873af9a55495407fae1ec56.tar.bz2 opensim-SC_OLD-8f0b03597b0bc8ea6873af9a55495407fae1ec56.tar.xz |
* Modernized ScriptManager to new interface-based module calls.
* 'remove redundant this qualifier' ftw
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scripting/ScriptEngineInterface.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scripting/ScriptEngineInterface.cs | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scripting/ScriptEngineInterface.cs b/OpenSim/Region/Environment/Scenes/Scripting/ScriptEngineInterface.cs index 5e8ff87..06bedaf 100644 --- a/OpenSim/Region/Environment/Scenes/Scripting/ScriptEngineInterface.cs +++ b/OpenSim/Region/Environment/Scenes/Scripting/ScriptEngineInterface.cs | |||
@@ -26,18 +26,16 @@ | |||
26 | * | 26 | * |
27 | */ | 27 | */ |
28 | /* Original code: Tedd Hansen */ | 28 | /* Original code: Tedd Hansen */ |
29 | using System; | 29 | using OpenSim.Framework.Console; |
30 | using System.Collections.Generic; | 30 | |
31 | using System.Text; | 31 | //TODO: WHERE TO PLACE THIS? |
32 | using OpenSim.Region.Environment.Scenes.Scripting; | 32 | |
33 | |||
34 | //TODO: WHERE TO PLACE THIS? | ||
35 | namespace OpenSim.Region.Environment.Scenes.Scripting | 33 | namespace OpenSim.Region.Environment.Scenes.Scripting |
36 | { | 34 | { |
37 | public interface ScriptEngineInterface | 35 | public interface ScriptEngineInterface |
38 | { | 36 | { |
39 | void InitializeEngine(OpenSim.Region.Environment.Scenes.Scene Sceneworld, OpenSim.Framework.Console.LogBase logger); | 37 | void InitializeEngine(Scene Sceneworld, LogBase logger); |
40 | void Shutdown(); | 38 | void Shutdown(); |
41 | // void StartScript(string ScriptID, IScriptHost ObjectID); | 39 | // void StartScript(string ScriptID, IScriptHost ObjectID); |
42 | } | 40 | } |
43 | } | 41 | } \ No newline at end of file |