forked from aly/qstbak
muffin v7.5.5
This commit is contained in:
parent
a8f2c1df37
commit
6266f9e6b7
110 changed files with 14907 additions and 6073 deletions
13
Auspex/Auspex.Lighting.Internal/GameLightVTable.cs
Normal file
13
Auspex/Auspex.Lighting.Internal/GameLightVTable.cs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace Auspex.Lighting.Internal;
|
||||
|
||||
[StructLayout(LayoutKind.Explicit)]
|
||||
internal struct GameLightVTable
|
||||
{
|
||||
[FieldOffset(0)]
|
||||
public unsafe delegate* unmanaged<GameLightData*, bool, void> Destructor;
|
||||
|
||||
[FieldOffset(8)]
|
||||
public unsafe delegate* unmanaged<GameLightData*, void> Cleanup;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue