OpenMetaverse.ParcelDwellReplyEventArgs.ParcelDwellReplyEventArgs C# (CSharp) Method

ParcelDwellReplyEventArgs() public method

Construct a new instance of the ParcelDwellReplyEventArgs class
public ParcelDwellReplyEventArgs ( UUID parcelID, int localID, float dwell ) : System
parcelID UUID The global ID of the parcel
localID int The simulator specific ID of the parcel
dwell float The calculated dwell for the parcel
return System
        public ParcelDwellReplyEventArgs(UUID parcelID, int localID, float dwell)
        {
            this.m_ParcelID = parcelID;
            this.m_LocalID = localID;
            this.m_Dwell = dwell;
        }
ParcelDwellReplyEventArgs