mirror of
https://github.com/opensim/opensim.git
synced 2026-06-05 02:15:38 +08:00
*View RegionInfo.cs for an example on how it works! *This hopefully copies all the files over, but who knows :)
32 lines
823 B
C#
32 lines
823 B
C#
using System.Collections.Generic;
|
|
using OpenSim.Framework;
|
|
using OpenSim.Framework.Types;
|
|
using OpenSim.Framework.Communications;
|
|
using OpenSim.Framework.Servers;
|
|
using OpenSim.Region.Capabilities;
|
|
using OpenSim.Region.Environment.Scenes;
|
|
using OpenSim.Region.Environment.LandManagement;
|
|
|
|
namespace OpenSim.Region.Environment
|
|
{
|
|
public class RegionManager
|
|
{
|
|
protected AgentCircuitManager authenticateHandler;
|
|
protected RegionCommsListener regionCommsHost;
|
|
protected CommunicationsManager commsManager;
|
|
protected List<Caps> capsHandlers = new List<Caps>();
|
|
protected BaseHttpServer httpListener;
|
|
|
|
protected Scene m_Scene;
|
|
|
|
public LandManager LandManager;
|
|
public EstateManager estateManager;
|
|
|
|
public RegionManager()
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
}
|