From 59f0920a8fc58ea6443768591b762f5673134840 Mon Sep 17 00:00:00 2001 From: Tedd Hansen Date: Sat, 22 Sep 2007 13:15:52 +0000 Subject: Stand Alone ScriptEngine: early framework, ongoing planning (don't touch yet, will go through major reorganizing). Still a LOT of things needs to be solved... --- OpenSim/Grid/ScriptServer/ScriptServer.cs | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 OpenSim/Grid/ScriptServer/ScriptServer.cs (limited to 'OpenSim/Grid/ScriptServer/ScriptServer.cs') diff --git a/OpenSim/Grid/ScriptServer/ScriptServer.cs b/OpenSim/Grid/ScriptServer/ScriptServer.cs new file mode 100644 index 0000000..2c26027 --- /dev/null +++ b/OpenSim/Grid/ScriptServer/ScriptServer.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace OpenSim.Grid.ScriptServer +{ + class ScriptServer + { + public RegionScriptDaemon RegionScriptDaemon; // Listen for incoming from region + public RegionsManager RegionManager; // Handle regions + public ScriptEngineLoader ScriptEngineLoader; // Loads scriptengines + + public ScriptServer() + { + RegionScriptDaemon = new RegionScriptDaemon(this); + RegionManager = new RegionsManager(this); + //ScriptEngineLoader = new ScriptEngineLoader(this); + } + + ~ScriptServer() + { + } + + + + } +} -- cgit v1.1