summaryrefslogtreecommitdiff
path: root/src/SMAPI/Events/MenuChangedEventArgs.cs
blob: c37fd21694f308ac1659d84d58291ba1acaaf294 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using StardewValley.Menus;

namespace StardewModdingAPI.Events
{
    /// <summary>Event arguments for an <see cref="IDisplayEvents.MenuChanged"/> event.</summary>
    public class MenuChangedEventArgs : EventArgs
    {
        /*********
        ** Accessors
        *********/
        /// <summary>The previous menu, if any.</summary>
        public IClickableMenu? OldMenu { get; }

        /// <summary>The current menu, if any.</summary>
        public IClickableMenu? NewMenu { get; }


        /*********
        ** Public methods
        *********/
        /// <summary>Construct an instance.</summary>
        /// <param name="oldMenu">The previous menu, if any.</param>
        /// <param name="newMenu">The current menu, if any.</param>
        internal MenuChangedEventArgs(IClickableMenu? oldMenu, IClickableMenu? newMenu)
        {
            this.OldMenu = oldMenu;
            this.NewMenu = newMenu;
        }
    }
}