Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ public unsafe partial struct AtkComponentDragDrop : ICreatable<AtkComponentDragD
public partial void SetQuantity(int quantity);

[MemberFunction("E8 ?? ?? ?? ?? F2 41 0F 10 87")]
public partial void AttachTooltip(AtkTooltipType type, ushort parentId, AtkResNode* targetNode, AtkTooltipArgs* tooltipArgs);
public partial void AttachTooltip(AtkTooltipType type, ushort parentId, AtkTooltipArgs* tooltipArgs);

[Obsolete("Invalid parameters. Use overload without targetNode.", true)]
public void AttachTooltip(AtkTooltipType type, ushort parentId, AtkResNode* targetNode, AtkTooltipArgs* tooltipArgs) => AttachTooltip(type, parentId, tooltipArgs);

[MemberFunction("E8 ?? ?? ?? ?? 48 8B 7E ?? 48 85 FF 75")]
public partial void DetachTooltip();
Expand Down
Loading