* Added "create-region" console command. Syntax: create-region <name> <region.xml filename>

* Spring cleaning.
This commit is contained in:
Adam Frisby
2007-10-23 12:44:12 +00:00
parent 1c8809077e
commit 0c9933fd0f
3 changed files with 57 additions and 31 deletions

View File

@@ -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.