using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Terminal.Gui { /// /// Event args for events which relate to a single /// public class PointEventArgs : EventArgs{ /// /// Creates a new instance of the class /// /// public PointEventArgs (Point p) { this.Point = p; } /// /// The point the event happened at /// public Point Point { get; } } }