diff options
author | Tedd Hansen | 2007-09-24 12:49:46 +0000 |
---|---|---|
committer | Tedd Hansen | 2007-09-24 12:49:46 +0000 |
commit | 323234f82a78b8a863c12e0c6d0641ec156d523b (patch) | |
tree | 454f57905ec64230f8f553430ada4a83ac95e44f /OpenSim/Grid/ScriptServer/ScriptServer.cs | |
parent | * Long days journey towards night (diff) | |
download | opensim-SC_OLD-323234f82a78b8a863c12e0c6d0641ec156d523b.zip opensim-SC_OLD-323234f82a78b8a863c12e0c6d0641ec156d523b.tar.gz opensim-SC_OLD-323234f82a78b8a863c12e0c6d0641ec156d523b.tar.bz2 opensim-SC_OLD-323234f82a78b8a863c12e0c6d0641ec156d523b.tar.xz |
Reorganized some files
Diffstat (limited to 'OpenSim/Grid/ScriptServer/ScriptServer.cs')
-rw-r--r-- | OpenSim/Grid/ScriptServer/ScriptServer.cs | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/OpenSim/Grid/ScriptServer/ScriptServer.cs b/OpenSim/Grid/ScriptServer/ScriptServer.cs deleted file mode 100644 index 2c26027..0000000 --- a/OpenSim/Grid/ScriptServer/ScriptServer.cs +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenSim.Grid.ScriptServer | ||
6 | { | ||
7 | class ScriptServer | ||
8 | { | ||
9 | public RegionScriptDaemon RegionScriptDaemon; // Listen for incoming from region | ||
10 | public RegionsManager RegionManager; // Handle regions | ||
11 | public ScriptEngineLoader ScriptEngineLoader; // Loads scriptengines | ||
12 | |||
13 | public ScriptServer() | ||
14 | { | ||
15 | RegionScriptDaemon = new RegionScriptDaemon(this); | ||
16 | RegionManager = new RegionsManager(this); | ||
17 | //ScriptEngineLoader = new ScriptEngineLoader(this); | ||
18 | } | ||
19 | |||
20 | ~ScriptServer() | ||
21 | { | ||
22 | } | ||
23 | |||
24 | |||
25 | |||
26 | } | ||
27 | } | ||