summaryrefslogtreecommitdiff
path: root/src/SMAPI/Events/EventArgsControllerButtonReleased.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI/Events/EventArgsControllerButtonReleased.cs')
-rw-r--r--src/SMAPI/Events/EventArgsControllerButtonReleased.cs34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/SMAPI/Events/EventArgsControllerButtonReleased.cs b/src/SMAPI/Events/EventArgsControllerButtonReleased.cs
deleted file mode 100644
index d6d6d840..00000000
--- a/src/SMAPI/Events/EventArgsControllerButtonReleased.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-#if !SMAPI_3_0_STRICT
-using System;
-using Microsoft.Xna.Framework;
-using Microsoft.Xna.Framework.Input;
-
-namespace StardewModdingAPI.Events
-{
- /// <summary>Event arguments for a <see cref="ControlEvents.ControllerButtonReleased"/> event.</summary>
- public class EventArgsControllerButtonReleased : EventArgs
- {
- /*********
- ** Accessors
- *********/
- /// <summary>The player who pressed the button.</summary>
- public PlayerIndex PlayerIndex { get; }
-
- /// <summary>The controller button that was pressed.</summary>
- public Buttons ButtonReleased { 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 released.</param>
- public EventArgsControllerButtonReleased(PlayerIndex playerIndex, Buttons button)
- {
- this.PlayerIndex = playerIndex;
- this.ButtonReleased = button;
- }
- }
-}
-#endif