This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
TrueCraft/TrueCraft.Client/Input/GamePadButtonEventArgs.cs
2015-10-01 08:46:09 -04:00

10 lines
206 B
C#

using System;
using Microsoft.Xna.Framework.Input;
namespace TrueCraft.Client.Input
{
public class GamePadButtonEventArgs : GamePadEventArgs
{
public Buttons Button { get; set; }
}
}