mirror of
https://github.com/opensim/opensim.git
synced 2026-05-29 21:55:46 +08:00
20 lines
460 B
C#
20 lines
460 B
C#
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;
|
|
}
|
|
|
|
}
|
|
}
|