mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 17:32:42 +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:
19
OpenSim/Grid/ScriptServer/RegionsManager.cs
Normal file
19
OpenSim/Grid/ScriptServer/RegionsManager.cs
Normal 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;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user