mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-14 12:44:19 +01:00
11 lines
No EOL
224 B
C#
11 lines
No EOL
224 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Penumbra.Structs
|
|
{
|
|
[StructLayout( LayoutKind.Explicit )]
|
|
public unsafe struct ResourceHandle
|
|
{
|
|
[FieldOffset( 0x48 )]
|
|
public byte* FileName;
|
|
}
|
|
} |