mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 10:15:33 +08:00
* Added "create-region" console command. Syntax: create-region <name> <region.xml filename>
* Spring cleaning.
This commit is contained in:
@@ -131,6 +131,10 @@ namespace OpenSim.Framework.Types
|
||||
{
|
||||
return m_externalHostName;
|
||||
}
|
||||
set
|
||||
{
|
||||
m_externalHostName = value;
|
||||
}
|
||||
}
|
||||
|
||||
protected IPEndPoint m_internalEndPoint;
|
||||
@@ -140,6 +144,10 @@ namespace OpenSim.Framework.Types
|
||||
{
|
||||
return m_internalEndPoint;
|
||||
}
|
||||
set
|
||||
{
|
||||
m_internalEndPoint = value;
|
||||
}
|
||||
}
|
||||
|
||||
protected uint? m_regionLocX;
|
||||
@@ -149,6 +157,10 @@ namespace OpenSim.Framework.Types
|
||||
{
|
||||
return m_regionLocX.Value;
|
||||
}
|
||||
set
|
||||
{
|
||||
m_regionLocX = value;
|
||||
}
|
||||
}
|
||||
|
||||
protected uint? m_regionLocY;
|
||||
@@ -158,6 +170,10 @@ namespace OpenSim.Framework.Types
|
||||
{
|
||||
return m_regionLocY.Value;
|
||||
}
|
||||
set
|
||||
{
|
||||
m_regionLocY = value;
|
||||
}
|
||||
}
|
||||
|
||||
public ulong RegionHandle
|
||||
@@ -209,6 +225,11 @@ namespace OpenSim.Framework.Types
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
|
||||
public RegionInfo()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
//not in use, should swap to nini though.
|
||||
|
||||
Reference in New Issue
Block a user