mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-29 11:59:26 +01:00
11 lines
222 B
C#
11 lines
222 B
C#
namespace Penumbra.Interop.Structs;
|
|
|
|
[StructLayout(LayoutKind.Explicit)]
|
|
public unsafe struct ClipScheduler
|
|
{
|
|
[FieldOffset(0)]
|
|
public IntPtr* VTable;
|
|
|
|
[FieldOffset(0x38)]
|
|
public IntPtr SchedulerTimeline;
|
|
}
|