mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-18 06:34:19 +01:00
13 lines
No EOL
275 B
C#
13 lines
No EOL
275 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Penumbra.Structs
|
|
{
|
|
[StructLayout( LayoutKind.Sequential )]
|
|
public unsafe struct CharacterResourceManager
|
|
{
|
|
public void* VTable;
|
|
|
|
public IntPtr Resources; // Size: 85, I hate C#
|
|
}
|
|
} |