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: 0x02000395 RID: 917
[StructLayout(LayoutKind.Explicit, Size = 36)]
public struct NativeGenericEvent
{
// Token: 0x04000C45 RID: 3141
[FieldOffset(0)]
public NativeInputEvent baseEvent;
// Token: 0x04000C46 RID: 3142
[FieldOffset(20)]
public int controlIndex;
// Token: 0x04000C47 RID: 3143
[FieldOffset(24)]
public int rawValue;
// Token: 0x04000C48 RID: 3144
[FieldOffset(28)]
public double scaledValue;
}
}