aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/LandData.cs
diff options
context:
space:
mode:
authorSean Dague2008-07-23 15:58:44 +0000
committerSean Dague2008-07-23 15:58:44 +0000
commitdf361be35f0f55e4363b04d376e0b243e8ed26a7 (patch)
tree5727394e9aa42fdccac0e8752edbdd25c9c4a870 /OpenSim/Framework/LandData.cs
parentrefactored LandData to use properties, and cleaned up the naming on (diff)
downloadopensim-SC_OLD-df361be35f0f55e4363b04d376e0b243e8ed26a7.zip
opensim-SC_OLD-df361be35f0f55e4363b04d376e0b243e8ed26a7.tar.gz
opensim-SC_OLD-df361be35f0f55e4363b04d376e0b243e8ed26a7.tar.bz2
opensim-SC_OLD-df361be35f0f55e4363b04d376e0b243e8ed26a7.tar.xz
make privates private
Diffstat (limited to 'OpenSim/Framework/LandData.cs')
-rw-r--r--OpenSim/Framework/LandData.cs78
1 files changed, 39 insertions, 39 deletions
diff --git a/OpenSim/Framework/LandData.cs b/OpenSim/Framework/LandData.cs
index 4553cc3..8c1e1a1 100644
--- a/OpenSim/Framework/LandData.cs
+++ b/OpenSim/Framework/LandData.cs
@@ -33,50 +33,50 @@ namespace OpenSim.Framework
33{ 33{
34 public class LandData 34 public class LandData
35 { 35 {
36 public LLVector3 _AABBMax = new LLVector3(); 36 private LLVector3 _AABBMax = new LLVector3();
37 public LLVector3 _AABBMin = new LLVector3(); 37 private LLVector3 _AABBMin = new LLVector3();
38 public int _area = 0; 38 private int _area = 0;
39 public uint _auctionID = 0; //Unemplemented. If set to 0, not being auctioned 39 private uint _auctionID = 0; //Unemplemented. If set to 0, not being auctioned
40 public LLUUID _authBuyerID = LLUUID.Zero; //Unemplemented. Authorized Buyer's UUID 40 private LLUUID _authBuyerID = LLUUID.Zero; //Unemplemented. Authorized Buyer's UUID
41 public Parcel.ParcelCategory _category = new Parcel.ParcelCategory(); //Unemplemented. Parcel's chosen category 41 private Parcel.ParcelCategory _category = new Parcel.ParcelCategory(); //Unemplemented. Parcel's chosen category
42 public int _claimDate = 0; 42 private int _claimDate = 0;
43 public int _claimPrice = 0; //Unemplemented 43 private int _claimPrice = 0; //Unemplemented
44 public LLUUID _globalID = LLUUID.Zero; 44 private LLUUID _globalID = LLUUID.Zero;
45 public LLUUID _groupID = LLUUID.Zero; //Unemplemented 45 private LLUUID _groupID = LLUUID.Zero; //Unemplemented
46 public int _groupPrims = 0; 46 private int _groupPrims = 0;
47 public bool _isGroupOwned = false; 47 private bool _isGroupOwned = false;
48 public byte[] _bitmap = new byte[512]; 48 private byte[] _bitmap = new byte[512];
49 public string _description = String.Empty; 49 private string _description = String.Empty;
50 50
51 51
52 public uint _flags = (uint) Parcel.ParcelFlags.AllowFly | (uint) Parcel.ParcelFlags.AllowLandmark | 52 private uint _flags = (uint) Parcel.ParcelFlags.AllowFly | (uint) Parcel.ParcelFlags.AllowLandmark |
53 (uint) Parcel.ParcelFlags.AllowAllObjectEntry | 53 (uint) Parcel.ParcelFlags.AllowAllObjectEntry |
54 (uint) Parcel.ParcelFlags.AllowDeedToGroup | (uint) Parcel.ParcelFlags.AllowTerraform | 54 (uint) Parcel.ParcelFlags.AllowDeedToGroup | (uint) Parcel.ParcelFlags.AllowTerraform |
55 (uint) Parcel.ParcelFlags.CreateObjects | (uint) Parcel.ParcelFlags.AllowOtherScripts | 55 (uint) Parcel.ParcelFlags.CreateObjects | (uint) Parcel.ParcelFlags.AllowOtherScripts |
56 (uint) Parcel.ParcelFlags.SoundLocal; 56 (uint) Parcel.ParcelFlags.SoundLocal;
57 57
58 public byte _landingType = 0; 58 private byte _landingType = 0;
59 public string _name = "Your Parcel"; 59 private string _name = "Your Parcel";
60 public Parcel.ParcelStatus _status = Parcel.ParcelStatus.Leased; 60 private Parcel.ParcelStatus _status = Parcel.ParcelStatus.Leased;
61 public int _localID = 0; 61 private int _localID = 0;
62 public byte _mediaAutoScale = 0; 62 private byte _mediaAutoScale = 0;
63 public LLUUID _mediaID = LLUUID.Zero; 63 private LLUUID _mediaID = LLUUID.Zero;
64 64
65 public string _mediaURL = String.Empty; 65 private string _mediaURL = String.Empty;
66 public string _musicURL = String.Empty; 66 private string _musicURL = String.Empty;
67 public int _otherPrims = 0; 67 private int _otherPrims = 0;
68 public LLUUID _ownerID = LLUUID.Zero; 68 private LLUUID _ownerID = LLUUID.Zero;
69 public int _ownerPrims = 0; 69 private int _ownerPrims = 0;
70 public List<ParcelManager.ParcelAccessEntry> _parcelAccessList = new List<ParcelManager.ParcelAccessEntry>(); 70 private List<ParcelManager.ParcelAccessEntry> _parcelAccessList = new List<ParcelManager.ParcelAccessEntry>();
71 public float _passHours = 0; 71 private float _passHours = 0;
72 public int _passPrice = 0; 72 private int _passPrice = 0;
73 public int _salePrice = 0; //Unemeplemented. Parcels price. 73 private int _salePrice = 0; //Unemeplemented. Parcels price.
74 public int _selectedPrims = 0; 74 private int _selectedPrims = 0;
75 public int _simwideArea = 0; 75 private int _simwideArea = 0;
76 public int _simwidePrims = 0; 76 private int _simwidePrims = 0;
77 public LLUUID _snapshotID = LLUUID.Zero; 77 private LLUUID _snapshotID = LLUUID.Zero;
78 public LLVector3 _userLocation = new LLVector3(); 78 private LLVector3 _userLocation = new LLVector3();
79 public LLVector3 _userLookAt = new LLVector3(); 79 private LLVector3 _userLookAt = new LLVector3();
80 80
81 public LLVector3 AABBMax { 81 public LLVector3 AABBMax {
82 get { 82 get {