using System; namespace SAMP.API.EventData { public class PlayerClickMapEventArgs : EventArgs { #region Class Variables private Vector3 m_qPosition; #endregion #region Constructor /// /// Initializes a new instance of the class. /// /// The coordinates of where the player clicked. public PlayerClickMapEventArgs(Vector3 position) { this.m_qPosition = position; } #endregion #region Accessors & Mutators /// /// The coordinates of where the player clicked /// public Vector3 Position { get { return this.m_qPosition; } } #endregion }; };