mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-15 13:14:17 +01:00
17 lines
No EOL
384 B
C#
17 lines
No EOL
384 B
C#
using System.Runtime.InteropServices;
|
|
using FFXIVClientStructs.FFXIV.Client.Graphics.Scene;
|
|
|
|
namespace Penumbra.Interop.Structs;
|
|
|
|
[StructLayout( LayoutKind.Explicit )]
|
|
public unsafe struct HumanExt
|
|
{
|
|
[FieldOffset( 0x0 )]
|
|
public Human Human;
|
|
|
|
[FieldOffset( 0x9E8 )]
|
|
public ResourceHandle* Decal;
|
|
|
|
[FieldOffset( 0x9F0 )]
|
|
public ResourceHandle* LegacyBodyDecal;
|
|
} |