aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim.RegionServer/OpenSimApplicationBase.cs
diff options
context:
space:
mode:
authorMW2007-05-16 18:59:51 +0000
committerMW2007-05-16 18:59:51 +0000
commit2a6d69b2b8ab84eec58bf8d0fb786ac6fdfba73f (patch)
tree638f3d03f5ba5184dca03b8cf60211e90976eee3 /OpenSim.RegionServer/OpenSimApplicationBase.cs
parentAdded OpenSimApplication as a base class to OpenSimMain (diff)
downloadopensim-SC_OLD-2a6d69b2b8ab84eec58bf8d0fb786ac6fdfba73f.zip
opensim-SC_OLD-2a6d69b2b8ab84eec58bf8d0fb786ac6fdfba73f.tar.gz
opensim-SC_OLD-2a6d69b2b8ab84eec58bf8d0fb786ac6fdfba73f.tar.bz2
opensim-SC_OLD-2a6d69b2b8ab84eec58bf8d0fb786ac6fdfba73f.tar.xz
Moved the OpenSimMain class into the OpenSim.exe project
Diffstat (limited to '')
-rw-r--r--OpenSim.RegionServer/OpenSimApplicationBase.cs (renamed from OpenSim.RegionServer/OpenSimApplication.cs)6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim.RegionServer/OpenSimApplication.cs b/OpenSim.RegionServer/OpenSimApplicationBase.cs
index f7bcd21..0c5a5cf 100644
--- a/OpenSim.RegionServer/OpenSimApplication.cs
+++ b/OpenSim.RegionServer/OpenSimApplicationBase.cs
@@ -25,7 +25,7 @@ using OpenSim.GenericConfig;
25 25
26namespace OpenSim 26namespace OpenSim
27{ 27{
28 public class OpenSimApplication 28 public class OpenSimApplicationBase
29 { 29 {
30 protected IGenericConfig localConfig; 30 protected IGenericConfig localConfig;
31 protected PhysicsManager physManager; 31 protected PhysicsManager physManager;
@@ -51,12 +51,12 @@ namespace OpenSim
51 51
52 protected ConsoleBase m_console; 52 protected ConsoleBase m_console;
53 53
54 public OpenSimApplication() 54 public OpenSimApplicationBase()
55 { 55 {
56 56
57 } 57 }
58 58
59 public OpenSimApplication(bool sandBoxMode, bool startLoginServer, string physicsEngine, bool useConfigFile, bool silent, string configFile) 59 public OpenSimApplicationBase(bool sandBoxMode, bool startLoginServer, string physicsEngine, bool useConfigFile, bool silent, string configFile)
60 { 60 {
61 this.configFileSetup = useConfigFile; 61 this.configFileSetup = useConfigFile;
62 m_sandbox = sandBoxMode; 62 m_sandbox = sandBoxMode;