mirror of
https://github.com/opensim/opensim.git
synced 2026-07-29 04:25:36 +08:00
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...
This commit is contained in:
27
OpenSim/Grid/ScriptServer/ScriptServer.cs
Normal file
27
OpenSim/Grid/ScriptServer/ScriptServer.cs
Normal file
@@ -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()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user