mirror of
https://github.com/Ale32bit/Capy64.git
synced 2025-12-16 11:05:45 +00:00
13 lines
337 B
C#
13 lines
337 B
C#
using Microsoft.Xna.Framework;
|
|
using Microsoft.Xna.Framework.Input;
|
|
using System;
|
|
using static Capy64.Eventing.InputManager;
|
|
|
|
namespace Capy64.Eventing.Events;
|
|
|
|
public class MouseButtonEvent : EventArgs
|
|
{
|
|
public MouseButton Button { get; set; }
|
|
public ButtonState State { get; set; }
|
|
public Point Position { get; set; }
|
|
}
|