diff options
author | mingchen | 2007-06-27 19:43:46 +0000 |
---|---|---|
committer | mingchen | 2007-06-27 19:43:46 +0000 |
commit | 0232f01a58a3c0a88e95c22589efec21f502f081 (patch) | |
tree | ff210fa6750c23972086ebbf816ead0a0a2f412a /OpenSim/Region/Environment/RegionManager.cs | |
parent | *Moved VersionInfo.cs to its correct place in OpenSim.csproj (diff) | |
download | opensim-SC_OLD-0232f01a58a3c0a88e95c22589efec21f502f081.zip opensim-SC_OLD-0232f01a58a3c0a88e95c22589efec21f502f081.tar.gz opensim-SC_OLD-0232f01a58a3c0a88e95c22589efec21f502f081.tar.bz2 opensim-SC_OLD-0232f01a58a3c0a88e95c22589efec21f502f081.tar.xz |
*Moved all the classes into their own file from LLSDHelpers.cs
*Some folder renaming to follow project Name
*Updated prebuild.xml
Diffstat (limited to 'OpenSim/Region/Environment/RegionManager.cs')
-rw-r--r-- | OpenSim/Region/Environment/RegionManager.cs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/RegionManager.cs b/OpenSim/Region/Environment/RegionManager.cs new file mode 100644 index 0000000..4ff55a8 --- /dev/null +++ b/OpenSim/Region/Environment/RegionManager.cs | |||
@@ -0,0 +1,31 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using OpenSim.Framework.Communications; | ||
5 | using OpenSim.Framework; | ||
6 | using OpenSim.Framework.Types; | ||
7 | using OpenSim.Framework.Servers; | ||
8 | using OpenSim.Region.Capabilities; | ||
9 | |||
10 | namespace OpenSim.Region.Environment | ||
11 | { | ||
12 | public class RegionManager //needs renaming , but first we need to rename the namespace | ||
13 | { | ||
14 | protected AuthenticateSessionsBase authenticateHandler; | ||
15 | protected RegionCommsListener regionCommsHost; | ||
16 | protected CommunicationsManager commsManager; | ||
17 | protected List<Caps> capsHandlers = new List<Caps>(); | ||
18 | protected BaseHttpServer httpListener; | ||
19 | |||
20 | protected Scenes.Scene m_Scene; | ||
21 | |||
22 | public ParcelManager parcelManager; | ||
23 | public EstateManager estateManager; | ||
24 | |||
25 | public RegionManager() | ||
26 | { | ||
27 | |||
28 | } | ||
29 | |||
30 | } | ||
31 | } | ||