using System; namespace SAMP.API.EventData { public class VehicleDeathEventArgs : EventArgs { #region Class Variables private Player m_qKiller; #endregion #region Constructor /// /// Initializes a new instance of the class. /// /// The player who destroyed the vehicle. public VehicleDeathEventArgs(Player killer) { this.m_qKiller = killer; } #endregion #region Accessors & Mutators /// /// Gets the player who destroyed the vehicle. /// public Player Killer { get { return this.m_qKiller; } } #endregion }; };