mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-20 07:34:25 +01:00
13 lines
294 B
C#
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;
|
|
}
|