using System; namespace SAMP.API.EventData { public class PlayerPickUpPickupEventArgs : EventArgs { #region Class Variables private int m_iId; #endregion #region Constructor /// /// Initializes a new instance of the class. /// /// The ID of the pickup. public PlayerPickUpPickupEventArgs(int pickupid) { this.m_iId = pickupid; } #endregion #region Accessors & Mutators /// /// The ID of the pickup. /// public int PickUp { get { return this.m_iId; } } #endregion }; };