aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/LandUpdateArgs.cs
diff options
context:
space:
mode:
authorlbsa712008-07-08 11:25:18 +0000
committerlbsa712008-07-08 11:25:18 +0000
commitd9b802bb26ee659a68270ac05ea0406389afc883 (patch)
tree54a53c343d14e15a6236a0c36daa228f07ae57b6 /OpenSim/Framework/LandUpdateArgs.cs
parentRegionInfo.configMember can be null for dynamically created regions (diff)
downloadopensim-SC_OLD-d9b802bb26ee659a68270ac05ea0406389afc883.zip
opensim-SC_OLD-d9b802bb26ee659a68270ac05ea0406389afc883.tar.gz
opensim-SC_OLD-d9b802bb26ee659a68270ac05ea0406389afc883.tar.bz2
opensim-SC_OLD-d9b802bb26ee659a68270ac05ea0406389afc883.tar.xz
* Split out various classes from IClientAPI into their own files, in accordance with code standards
Diffstat (limited to 'OpenSim/Framework/LandUpdateArgs.cs')
-rw-r--r--OpenSim/Framework/LandUpdateArgs.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/OpenSim/Framework/LandUpdateArgs.cs b/OpenSim/Framework/LandUpdateArgs.cs
new file mode 100644
index 0000000..1f685f4
--- /dev/null
+++ b/OpenSim/Framework/LandUpdateArgs.cs
@@ -0,0 +1,26 @@
1using System;
2using libsecondlife;
3
4namespace OpenSim.Framework
5{
6 public class LandUpdateArgs : EventArgs
7 {
8 public LLUUID AuthBuyerID;
9 public Parcel.ParcelCategory Category;
10 public string Desc;
11 public LLUUID GroupID;
12 public byte LandingType;
13 public byte MediaAutoScale;
14 public LLUUID MediaID;
15 public string MediaURL;
16 public string MusicURL;
17 public string Name;
18 public uint ParcelFlags;
19 public float PassHours;
20 public int PassPrice;
21 public int SalePrice;
22 public LLUUID SnapshotID;
23 public LLVector3 UserLocation;
24 public LLVector3 UserLookAt;
25 }
26} \ No newline at end of file