aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/RegionInfo.cs
diff options
context:
space:
mode:
authorMelanie2012-03-25 20:07:43 +0100
committerMelanie2012-03-25 20:07:43 +0100
commit44f1f876562dd41c0c619462a57d6a33731729ac (patch)
tree96c7a583dcb483f2fe8d19787a381fae1985b1b1 /OpenSim/Framework/RegionInfo.cs
parentMerge branch 'master' into careminster (diff)
parentSimplify the module invocation registration. The types and method name (diff)
downloadopensim-SC_OLD-44f1f876562dd41c0c619462a57d6a33731729ac.zip
opensim-SC_OLD-44f1f876562dd41c0c619462a57d6a33731729ac.tar.gz
opensim-SC_OLD-44f1f876562dd41c0c619462a57d6a33731729ac.tar.bz2
opensim-SC_OLD-44f1f876562dd41c0c619462a57d6a33731729ac.tar.xz
Merge branch 'master' into careminster
Diffstat (limited to 'OpenSim/Framework/RegionInfo.cs')
-rw-r--r--OpenSim/Framework/RegionInfo.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Framework/RegionInfo.cs b/OpenSim/Framework/RegionInfo.cs
index 7a3e67f..1b2f681 100644
--- a/OpenSim/Framework/RegionInfo.cs
+++ b/OpenSim/Framework/RegionInfo.cs
@@ -423,12 +423,18 @@ namespace OpenSim.Framework
423 set { m_internalEndPoint = value; } 423 set { m_internalEndPoint = value; }
424 } 424 }
425 425
426 /// <summary>
427 /// The x co-ordinate of this region in map tiles (e.g. 1000).
428 /// </summary>
426 public uint RegionLocX 429 public uint RegionLocX
427 { 430 {
428 get { return m_regionLocX.Value; } 431 get { return m_regionLocX.Value; }
429 set { m_regionLocX = value; } 432 set { m_regionLocX = value; }
430 } 433 }
431 434
435 /// <summary>
436 /// The y co-ordinate of this region in map tiles (e.g. 1000).
437 /// </summary>
432 public uint RegionLocY 438 public uint RegionLocY
433 { 439 {
434 get { return m_regionLocY.Value; } 440 get { return m_regionLocY.Value; }