using System;
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; }
}
}