using System; namespace SAMP.API.EventData { public class VehicleStreamEventArgs : EventArgs { #region Class Variables private Player m_qPlayer; #endregion #region Constructor /// /// Initializes a new instance of the class. /// /// The player who the vehicle streamed in or out for. public VehicleStreamEventArgs(Player forplayer) { this.m_qPlayer = forplayer; } #endregion #region Accessors & Mutators /// /// Gets the player who the vehicle streamed in or out for. /// public Player ForPlayer { get { return this.m_qPlayer; } } #endregion }; };