32 lines
799 B
C#
32 lines
799 B
C#
using System;
|
|
|
|
namespace TrueCraft.Client.Input
|
|
{
|
|
/// <summary>
|
|
/// Provides the event data for mouse events.
|
|
/// </summary>
|
|
public class MouseEventArgs : EventArgs
|
|
{
|
|
/// <summary>
|
|
/// Gets the X coordinate for the event.
|
|
/// </summary>
|
|
public int X { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Gets the Y coordinate for the event.
|
|
/// </summary>
|
|
public int Y { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Creates new mouse event data.
|
|
/// </summary>
|
|
/// <param name="x">The X coordinate for the event.</param>
|
|
/// <param name="y">The Y coordinate for the event.</param>
|
|
public MouseEventArgs(int x, int y)
|
|
{
|
|
X = x;
|
|
Y = y;
|
|
}
|
|
}
|
|
}
|