more startup/initialisation refactoring

This commit is contained in:
MW
2008-11-05 17:45:56 +00:00
parent 2a249373d3
commit 079469b3f5
4 changed files with 64 additions and 47 deletions

View File

@@ -21,12 +21,12 @@ namespace OpenSim.Framework
set { m_meshEngineName = value; }
}
private bool m_sandbox;
private bool m_standalone;
public bool Sandbox
public bool Standalone
{
get { return m_sandbox; }
set { m_sandbox = value; }
get { return m_standalone; }
set { m_standalone = value; }
}
private bool m_see_into_region_from_neighbor;