OpenMetaverse.ParcelDwellReplyEventArgs.ParcelDwellReplyEventArgs C# (CSharp) Méthode

ParcelDwellReplyEventArgs() public méthode

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
Résultat System
        public ParcelDwellReplyEventArgs(UUID parcelID, int localID, float dwell)
        {
            this.m_ParcelID = parcelID;
            this.m_LocalID = localID;
            this.m_Dwell = dwell;
        }
ParcelDwellReplyEventArgs