10 lines
206 B
C#
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; }
|
|
}
|
|
} |