mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 22:17:22 +01:00
18 lines
No EOL
396 B
C#
18 lines
No EOL
396 B
C#
using System.Runtime.InteropServices;
|
|
using FFXIVClientStructs.FFXIV.Client.Graphics.Render;
|
|
|
|
namespace Penumbra.Interop.Structs;
|
|
|
|
[StructLayout( LayoutKind.Explicit )]
|
|
public unsafe struct Material
|
|
{
|
|
[FieldOffset( 0x10 )]
|
|
public ResourceHandle* ResourceHandle;
|
|
}
|
|
|
|
[StructLayout( LayoutKind.Explicit )]
|
|
public unsafe struct MaterialData
|
|
{
|
|
[FieldOffset( 0x0 )]
|
|
public byte* Data;
|
|
} |