aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/MapBlockData.cs
diff options
context:
space:
mode:
authorAdam Frisby2008-04-29 14:04:55 +0000
committerAdam Frisby2008-04-29 14:04:55 +0000
commit375163a6fece8b3a57c7555246abe8338223a599 (patch)
tree163001ca96a4b4d08589e9772f78510677d5d0dc /OpenSim/Framework/MapBlockData.cs
parentPatch from Melanie: 0001087: Crash to bash de-linking objects. Thanks Melanie! (diff)
downloadopensim-SC_OLD-375163a6fece8b3a57c7555246abe8338223a599.zip
opensim-SC_OLD-375163a6fece8b3a57c7555246abe8338223a599.tar.gz
opensim-SC_OLD-375163a6fece8b3a57c7555246abe8338223a599.tar.bz2
opensim-SC_OLD-375163a6fece8b3a57c7555246abe8338223a599.tar.xz
* Spring cleaning.
* Added new generic "Location" class to handle 2D integer locations. Going to use it to replace all RegionHandle and X,Y coordinate references throughout the entire project. You have been warned.
Diffstat (limited to 'OpenSim/Framework/MapBlockData.cs')
-rw-r--r--OpenSim/Framework/MapBlockData.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Framework/MapBlockData.cs b/OpenSim/Framework/MapBlockData.cs
index b9c88fa..60f5be3 100644
--- a/OpenSim/Framework/MapBlockData.cs
+++ b/OpenSim/Framework/MapBlockData.cs
@@ -32,18 +32,18 @@ namespace OpenSim.Framework
32{ 32{
33 public class MapBlockData 33 public class MapBlockData
34 { 34 {
35 public uint Flags;
36 public ushort X;
37 public ushort Y;
38 public byte Agents;
39 public byte Access; 35 public byte Access;
40 public byte WaterHeight; 36 public byte Agents;
37 public uint Flags;
41 public LLUUID MapImageId; 38 public LLUUID MapImageId;
42 public String Name; 39 public String Name;
43 public uint RegionFlags; 40 public uint RegionFlags;
41 public byte WaterHeight;
42 public ushort X;
43 public ushort Y;
44 44
45 public MapBlockData() 45 public MapBlockData()
46 { 46 {
47 } 47 }
48 } 48 }
49} 49} \ No newline at end of file