mirror of
https://github.com/opensim/opensim.git
synced 2026-05-14 18:55:39 +08:00
* Split out various classes from IClientAPI into their own files, in accordance with code standards
This commit is contained in:
26
OpenSim/Framework/LandUpdateArgs.cs
Normal file
26
OpenSim/Framework/LandUpdateArgs.cs
Normal file
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user