mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-18 22:07:44 +01:00
Add events based on AgentUpdateFlag
This commit is contained in:
parent
116e8aadbc
commit
0b6f3b8bcf
3 changed files with 103 additions and 18 deletions
|
|
@ -26,6 +26,27 @@ public unsafe interface IGameGui
|
|||
/// </summary>
|
||||
public event EventHandler<HoveredAction> HoveredActionChanged;
|
||||
|
||||
/// <summary>
|
||||
/// Event that is fired when the inventory has been updated.
|
||||
/// </summary>
|
||||
event Action InventoryUpdate;
|
||||
|
||||
/// <summary>
|
||||
/// Fired when the action bar needs to be updated, e.g. after changing Class/Job,
|
||||
/// updating Gear Sets, modifying Macros, or executing a hotbar slot.
|
||||
/// </summary>
|
||||
event Action ActionBarUpdate;
|
||||
|
||||
/// <summary>
|
||||
/// Event that is fired when collectibles, content or systems were unlocked.
|
||||
/// </summary>
|
||||
event Action UnlocksUpdate;
|
||||
|
||||
/// <summary>
|
||||
/// Event that is fired when the enable state of MainCommands has been updated.
|
||||
/// </summary>
|
||||
event Action MainCommandEnabledStateUpdate;
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether the game UI is hidden.
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue