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