10 lines
209 B
C#
10 lines
209 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Auspex.Vfx.Native;
|
|
|
|
[StructLayout(LayoutKind.Explicit, Size = 480)]
|
|
public struct VfxData
|
|
{
|
|
[FieldOffset(440)]
|
|
public unsafe VfxResourceInstance* Instance;
|
|
}
|