summaryrefslogtreecommitdiff
path: root/src/SMAPI/Events/EventArgsClickableMenuChanged.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI/Events/EventArgsClickableMenuChanged.cs')
-rw-r--r--src/SMAPI/Events/EventArgsClickableMenuChanged.cs33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/SMAPI/Events/EventArgsClickableMenuChanged.cs b/src/SMAPI/Events/EventArgsClickableMenuChanged.cs
deleted file mode 100644
index a0b903b7..00000000
--- a/src/SMAPI/Events/EventArgsClickableMenuChanged.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-#if !SMAPI_3_0_STRICT
-using System;
-using StardewValley.Menus;
-
-namespace StardewModdingAPI.Events
-{
- /// <summary>Event arguments for a <see cref="MenuEvents.MenuChanged"/> event.</summary>
- public class EventArgsClickableMenuChanged : EventArgs
- {
- /*********
- ** Accessors
- *********/
- /// <summary>The previous menu.</summary>
- public IClickableMenu NewMenu { get; }
-
- /// <summary>The current menu.</summary>
- public IClickableMenu PriorMenu { get; }
-
-
- /*********
- ** Public methods
- *********/
- /// <summary>Construct an instance.</summary>
- /// <param name="priorMenu">The previous menu.</param>
- /// <param name="newMenu">The current menu.</param>
- public EventArgsClickableMenuChanged(IClickableMenu priorMenu, IClickableMenu newMenu)
- {
- this.NewMenu = newMenu;
- this.PriorMenu = priorMenu;
- }
- }
-}
-#endif