-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update various thingies * Add AgentMiragePrismPrismSetConvert * Restore AtkUnitManager.AtkEventListener * Add missing using * Fix data.yml
- Loading branch information
1 parent
3190841
commit b668052
Showing
8 changed files
with
96 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
FFXIVClientStructs/FFXIV/Client/UI/Agent/AgentInventory.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
namespace FFXIVClientStructs.FFXIV.Client.UI.Agent; | ||
|
||
// Client::UI::Agent::AgentInventory | ||
// Client::UI::Agent::AgentInterface | ||
// Component::GUI::AtkModuleInterface::AtkEventInterface | ||
[Agent(AgentId.Inventory)] | ||
[GenerateInterop] | ||
[Inherits<AgentInterface>] | ||
[StructLayout(LayoutKind.Explicit, Size = 0x68)] | ||
public partial struct AgentInventory { | ||
[FieldOffset(0x30)] public uint OpenTitleId; | ||
[FieldOffset(0x34)] public uint OpenAddonId; | ||
[FieldOffset(0x38)] public uint OpenType; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
FFXIVClientStructs/FFXIV/Client/UI/Agent/AgentMiragePrismPrismSetConvert.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using FFXIVClientStructs.FFXIV.Client.Game; | ||
|
||
namespace FFXIVClientStructs.FFXIV.Client.UI.Agent; | ||
|
||
// Client::UI::Agent::AgentMiragePrismPrismSetConvert | ||
// Client::UI::Agent::AgentInterface | ||
// Component::GUI::AtkModuleInterface::AtkEventInterface | ||
[Agent(AgentId.MiragePrismPrismSetConvert)] | ||
[GenerateInterop] | ||
[Inherits<AgentInterface>] | ||
[StructLayout(LayoutKind.Explicit, Size = 0x30)] | ||
public unsafe partial struct AgentMiragePrismPrismSetConvert { | ||
[MemberFunction("E8 ?? ?? ?? ?? 48 8B 43 28 C6 40 02 0B")] | ||
public partial void Open(uint itemId, InventoryType inventoryType, int slot, int openerAddonId, bool enableStoring); | ||
|
||
// OpenPreview in data.yml | ||
public void Open(uint itemId) => Open(itemId, InventoryType.Invalid, 0, 0, false); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters