From d9b802bb26ee659a68270ac05ea0406389afc883 Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Tue, 8 Jul 2008 11:25:18 +0000 Subject: * Split out various classes from IClientAPI into their own files, in accordance with code standards --- OpenSim/Framework/LandUpdateArgs.cs | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 OpenSim/Framework/LandUpdateArgs.cs (limited to 'OpenSim/Framework/LandUpdateArgs.cs') 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 @@ +using System; +using libsecondlife; + +namespace OpenSim.Framework +{ + public class LandUpdateArgs : EventArgs + { + public LLUUID AuthBuyerID; + public Parcel.ParcelCategory Category; + public string Desc; + public LLUUID GroupID; + public byte LandingType; + public byte MediaAutoScale; + public LLUUID MediaID; + public string MediaURL; + public string MusicURL; + public string Name; + public uint ParcelFlags; + public float PassHours; + public int PassPrice; + public int SalePrice; + public LLUUID SnapshotID; + public LLVector3 UserLocation; + public LLVector3 UserLookAt; + } +} \ No newline at end of file -- cgit v1.1