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:
Tedd Hansen
2007-09-22 13:15:52 +00:00
parent 64f4afcb43
commit 59f0920a8f
12 changed files with 492 additions and 18 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenSim.Grid.ScriptServer
{
// Maintains all regions
class RegionsManager
{
private List<RegionConnectionManager> Regions = new List<RegionConnectionManager>();
public ScriptServer m_ScriptServer;
public RegionsManager(ScriptServer scriptServer)
{
m_ScriptServer = scriptServer;
}
}
}