mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 12:14:16 +01:00
Use more of the CS version for ActionDetailHover (#2079)
* - Use CS for delegate - Sync HoverActionKind with CS version * Undo changes in favor of #2080
This commit is contained in:
parent
4e76669779
commit
7c6ed6de76
2 changed files with 123 additions and 18 deletions
|
|
@ -16,6 +16,11 @@ public enum HoverActionKind
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Action = 28,
|
Action = 28,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A crafting action is hovered.
|
||||||
|
/// </summary>
|
||||||
|
CraftingAction = 29,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A general action is hovered.
|
/// A general action is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
@ -24,7 +29,7 @@ public enum HoverActionKind
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A companion order type of action is hovered.
|
/// A companion order type of action is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompanionOrder = 31,
|
CompanionOrder = 31, // Game Term: BuddyOrder
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A main command type of action is hovered.
|
/// A main command type of action is hovered.
|
||||||
|
|
@ -36,6 +41,11 @@ public enum HoverActionKind
|
||||||
/// </summary>
|
/// </summary>
|
||||||
ExtraCommand = 33,
|
ExtraCommand = 33,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A companion action is hovered.
|
||||||
|
/// </summary>
|
||||||
|
Companion = 34,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A pet order type of action is hovered.
|
/// A pet order type of action is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
@ -45,4 +55,99 @@ public enum HoverActionKind
|
||||||
/// A trait is hovered.
|
/// A trait is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Trait = 36,
|
Trait = 36,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A buddy action is hovered.
|
||||||
|
/// </summary>
|
||||||
|
BuddyAction = 37,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A company action is hovered.
|
||||||
|
/// </summary>
|
||||||
|
CompanyAction = 38,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A mount is hovered.
|
||||||
|
/// </summary>
|
||||||
|
Mount = 39,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A chocobo race action is hovered.
|
||||||
|
/// </summary>
|
||||||
|
ChocoboRaceAction = 40,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A chocobo race item is hovered.
|
||||||
|
/// </summary>
|
||||||
|
ChocoboRaceItem = 41,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A deep dungeon equipment is hovered.
|
||||||
|
/// </summary>
|
||||||
|
DeepDungeonEquipment = 42,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A deep dungeon equipment 2 is hovered.
|
||||||
|
/// </summary>
|
||||||
|
DeepDungeonEquipment2 = 43,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A deep dungeon item is hovered.
|
||||||
|
/// </summary>
|
||||||
|
DeepDungeonItem = 44,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A quick chat is hovered.
|
||||||
|
/// </summary>
|
||||||
|
QuickChat = 45,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// An action combo route is hovered.
|
||||||
|
/// </summary>
|
||||||
|
ActionComboRoute = 46,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A pvp trait is hovered.
|
||||||
|
/// </summary>
|
||||||
|
PvPSelectTrait = 47,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A squadron action is hovered.
|
||||||
|
/// </summary>
|
||||||
|
BgcArmyAction = 48,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A perform action is hovered.
|
||||||
|
/// </summary>
|
||||||
|
Perform = 49,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A deep dungeon magic stone is hovered.
|
||||||
|
/// </summary>
|
||||||
|
DeepDungeonMagicStone = 50,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A deep dungeon demiclone is hovered.
|
||||||
|
/// </summary>
|
||||||
|
DeepDungeonDemiclone = 51,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// An eureka magia action is hovered.
|
||||||
|
/// </summary>
|
||||||
|
EurekaMagiaAction = 52,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// An island sanctuary temporary item is hovered.
|
||||||
|
/// </summary>
|
||||||
|
MYCTemporaryItem = 53,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// An ornament is hovered.
|
||||||
|
/// </summary>
|
||||||
|
Ornament = 54,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Glasses are hovered.
|
||||||
|
/// </summary>
|
||||||
|
Glasses = 55,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue