Skip to content

Commit

Permalink
Fixed missing FixedSizeArray attribute. (#1288)
Browse files Browse the repository at this point in the history
  • Loading branch information
awgil authored Jan 26, 2025
1 parent c379bbd commit 1d7fe60
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace FFXIVClientStructs.FFXIV.Client.Game.Character;
[GenerateInterop]
[StructLayout(LayoutKind.Explicit, Size = 0xF00)]
public unsafe partial struct ActionEffectHandler {
[FieldOffset(0)] internal FixedSizeArray32<EffectEntry> _incomingEffects;
[FieldOffset(0), FixedSizeArray] internal FixedSizeArray32<EffectEntry> _incomingEffects;

[GenerateInterop]
[StructLayout(LayoutKind.Explicit, Size = 0x78)]
Expand Down

0 comments on commit 1d7fe60

Please sign in to comment.