using System;
namespace TrueCraft.Client.Input
{
///
/// Provides the event data for mouse events.
///
public class MouseEventArgs : EventArgs
{
///
/// Gets the X coordinate for the event.
///
public int X { get; private set; }
///
/// Gets the Y coordinate for the event.
///
public int Y { get; private set; }
///
/// Creates new mouse event data.
///
/// The X coordinate for the event.
/// The Y coordinate for the event.
public MouseEventArgs(int x, int y)
{
X = x;
Y = y;
}
}
}