From d9ccc2d89bed6bb42f0d981ca258c126f5654be1 Mon Sep 17 00:00:00 2001 From: Raymond Date: Sun, 22 Aug 2021 21:50:28 -0400 Subject: [PATCH] Add missing event keywords --- Dalamud/Game/Gui/GameGui.cs | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Dalamud/Game/Gui/GameGui.cs b/Dalamud/Game/Gui/GameGui.cs index 6603dd911..06e5eeaba 100644 --- a/Dalamud/Game/Gui/GameGui.cs +++ b/Dalamud/Game/Gui/GameGui.cs @@ -125,6 +125,16 @@ namespace Dalamud.Game.Gui /// public event EventHandler OnUiHideToggled; + /// + /// Event that is fired when the currently hovered item changes. + /// + public event EventHandler HoveredItemChanged; + + /// + /// Event that is fired when the currently hovered action changes. + /// + public event EventHandler HoveredActionChanged; + /// /// Gets a value indicating whether the game UI is hidden. /// @@ -141,16 +151,6 @@ namespace Dalamud.Game.Gui /// public HoveredAction HoveredAction { get; } = new HoveredAction(); - /// - /// Gets or sets the event that is fired when the currently hovered item changes. - /// - public EventHandler HoveredItemChanged { get; set; } - - /// - /// Gets or sets the event that is fired when the currently hovered action changes. - /// - public EventHandler HoveredActionChanged { get; set; } - /// /// Opens the in-game map with a flag on the location of the parameter. ///