summaryrefslogtreecommitdiff
path: root/src/SMAPI/Events/EventArgsControllerButtonPressed.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI/Events/EventArgsControllerButtonPressed.cs')
-rw-r--r--src/SMAPI/Events/EventArgsControllerButtonPressed.cs32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/SMAPI/Events/EventArgsControllerButtonPressed.cs b/src/SMAPI/Events/EventArgsControllerButtonPressed.cs
new file mode 100644
index 00000000..3243b80b
--- /dev/null
+++ b/src/SMAPI/Events/EventArgsControllerButtonPressed.cs
@@ -0,0 +1,32 @@
+using System;
+using Microsoft.Xna.Framework;
+using Microsoft.Xna.Framework.Input;
+
+namespace StardewModdingAPI.Events
+{
+ /// <summary>Event arguments for a <see cref="ControlEvents.ControllerButtonPressed"/> event.</summary>
+ public class EventArgsControllerButtonPressed : EventArgs
+ {
+ /*********
+ ** Accessors
+ *********/
+ /// <summary>The player who pressed the button.</summary>
+ public PlayerIndex PlayerIndex { get; }
+
+ /// <summary>The controller button that was pressed.</summary>
+ public Buttons ButtonPressed { get; }
+
+
+ /*********
+ ** Public methods
+ *********/
+ /// <summary>Construct an instance.</summary>
+ /// <param name="playerIndex">The player who pressed the button.</param>
+ /// <param name="button">The controller button that was pressed.</param>
+ public EventArgsControllerButtonPressed(PlayerIndex playerIndex, Buttons button)
+ {
+ this.PlayerIndex = playerIndex;
+ this.ButtonPressed = button;
+ }
+ }
+}