mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-02-21 07:17:53 +01:00
19 lines
No EOL
415 B
C#
19 lines
No EOL
415 B
C#
using FFXIVClientStructs.FFXIV.Client.Graphics.Scene;
|
|
|
|
namespace Penumbra.Interop.Structs;
|
|
|
|
[StructLayout( LayoutKind.Explicit )]
|
|
public unsafe struct HumanExt
|
|
{
|
|
[FieldOffset( 0x0 )]
|
|
public Human Human;
|
|
|
|
[FieldOffset( 0x0 )]
|
|
public CharacterBaseExt CharacterBase;
|
|
|
|
[FieldOffset( 0x9E8 )]
|
|
public ResourceHandle* Decal;
|
|
|
|
[FieldOffset( 0x9F0 )]
|
|
public ResourceHandle* LegacyBodyDecal;
|
|
} |