This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,26 @@
using System;
using System.Runtime.InteropServices;
namespace UnityEngineInternal.Input
{
// Token: 0x02000398 RID: 920
[StructLayout(LayoutKind.Explicit, Size = 32)]
public struct NativeClickEvent
{
// Token: 0x04000C54 RID: 3156
[FieldOffset(0)]
public NativeInputEvent baseEvent;
// Token: 0x04000C55 RID: 3157
[FieldOffset(20)]
public bool isPressed;
// Token: 0x04000C56 RID: 3158
[FieldOffset(24)]
public int controlIndex;
// Token: 0x04000C57 RID: 3159
[FieldOffset(28)]
public int clickCount;
}
}