Penumbra/Penumbra/Interop/Structs/ClipScheduler.cs
2024-07-07 16:16:58 +02:00

13 lines
294 B
C#

using FFXIVClientStructs.FFXIV.Client.System.Scheduler.Base;
namespace Penumbra.Interop.Structs;
[StructLayout(LayoutKind.Explicit)]
public unsafe struct ClipScheduler
{
[FieldOffset(0)]
public nint* VTable;
[FieldOffset(0x38)]
public SchedulerTimeline* SchedulerTimeline;
}