Implement reloading eqdp, gmp, awt, etc.

This commit is contained in:
pmgr 2021-02-21 03:39:36 +00:00
parent edc616da36
commit ab3cc6dc78
2 changed files with 63 additions and 1 deletions

View file

@ -0,0 +1,13 @@
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#
}
}