using System;
namespace Chernobyl.Interface.Tool
{
///
/// An event for a cursor click event on an interface item.
///
public class ClickEventArgs : EventArgs
{
///
/// Constructor.
///
/// The cursor that clicked on the interface item.
public ClickEventArgs(ICursor cursor)
{
Cursor = cursor;
}
///
/// The cursor that clicked on the interface item.
///
public ICursor Cursor { get; protected set; }
}
}