#include "pch-cpp.hpp" #ifndef _MSC_VER # include #else # include #endif #include #include template struct VirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct VirtFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct VirtFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template struct VirtFuncInvoker3 { typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template struct VirtActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; struct VirtActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template struct GenericVirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct GenericVirtFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct GenericVirtFuncInvoker3 { typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template struct InterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct InterfaceFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct InterfaceFuncInvoker3 { typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template struct InterfaceFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; struct InterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template struct InterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct InterfaceActionInvoker4 { typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method); } }; template struct GenericInterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct GenericInterfaceFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct GenericInterfaceFuncInvoker3 { typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; // System.Action`1 struct Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83; // System.Action`1 struct Action_1_t231F2AF856D3317D1380298224A60D02F9F43072; // System.Action`1 struct Action_1_tC6AEC56D51A701342DD5D9DEEE77C063945AE4DC; // System.Action`1 struct Action_1_tF0FD284A49EB7135379250254D6B49FA84383C09; // System.Action`1 struct Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC; // System.Action`1 struct Action_1_tF027A14E846C2C7B23079AF50A99AF77371FFC81; // System.Action`2 struct Action_2_tA58D913EBCC7FD3E95DEC877EDB4363CD3051DF4; // System.Action`2 struct Action_2_t22339AC0C02B10DD3C743D557C52738BA901E74A; // System.Action`2 struct Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C; // System.Action`2 struct Action_2_tB9B1B9645C739483997CEFD136850320B3E81752; // System.Action`2 struct Action_2_tDD9145FF6BEFC0F795374D3C54FE5138E8FDDC96; // System.Action`2 struct Action_2_t0359A210F354A728FCD80F275D8CF192D61A98C5; // System.Action`2 struct Action_2_t86645AF7004B27FBBEEA9B4EBCE215885AFBC3E7; // System.Action`2 struct Action_2_t13A6742A48923F2F95E0DBF426A94946BB52A341; // System.Action`2 struct Action_2_t961B8FC40C595B3E8948D3CB85E51EB90540D7EF; // System.Action`2 struct Action_2_tB596892BAE11233D1410B282A3EE7610732B50EC; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F; // System.Collections.Generic.Dictionary`2> struct Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t5CDE7C1F4CCF20D97AD81FE47A410DD3383EFB65; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t80D2D8B9C998CB48C246E0CF23198E0761CD3326; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t7A371082270CA8FD6BC79B5622CCD5E1C87A6E42; // System.Func`1 struct Func_1_t87F4D899EDDDA25407AC884A9A61F602E32A21FA; // System.Func`1 struct Func_1_t76DECFBA7E8607FAED0307739AF623E13E9A32D8; // System.Func`2 struct Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A; // System.Func`2 struct Func_2_t42D51CF507A4D7E5E1BB1ADA2AD1B58BD47C50C9; // System.Func`2 struct Func_2_t22C5BAC876F4C9C77BF9B2631852275B10FE99EC; // System.Func`2 struct Func_2_t8D00E17E9D1413C71B5B12D3538C754C4F141A2E; // System.Func`2 struct Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436; // System.Func`2 struct Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82; // System.Func`3 struct Func_3_tD99A6009701E72566BE785B8109E9B5773975D91; // System.Func`3 struct Func_3_t8B57AF438305FCA0473816617742AD6EBB7305F0; // System.Collections.Generic.HashSet`1 struct HashSet_1_t9DCF3402E30D433824DBE15EBB53B1DD79D671C1; // System.Collections.Generic.HashSet`1 struct HashSet_1_t45F75268054D01D9E70EB33D7F6D2FA609DB9229; // System.Collections.Generic.IEnumerable`1> struct IEnumerable_1_t8ACA6B0DE7FFF63CD5FC28E90063271CA8B5DA3D; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_tA116A870C8332D2D64FD13D5449B11BC676AC3D3; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_t074897E18EF8351BB361DBAA8F4503A488148BD5; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_t8A4B908F54ED8D008831DEF6F9A949FFA981E6BB; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_t52B1AC8D9E5E1ED28DF6C46A37C9A1B00B394F9D; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_tBD60400523D840591A17E4CBBACC79397F68FAA2; // System.Collections.Generic.IEnumerator`1 struct IEnumerator_1_t35B2BB0A3DE11CABE33D6DF7DA61318A7DD994F4; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_t62010156673DE1460AB1D1CEBE5DCD48665E1A38; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_tCFC5A4E3A8CF1B5F688E18FC472C2B5DE5466C19; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_tE6A65C5E45E33FD7D9849FD0914DE3AD32B68050; // System.IObserver`1 struct IObserver_1_t072DF21B5F7715B733A9517AE29C55682B49568E; // UnityEngine.InputSystem.InputProcessor`1 struct InputProcessor_1_tC797B512F2641A0AB0844215B781FCBB24FC8EFA; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t9ADF713DBB8E979F51FB8C0905B1A94F47285069; // System.Collections.Generic.Dictionary`2/KeyCollection> struct KeyCollection_t8DA7D1B0B12074D60B7747E20CC19B7516FA30EB; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t9CB3735F6A543E00E5FDAD1FF1A24BCF51F40F93; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t7D57A473DDBC0D5655A5C7BFE6BF45B04513B3F9; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_tDDA80C74CAF13E16E8DEFB627ABF27D2028AA3BA; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_tE96DD52341A0C44292415AD4831C7EE4CA2758C0; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t12DAE330A86281D0AA59BB9E854D6D3C1EEC0456; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t957197774A5B992291BD30CAA0D5D9CCFA3DCAE9; // System.Collections.Generic.KeyValuePair`2 struct KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521; // System.Collections.Generic.LinkedList`1 struct LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92; // System.Collections.Generic.List`1 struct List_1_tD6947050802043C1EF83E27C7D278C8790D69D83; // System.Collections.Generic.List`1 struct List_1_tAC9866130CCE9F688E2E8D1782F54217E5E3A32F; // System.Collections.Generic.List`1 struct List_1_t980EF2517D85AC88F5978408EA85D232DFCECEDF; // System.Collections.Generic.List`1 struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5; // System.Collections.Generic.List`1 struct List_1_tEC0B302C3EF23400C3EC92ED7672A715CA602068; // System.Collections.Generic.List`1 struct List_1_tB0AB87A0CDEC1CF5456422A1F87B5EC9EFF9516C; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_tD1B25F21E879DB0900C4FBDD7B52C354E5F2305B; // System.Collections.Generic.Dictionary`2/ValueCollection> struct ValueCollection_tBD1984A080F6FD7FBB3FF723DF3978BC7B322EBF; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t5D46E6B162B008B9BF4CDB24D54451CAD269464A; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_tF535709BEA18F4E5F3BD1B4B87C2A0744E2A880E; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t26D41DB42F17BA307B26DB3B6A126CD86C99DFA0; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t76341AA81C0DF9B3605E2C6172F16A8A33719887; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t8EE22CC67BCAC0E9821305A4250312CCF5E02492; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t4F156062D43207658B90A279DA27086B06D99D96; // System.Action`1[] struct Action_1U5BU5D_tE3A263A4248001B89160105AAF0340E85A8619B2; // System.Action`1[] struct Action_1U5BU5D_t45AFA72AB9C17482E4A448FF460696B2CD7F5B30; // System.Action`1[] struct Action_1U5BU5D_t8054A94E13920B6EAD3A3ACE9E49CCEB297F5292; // System.Action`2[] struct Action_2U5BU5D_tD41A0E9C051E282AFAF25563D2EB7DA29E01D84E; // System.Action`2[] struct Action_2U5BU5D_tBCA27D9CCFE789AEC1F9469632476E65211B1BC8; // System.Action`2[] struct Action_2U5BU5D_tB52FFE57FE49AE90E8A2DBFA471AADAFF83C00BD; // System.Action`2[] struct Action_2U5BU5D_t9463B740A9CAAC9CB11CA62CD85CF026AA28DDAB; // System.Action`2[] struct Action_2U5BU5D_t7DBAF0A2F1C24EC434ED4A6C16B8B019D0DB5441; // System.Action`2[] struct Action_2U5BU5D_tFADEA5D28B0568C280576AC3094EBFD8A3D0A61C; // System.Action`2[] struct Action_2U5BU5D_t83DF7E20FD1A3C4F6A6FE31F98451AB69E750981; // System.Action`2[] struct Action_2U5BU5D_t8B6AB971B66493894C76964146F49BCDE4994054; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_t2463354C15AFD1A1B578365E1C9CE406B512B9D7; // System.Collections.Generic.Dictionary`2/Entry>[] struct EntryU5BU5D_t2B43CE22419A45BD39CD0375B008725905068A98; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_t5E17529B02791A8946148C3220739E6FD096DA1F; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_tE5A3F82249E6DD46396260399E22D00F86447E86; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_t1645413DF833C11DE9C75160EA3B4E91A221D76A; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_t220CB4561D6FC3087D22974010D3F8164278988B; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_t1DC186969AB94042F09B6EDA8DB22B83DDA9439C; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_tE7EC26CB54B2F43A3E6CD64221E2B3B196B1ECB6; // System.IObserver`1[] struct IObserver_1U5BU5D_t7114812F8559FB426ACA279939C2FE40556E53DB; // UnityEngine.InputSystem.InputProcessor`1[] struct InputProcessor_1U5BU5D_tE570C3D0B2C8F6ECE9058972450FE9624F6AAD62; // System.Collections.Generic.KeyValuePair`2[] struct KeyValuePair_2U5BU5D_t346E5EF32BF6AB8CE577D2FE538C7B4F90DA2D48; // System.Collections.Generic.KeyValuePair`2[] struct KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105; // System.Collections.Generic.HashSet`1/Slot[] struct SlotU5BU5D_t8FE95B81422363D018BF222DD12684D1D705E263; // System.Collections.Generic.HashSet`1/Slot[] struct SlotU5BU5D_t0AE906AEB021E70A8C465C39ADD28C2B4884604D; // System.Action[] struct ActionU5BU5D_t4184CD78B103476FA93E685EDBF3C083DBA9E2C2; // System.Byte[] struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726; // System.Char[] struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; // System.Delegate[] struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8; // System.Runtime.InteropServices.GCHandle[] struct GCHandleU5BU5D_tE15D27927DA8B3D667EF2723192CDC34B763D2F3; // UnityEngine.InputSystem.IInputInteraction[] struct IInputInteractionU5BU5D_t9766C7D49E9505A3D2D3D69481F14808988287DA; // UnityEngine.InputSystem.InputActionMap[] struct InputActionMapU5BU5D_t31943BDD82120CBC1067BC90B51BCDEF32226609; // UnityEngine.InputSystem.InputBinding[] struct InputBindingU5BU5D_tFBF775077101E34ED6C54C4468F6E0722ECB2EF6; // UnityEngine.InputSystem.InputBindingComposite[] struct InputBindingCompositeU5BU5D_tA39005B1C18E39B68364430213FAAD8B58DC9083; // UnityEngine.InputSystem.InputControl[] struct InputControlU5BU5D_tB874FECA56E2B08D3280F4174B988EA155E99680; // UnityEngine.InputSystem.InputDevice[] struct InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6; // UnityEngine.InputSystem.LowLevel.InputDeviceCommandDelegate[] struct InputDeviceCommandDelegateU5BU5D_t47EBBCFBA9C24BA7BE7CE0001AE9CB11F87CA7B3; // UnityEngine.InputSystem.Layouts.InputDeviceDescription[] struct InputDeviceDescriptionU5BU5D_t42F2D0E6A909DFD21287F5A79032AB64986F8BF0; // UnityEngine.InputSystem.Layouts.InputDeviceFindControlLayoutDelegate[] struct InputDeviceFindControlLayoutDelegateU5BU5D_tD623D611CF24B7F8960BAA8B4EFC172CE4ADAB72; // UnityEngine.InputSystem.InputProcessor[] struct InputProcessorU5BU5D_t6C9B3D9B68534217E9628B72E54D186B839399A0; // System.Int32[] struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32; // System.IntPtr[] struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6; // UnityEngine.InputSystem.Utilities.InternedString[] struct InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4; // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971; // System.String[] struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; // UnityEngine.InputSystem.Controls.TouchControl[] struct TouchControlU5BU5D_t26ABEB41FF07BF7B670BE1BAD30055D56579D890; // System.Type[] struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755; // System.UInt32[] struct UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF; // System.UInt64[] struct UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2; // UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem[] struct ControlItemU5BU5D_t534859CA6A52E2EC9DDDCA52FE280E8D5CD598DB; // UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo[] struct DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81; // UnityEngine.InputSystem.InputManager/AvailableDevice[] struct AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330; // UnityEngine.InputSystem.InputManager/StateChangeMonitorListener[] struct StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10; // UnityEngine.InputSystem.InputManager/StateChangeMonitorTimeout[] struct StateChangeMonitorTimeoutU5BU5D_tB541E66E8C64A4EE2D3C6F243A3A9833BFBE0BF7; // UnityEngine.InputSystem.InputManager/StateChangeMonitorsForDevice[] struct StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE; // UnityEngine.InputSystem.Utilities.MemoryHelpers/BitRegion[] struct BitRegionU5BU5D_tF6D5F89A752F557BCBFDE82CA0F4C7CB0ABF364B; // System.Action struct Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6; // System.ArgumentException struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00; // System.ArgumentNullException struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8; // System.AsyncCallback struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA; // UnityEngine.InputSystem.Controls.AxisControl struct AxisControl_tA997FF52442F7B08C7E13B7028393B4117248680; // System.IO.BinaryReader struct BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128; // System.IO.BinaryWriter struct BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F; // System.Reflection.Binder struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30; // UnityEngine.InputSystem.Controls.ButtonControl struct ButtonControl_t3918D56D674854AF9DFEB8CCF130919AAD9FCA68; // System.Text.Decoder struct Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288; // UnityEngine.InputSystem.Controls.DeltaControl struct DeltaControl_t8A924CCBD9CC326D8375AD18A2AC1B62C45ECE10; // System.ComponentModel.DisplayNameAttribute struct DisplayNameAttribute_t23E87B8B23DC5CF5E2A72B8039935029D0A53E85; // System.Text.Encoder struct Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A; // System.Text.Encoding struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827; // System.Exception struct Exception_t; // System.Text.RegularExpressions.ExclusiveReference struct ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8; // System.IO.FileStream struct FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26; // System.Collections.Hashtable struct Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC; // System.IAsyncResult struct IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370; // System.Collections.IDictionary struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A; // System.IDisposable struct IDisposable_t099785737FC6A1E3699919A94109383715A8D807; // System.Collections.IEnumerator struct IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105; // UnityEngine.InputSystem.LowLevel.IInputRuntime struct IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946; // UnityEngine.InputSystem.LowLevel.IInputStateChangeMonitor struct IInputStateChangeMonitor_t5F50ED403021CCE28E9B9955F770E5A05EF7B152; // System.IO.IOException struct IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA; // UnityEngine.InputSystem.InputAction struct InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B; // UnityEngine.InputSystem.InputActionMap struct InputActionMap_t588F4834F020838C4E8AE148F8A42CC84FA75B44; // UnityEngine.InputSystem.InputActionState struct InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9; // UnityEngine.InputSystem.InputControl struct InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1; // UnityEngine.InputSystem.Layouts.InputControlLayout struct InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741; // UnityEngine.InputSystem.InputDevice struct InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87; // UnityEngine.InputSystem.LowLevel.InputDeviceCommandDelegate struct InputDeviceCommandDelegate_t967EA90378916CA01FF68A0403468313659A1718; // UnityEngine.InputSystem.Layouts.InputDeviceDescription struct InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58; // UnityEngine.InputSystem.LowLevel.InputDeviceExecuteCommandDelegate struct InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D; // UnityEngine.InputSystem.Layouts.InputDeviceFindControlLayoutDelegate struct InputDeviceFindControlLayoutDelegate_tE30412E20D6F6870BF090C6D6C4CA9B4CFD0978F; // UnityEngine.InputSystem.LowLevel.InputEvent struct InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234; // UnityEngine.InputSystem.LowLevel.InputEventBuffer struct InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA; // UnityEngine.InputSystem.LowLevel.InputEventTrace struct InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646; // UnityEngine.InputSystem.InputManager struct InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F; // UnityEngine.InputSystem.InputRemoting struct InputRemoting_t1E0E6A3FCECB6332362D470A443CE1B1F0E26E38; // UnityEngine.InputSystem.InputSettings struct InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6; // UnityEngine.InputSystem.LowLevel.InputUpdateDelegate struct InputUpdateDelegate_t3193D229360F70BB8E2781DED27A71B0F5355045; // System.Int32 struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046; // System.InvalidOperationException struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB; // System.Reflection.MemberFilter struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81; // System.Reflection.MemberInfo struct MemberInfo_t; // System.Reflection.MethodInfo struct MethodInfo_t; // System.NotImplementedException struct NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6; // System.NotSupportedException struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339; // UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A; // System.Text.RegularExpressions.Regex struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F; // System.Text.RegularExpressions.RegexCode struct RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5; // System.Text.RegularExpressions.RegexRunnerFactory struct RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96; // Microsoft.Win32.SafeHandles.SafeFileHandle struct SafeFileHandle_tC77A9860A03C31DC46AD2C08EC10EACDC3B7A662; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F; // System.Threading.SemaphoreSlim struct SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1; // System.Text.RegularExpressions.SharedReference struct SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926; // System.Single struct Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E; // System.IO.Stream struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB; // System.String struct String_t; // UnityEngine.InputSystem.Controls.TouchControl struct TouchControl_t6E5C91937E6811635891F0FE85B96BA3338E0EFD; // System.Type struct Type_t; // System.UInt16 struct UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD; // UnityEngine.InputSystem.Controls.Vector2Control struct Vector2Control_t271CA458D56BCA875642853132733D774B009A96; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5; // UnityEngine.InputSystem.InputActionState/ActionMapIndices struct ActionMapIndices_t627DF9CE7704FDD352C035C65CC9AF6D8B899A0A; // UnityEngine.InputSystem.InputActionState/BindingState struct BindingState_t568A45761EFD086FB6772BD7B933703E3ABFBF26; // UnityEngine.InputSystem.InputActionState/InteractionState struct InteractionState_tBD9D1657CA10C3E513F0A89AE637B7EF7CC68320; // UnityEngine.InputSystem.InputActionState/TriggerState struct TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145; // UnityEngine.InputSystem.Layouts.InputDeviceMatcher/d__4 struct U3Cget_patternsU3Ed__4_t6191EF324445918A4E234231F0240556B56CA816; // UnityEngine.InputSystem.LowLevel.InputEventListener/DisposableObserver struct DisposableObserver_t3EA358A188D2946104E227EC7510A1247577761E; // UnityEngine.InputSystem.LowLevel.InputEventListener/ObserverState struct ObserverState_t25A763CEA3E3A65975BE34C371224BCAC14681A8; // UnityEngine.InputSystem.LowLevel.InputEventTrace/Enumerator struct Enumerator_tDC926D70FAEB628CE95D05C8FF1E24E55664B143; // UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController struct ReplayController_tB89A6FAB335193E670D3B2A1E84BB7F291060755; // UnityEngine.InputSystem.InputManager/d__75 struct U3CListControlLayoutsU3Ed__75_tA3D7E50B5429656CACEB609171EC221DD2A94B89; // System.IO.Stream/ReadWriteTask struct ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974; IL2CPP_EXTERN_C RuntimeClass* Action_1_tC6AEC56D51A701342DD5D9DEEE77C063945AE4DC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_2_t0359A210F354A728FCD80F275D8CF192D61A98C5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ButtonControl_t3918D56D674854AF9DFEB8CCF130919AAD9FCA68_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DisposableObserver_t3EA358A188D2946104E227EC7510A1247577761E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Enumerator_tD8A07122686F8093CC59FC43AE479C73D2B32313_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Enumerator_tDC926D70FAEB628CE95D05C8FF1E24E55664B143_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_2_t22C5BAC876F4C9C77BF9B2631852275B10FE99EC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_2_t42D51CF507A4D7E5E1BB1ADA2AD1B58BD47C50C9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ICustomDeviceReset_tA7D367F100EC4EF9240244C08FFFC60B62BB6086_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t35B2BB0A3DE11CABE33D6DF7DA61318A7DD994F4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEventMerger_tFEA3694BDFE9987449D208603D1BABA1EE0E8913_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEventPreProcessor_t402E5A7CA363184CE8C96EE46B2E5880F40181B2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IInputStateCallbackReceiver_t4C5C8728DA2734584B886F3D78491E19738BC79A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IInputStateChangeMonitor_t5F50ED403021CCE28E9B9955F770E5A05EF7B152_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IInputUpdateCallbackReceiver_tFFF4C988065B2A278B79D375DFA3867CDA147486_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ITextInputReceiver_tBC81096C84A44F364643BC70CAE107843E4486A9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InputBindingComposite_tFCCB9AFDBA6503C51555C9C5904186D990D36565_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InputInteraction_t7BAD5F994214A465B34D56FB86391F9181113F78_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InputProcessor_t245C316DEE36AA1BC9558F838B3B7A0223813A1D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InputUpdateDelegate_t3193D229360F70BB8E2781DED27A71B0F5355045_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InputUpdate_t16159151984D134E806E18584FE12416F7A6DA57_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tD6947050802043C1EF83E27C7D278C8790D69D83_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObserverState_t25A763CEA3E3A65975BE34C371224BCAC14681A8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ReplayController_tB89A6FAB335193E670D3B2A1E84BB7F291060755_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Touchscreen_tE679C4B2C2D8C5979EAC5A2002603672A202E3EB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CListControlLayoutsU3Ed__75_tA3D7E50B5429656CACEB609171EC221DD2A94B89_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tA14A9657912D2AB6AA361CE3720B2DFDC8F69CDF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tE2728AA79E51BD5F4C35DDD7B9C1C562C2164BD8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3Cget_patternsU3Ed__4_t6191EF324445918A4E234231F0240556B56CA816_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UpdateMode_tB1023A67A3F7862527D6797E3522EAC9DC5B00A1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral012315DEACA80CA5572171295D68942333F9F9A7; IL2CPP_EXTERN_C String_t* _stringLiteral0236BACCD260A20F0738D0E7EDBB60850D17B36A; IL2CPP_EXTERN_C String_t* _stringLiteral023DD7331D6D2552C2332AAE94DB1E66780AE095; IL2CPP_EXTERN_C String_t* _stringLiteral0476103E7B88AF8DC134CFD40F85C66DFAB78C70; IL2CPP_EXTERN_C String_t* _stringLiteral07A7681C0883AD72CB90C3265BE2DD9E3E8828C8; IL2CPP_EXTERN_C String_t* _stringLiteral08FB9129CB5911626293A76FA9EA45A589D9966E; IL2CPP_EXTERN_C String_t* _stringLiteral09261B946DE10847F29FF64038746325ECC698FD; IL2CPP_EXTERN_C String_t* _stringLiteral0970CF2FD3560786B3DFD69BC3EE83E1A9521103; IL2CPP_EXTERN_C String_t* _stringLiteral09C996CC26308F014A8C3CD22845AE1081C2803C; IL2CPP_EXTERN_C String_t* _stringLiteral0BA5468134AAC3438B5940C44AFD45FE8669FCEB; IL2CPP_EXTERN_C String_t* _stringLiteral0C81413ADA26B9D9FB5559F6B8F00B6E297D84E1; IL2CPP_EXTERN_C String_t* _stringLiteral0F074ACDA6A7CA1AB7A1168EDD7678BD05D5F651; IL2CPP_EXTERN_C String_t* _stringLiteral11163885D674201194ABAB5054B7E0C366771C7B; IL2CPP_EXTERN_C String_t* _stringLiteral1350F8DDC655DCB4BFCF3A9B1BEE6066B862DA49; IL2CPP_EXTERN_C String_t* _stringLiteral1630E6A6E4B065CB228F2BB0735FC4EB04ADCF98; IL2CPP_EXTERN_C String_t* _stringLiteral1AC853141D7454B4C667A91DBE770D9B7EFB2538; IL2CPP_EXTERN_C String_t* _stringLiteral1B84978472E4222D49620AB99A8EFD2722C5F5FE; IL2CPP_EXTERN_C String_t* _stringLiteral1D1CBD8D6012C682C7CCDFC1C225306E8558C078; IL2CPP_EXTERN_C String_t* _stringLiteral1EEB75795CB6B2FEB03B506A6ABF63E6EB891D3A; IL2CPP_EXTERN_C String_t* _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745; IL2CPP_EXTERN_C String_t* _stringLiteral27D9B7EF612AEB12509925B54604A1C6C9199F88; IL2CPP_EXTERN_C String_t* _stringLiteral294F098A1D5E681EDEE8F43BFA8F45CFBA5798A7; IL2CPP_EXTERN_C String_t* _stringLiteral2A2782DDF2179B23547713DD1D5AB7ED9DA9D3E0; IL2CPP_EXTERN_C String_t* _stringLiteral2FAF69E7069A74915581E7B248D1232DBBACF6CC; IL2CPP_EXTERN_C String_t* _stringLiteral303ECECF0AA9FDD6A0293D0A3390A5F5E9E32329; IL2CPP_EXTERN_C String_t* _stringLiteral34E2E1D5D393F33E08B55532C6B7D27294F02F4C; IL2CPP_EXTERN_C String_t* _stringLiteral3855E8A34957312A6449FC23FFB87754C1D0E662; IL2CPP_EXTERN_C String_t* _stringLiteral3C686C624D22B0C45E4FADFB00FA535DDDC88AD7; IL2CPP_EXTERN_C String_t* _stringLiteral3ED7B4C473E85E5A3870A4498B52AE1C0FA74132; IL2CPP_EXTERN_C String_t* _stringLiteral3EDED5759235CBBAF206D4FA859DCF807AA71BE1; IL2CPP_EXTERN_C String_t* _stringLiteral418C62912EB8A58FC3E9F514737466D07C4EA081; IL2CPP_EXTERN_C String_t* _stringLiteral42066FD93A228D005178621FEC41EE10A0840BCF; IL2CPP_EXTERN_C String_t* _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D; IL2CPP_EXTERN_C String_t* _stringLiteral43187C90BBB5DFB063A95733C9BD65ECD25A2E84; IL2CPP_EXTERN_C String_t* _stringLiteral4541DABAC4FE8FD5D7C4DBCDA1190481B5A90229; IL2CPP_EXTERN_C String_t* _stringLiteral45EDE4DB19150515241E2FE6610B1490B1DED5C7; IL2CPP_EXTERN_C String_t* _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8; IL2CPP_EXTERN_C String_t* _stringLiteral480D2996F0237C983BBBCC925098492AFCFE152D; IL2CPP_EXTERN_C String_t* _stringLiteral497D04A9F12484A2B579045305317D824B392B5E; IL2CPP_EXTERN_C String_t* _stringLiteral4B4523E5E32D17473FFCC006C3EF7B5B197C03B1; IL2CPP_EXTERN_C String_t* _stringLiteral4D3D7302987C2B4D5F8093A5DAF6AC713B851CFC; IL2CPP_EXTERN_C String_t* _stringLiteral4E6231226F0A62484622AE51964EB5710BB528F9; IL2CPP_EXTERN_C String_t* _stringLiteral4F724051E2D28B18765B679F5E4D93AED1FD6821; IL2CPP_EXTERN_C String_t* _stringLiteral5278FC49D5DD7EE6B7B489211DF85A018916ACB6; IL2CPP_EXTERN_C String_t* _stringLiteral53341CC24F9A1C8120B54B4F417C8EF87B0CBCE1; IL2CPP_EXTERN_C String_t* _stringLiteral5742AB535A524B7E9D2BBC75E3B43257D3C75064; IL2CPP_EXTERN_C String_t* _stringLiteral589E6D8BD59F7D804E4A1A1C559787B0B2549B6C; IL2CPP_EXTERN_C String_t* _stringLiteral594BBDBAD17AA79E90710FF87EE03589BF514A08; IL2CPP_EXTERN_C String_t* _stringLiteral5B53FF4BB90F17D124F1FA7197FF553B59B98F68; IL2CPP_EXTERN_C String_t* _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174; IL2CPP_EXTERN_C String_t* _stringLiteral5C82E0DD83FAB77ECA656BE8D48C1899B25B0815; IL2CPP_EXTERN_C String_t* _stringLiteral5E4609AC3C6E84D2010252F67F4E72A2DBC1DC06; IL2CPP_EXTERN_C String_t* _stringLiteral61225B335304C6BE91EE0EC8CF385BBE9B633F17; IL2CPP_EXTERN_C String_t* _stringLiteral6536BE59F0E519C5A741CF907BA6A7047B763361; IL2CPP_EXTERN_C String_t* _stringLiteral656C470468DF1309A8BC07ED38CE5FF1ACE64DBD; IL2CPP_EXTERN_C String_t* _stringLiteral65C06B538C43A32891E65BAB5E8DB3892D8BF2C2; IL2CPP_EXTERN_C String_t* _stringLiteral682C94355936D06676EFEE25A133C60E3F8445C8; IL2CPP_EXTERN_C String_t* _stringLiteral68F88088656B9923480FE618B4D5AEFBB1224599; IL2CPP_EXTERN_C String_t* _stringLiteral6A397A13C56ABA13CCA4A3459884871DB40F7F7E; IL2CPP_EXTERN_C String_t* _stringLiteral6B1251A4A4D247E27F776167F1A9EA4D5A6E8497; IL2CPP_EXTERN_C String_t* _stringLiteral6B8CD4B6D862D3DAB73CB4E263DBAEBAFA5F49D7; IL2CPP_EXTERN_C String_t* _stringLiteral6CD29DF87BDE4FB4030DE06320C56337EE9127EF; IL2CPP_EXTERN_C String_t* _stringLiteral6F88F97D18CEE55EBB014C32A6D854CB3FBEB63C; IL2CPP_EXTERN_C String_t* _stringLiteral70E56B100C48B1B56DB8AFFAC26B6F1BF92DDA11; IL2CPP_EXTERN_C String_t* _stringLiteral7348E969150769A75AF7801C5E009E8E6EC276EF; IL2CPP_EXTERN_C String_t* _stringLiteral73F1C0DB7E67894BD0991354AA6CB2DA4A3A5D88; IL2CPP_EXTERN_C String_t* _stringLiteral74D76C7BAA4DECF9C908C2F7D020C83CB02B76B0; IL2CPP_EXTERN_C String_t* _stringLiteral75C123F6B54703295CFE76238B415DDAFB9698C9; IL2CPP_EXTERN_C String_t* _stringLiteral75C2382105EE7550A774237E98EAB4B761429404; IL2CPP_EXTERN_C String_t* _stringLiteral75FF844BBE586082C7FA1D317EAFCB2B4AB53D9C; IL2CPP_EXTERN_C String_t* _stringLiteral765048730869F67925B9AB47A2AA4E6BDD4B2165; IL2CPP_EXTERN_C String_t* _stringLiteral7D832450EB8F529B98D1D7829EE23B628D4FD794; IL2CPP_EXTERN_C String_t* _stringLiteral7DE03E5EBA0308517D1762F2C0DF3B9E2A2F1870; IL2CPP_EXTERN_C String_t* _stringLiteral81E80EA114E7CD2B970C5BA3E85B8F9E93C46DC4; IL2CPP_EXTERN_C String_t* _stringLiteral82EA3C9AFC08F0CECEBC1B257606B3106346FCAF; IL2CPP_EXTERN_C String_t* _stringLiteral841967C9F7417326D9B6354E4FE3FC45CE3634EA; IL2CPP_EXTERN_C String_t* _stringLiteral84C8BF6DDBDDEC3A92AEA77ABF46CD671944B758; IL2CPP_EXTERN_C String_t* _stringLiteral84CAACE59D08AF4659A3A7E4D00A4514400CE96A; IL2CPP_EXTERN_C String_t* _stringLiteral86186031B6A596FFFE4131DF258F8F1FF70E4951; IL2CPP_EXTERN_C String_t* _stringLiteral871C50B2EA6F82F09B5B9A7EF8B17FDCA2EEE958; IL2CPP_EXTERN_C String_t* _stringLiteral88F147D7F5EACCD41D1B500D3DF7155CB616B837; IL2CPP_EXTERN_C String_t* _stringLiteral894192F113AFCA62FF819992911789F3CD2A99BF; IL2CPP_EXTERN_C String_t* _stringLiteral8DACB0EDC7D405E158353E192C49915CD4031B83; IL2CPP_EXTERN_C String_t* _stringLiteral8DAE0371884040CFA6CE09831807D3D5D255F5D6; IL2CPP_EXTERN_C String_t* _stringLiteral8F6CFBA1DD39F197A0470DD4831EDB73FF9AA184; IL2CPP_EXTERN_C String_t* _stringLiteral9171B6BCFF1D313A30D54A41A29DA67164863CCC; IL2CPP_EXTERN_C String_t* _stringLiteral9185A9C6A1BF633445844194B5073A9E7D587F4D; IL2CPP_EXTERN_C String_t* _stringLiteral9223FB63DD1FD9CCF33683A7C5C87DA3F7CE1A9A; IL2CPP_EXTERN_C String_t* _stringLiteral924007ED054F82D9429F46EA3884D176E0DB744B; IL2CPP_EXTERN_C String_t* _stringLiteral92B8E551EF78EA21EABB85995C1DDDF9474CD320; IL2CPP_EXTERN_C String_t* _stringLiteral92D63F42D5F24A04F46CF0B3820441D11C905B48; IL2CPP_EXTERN_C String_t* _stringLiteral945C9FDD2DF1B4F9CE3D0FE9BC9B6DD3A9DC93DE; IL2CPP_EXTERN_C String_t* _stringLiteral960CFC4855FBB42851E393425E8CE32ABB68C781; IL2CPP_EXTERN_C String_t* _stringLiteral98FEE36F66DDCF5ACCF066A4411E436B2EC27A78; IL2CPP_EXTERN_C String_t* _stringLiteral9A2E3F49549FF8BFC0C269B134528503D38A0399; IL2CPP_EXTERN_C String_t* _stringLiteral9B6F8A34098BC8FE5056EE7965F537F9FCD7445D; IL2CPP_EXTERN_C String_t* _stringLiteral9CB9BA6603AAA5ECCE4F3CF7D8D8EBA0FB5E6FC1; IL2CPP_EXTERN_C String_t* _stringLiteral9D99959EC8130DC909F67BC3E4D542E221D60B3F; IL2CPP_EXTERN_C String_t* _stringLiteral9DF256B62E2C231754E1C65A5601804CEBB90F9E; IL2CPP_EXTERN_C String_t* _stringLiteral9E492D245CF7BC396F0E56230A3575844F6A9C52; IL2CPP_EXTERN_C String_t* _stringLiteral9F47ED494281564928088BD8AB756BCB0CA3D564; IL2CPP_EXTERN_C String_t* _stringLiteralA3A4CE0F9A828A57CABF00CD1C33D92A9A5773CF; IL2CPP_EXTERN_C String_t* _stringLiteralA4EC35FE30A8C73BDAEF7A654EEEA3953D7FAE24; IL2CPP_EXTERN_C String_t* _stringLiteralA5030F91418E56823C7D2FC359BF27CC5AAD8E3B; IL2CPP_EXTERN_C String_t* _stringLiteralA522C29D98B1F10D9DF031D9DE44DA2292D7DE53; IL2CPP_EXTERN_C String_t* _stringLiteralA634EF069D76C47E8C027E49D022346C000C167B; IL2CPP_EXTERN_C String_t* _stringLiteralA80128F105C22FB8901159F074B932CB5A956025; IL2CPP_EXTERN_C String_t* _stringLiteralA99DCC00443D797894F4B10607C716D806A9105F; IL2CPP_EXTERN_C String_t* _stringLiteralAC2806EA40D9F7601BBB6DA354C649B46D2D8877; IL2CPP_EXTERN_C String_t* _stringLiteralAD23E6251FEEFC7CF204F3BB7E43B14EE901517E; IL2CPP_EXTERN_C String_t* _stringLiteralAE9446031FCBCF6F39C5F3EEAC0C4BE4F0896F7F; IL2CPP_EXTERN_C String_t* _stringLiteralAF8E649A3EF1AB74A43C9F88015FA68AC719215A; IL2CPP_EXTERN_C String_t* _stringLiteralAFB113C946693ED775D34DA089051C083C7A245E; IL2CPP_EXTERN_C String_t* _stringLiteralAFCDC24487EB01F0E37EEE39BC25C177693D2EE3; IL2CPP_EXTERN_C String_t* _stringLiteralB0137C14351739242DAD12026279F13C12B38B14; IL2CPP_EXTERN_C String_t* _stringLiteralB2A6BBCEEF1288495F26EB3470ACB3FD27C456E3; IL2CPP_EXTERN_C String_t* _stringLiteralB375D52F58ABA319072C6F9F1880BCB36A59233C; IL2CPP_EXTERN_C String_t* _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D; IL2CPP_EXTERN_C String_t* _stringLiteralB502A186982A83A6C402B5753C1120061504E6EB; IL2CPP_EXTERN_C String_t* _stringLiteralB720A9AE58815DFF5576319E5228D318E7899C07; IL2CPP_EXTERN_C String_t* _stringLiteralBA67382D61289B0EDBD1CD867DE673562B9B5111; IL2CPP_EXTERN_C String_t* _stringLiteralBB3F223896EC30F7292484479FB732D822BBDFBE; IL2CPP_EXTERN_C String_t* _stringLiteralC0113547B4691AD4D904D0667F396188E1117475; IL2CPP_EXTERN_C String_t* _stringLiteralC068740B1398F61F47B7773BB27A4A828FA47A6F; IL2CPP_EXTERN_C String_t* _stringLiteralC08ECADB105D30F2AA1FB05B93D1A8B5E1A69232; IL2CPP_EXTERN_C String_t* _stringLiteralC099423F69D278B508E17A8BA5BDA35BB6E29C08; IL2CPP_EXTERN_C String_t* _stringLiteralC182FAC9EDD38C759DB18C15C7171207EB92ED14; IL2CPP_EXTERN_C String_t* _stringLiteralC2451B8C6D92CA7D8CE2544B065B761C4B4C9647; IL2CPP_EXTERN_C String_t* _stringLiteralC25E2EABB1B5620F019225E1898740CE94023E27; IL2CPP_EXTERN_C String_t* _stringLiteralC4387C589D541CE3E405045B6594295A394F40C9; IL2CPP_EXTERN_C String_t* _stringLiteralC5F6475699851D077E0F965E3C29BEB8A33E339A; IL2CPP_EXTERN_C String_t* _stringLiteralCA2622A958C0A5EDF1EE3688414144E43F12E29E; IL2CPP_EXTERN_C String_t* _stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F; IL2CPP_EXTERN_C String_t* _stringLiteralCFA73882EBCB16AE44454CACF911EC21EF0A579C; IL2CPP_EXTERN_C String_t* _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052; IL2CPP_EXTERN_C String_t* _stringLiteralD3405336B22171B2B1D27A70CEA528CE3E5F192C; IL2CPP_EXTERN_C String_t* _stringLiteralD52F14A7E64122290D63B7EF4B3530CB47A85E14; IL2CPP_EXTERN_C String_t* _stringLiteralD8D5235574444C342D8D4E761289705C697DD73F; IL2CPP_EXTERN_C String_t* _stringLiteralD94B30F5FBD8D148126F385E80E1D11579438F2E; IL2CPP_EXTERN_C String_t* _stringLiteralD99605E29810F93D7DAE4EFBB764C41AF4E80D32; IL2CPP_EXTERN_C String_t* _stringLiteralDC71B380AFF23A38F6029B32B61C6943CB960350; IL2CPP_EXTERN_C String_t* _stringLiteralDDB8F4B49C528E0C3D5DA902B1F5423F84BCDC2B; IL2CPP_EXTERN_C String_t* _stringLiteralE0989D34BBEA6C5990DF72C107E08157B559F106; IL2CPP_EXTERN_C String_t* _stringLiteralE1569DA1D36D14A9B13F031EA09AC8CF93678F31; IL2CPP_EXTERN_C String_t* _stringLiteralE15D34C7DBDCA4C642A2E1C84C08A49E85B30B85; IL2CPP_EXTERN_C String_t* _stringLiteralE2F45012730FED3906C009972A37FF803AFC44F5; IL2CPP_EXTERN_C String_t* _stringLiteralE4C1123FFC7B0EFD6254D0768E1D5746664256B0; IL2CPP_EXTERN_C String_t* _stringLiteralE518FE2FD73613C259C98F83F70015A67E8459D1; IL2CPP_EXTERN_C String_t* _stringLiteralE566E6091771397A8847DE9F0E5AF31E5E383CA7; IL2CPP_EXTERN_C String_t* _stringLiteralE6C38AF488A8F495D24AC1B032C5CEA28D606CC5; IL2CPP_EXTERN_C String_t* _stringLiteralE745E1F0ACBC580139103499E5FBF2E52B7CC8B9; IL2CPP_EXTERN_C String_t* _stringLiteralE847FDE91DE0DA95AFBA0EEF52C90BEB4CE621BF; IL2CPP_EXTERN_C String_t* _stringLiteralE8CDEE792623E01A9FD833B1BAFB0659BC63C1C0; IL2CPP_EXTERN_C String_t* _stringLiteralE8F0495147FA58FE0F70B56DAC055C9129035987; IL2CPP_EXTERN_C String_t* _stringLiteralE9B2C4B73C4357A8FA4CCAF19BD43878882AB8C3; IL2CPP_EXTERN_C String_t* _stringLiteralE9D638FD2B23E7A3CC06EE181F1A35A711C05D72; IL2CPP_EXTERN_C String_t* _stringLiteralEB534843932D1025EEE09575458F840C63DC1063; IL2CPP_EXTERN_C String_t* _stringLiteralEBE3EEDD107BB87C6567C5FBFDC3A815F512391E; IL2CPP_EXTERN_C String_t* _stringLiteralEE71910C7E19B0D89B96AF6011CDFDAF6EA1CF1C; IL2CPP_EXTERN_C String_t* _stringLiteralEF36F39692DD586E96311B1D3C60C08F82908495; IL2CPP_EXTERN_C String_t* _stringLiteralF0546BC9F3587B9EAC1F1B1ECC07BF7228DCDE8D; IL2CPP_EXTERN_C String_t* _stringLiteralF0A62C192F27057067371C6E639D54342012235D; IL2CPP_EXTERN_C String_t* _stringLiteralF13E4BFF086D4E511E68B0617B76ACC5BD5AFFE7; IL2CPP_EXTERN_C String_t* _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7; IL2CPP_EXTERN_C String_t* _stringLiteralF49AECB5A7A9C87D4D672BA9D06F6929E0895580; IL2CPP_EXTERN_C String_t* _stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914; IL2CPP_EXTERN_C String_t* _stringLiteralFA3BFCAE5626D295B274EC32A9E75D975A8A8A8A; IL2CPP_EXTERN_C String_t* _stringLiteralFFEF3DBE279EE1F92E1E2E46F45BC18EBBF55A1A; IL2CPP_EXTERN_C const RuntimeMethod* Action_1__ctor_m2A1B34C27CAE6ED7FD924E5F59C0A1ACBBF22C38_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_1__ctor_mE5AFF6D7BDD05183BBAB61367AE0B922B690C57D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_2__ctor_m3BA2B0E7AD3290E3BFECFA10EEA81D930348CA2E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_2__ctor_mF7AE7ABE5C6078672A1B4C97C6E3848615D4975A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_AppendWithCapacity_TisAvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D_m19AA1ED8172E03B3B409D8B55E8961BB98EFAEF7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_AppendWithCapacity_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mBAC377FA55F45B5A5F427BC00EFF2A1FB1C9F988_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_Append_TisDeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F_mEA1ABEEA1ADC1C5A21B8E4665D8E57A9E8FC6295_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_Append_TisInternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_mDC61B9BB789B775D8026681A13BFE1C9E378A5B1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_Append_TisKeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521_m873B3C7D90D52301893F6EF2DC4A8389D1441A20_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_Clear_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mD823D23E104DD81E4D1C18113F4A97131F52FAA3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_Contains_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mEB17A6E059375C43F892D29500A44FE019B2255E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_EraseAtWithCapacity_TisAvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D_mC10F77228033C2ECC47DEBAA7EF45C5861758982_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_EraseAtWithCapacity_TisBitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0_m60444B4131851A54E921C04FE9219E5413138EA3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_EraseAtWithCapacity_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mEA807EF2CA95E277837869AA2396028B41A8CCA6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_EraseAtWithCapacity_TisStateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757_m838ED52068AE104603FB0EDEF1C1CD8347FC4BCF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_EraseAtWithCapacity_TisStateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_mFD30A7FB5FCDAC45EA4F3388F8AB79D9E295ED6F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_IndexOfReference_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mCCA425F6C5EA7C4E5AEF49F806341C46978F9CA2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_LengthSafe_TisDeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F_m5289263AC46EB098266066A629B4B9F951B8A3F3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_LengthSafe_TisStateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_mEF0C8691912F12B19C9BF503E38175BDAEA8A4AA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_Resize_TisStateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_m40801FDD05A56FDAD4E49611617D191543C0DE2C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_AddCallback_m073015304540182F1EFC66AA8332D29A93CF4800_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_AddCallback_m18089655DC703FDDC127E3DAD49DF62E10D369E6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_AddCallback_m5E6986916999BAB90D19DE8305D82D3242A7D35F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_AddCallback_m679CA6D57CD8B3766421FCB0C861E30A586B431B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_AddCallback_mA5367FB0F077BD5B2AD9147F13B8883326E86330_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_AddCallback_mBE67876CE84EC9F3B9969C1A922B65E194F7435C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_AddCallback_mF7F3622B138F94DD7CB1238C738AFF2060F8AC33_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_AddCallback_mF83FAF15CD78DB17DC6FE61825B4FAE6BE135E85_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_LockForChanges_m34F8D18AD56D842C0F334D4BEFAC48F76C292B20_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_RemoveCallback_m2EFA10D662D6322C2043176CC67A1FAAFD0FFE96_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_RemoveCallback_m45535C6F1E56C3F2813992B3601727B83D59C236_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_RemoveCallback_m550840A29A7A0367D7965D0D54734D0FEE0EC847_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_RemoveCallback_m7054BE818AEED2BED3AE923DDB9C2ECDDB716828_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_RemoveCallback_m9E56B372129F9C558893BD6A2CE2139EF23C9F71_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_RemoveCallback_mD0BF954F5AADB28D01B088F583317C4D6D6D360A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_RemoveCallback_mD70C611C79F427A2F62DF541DC0EACDA46388134_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_RemoveCallback_mF6514B59F0ECDD6E36C68FC802A62DF7B7330111_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_UnlockForChanges_mE6D18559C032E4643DB6FEC235577360EC6EC1CD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_get_Item_m495347129AF9025FE046E4DEABC0D841FD5D4CE9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_get_length_m2CA6CE1FE05335C5BE0166DCC53702AE29D777B0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_get_length_mAE3E679A0CB92BF0748894D87E5D67CBE6AC7EE5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_get_length_mEC75AEA8B81974DD2F978C30B46B7C3935C25E6F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_get_length_mF8F5F570FA6C35E69784FBB53071EF27BB29A7B4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CustomAttributeExtensions_GetCustomAttribute_TisDisplayNameAttribute_t23E87B8B23DC5CF5E2A72B8039935029D0A53E85_m38F082239F94AE4A752E5121D74E024688EC7897_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_m3BE9B3BBF28E8038B80439AD4804A555884EA3B4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mC01A4D7C2B35FAFB761DC1BC8038862ED354ABAA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_mC4159FA60A399EFD819461CBD6CF31C2C9953FA7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DelegateHelpers_InvokeCallbacksSafe_TisString_t_TisInputControlLayoutChange_tE5631ED390D3B861F06F45893369D3E67C90291A_m503B6ED6A7016E0FA0849F986757218D724D001A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetEnumerator_mFCD21F083C4657C41DC227C4BECBDE2E1A08D8FF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m45E84D946995F17227E04DF2D32A7A01C5B0CA5A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m53A76BB8418223DACDB6F8F02A0B2EFE29B7F732_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m662F1788161601D187CECE948C789559880E36DD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m947D65A5DF070987EB824FD37FB2A9386DB8D3D3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_mBDE1B0F245A6B9191F016A1F381917EB331C9F9B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_mCB615177BD1FE54FDAF26B44BC9A59954F6C4257_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m4C7810EB420DB7FC0BC4DB22BDE91569085096F2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m930A5E2C4019CD67A6C8556684F8E489C0D59DF9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mD3954C657979AD880C781BAC9CFBD461A9FF7A75_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m1D3F721E49992BDAC658A4A4B6327AD0627AB926_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Count_m09523E819BC1EA0131392AA4FC555E91CB7E4560_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Count_m85BE442214F4831E0502D55336A19E9C7AC3F539_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Count_mA9155B19D6D6E40D2515488C8F2F175D430E69EB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Count_mF4598BAD5B89302527B0069BA4CCD0D3B2F861BB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Count_mF781BD47155E1FD53A8B5F590ECA083143D48CC5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_m733F4D7CC7AA69207084F6670637C330C2629459_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Keys_m7A818D2B12B3E3204B17DCDCD6A88434D77FA1E8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m089162FB86506487C8CCBD2563C742EA0A4909EF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m0E7A22E243CB7ECC894D7884FE721B35F7C9C067_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m2C27879AD01AA06188580EA811864D14A84C98E8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m36FC21CAEA6BB79ED3EBCB0B184C8775EC42350C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m38B16DF45DC4401DFA674E9F58F165319C3D48E4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m73D39E3B6AD90D8E65A792BD405FEDA2F922831A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_All_TisChar_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_m1433F8CC63C937857531DD2FBB1D8FC8636A0D39_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToArray_TisInternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_mCBDD219E3CD8E6A836DED802188AB3D29C9EB9DA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m29804C5A2B763A4DFE276D5589D6ECF0A1732AD2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m6C8D1BCFFFE78F9231E17672D0A07E0238E5A5D0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m1A471B3DEBCB5644EDC2B24E5BEB00751AA45C04_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_m2025FBDB42EB2B4162FA2F3E59FFD25C2BC4A547_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_mCB10D8F827AFE67BF877C43772FFD19C1394670D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_mE1B7BCFCE36D43D67ADADD1A4A4B97AFF84D98B0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_3_Invoke_mDD7806C9546FB2E40EFFD6A636FDD7E992DA46E9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Add_m7C5B4590798DB969BBE29A457DBECB7082532BEC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Contains_mFC4294A6594B5C8BDC5FDD29E060C7A6E4B890FA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InlinedArray_1_AppendWithCapacity_mB4EC1324E421F4F6478549E7CE106DBE8B9FC3E7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InlinedArray_1_Append_m5669719E259F8A1D99F53BB7E6F255E35808764C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InlinedArray_1_SetLength_m1F4DEB2721EBC5B480DBA3C72058201689A8DF80_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InlinedArray_1__ctor_m63D4B87260948C2A73C6DF32D7374DAEFFE5319C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InlinedArray_1_get_Item_m63A5AB84323894345D9D8A01807C53CEC0219D12_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InlinedArray_1_set_Item_m2B7EE5F97EEA88C36851609313B780BB25E8096A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputDeviceDescription_FromJson_m016A57DA58C9B7EB31C9269AF99604778E8BC011_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputDevice_Build_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_m40E08FFE91FCD1BF977448865B23798106F79A40_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventBuffer_AllocateEvent_m6B00F1F2E19EC9A1DA3F76CE0DBC5F1A825C1FAE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventBuffer_AppendEvent_mB2227FAC7CF7C32E2FF8ED9925AEC7EBB0BE853A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventBuffer__ctor_mD809489C60E9A3C3CE02EAD34FF604C7C6D73348_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventBuffer__ctor_mE4713C79D8E11BFC1FD1E4F696F35C9E05EA5187_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventListener_op_Addition_mD4685D253039B44ABCDD361AB4AED2AA5B513D64_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventListener_op_Subtraction_m9032C4F204EECE5CC6D80A9B01F7DB796C78A576_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_IsA_TisDeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4_m52B5875F2EACBC85E22AF1807227E9A2C83FEC3E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_IsA_TisStateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3_m91EF69757639C51EDFCFAFA88EE04CE0D6C1795E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_get_stateFormat_m7E15CDB67CA516425CED0D1CA7799EC65D2FD889_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_get_stateOffset_mD9A4DE9CBDA45CABC3D351B14C6C4F1945E5D454_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_get_stateSizeInBytes_m686622EC45E20A90321F176DC7F54B9EE9E89383_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_set_deviceId_m6B7CD11430FABB07A8DD7A04C184CDE870B41F34_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_set_handled_mDBBEF41220F96FEAD529994EE8615A3F23640A2A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_set_id_mEEEAB75867CF17917ED10E499188C92389CEF1AC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_set_internalTime_mD17903386D19A7B1232C00AD60E5C37C9C9CC53D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_set_time_m6A4F813044110C164AC571CADE60ED7623A98710_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_LoadFrom_m485668176B86A504AFD9B19D341ACE11B60C590C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_LoadFrom_mB8838D6D2BF8A339DEC85246CE2245287F4CC168_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_OnBeforeUpdate_mF73C7357F6F9CDD64F30E3ABA0C1525743CE2B0C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_OnInputEvent_mCDB9904A4569F0FA8BD1745CD27B2F4336D2689B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_ReadFrom_m98E4BABCB5F0BA8E173D7FB11DCDF1DFD4FC81DD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_ReadFrom_mBEE7DF428E30993AA1175C16193285175D2C600D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_Resize_m084E07494718A6C19A797EE9D4DE338C3C805DFE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_WriteTo_m6DDDA8165A1B62137878493F5D318A7121F98D6A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_WriteTo_m972A3D422439BDAC6ED445DCEB2422C05111D73F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace__ctor_mF22332C7F9A39017F0CBD636F4F533C527F68D90_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEvent_GetNextInMemoryChecked_mE79AFF855E5276D4973633FD338DBF77CDAA3FB3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputEvent_set_sizeInBytes_m9352C705F40BF3648701BFCAAF3C202C8462EA99_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputInteractionContext_SetTotalTimeoutCompletionTime_mE59B7013EFC7F13855BBCD1170CC4C1401E719DD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputInteraction_GetDisplayName_m5DFBB4B834A04D4FE2FBBFCEE5FCFC1E8CD588C8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputInteraction_GetDisplayName_mCCBCA3612441E933006CE842A9832B3DED6CE981_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputInteraction_GetValueType_m15008505D3AC2E1B378A92E710A20BC2E3E36D39_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_AddDeviceUsage_m5C4769C436FFF76BBBB5F656977CF35A5907C5BE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_AddDevice_m09F00AD0628BC61DDBA992D0977A018DA68250E6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_AddDevice_m46C38DC839860EE2EB54FFD22557FBCB6249CCD8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_AddDevice_m8B4E3B162C71C752B257FE4D53A9C265976E5D50_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_AddDevice_mB7C1C7D58C39D5C9D80FBBF47AACA3CC6451E235_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_ApplySettings_mEF00E3EDCFEE9C9311B3016A22F478DC1A56E446_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_AssignUniqueDeviceId_m6641DFB9A3E87C471FB9EAF8EAA487A618E5880D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_EnableOrDisableDevice_m2A34CA6F0F721537E62BC5CDF32C051CA3FEC183_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_ExecuteGlobalCommand_TisUseWindowsGamingInputCommand_tB66739BB4992AB11B421FE57CFEE81FBD534C6F3_m0496412738D388718F528CB840EA03460BEC3772_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_GetDevice_m5B7916A4ED9117C53BE60B4B8635FAC3F488D6C0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_GetUnsupportedDevices_m4C6559B7E89FF589040BC5C898BC2C39EC5E5463_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_OnBeforeUpdate_m5914D092ED103F451FC32409D999ED020087649E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_OnFocusChanged_mCD81BDED29193416F0BE6E2F9277B7D5003069EA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_OnNativeDeviceDiscovered_m0CA227EDA4A73B6203AB4ED518AB74440A0A4BA1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_OnUpdate_mBD0757E2A0BCD0A2BDD0D6AF36ADAE4B137BBA3D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_PerformLayoutPostRegistration_m65C9103D91E7AA542B7CDF20655703368E10A420_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_RegisterControlLayoutBuilder_mD5D5FC9797FD0F0FE1B9332426D589F3EE7FAAEE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_RegisterControlLayoutMatcher_m2D32C93B9C897BD6E23A0A9E512A0BAADACD9B90_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_RegisterControlLayoutMatcher_m7CAE8078F618B0CEBEECFA0805682648B7D1DB1A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_RegisterControlLayout_m7C16C894B183BD1B559A287DAFFFE352D8D5387F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_RegisterPrecompiledLayout_TisFastKeyboard_t641334EB58D7348C955C8DC003C1EBD56911142E_m52E01A0E2F4B92EF460D48AE86D026C8AD9312B0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_RegisterPrecompiledLayout_TisFastMouse_t4C65EF9E0660D75C177F0FF96CE76E59AE55E9A9_m30AA9938F471C3721E9FEC922C386A5413C4A415_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_RegisterPrecompiledLayout_TisFastTouchscreen_tFDFEADAF2C3D76D13928E26557351A13CC36B98A_m82C8FC812A50331DB9675612427EDFAAA31387DF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_RemoveControlLayout_m043168AAF28DF49E069AA1117B5152C1965C2961_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_RemoveDeviceUsage_m0B8DB9C2DAC23A9FBDC0D0ADD3628956905F0B11_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_RemoveDevice_m078BD5E7310B7B57E282ECDD0972A6641F66C2C0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_ResetDevice_m161F0EA740DED1C72CB96E573E86C13656C990D2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_SetDeviceUsage_m28878E20264EFDDB81A1BAAAD8DAB0D774D23606_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_ShouldRunUpdate_mA7F77F1D0530C07876F0C9B87DC721E17692C361_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_TryGetDevice_m25BCD84E40F77E410BA6965DDC9294B61BE8E757_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_TryLoadControlLayout_mD6C96C49C4381A28D51665EDC5C8169633C44B06_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_U3CTryFindMatchingControlLayoutU3Eb__72_0_m9782F997CC2BF5AD783CEE16DEDFDA81447136FA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_set_pollingFrequency_m15EB100F4CFE9DC3C9E515F18D740E2444CF5A68_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputManager_set_settings_m3C56AFFC9983A5ECE5449F5F6DAFA362934BFE05_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputRuntimeExtensions_DeviceCommand_TisDisableDeviceCommand_tB2F65EF65EBE67BF06541CD04C81BB31EE208FD5_m0E4A8423F3F6957D74340A32940213ED6937E649_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputRuntimeExtensions_DeviceCommand_TisEnableDeviceCommand_tB57B3D3EDA2CD18BF45CCDB5132C993C6FBFA613_m6DA0519E09D540313D30CAF703C46549C6C788FF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InputRuntimeExtensions_DeviceCommand_TisInputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3_m17A9989BF690B87F556966B455409A987C18C71D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* JsonUtility_FromJson_TisDeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413_m5982849AE3F1FD56C0EDFDC01A4FB87D817D9C26_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2__ctor_m8E414081CDF840B7B266F15373BE120B33CF8AA7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Key_m946C35D5CBBDBCEACDC283CAE3461389B582062A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Key_mFBEEBA1D831EB554874C88B7A45536B9AB7229A8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_m391CC747109CAE22FD143AF7520A2C133612D28D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_mCEED82C56D42D498CFB45BD1B49E3CE764CB5E3A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m0F8FEDDD5B5FDD9CF2D36743082DFAF1D90BF1A6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m3BC6C2081F0B7141ADA19126352232251A342682_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mBCF1F1F20B1F9F3EB04E94A0B05FB9AD544CC66E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m9B020E4038F641C1B06E0BEB2915A1F69BA1DF22_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mB382A8E60BA27DF8C55823C4273C825A432EA956_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m5716D1B129F1FA995C8917D06C0FB2793750A78B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mE8961C891F379BB648D8CDB9F514FFB65A58EACF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_CopyFrom_m14EBE56AB030E8DB4B1FC018F936A1E062FD7870_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_mD88EDF062EFB4B0E6C8F925B5A4E47E97E687342_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1__ctor_mED2AEAAEFBBE3F20D8E424582434019D3F94F9EF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m402A94AC9070B345C95919DCFFFF627252B3E67A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m52F33C6963C9A76A14F54B4B2C30CEF580DB1EB7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_mC9A7615EA5EDA84F8B8055BE43CF91D74820C378_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArrayExtensions_Contains_TisInternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_m23E2471F1568258A2210D67111E1A3B892C238BF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1__ctor_m84C983212B6C53DA9A17DF1F5863FD5CE667512B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_get_Count_m27C66CAC40DF36D4D4322096DE84D39BE2753D33_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_get_Count_mB7032E0F55BC9BAC395949F252CE4E2B00451700_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_get_Count_mC17382AC83BBF147C47E7A21A628F51F082E92DA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_get_Item_m8E38E64671229D35FA708BF0B650FE3F846189FC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_get_Item_mA008A6D96358A9EE19CCCE5C476367DDC58F0E51_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_get_Item_mDD866694F03820E5166C4386797E9389D1C20277_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_op_Implicit_mA7B6FD4501EAC9196BB0A451EC4835363B7E5C70_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StringHelpers_MakeUniqueName_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_m617C4E4C073330FC6103C06516F73E10211F6A26_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CMakeDeviceNameUniqueU3Eb__144_0_mCA8AB92192B0E07D57D72DCF8602E74213436CA3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CWithU3Eb__11_0_mDBC3A4E19F1F178427BBDB33F3E7A4C7012D2206_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* UnsafeUtility_SizeOf_TisInputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234_mE54BCED9D284351B027281FCFFBD542BE9E13CF5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeType* Accelerometer_t2B89DD1E2532854163FFE3820BF63F7F245F5375_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* AmbientTemperatureSensor_t73671258243FCE903E2995A700494FD9FA63643F_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* AnyKeyControl_t6934B34139C3CEB23A94217CF11A9CCDFDFF028E_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* AttitudeSensor_tDA93C489EFD4C950A037AA69FDDAE8842B18E983_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* AxisComposite_tEA5A791DE6B114D0C57946F4CD1CE90EEDAC84FD_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* AxisControl_tA997FF52442F7B08C7E13B7028393B4117248680_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* AxisDeadzoneProcessor_tA19F11FE10087B103BF9A97DCDF4700779F5BA0B_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ButtonControl_t3918D56D674854AF9DFEB8CCF130919AAD9FCA68_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ButtonWithOneModifier_t95358FA0B5C76062E3BC5C20D969096D6E2241CA_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ButtonWithTwoModifiers_tF4727487D00EE4B443913F718D5C5F5729369149_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ClampProcessor_t0A29CDD7A199068E41E5D134B10A2E55C32C3BF9_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* CompensateDirectionProcessor_tF5382582028A7D6624A52ABD9BB19F51CC7D7627_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* CompensateRotationProcessor_t4C80A9D68C28B0CFA2F6215B4AA36DD983A61D86_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* DeltaControl_t8A924CCBD9CC326D8375AD18A2AC1B62C45ECE10_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* DiscreteButtonControl_tA658F3DC5ED555FA86194D216636B89D74A00544_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* DoubleControl_t273946F2F448608F2EFD3D64A8273E7966911FF7_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* DpadAxisControl_t8A4E36ABEC1F6993F164C8DAB0E45181039BF6DD_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* DpadControl_t2429BF5A4D80829583D35E8DADE07C9B17E7BB1D_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Gamepad_t3C6642E1BBB303694097939CC8C223B1550C78F2_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* GravitySensor_t4948EDC793CF7B05D9609AFE5DEF1BC96DBE53B7_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Gyroscope_t784181C4153A45D187F7C9977CCA2D4212AC681E_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* HoldInteraction_t715CE494CFF68BC626B4D35D87BC2813C4119F72_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* HumiditySensor_tB455ACFE8646FAC5FB6043666674F62C6B3A5095_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* IInputInteraction_1_t883F8D0B912532D325D9544EC005978AD56CFA9C_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* IntegerControl_t68534DE7D89FBFC2952062997BB54680FE7DCCA4_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* InvertProcessor_t18093EF6056E33DDD45E766EED7BCB86A53B2B03_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* InvertVector2Processor_t27C8678979E9655DE37418DE0948BD5DF11765E4_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* InvertVector3Processor_tC51163FAEF5239EFD918C393A7528D0D441AE5C1_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Joystick_tBAE58C422209B0F926486E4D064EB9253AB0837D_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* KeyControl_tA7DD03A589164F77312F49223F3FA521CA7726CC_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Keyboard_tF4E5FAB1E6473B4EF811A1F77A6980FEF6B81207_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* LightSensor_tB1B20573FA20BDEB2A88A72C420037274C97CF7B_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* LinearAccelerationSensor_t30A28809A97B60C7E403CE8DA2266366AFE4FF89_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* MagneticFieldSensor_t75CB788D509128B180202D910E5E53BFA2751DF7_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Mouse_tA93D10559A83D9DEED5B5736B527447951B0CF56_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* MultiTapInteraction_t012F12E478E89C14B3805DC23B6AB8D9070CB267_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* NormalizeProcessor_tBBEA186BBF9A3B849E081BEC79ECE057E75B3F69_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* NormalizeVector2Processor_t418136A3EB68DCE7701363983AA982B1AA398511_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* NormalizeVector3Processor_t2FEDF6C7258346B986AC32F20D69969336B7CA96_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* OneModifierComposite_t29D6BED0988595E03D55EB7D9892BB5473EA2601_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Pen_t23C0C87078C5B2A7E29D97BEC4D170538F16BC99_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Pointer_t1E3BB2A6B6127C10002D78A2219A2F5083671FE5_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* PressInteraction_tC7D6764556FB2E5C2832FB3A099A3BDC822C8A2F_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* PressureSensor_t6FD4DD380BD33AB72DFC50AC4877FC20BD235684_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* QuaternionControl_t7BEFE3CFC03CC5CE3F779DDCB5AA2C011F5C7A48_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ScaleProcessor_tBA12090BE747DB5D2A96A6EF03D654C81EBDE93E_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ScaleVector2Processor_tF3294B2B41B169DB4DB4AE7357BB37C71E291C0F_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ScaleVector3Processor_t69E0332D0B4C730E7F0F55EAA5ADDA2099A42841_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Sensor_t678877D11C0ECA0F2777419ED5C0EDC98959C453_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* SlowTapInteraction_tD5D9C469F5DD1F184FD964485D666E14DD7A5E29_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* StepCounter_t6CD3F5F32B86DCF951CB5403C06A513C841842AF_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* StickControl_t19F09532D745275BC8ADB06AB2F1B1AE091AB79D_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* StickDeadzoneProcessor_t33BB440B36435E547F63B4F8579210EF96246564_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* TapInteraction_tBB569D70C3BB827E3E08EE62111F856CB4F39997_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* TouchControl_t6E5C91937E6811635891F0FE85B96BA3338E0EFD_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* TouchPhaseControl_t66BED8DE667F790E5A5FC49B822EB5AC82362432_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* TouchPressControl_t7F7FA827A9ED616193A901BDA9125A2EBB0E2AF9_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Touchscreen_tE679C4B2C2D8C5979EAC5A2002603672A202E3EB_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* TrackedDevice_tDF5E09C055D0CA92DF8930A7B45EDA3BBA14ED71_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* TwoModifiersComposite_t87E532EC1E7BAA93F9A2DBD51679B6F7C4F0624C_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Vector2Composite_t1794D7A394A419502CE3B00A004429F6A08DF49F_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Vector2Control_t271CA458D56BCA875642853132733D774B009A96_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Vector3Composite_t04588F75A128E3F879BC4ED3C6B3C70C2F638C82_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Vector3Control_t915A3DA3C3E367B6F5587853E96EAD5215D328AE_0_0_0_var; struct BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 ; struct Delegate_t_marshaled_com; struct Delegate_t_marshaled_pinvoke; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58;; struct InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshaled_pinvoke; struct InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshaled_pinvoke;; struct InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA;; struct InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshaled_com; struct InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshaled_com;; struct InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshaled_pinvoke; struct InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshaled_pinvoke;; struct StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757_marshaled_com; struct StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757_marshaled_pinvoke; struct KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105; struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726; struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8; struct InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6; struct InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4; struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; struct DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81; struct AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330; struct StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10; struct StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE; struct BitRegionU5BU5D_tF6D5F89A752F557BCBFDE82CA0F4C7CB0ABF364B; IL2CPP_EXTERN_C_BEGIN IL2CPP_EXTERN_C_END #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Object // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t2463354C15AFD1A1B578365E1C9CE406B512B9D7* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_t9ADF713DBB8E979F51FB8C0905B1A94F47285069 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_tD1B25F21E879DB0900C4FBDD7B52C354E5F2305B * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7, ___entries_1)); } inline EntryU5BU5D_t2463354C15AFD1A1B578365E1C9CE406B512B9D7* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t2463354C15AFD1A1B578365E1C9CE406B512B9D7** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t2463354C15AFD1A1B578365E1C9CE406B512B9D7* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7, ___keys_7)); } inline KeyCollection_t9ADF713DBB8E979F51FB8C0905B1A94F47285069 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t9ADF713DBB8E979F51FB8C0905B1A94F47285069 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t9ADF713DBB8E979F51FB8C0905B1A94F47285069 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7, ___values_8)); } inline ValueCollection_tD1B25F21E879DB0900C4FBDD7B52C354E5F2305B * get_values_8() const { return ___values_8; } inline ValueCollection_tD1B25F21E879DB0900C4FBDD7B52C354E5F2305B ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tD1B25F21E879DB0900C4FBDD7B52C354E5F2305B * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2> struct Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t2B43CE22419A45BD39CD0375B008725905068A98* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_t8DA7D1B0B12074D60B7747E20CC19B7516FA30EB * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_tBD1984A080F6FD7FBB3FF723DF3978BC7B322EBF * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9, ___entries_1)); } inline EntryU5BU5D_t2B43CE22419A45BD39CD0375B008725905068A98* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t2B43CE22419A45BD39CD0375B008725905068A98** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t2B43CE22419A45BD39CD0375B008725905068A98* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9, ___keys_7)); } inline KeyCollection_t8DA7D1B0B12074D60B7747E20CC19B7516FA30EB * get_keys_7() const { return ___keys_7; } inline KeyCollection_t8DA7D1B0B12074D60B7747E20CC19B7516FA30EB ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t8DA7D1B0B12074D60B7747E20CC19B7516FA30EB * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9, ___values_8)); } inline ValueCollection_tBD1984A080F6FD7FBB3FF723DF3978BC7B322EBF * get_values_8() const { return ___values_8; } inline ValueCollection_tBD1984A080F6FD7FBB3FF723DF3978BC7B322EBF ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tBD1984A080F6FD7FBB3FF723DF3978BC7B322EBF * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t5E17529B02791A8946148C3220739E6FD096DA1F* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_t9CB3735F6A543E00E5FDAD1FF1A24BCF51F40F93 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_t5D46E6B162B008B9BF4CDB24D54451CAD269464A * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86, ___entries_1)); } inline EntryU5BU5D_t5E17529B02791A8946148C3220739E6FD096DA1F* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t5E17529B02791A8946148C3220739E6FD096DA1F** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t5E17529B02791A8946148C3220739E6FD096DA1F* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86, ___keys_7)); } inline KeyCollection_t9CB3735F6A543E00E5FDAD1FF1A24BCF51F40F93 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t9CB3735F6A543E00E5FDAD1FF1A24BCF51F40F93 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t9CB3735F6A543E00E5FDAD1FF1A24BCF51F40F93 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86, ___values_8)); } inline ValueCollection_t5D46E6B162B008B9BF4CDB24D54451CAD269464A * get_values_8() const { return ___values_8; } inline ValueCollection_t5D46E6B162B008B9BF4CDB24D54451CAD269464A ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t5D46E6B162B008B9BF4CDB24D54451CAD269464A * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t5CDE7C1F4CCF20D97AD81FE47A410DD3383EFB65 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tE5A3F82249E6DD46396260399E22D00F86447E86* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_t7D57A473DDBC0D5655A5C7BFE6BF45B04513B3F9 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_tF535709BEA18F4E5F3BD1B4B87C2A0744E2A880E * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_t5CDE7C1F4CCF20D97AD81FE47A410DD3383EFB65, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_t5CDE7C1F4CCF20D97AD81FE47A410DD3383EFB65, ___entries_1)); } inline EntryU5BU5D_tE5A3F82249E6DD46396260399E22D00F86447E86* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tE5A3F82249E6DD46396260399E22D00F86447E86** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tE5A3F82249E6DD46396260399E22D00F86447E86* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_t5CDE7C1F4CCF20D97AD81FE47A410DD3383EFB65, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_t5CDE7C1F4CCF20D97AD81FE47A410DD3383EFB65, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_t5CDE7C1F4CCF20D97AD81FE47A410DD3383EFB65, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_t5CDE7C1F4CCF20D97AD81FE47A410DD3383EFB65, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_t5CDE7C1F4CCF20D97AD81FE47A410DD3383EFB65, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_t5CDE7C1F4CCF20D97AD81FE47A410DD3383EFB65, ___keys_7)); } inline KeyCollection_t7D57A473DDBC0D5655A5C7BFE6BF45B04513B3F9 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t7D57A473DDBC0D5655A5C7BFE6BF45B04513B3F9 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t7D57A473DDBC0D5655A5C7BFE6BF45B04513B3F9 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_t5CDE7C1F4CCF20D97AD81FE47A410DD3383EFB65, ___values_8)); } inline ValueCollection_tF535709BEA18F4E5F3BD1B4B87C2A0744E2A880E * get_values_8() const { return ___values_8; } inline ValueCollection_tF535709BEA18F4E5F3BD1B4B87C2A0744E2A880E ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tF535709BEA18F4E5F3BD1B4B87C2A0744E2A880E * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_t5CDE7C1F4CCF20D97AD81FE47A410DD3383EFB65, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t1645413DF833C11DE9C75160EA3B4E91A221D76A* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_tDDA80C74CAF13E16E8DEFB627ABF27D2028AA3BA * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_t26D41DB42F17BA307B26DB3B6A126CD86C99DFA0 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540, ___entries_1)); } inline EntryU5BU5D_t1645413DF833C11DE9C75160EA3B4E91A221D76A* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t1645413DF833C11DE9C75160EA3B4E91A221D76A** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t1645413DF833C11DE9C75160EA3B4E91A221D76A* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540, ___keys_7)); } inline KeyCollection_tDDA80C74CAF13E16E8DEFB627ABF27D2028AA3BA * get_keys_7() const { return ___keys_7; } inline KeyCollection_tDDA80C74CAF13E16E8DEFB627ABF27D2028AA3BA ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tDDA80C74CAF13E16E8DEFB627ABF27D2028AA3BA * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540, ___values_8)); } inline ValueCollection_t26D41DB42F17BA307B26DB3B6A126CD86C99DFA0 * get_values_8() const { return ___values_8; } inline ValueCollection_t26D41DB42F17BA307B26DB3B6A126CD86C99DFA0 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t26D41DB42F17BA307B26DB3B6A126CD86C99DFA0 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t220CB4561D6FC3087D22974010D3F8164278988B* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_tE96DD52341A0C44292415AD4831C7EE4CA2758C0 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_t76341AA81C0DF9B3605E2C6172F16A8A33719887 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E, ___entries_1)); } inline EntryU5BU5D_t220CB4561D6FC3087D22974010D3F8164278988B* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t220CB4561D6FC3087D22974010D3F8164278988B** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t220CB4561D6FC3087D22974010D3F8164278988B* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E, ___keys_7)); } inline KeyCollection_tE96DD52341A0C44292415AD4831C7EE4CA2758C0 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tE96DD52341A0C44292415AD4831C7EE4CA2758C0 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tE96DD52341A0C44292415AD4831C7EE4CA2758C0 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E, ___values_8)); } inline ValueCollection_t76341AA81C0DF9B3605E2C6172F16A8A33719887 * get_values_8() const { return ___values_8; } inline ValueCollection_t76341AA81C0DF9B3605E2C6172F16A8A33719887 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t76341AA81C0DF9B3605E2C6172F16A8A33719887 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t1DC186969AB94042F09B6EDA8DB22B83DDA9439C* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_t12DAE330A86281D0AA59BB9E854D6D3C1EEC0456 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_t8EE22CC67BCAC0E9821305A4250312CCF5E02492 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E, ___entries_1)); } inline EntryU5BU5D_t1DC186969AB94042F09B6EDA8DB22B83DDA9439C* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t1DC186969AB94042F09B6EDA8DB22B83DDA9439C** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t1DC186969AB94042F09B6EDA8DB22B83DDA9439C* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E, ___keys_7)); } inline KeyCollection_t12DAE330A86281D0AA59BB9E854D6D3C1EEC0456 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t12DAE330A86281D0AA59BB9E854D6D3C1EEC0456 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t12DAE330A86281D0AA59BB9E854D6D3C1EEC0456 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E, ___values_8)); } inline ValueCollection_t8EE22CC67BCAC0E9821305A4250312CCF5E02492 * get_values_8() const { return ___values_8; } inline ValueCollection_t8EE22CC67BCAC0E9821305A4250312CCF5E02492 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t8EE22CC67BCAC0E9821305A4250312CCF5E02492 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tE7EC26CB54B2F43A3E6CD64221E2B3B196B1ECB6* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_t957197774A5B992291BD30CAA0D5D9CCFA3DCAE9 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_t4F156062D43207658B90A279DA27086B06D99D96 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE, ___entries_1)); } inline EntryU5BU5D_tE7EC26CB54B2F43A3E6CD64221E2B3B196B1ECB6* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tE7EC26CB54B2F43A3E6CD64221E2B3B196B1ECB6** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tE7EC26CB54B2F43A3E6CD64221E2B3B196B1ECB6* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE, ___keys_7)); } inline KeyCollection_t957197774A5B992291BD30CAA0D5D9CCFA3DCAE9 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t957197774A5B992291BD30CAA0D5D9CCFA3DCAE9 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t957197774A5B992291BD30CAA0D5D9CCFA3DCAE9 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE, ___values_8)); } inline ValueCollection_t4F156062D43207658B90A279DA27086B06D99D96 * get_values_8() const { return ___values_8; } inline ValueCollection_t4F156062D43207658B90A279DA27086B06D99D96 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t4F156062D43207658B90A279DA27086B06D99D96 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.HashSet`1 struct HashSet_1_t9DCF3402E30D433824DBE15EBB53B1DD79D671C1 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.HashSet`1::_buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____buckets_7; // System.Collections.Generic.HashSet`1/Slot[] System.Collections.Generic.HashSet`1::_slots SlotU5BU5D_t8FE95B81422363D018BF222DD12684D1D705E263* ____slots_8; // System.Int32 System.Collections.Generic.HashSet`1::_count int32_t ____count_9; // System.Int32 System.Collections.Generic.HashSet`1::_lastIndex int32_t ____lastIndex_10; // System.Int32 System.Collections.Generic.HashSet`1::_freeList int32_t ____freeList_11; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.HashSet`1::_comparer RuntimeObject* ____comparer_12; // System.Int32 System.Collections.Generic.HashSet`1::_version int32_t ____version_13; // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.HashSet`1::_siInfo SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ____siInfo_14; public: inline static int32_t get_offset_of__buckets_7() { return static_cast(offsetof(HashSet_1_t9DCF3402E30D433824DBE15EBB53B1DD79D671C1, ____buckets_7)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__buckets_7() const { return ____buckets_7; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__buckets_7() { return &____buckets_7; } inline void set__buckets_7(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____buckets_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____buckets_7), (void*)value); } inline static int32_t get_offset_of__slots_8() { return static_cast(offsetof(HashSet_1_t9DCF3402E30D433824DBE15EBB53B1DD79D671C1, ____slots_8)); } inline SlotU5BU5D_t8FE95B81422363D018BF222DD12684D1D705E263* get__slots_8() const { return ____slots_8; } inline SlotU5BU5D_t8FE95B81422363D018BF222DD12684D1D705E263** get_address_of__slots_8() { return &____slots_8; } inline void set__slots_8(SlotU5BU5D_t8FE95B81422363D018BF222DD12684D1D705E263* value) { ____slots_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____slots_8), (void*)value); } inline static int32_t get_offset_of__count_9() { return static_cast(offsetof(HashSet_1_t9DCF3402E30D433824DBE15EBB53B1DD79D671C1, ____count_9)); } inline int32_t get__count_9() const { return ____count_9; } inline int32_t* get_address_of__count_9() { return &____count_9; } inline void set__count_9(int32_t value) { ____count_9 = value; } inline static int32_t get_offset_of__lastIndex_10() { return static_cast(offsetof(HashSet_1_t9DCF3402E30D433824DBE15EBB53B1DD79D671C1, ____lastIndex_10)); } inline int32_t get__lastIndex_10() const { return ____lastIndex_10; } inline int32_t* get_address_of__lastIndex_10() { return &____lastIndex_10; } inline void set__lastIndex_10(int32_t value) { ____lastIndex_10 = value; } inline static int32_t get_offset_of__freeList_11() { return static_cast(offsetof(HashSet_1_t9DCF3402E30D433824DBE15EBB53B1DD79D671C1, ____freeList_11)); } inline int32_t get__freeList_11() const { return ____freeList_11; } inline int32_t* get_address_of__freeList_11() { return &____freeList_11; } inline void set__freeList_11(int32_t value) { ____freeList_11 = value; } inline static int32_t get_offset_of__comparer_12() { return static_cast(offsetof(HashSet_1_t9DCF3402E30D433824DBE15EBB53B1DD79D671C1, ____comparer_12)); } inline RuntimeObject* get__comparer_12() const { return ____comparer_12; } inline RuntimeObject** get_address_of__comparer_12() { return &____comparer_12; } inline void set__comparer_12(RuntimeObject* value) { ____comparer_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____comparer_12), (void*)value); } inline static int32_t get_offset_of__version_13() { return static_cast(offsetof(HashSet_1_t9DCF3402E30D433824DBE15EBB53B1DD79D671C1, ____version_13)); } inline int32_t get__version_13() const { return ____version_13; } inline int32_t* get_address_of__version_13() { return &____version_13; } inline void set__version_13(int32_t value) { ____version_13 = value; } inline static int32_t get_offset_of__siInfo_14() { return static_cast(offsetof(HashSet_1_t9DCF3402E30D433824DBE15EBB53B1DD79D671C1, ____siInfo_14)); } inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * get__siInfo_14() const { return ____siInfo_14; } inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 ** get_address_of__siInfo_14() { return &____siInfo_14; } inline void set__siInfo_14(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * value) { ____siInfo_14 = value; Il2CppCodeGenWriteBarrier((void**)(&____siInfo_14), (void*)value); } }; // System.Collections.Generic.HashSet`1 struct HashSet_1_t45F75268054D01D9E70EB33D7F6D2FA609DB9229 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.HashSet`1::_buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____buckets_7; // System.Collections.Generic.HashSet`1/Slot[] System.Collections.Generic.HashSet`1::_slots SlotU5BU5D_t0AE906AEB021E70A8C465C39ADD28C2B4884604D* ____slots_8; // System.Int32 System.Collections.Generic.HashSet`1::_count int32_t ____count_9; // System.Int32 System.Collections.Generic.HashSet`1::_lastIndex int32_t ____lastIndex_10; // System.Int32 System.Collections.Generic.HashSet`1::_freeList int32_t ____freeList_11; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.HashSet`1::_comparer RuntimeObject* ____comparer_12; // System.Int32 System.Collections.Generic.HashSet`1::_version int32_t ____version_13; // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.HashSet`1::_siInfo SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ____siInfo_14; public: inline static int32_t get_offset_of__buckets_7() { return static_cast(offsetof(HashSet_1_t45F75268054D01D9E70EB33D7F6D2FA609DB9229, ____buckets_7)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__buckets_7() const { return ____buckets_7; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__buckets_7() { return &____buckets_7; } inline void set__buckets_7(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____buckets_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____buckets_7), (void*)value); } inline static int32_t get_offset_of__slots_8() { return static_cast(offsetof(HashSet_1_t45F75268054D01D9E70EB33D7F6D2FA609DB9229, ____slots_8)); } inline SlotU5BU5D_t0AE906AEB021E70A8C465C39ADD28C2B4884604D* get__slots_8() const { return ____slots_8; } inline SlotU5BU5D_t0AE906AEB021E70A8C465C39ADD28C2B4884604D** get_address_of__slots_8() { return &____slots_8; } inline void set__slots_8(SlotU5BU5D_t0AE906AEB021E70A8C465C39ADD28C2B4884604D* value) { ____slots_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____slots_8), (void*)value); } inline static int32_t get_offset_of__count_9() { return static_cast(offsetof(HashSet_1_t45F75268054D01D9E70EB33D7F6D2FA609DB9229, ____count_9)); } inline int32_t get__count_9() const { return ____count_9; } inline int32_t* get_address_of__count_9() { return &____count_9; } inline void set__count_9(int32_t value) { ____count_9 = value; } inline static int32_t get_offset_of__lastIndex_10() { return static_cast(offsetof(HashSet_1_t45F75268054D01D9E70EB33D7F6D2FA609DB9229, ____lastIndex_10)); } inline int32_t get__lastIndex_10() const { return ____lastIndex_10; } inline int32_t* get_address_of__lastIndex_10() { return &____lastIndex_10; } inline void set__lastIndex_10(int32_t value) { ____lastIndex_10 = value; } inline static int32_t get_offset_of__freeList_11() { return static_cast(offsetof(HashSet_1_t45F75268054D01D9E70EB33D7F6D2FA609DB9229, ____freeList_11)); } inline int32_t get__freeList_11() const { return ____freeList_11; } inline int32_t* get_address_of__freeList_11() { return &____freeList_11; } inline void set__freeList_11(int32_t value) { ____freeList_11 = value; } inline static int32_t get_offset_of__comparer_12() { return static_cast(offsetof(HashSet_1_t45F75268054D01D9E70EB33D7F6D2FA609DB9229, ____comparer_12)); } inline RuntimeObject* get__comparer_12() const { return ____comparer_12; } inline RuntimeObject** get_address_of__comparer_12() { return &____comparer_12; } inline void set__comparer_12(RuntimeObject* value) { ____comparer_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____comparer_12), (void*)value); } inline static int32_t get_offset_of__version_13() { return static_cast(offsetof(HashSet_1_t45F75268054D01D9E70EB33D7F6D2FA609DB9229, ____version_13)); } inline int32_t get__version_13() const { return ____version_13; } inline int32_t* get_address_of__version_13() { return &____version_13; } inline void set__version_13(int32_t value) { ____version_13 = value; } inline static int32_t get_offset_of__siInfo_14() { return static_cast(offsetof(HashSet_1_t45F75268054D01D9E70EB33D7F6D2FA609DB9229, ____siInfo_14)); } inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * get__siInfo_14() const { return ____siInfo_14; } inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 ** get_address_of__siInfo_14() { return &____siInfo_14; } inline void set__siInfo_14(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * value) { ____siInfo_14 = value; Il2CppCodeGenWriteBarrier((void**)(&____siInfo_14), (void*)value); } }; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t957197774A5B992291BD30CAA0D5D9CCFA3DCAE9 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/KeyCollection::dictionary Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast(offsetof(KeyCollection_t957197774A5B992291BD30CAA0D5D9CCFA3DCAE9, ___dictionary_0)); } inline Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_tD6947050802043C1EF83E27C7D278C8790D69D83 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_tD6947050802043C1EF83E27C7D278C8790D69D83, ____items_1)); } inline InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* get__items_1() const { return ____items_1; } inline InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6** get_address_of__items_1() { return &____items_1; } inline void set__items_1(InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_tD6947050802043C1EF83E27C7D278C8790D69D83, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_tD6947050802043C1EF83E27C7D278C8790D69D83, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_tD6947050802043C1EF83E27C7D278C8790D69D83, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_tAC9866130CCE9F688E2E8D1782F54217E5E3A32F : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items InputDeviceDescriptionU5BU5D_t42F2D0E6A909DFD21287F5A79032AB64986F8BF0* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_tAC9866130CCE9F688E2E8D1782F54217E5E3A32F, ____items_1)); } inline InputDeviceDescriptionU5BU5D_t42F2D0E6A909DFD21287F5A79032AB64986F8BF0* get__items_1() const { return ____items_1; } inline InputDeviceDescriptionU5BU5D_t42F2D0E6A909DFD21287F5A79032AB64986F8BF0** get_address_of__items_1() { return &____items_1; } inline void set__items_1(InputDeviceDescriptionU5BU5D_t42F2D0E6A909DFD21287F5A79032AB64986F8BF0* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_tAC9866130CCE9F688E2E8D1782F54217E5E3A32F, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_tAC9866130CCE9F688E2E8D1782F54217E5E3A32F, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_tAC9866130CCE9F688E2E8D1782F54217E5E3A32F, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____items_1)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__items_1() const { return ____items_1; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct Il2CppArrayBounds; // System.Array // System.Attribute struct Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 : public RuntimeObject { public: public: }; // System.IO.BinaryReader struct BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128 : public RuntimeObject { public: // System.IO.Stream System.IO.BinaryReader::m_stream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___m_stream_0; // System.Byte[] System.IO.BinaryReader::m_buffer ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___m_buffer_1; // System.Text.Decoder System.IO.BinaryReader::m_decoder Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 * ___m_decoder_2; // System.Byte[] System.IO.BinaryReader::m_charBytes ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___m_charBytes_3; // System.Char[] System.IO.BinaryReader::m_singleChar CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___m_singleChar_4; // System.Char[] System.IO.BinaryReader::m_charBuffer CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___m_charBuffer_5; // System.Int32 System.IO.BinaryReader::m_maxCharsSize int32_t ___m_maxCharsSize_6; // System.Boolean System.IO.BinaryReader::m_2BytesPerChar bool ___m_2BytesPerChar_7; // System.Boolean System.IO.BinaryReader::m_isMemoryStream bool ___m_isMemoryStream_8; // System.Boolean System.IO.BinaryReader::m_leaveOpen bool ___m_leaveOpen_9; public: inline static int32_t get_offset_of_m_stream_0() { return static_cast(offsetof(BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128, ___m_stream_0)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_m_stream_0() const { return ___m_stream_0; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_m_stream_0() { return &___m_stream_0; } inline void set_m_stream_0(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___m_stream_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_stream_0), (void*)value); } inline static int32_t get_offset_of_m_buffer_1() { return static_cast(offsetof(BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128, ___m_buffer_1)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_m_buffer_1() const { return ___m_buffer_1; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_m_buffer_1() { return &___m_buffer_1; } inline void set_m_buffer_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___m_buffer_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_buffer_1), (void*)value); } inline static int32_t get_offset_of_m_decoder_2() { return static_cast(offsetof(BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128, ___m_decoder_2)); } inline Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 * get_m_decoder_2() const { return ___m_decoder_2; } inline Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 ** get_address_of_m_decoder_2() { return &___m_decoder_2; } inline void set_m_decoder_2(Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 * value) { ___m_decoder_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_decoder_2), (void*)value); } inline static int32_t get_offset_of_m_charBytes_3() { return static_cast(offsetof(BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128, ___m_charBytes_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_m_charBytes_3() const { return ___m_charBytes_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_m_charBytes_3() { return &___m_charBytes_3; } inline void set_m_charBytes_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___m_charBytes_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_charBytes_3), (void*)value); } inline static int32_t get_offset_of_m_singleChar_4() { return static_cast(offsetof(BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128, ___m_singleChar_4)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_m_singleChar_4() const { return ___m_singleChar_4; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_m_singleChar_4() { return &___m_singleChar_4; } inline void set_m_singleChar_4(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___m_singleChar_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_singleChar_4), (void*)value); } inline static int32_t get_offset_of_m_charBuffer_5() { return static_cast(offsetof(BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128, ___m_charBuffer_5)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_m_charBuffer_5() const { return ___m_charBuffer_5; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_m_charBuffer_5() { return &___m_charBuffer_5; } inline void set_m_charBuffer_5(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___m_charBuffer_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_charBuffer_5), (void*)value); } inline static int32_t get_offset_of_m_maxCharsSize_6() { return static_cast(offsetof(BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128, ___m_maxCharsSize_6)); } inline int32_t get_m_maxCharsSize_6() const { return ___m_maxCharsSize_6; } inline int32_t* get_address_of_m_maxCharsSize_6() { return &___m_maxCharsSize_6; } inline void set_m_maxCharsSize_6(int32_t value) { ___m_maxCharsSize_6 = value; } inline static int32_t get_offset_of_m_2BytesPerChar_7() { return static_cast(offsetof(BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128, ___m_2BytesPerChar_7)); } inline bool get_m_2BytesPerChar_7() const { return ___m_2BytesPerChar_7; } inline bool* get_address_of_m_2BytesPerChar_7() { return &___m_2BytesPerChar_7; } inline void set_m_2BytesPerChar_7(bool value) { ___m_2BytesPerChar_7 = value; } inline static int32_t get_offset_of_m_isMemoryStream_8() { return static_cast(offsetof(BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128, ___m_isMemoryStream_8)); } inline bool get_m_isMemoryStream_8() const { return ___m_isMemoryStream_8; } inline bool* get_address_of_m_isMemoryStream_8() { return &___m_isMemoryStream_8; } inline void set_m_isMemoryStream_8(bool value) { ___m_isMemoryStream_8 = value; } inline static int32_t get_offset_of_m_leaveOpen_9() { return static_cast(offsetof(BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128, ___m_leaveOpen_9)); } inline bool get_m_leaveOpen_9() const { return ___m_leaveOpen_9; } inline bool* get_address_of_m_leaveOpen_9() { return &___m_leaveOpen_9; } inline void set_m_leaveOpen_9(bool value) { ___m_leaveOpen_9 = value; } }; // System.IO.BinaryWriter struct BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F : public RuntimeObject { public: // System.IO.Stream System.IO.BinaryWriter::OutStream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___OutStream_1; // System.Byte[] System.IO.BinaryWriter::_buffer ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____buffer_2; // System.Text.Encoding System.IO.BinaryWriter::_encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ____encoding_3; // System.Text.Encoder System.IO.BinaryWriter::_encoder Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A * ____encoder_4; // System.Boolean System.IO.BinaryWriter::_leaveOpen bool ____leaveOpen_5; // System.Byte[] System.IO.BinaryWriter::_largeByteBuffer ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____largeByteBuffer_6; // System.Int32 System.IO.BinaryWriter::_maxChars int32_t ____maxChars_7; public: inline static int32_t get_offset_of_OutStream_1() { return static_cast(offsetof(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F, ___OutStream_1)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_OutStream_1() const { return ___OutStream_1; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_OutStream_1() { return &___OutStream_1; } inline void set_OutStream_1(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___OutStream_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___OutStream_1), (void*)value); } inline static int32_t get_offset_of__buffer_2() { return static_cast(offsetof(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F, ____buffer_2)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__buffer_2() const { return ____buffer_2; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__buffer_2() { return &____buffer_2; } inline void set__buffer_2(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ____buffer_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____buffer_2), (void*)value); } inline static int32_t get_offset_of__encoding_3() { return static_cast(offsetof(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F, ____encoding_3)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get__encoding_3() const { return ____encoding_3; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of__encoding_3() { return &____encoding_3; } inline void set__encoding_3(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ____encoding_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____encoding_3), (void*)value); } inline static int32_t get_offset_of__encoder_4() { return static_cast(offsetof(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F, ____encoder_4)); } inline Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A * get__encoder_4() const { return ____encoder_4; } inline Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A ** get_address_of__encoder_4() { return &____encoder_4; } inline void set__encoder_4(Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A * value) { ____encoder_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____encoder_4), (void*)value); } inline static int32_t get_offset_of__leaveOpen_5() { return static_cast(offsetof(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F, ____leaveOpen_5)); } inline bool get__leaveOpen_5() const { return ____leaveOpen_5; } inline bool* get_address_of__leaveOpen_5() { return &____leaveOpen_5; } inline void set__leaveOpen_5(bool value) { ____leaveOpen_5 = value; } inline static int32_t get_offset_of__largeByteBuffer_6() { return static_cast(offsetof(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F, ____largeByteBuffer_6)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__largeByteBuffer_6() const { return ____largeByteBuffer_6; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__largeByteBuffer_6() { return &____largeByteBuffer_6; } inline void set__largeByteBuffer_6(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ____largeByteBuffer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____largeByteBuffer_6), (void*)value); } inline static int32_t get_offset_of__maxChars_7() { return static_cast(offsetof(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F, ____maxChars_7)); } inline int32_t get__maxChars_7() const { return ____maxChars_7; } inline int32_t* get_address_of__maxChars_7() { return &____maxChars_7; } inline void set__maxChars_7(int32_t value) { ____maxChars_7 = value; } }; // UnityEngine.InputSystem.InputExtensions struct InputExtensions_tEFDA1A36B86A843061AEF78347AC090B8D46CB93 : public RuntimeObject { public: public: }; // UnityEngine.InputSystem.InputFeatureNames struct InputFeatureNames_t68E725CF3F7A4053DD34AEF68F46E3D50D3F8385 : public RuntimeObject { public: public: }; // UnityEngine.InputSystem.LowLevel.InputRuntime struct InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8 : public RuntimeObject { public: public: }; // UnityEngine.InputSystem.InputSystem struct InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380 : public RuntimeObject { public: public: }; // System.MarshalByRefObject struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 : public RuntimeObject { public: // System.Object System.MarshalByRefObject::_identity RuntimeObject * ____identity_0; public: inline static int32_t get_offset_of__identity_0() { return static_cast(offsetof(MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8, ____identity_0)); } inline RuntimeObject * get__identity_0() const { return ____identity_0; } inline RuntimeObject ** get_address_of__identity_0() { return &____identity_0; } inline void set__identity_0(RuntimeObject * value) { ____identity_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____identity_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.MarshalByRefObject struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_pinvoke { Il2CppIUnknown* ____identity_0; }; // Native definition for COM marshalling of System.MarshalByRefObject struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_com { Il2CppIUnknown* ____identity_0; }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; // System.Diagnostics.Stopwatch struct Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89 : public RuntimeObject { public: // System.Int64 System.Diagnostics.Stopwatch::elapsed int64_t ___elapsed_2; // System.Int64 System.Diagnostics.Stopwatch::started int64_t ___started_3; // System.Boolean System.Diagnostics.Stopwatch::is_running bool ___is_running_4; public: inline static int32_t get_offset_of_elapsed_2() { return static_cast(offsetof(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89, ___elapsed_2)); } inline int64_t get_elapsed_2() const { return ___elapsed_2; } inline int64_t* get_address_of_elapsed_2() { return &___elapsed_2; } inline void set_elapsed_2(int64_t value) { ___elapsed_2 = value; } inline static int32_t get_offset_of_started_3() { return static_cast(offsetof(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89, ___started_3)); } inline int64_t get_started_3() const { return ___started_3; } inline int64_t* get_address_of_started_3() { return &___started_3; } inline void set_started_3(int64_t value) { ___started_3 = value; } inline static int32_t get_offset_of_is_running_4() { return static_cast(offsetof(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89, ___is_running_4)); } inline bool get_is_running_4() const { return ___is_running_4; } inline bool* get_address_of_is_running_4() { return &___is_running_4; } inline void set_is_running_4(bool value) { ___is_running_4 = value; } }; // System.String struct String_t : public RuntimeObject { public: // System.Int32 System.String::m_stringLength int32_t ___m_stringLength_0; // System.Char System.String::m_firstChar Il2CppChar ___m_firstChar_1; public: inline static int32_t get_offset_of_m_stringLength_0() { return static_cast(offsetof(String_t, ___m_stringLength_0)); } inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; } inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; } inline void set_m_stringLength_0(int32_t value) { ___m_stringLength_0 = value; } inline static int32_t get_offset_of_m_firstChar_1() { return static_cast(offsetof(String_t, ___m_firstChar_1)); } inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; } inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; } inline void set_m_firstChar_1(Il2CppChar value) { ___m_firstChar_1 = value; } }; // System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com { }; // UnityEngine.InputSystem.Layouts.InputDeviceMatcher/<>c struct U3CU3Ec_tE2728AA79E51BD5F4C35DDD7B9C1C562C2164BD8 : public RuntimeObject { public: public: }; // UnityEngine.InputSystem.LowLevel.InputEventListener/DisposableObserver struct DisposableObserver_t3EA358A188D2946104E227EC7510A1247577761E : public RuntimeObject { public: // System.IObserver`1 UnityEngine.InputSystem.LowLevel.InputEventListener/DisposableObserver::observer RuntimeObject* ___observer_0; public: inline static int32_t get_offset_of_observer_0() { return static_cast(offsetof(DisposableObserver_t3EA358A188D2946104E227EC7510A1247577761E, ___observer_0)); } inline RuntimeObject* get_observer_0() const { return ___observer_0; } inline RuntimeObject** get_address_of_observer_0() { return &___observer_0; } inline void set_observer_0(RuntimeObject* value) { ___observer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___observer_0), (void*)value); } }; // UnityEngine.InputSystem.InputManager/<>c struct U3CU3Ec_tA14A9657912D2AB6AA361CE3720B2DFDC8F69CDF : public RuntimeObject { public: public: }; // UnityEngine.InputSystem.Utilities.InlinedArray`1> struct InlinedArray_1_tAA4815844922B683BC7EA863FF03644D1AA6A100 { public: // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue Action_1_t231F2AF856D3317D1380298224A60D02F9F43072 * ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues Action_1U5BU5D_tE3A263A4248001B89160105AAF0340E85A8619B2* ___additionalValues_2; public: inline static int32_t get_offset_of_length_0() { return static_cast(offsetof(InlinedArray_1_tAA4815844922B683BC7EA863FF03644D1AA6A100, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_firstValue_1() { return static_cast(offsetof(InlinedArray_1_tAA4815844922B683BC7EA863FF03644D1AA6A100, ___firstValue_1)); } inline Action_1_t231F2AF856D3317D1380298224A60D02F9F43072 * get_firstValue_1() const { return ___firstValue_1; } inline Action_1_t231F2AF856D3317D1380298224A60D02F9F43072 ** get_address_of_firstValue_1() { return &___firstValue_1; } inline void set_firstValue_1(Action_1_t231F2AF856D3317D1380298224A60D02F9F43072 * value) { ___firstValue_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value); } inline static int32_t get_offset_of_additionalValues_2() { return static_cast(offsetof(InlinedArray_1_tAA4815844922B683BC7EA863FF03644D1AA6A100, ___additionalValues_2)); } inline Action_1U5BU5D_tE3A263A4248001B89160105AAF0340E85A8619B2* get_additionalValues_2() const { return ___additionalValues_2; } inline Action_1U5BU5D_tE3A263A4248001B89160105AAF0340E85A8619B2** get_address_of_additionalValues_2() { return &___additionalValues_2; } inline void set_additionalValues_2(Action_1U5BU5D_tE3A263A4248001B89160105AAF0340E85A8619B2* value) { ___additionalValues_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value); } }; // UnityEngine.InputSystem.Utilities.InlinedArray`1> struct InlinedArray_1_t78FDC7F1CD6623C5E091BB79EC2F93375CE38CE9 { public: // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues Action_1U5BU5D_t45AFA72AB9C17482E4A448FF460696B2CD7F5B30* ___additionalValues_2; public: inline static int32_t get_offset_of_length_0() { return static_cast(offsetof(InlinedArray_1_t78FDC7F1CD6623C5E091BB79EC2F93375CE38CE9, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_firstValue_1() { return static_cast(offsetof(InlinedArray_1_t78FDC7F1CD6623C5E091BB79EC2F93375CE38CE9, ___firstValue_1)); } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get_firstValue_1() const { return ___firstValue_1; } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of_firstValue_1() { return &___firstValue_1; } inline void set_firstValue_1(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value) { ___firstValue_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value); } inline static int32_t get_offset_of_additionalValues_2() { return static_cast(offsetof(InlinedArray_1_t78FDC7F1CD6623C5E091BB79EC2F93375CE38CE9, ___additionalValues_2)); } inline Action_1U5BU5D_t45AFA72AB9C17482E4A448FF460696B2CD7F5B30* get_additionalValues_2() const { return ___additionalValues_2; } inline Action_1U5BU5D_t45AFA72AB9C17482E4A448FF460696B2CD7F5B30** get_address_of_additionalValues_2() { return &___additionalValues_2; } inline void set_additionalValues_2(Action_1U5BU5D_t45AFA72AB9C17482E4A448FF460696B2CD7F5B30* value) { ___additionalValues_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value); } }; // UnityEngine.InputSystem.Utilities.InlinedArray`1> struct InlinedArray_1_t02AB39E6F94F40A915AE5843BDB88347C7AD02B5 { public: // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue Action_1_tF027A14E846C2C7B23079AF50A99AF77371FFC81 * ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues Action_1U5BU5D_t8054A94E13920B6EAD3A3ACE9E49CCEB297F5292* ___additionalValues_2; public: inline static int32_t get_offset_of_length_0() { return static_cast(offsetof(InlinedArray_1_t02AB39E6F94F40A915AE5843BDB88347C7AD02B5, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_firstValue_1() { return static_cast(offsetof(InlinedArray_1_t02AB39E6F94F40A915AE5843BDB88347C7AD02B5, ___firstValue_1)); } inline Action_1_tF027A14E846C2C7B23079AF50A99AF77371FFC81 * get_firstValue_1() const { return ___firstValue_1; } inline Action_1_tF027A14E846C2C7B23079AF50A99AF77371FFC81 ** get_address_of_firstValue_1() { return &___firstValue_1; } inline void set_firstValue_1(Action_1_tF027A14E846C2C7B23079AF50A99AF77371FFC81 * value) { ___firstValue_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value); } inline static int32_t get_offset_of_additionalValues_2() { return static_cast(offsetof(InlinedArray_1_t02AB39E6F94F40A915AE5843BDB88347C7AD02B5, ___additionalValues_2)); } inline Action_1U5BU5D_t8054A94E13920B6EAD3A3ACE9E49CCEB297F5292* get_additionalValues_2() const { return ___additionalValues_2; } inline Action_1U5BU5D_t8054A94E13920B6EAD3A3ACE9E49CCEB297F5292** get_address_of_additionalValues_2() { return &___additionalValues_2; } inline void set_additionalValues_2(Action_1U5BU5D_t8054A94E13920B6EAD3A3ACE9E49CCEB297F5292* value) { ___additionalValues_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value); } }; // UnityEngine.InputSystem.Utilities.InlinedArray`1> struct InlinedArray_1_t3C2C2D9BCDB3F198EA76C8FADB534D30D4BC026B { public: // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue Action_2_tA58D913EBCC7FD3E95DEC877EDB4363CD3051DF4 * ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues Action_2U5BU5D_tD41A0E9C051E282AFAF25563D2EB7DA29E01D84E* ___additionalValues_2; public: inline static int32_t get_offset_of_length_0() { return static_cast(offsetof(InlinedArray_1_t3C2C2D9BCDB3F198EA76C8FADB534D30D4BC026B, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_firstValue_1() { return static_cast(offsetof(InlinedArray_1_t3C2C2D9BCDB3F198EA76C8FADB534D30D4BC026B, ___firstValue_1)); } inline Action_2_tA58D913EBCC7FD3E95DEC877EDB4363CD3051DF4 * get_firstValue_1() const { return ___firstValue_1; } inline Action_2_tA58D913EBCC7FD3E95DEC877EDB4363CD3051DF4 ** get_address_of_firstValue_1() { return &___firstValue_1; } inline void set_firstValue_1(Action_2_tA58D913EBCC7FD3E95DEC877EDB4363CD3051DF4 * value) { ___firstValue_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value); } inline static int32_t get_offset_of_additionalValues_2() { return static_cast(offsetof(InlinedArray_1_t3C2C2D9BCDB3F198EA76C8FADB534D30D4BC026B, ___additionalValues_2)); } inline Action_2U5BU5D_tD41A0E9C051E282AFAF25563D2EB7DA29E01D84E* get_additionalValues_2() const { return ___additionalValues_2; } inline Action_2U5BU5D_tD41A0E9C051E282AFAF25563D2EB7DA29E01D84E** get_address_of_additionalValues_2() { return &___additionalValues_2; } inline void set_additionalValues_2(Action_2U5BU5D_tD41A0E9C051E282AFAF25563D2EB7DA29E01D84E* value) { ___additionalValues_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value); } }; // UnityEngine.InputSystem.Utilities.InlinedArray`1> struct InlinedArray_1_t9A746F7A5D2F131C836D4D54FF78A4CF2610112F { public: // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue Action_2_t22339AC0C02B10DD3C743D557C52738BA901E74A * ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues Action_2U5BU5D_tBCA27D9CCFE789AEC1F9469632476E65211B1BC8* ___additionalValues_2; public: inline static int32_t get_offset_of_length_0() { return static_cast(offsetof(InlinedArray_1_t9A746F7A5D2F131C836D4D54FF78A4CF2610112F, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_firstValue_1() { return static_cast(offsetof(InlinedArray_1_t9A746F7A5D2F131C836D4D54FF78A4CF2610112F, ___firstValue_1)); } inline Action_2_t22339AC0C02B10DD3C743D557C52738BA901E74A * get_firstValue_1() const { return ___firstValue_1; } inline Action_2_t22339AC0C02B10DD3C743D557C52738BA901E74A ** get_address_of_firstValue_1() { return &___firstValue_1; } inline void set_firstValue_1(Action_2_t22339AC0C02B10DD3C743D557C52738BA901E74A * value) { ___firstValue_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value); } inline static int32_t get_offset_of_additionalValues_2() { return static_cast(offsetof(InlinedArray_1_t9A746F7A5D2F131C836D4D54FF78A4CF2610112F, ___additionalValues_2)); } inline Action_2U5BU5D_tBCA27D9CCFE789AEC1F9469632476E65211B1BC8* get_additionalValues_2() const { return ___additionalValues_2; } inline Action_2U5BU5D_tBCA27D9CCFE789AEC1F9469632476E65211B1BC8** get_address_of_additionalValues_2() { return &___additionalValues_2; } inline void set_additionalValues_2(Action_2U5BU5D_tBCA27D9CCFE789AEC1F9469632476E65211B1BC8* value) { ___additionalValues_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value); } }; // UnityEngine.InputSystem.Utilities.InlinedArray`1> struct InlinedArray_1_tD5F685FF73D92B8276AD229C65D1FAAA1B6EB726 { public: // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues Action_2U5BU5D_tB52FFE57FE49AE90E8A2DBFA471AADAFF83C00BD* ___additionalValues_2; public: inline static int32_t get_offset_of_length_0() { return static_cast(offsetof(InlinedArray_1_tD5F685FF73D92B8276AD229C65D1FAAA1B6EB726, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_firstValue_1() { return static_cast(offsetof(InlinedArray_1_tD5F685FF73D92B8276AD229C65D1FAAA1B6EB726, ___firstValue_1)); } inline Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * get_firstValue_1() const { return ___firstValue_1; } inline Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C ** get_address_of_firstValue_1() { return &___firstValue_1; } inline void set_firstValue_1(Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * value) { ___firstValue_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value); } inline static int32_t get_offset_of_additionalValues_2() { return static_cast(offsetof(InlinedArray_1_tD5F685FF73D92B8276AD229C65D1FAAA1B6EB726, ___additionalValues_2)); } inline Action_2U5BU5D_tB52FFE57FE49AE90E8A2DBFA471AADAFF83C00BD* get_additionalValues_2() const { return ___additionalValues_2; } inline Action_2U5BU5D_tB52FFE57FE49AE90E8A2DBFA471AADAFF83C00BD** get_address_of_additionalValues_2() { return &___additionalValues_2; } inline void set_additionalValues_2(Action_2U5BU5D_tB52FFE57FE49AE90E8A2DBFA471AADAFF83C00BD* value) { ___additionalValues_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value); } }; // UnityEngine.InputSystem.Utilities.InlinedArray`1> struct InlinedArray_1_t11674460DA620A45244D88D34F7CCBEFE0595CE0 { public: // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue Action_2_tB9B1B9645C739483997CEFD136850320B3E81752 * ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues Action_2U5BU5D_t9463B740A9CAAC9CB11CA62CD85CF026AA28DDAB* ___additionalValues_2; public: inline static int32_t get_offset_of_length_0() { return static_cast(offsetof(InlinedArray_1_t11674460DA620A45244D88D34F7CCBEFE0595CE0, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_firstValue_1() { return static_cast(offsetof(InlinedArray_1_t11674460DA620A45244D88D34F7CCBEFE0595CE0, ___firstValue_1)); } inline Action_2_tB9B1B9645C739483997CEFD136850320B3E81752 * get_firstValue_1() const { return ___firstValue_1; } inline Action_2_tB9B1B9645C739483997CEFD136850320B3E81752 ** get_address_of_firstValue_1() { return &___firstValue_1; } inline void set_firstValue_1(Action_2_tB9B1B9645C739483997CEFD136850320B3E81752 * value) { ___firstValue_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value); } inline static int32_t get_offset_of_additionalValues_2() { return static_cast(offsetof(InlinedArray_1_t11674460DA620A45244D88D34F7CCBEFE0595CE0, ___additionalValues_2)); } inline Action_2U5BU5D_t9463B740A9CAAC9CB11CA62CD85CF026AA28DDAB* get_additionalValues_2() const { return ___additionalValues_2; } inline Action_2U5BU5D_t9463B740A9CAAC9CB11CA62CD85CF026AA28DDAB** get_address_of_additionalValues_2() { return &___additionalValues_2; } inline void set_additionalValues_2(Action_2U5BU5D_t9463B740A9CAAC9CB11CA62CD85CF026AA28DDAB* value) { ___additionalValues_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value); } }; // UnityEngine.InputSystem.Utilities.InlinedArray`1> struct InlinedArray_1_t83243D33E8FC822E3C1594248A3F8A3A0F856789 { public: // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue Action_2_t86645AF7004B27FBBEEA9B4EBCE215885AFBC3E7 * ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues Action_2U5BU5D_t7DBAF0A2F1C24EC434ED4A6C16B8B019D0DB5441* ___additionalValues_2; public: inline static int32_t get_offset_of_length_0() { return static_cast(offsetof(InlinedArray_1_t83243D33E8FC822E3C1594248A3F8A3A0F856789, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_firstValue_1() { return static_cast(offsetof(InlinedArray_1_t83243D33E8FC822E3C1594248A3F8A3A0F856789, ___firstValue_1)); } inline Action_2_t86645AF7004B27FBBEEA9B4EBCE215885AFBC3E7 * get_firstValue_1() const { return ___firstValue_1; } inline Action_2_t86645AF7004B27FBBEEA9B4EBCE215885AFBC3E7 ** get_address_of_firstValue_1() { return &___firstValue_1; } inline void set_firstValue_1(Action_2_t86645AF7004B27FBBEEA9B4EBCE215885AFBC3E7 * value) { ___firstValue_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value); } inline static int32_t get_offset_of_additionalValues_2() { return static_cast(offsetof(InlinedArray_1_t83243D33E8FC822E3C1594248A3F8A3A0F856789, ___additionalValues_2)); } inline Action_2U5BU5D_t7DBAF0A2F1C24EC434ED4A6C16B8B019D0DB5441* get_additionalValues_2() const { return ___additionalValues_2; } inline Action_2U5BU5D_t7DBAF0A2F1C24EC434ED4A6C16B8B019D0DB5441** get_address_of_additionalValues_2() { return &___additionalValues_2; } inline void set_additionalValues_2(Action_2U5BU5D_t7DBAF0A2F1C24EC434ED4A6C16B8B019D0DB5441* value) { ___additionalValues_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value); } }; // UnityEngine.InputSystem.Utilities.InlinedArray`1> struct InlinedArray_1_tF17E889B912A2846623D0697391F2AF3830FDA73 { public: // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue Action_2_t13A6742A48923F2F95E0DBF426A94946BB52A341 * ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues Action_2U5BU5D_tFADEA5D28B0568C280576AC3094EBFD8A3D0A61C* ___additionalValues_2; public: inline static int32_t get_offset_of_length_0() { return static_cast(offsetof(InlinedArray_1_tF17E889B912A2846623D0697391F2AF3830FDA73, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_firstValue_1() { return static_cast(offsetof(InlinedArray_1_tF17E889B912A2846623D0697391F2AF3830FDA73, ___firstValue_1)); } inline Action_2_t13A6742A48923F2F95E0DBF426A94946BB52A341 * get_firstValue_1() const { return ___firstValue_1; } inline Action_2_t13A6742A48923F2F95E0DBF426A94946BB52A341 ** get_address_of_firstValue_1() { return &___firstValue_1; } inline void set_firstValue_1(Action_2_t13A6742A48923F2F95E0DBF426A94946BB52A341 * value) { ___firstValue_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value); } inline static int32_t get_offset_of_additionalValues_2() { return static_cast(offsetof(InlinedArray_1_tF17E889B912A2846623D0697391F2AF3830FDA73, ___additionalValues_2)); } inline Action_2U5BU5D_tFADEA5D28B0568C280576AC3094EBFD8A3D0A61C* get_additionalValues_2() const { return ___additionalValues_2; } inline Action_2U5BU5D_tFADEA5D28B0568C280576AC3094EBFD8A3D0A61C** get_address_of_additionalValues_2() { return &___additionalValues_2; } inline void set_additionalValues_2(Action_2U5BU5D_tFADEA5D28B0568C280576AC3094EBFD8A3D0A61C* value) { ___additionalValues_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value); } }; // UnityEngine.InputSystem.Utilities.InlinedArray`1> struct InlinedArray_1_tAE03F643A92B30307BD81C17CFEF5289EF266D4A { public: // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue Action_2_t961B8FC40C595B3E8948D3CB85E51EB90540D7EF * ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues Action_2U5BU5D_t83DF7E20FD1A3C4F6A6FE31F98451AB69E750981* ___additionalValues_2; public: inline static int32_t get_offset_of_length_0() { return static_cast(offsetof(InlinedArray_1_tAE03F643A92B30307BD81C17CFEF5289EF266D4A, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_firstValue_1() { return static_cast(offsetof(InlinedArray_1_tAE03F643A92B30307BD81C17CFEF5289EF266D4A, ___firstValue_1)); } inline Action_2_t961B8FC40C595B3E8948D3CB85E51EB90540D7EF * get_firstValue_1() const { return ___firstValue_1; } inline Action_2_t961B8FC40C595B3E8948D3CB85E51EB90540D7EF ** get_address_of_firstValue_1() { return &___firstValue_1; } inline void set_firstValue_1(Action_2_t961B8FC40C595B3E8948D3CB85E51EB90540D7EF * value) { ___firstValue_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value); } inline static int32_t get_offset_of_additionalValues_2() { return static_cast(offsetof(InlinedArray_1_tAE03F643A92B30307BD81C17CFEF5289EF266D4A, ___additionalValues_2)); } inline Action_2U5BU5D_t83DF7E20FD1A3C4F6A6FE31F98451AB69E750981* get_additionalValues_2() const { return ___additionalValues_2; } inline Action_2U5BU5D_t83DF7E20FD1A3C4F6A6FE31F98451AB69E750981** get_address_of_additionalValues_2() { return &___additionalValues_2; } inline void set_additionalValues_2(Action_2U5BU5D_t83DF7E20FD1A3C4F6A6FE31F98451AB69E750981* value) { ___additionalValues_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value); } }; // UnityEngine.InputSystem.Utilities.InlinedArray`1> struct InlinedArray_1_t6D7DFF6DD189AA38362F43FFE7B988692F419234 { public: // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue Action_2_tB596892BAE11233D1410B282A3EE7610732B50EC * ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues Action_2U5BU5D_t8B6AB971B66493894C76964146F49BCDE4994054* ___additionalValues_2; public: inline static int32_t get_offset_of_length_0() { return static_cast(offsetof(InlinedArray_1_t6D7DFF6DD189AA38362F43FFE7B988692F419234, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_firstValue_1() { return static_cast(offsetof(InlinedArray_1_t6D7DFF6DD189AA38362F43FFE7B988692F419234, ___firstValue_1)); } inline Action_2_tB596892BAE11233D1410B282A3EE7610732B50EC * get_firstValue_1() const { return ___firstValue_1; } inline Action_2_tB596892BAE11233D1410B282A3EE7610732B50EC ** get_address_of_firstValue_1() { return &___firstValue_1; } inline void set_firstValue_1(Action_2_tB596892BAE11233D1410B282A3EE7610732B50EC * value) { ___firstValue_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value); } inline static int32_t get_offset_of_additionalValues_2() { return static_cast(offsetof(InlinedArray_1_t6D7DFF6DD189AA38362F43FFE7B988692F419234, ___additionalValues_2)); } inline Action_2U5BU5D_t8B6AB971B66493894C76964146F49BCDE4994054* get_additionalValues_2() const { return ___additionalValues_2; } inline Action_2U5BU5D_t8B6AB971B66493894C76964146F49BCDE4994054** get_address_of_additionalValues_2() { return &___additionalValues_2; } inline void set_additionalValues_2(Action_2U5BU5D_t8B6AB971B66493894C76964146F49BCDE4994054* value) { ___additionalValues_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value); } }; // UnityEngine.InputSystem.Utilities.InlinedArray`1> struct InlinedArray_1_t13A70E27E7343557A3762B3A0536C9EC58637950 { public: // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue RuntimeObject* ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues IObserver_1U5BU5D_t7114812F8559FB426ACA279939C2FE40556E53DB* ___additionalValues_2; public: inline static int32_t get_offset_of_length_0() { return static_cast(offsetof(InlinedArray_1_t13A70E27E7343557A3762B3A0536C9EC58637950, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_firstValue_1() { return static_cast(offsetof(InlinedArray_1_t13A70E27E7343557A3762B3A0536C9EC58637950, ___firstValue_1)); } inline RuntimeObject* get_firstValue_1() const { return ___firstValue_1; } inline RuntimeObject** get_address_of_firstValue_1() { return &___firstValue_1; } inline void set_firstValue_1(RuntimeObject* value) { ___firstValue_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value); } inline static int32_t get_offset_of_additionalValues_2() { return static_cast(offsetof(InlinedArray_1_t13A70E27E7343557A3762B3A0536C9EC58637950, ___additionalValues_2)); } inline IObserver_1U5BU5D_t7114812F8559FB426ACA279939C2FE40556E53DB* get_additionalValues_2() const { return ___additionalValues_2; } inline IObserver_1U5BU5D_t7114812F8559FB426ACA279939C2FE40556E53DB** get_address_of_additionalValues_2() { return &___additionalValues_2; } inline void set_additionalValues_2(IObserver_1U5BU5D_t7114812F8559FB426ACA279939C2FE40556E53DB* value) { ___additionalValues_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value); } }; // UnityEngine.InputSystem.Utilities.InlinedArray`1> struct InlinedArray_1_t8135010B8D8001565931433B4FF0A3948925A9FD { public: // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue InputProcessor_1_tC797B512F2641A0AB0844215B781FCBB24FC8EFA * ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues InputProcessor_1U5BU5D_tE570C3D0B2C8F6ECE9058972450FE9624F6AAD62* ___additionalValues_2; public: inline static int32_t get_offset_of_length_0() { return static_cast(offsetof(InlinedArray_1_t8135010B8D8001565931433B4FF0A3948925A9FD, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_firstValue_1() { return static_cast(offsetof(InlinedArray_1_t8135010B8D8001565931433B4FF0A3948925A9FD, ___firstValue_1)); } inline InputProcessor_1_tC797B512F2641A0AB0844215B781FCBB24FC8EFA * get_firstValue_1() const { return ___firstValue_1; } inline InputProcessor_1_tC797B512F2641A0AB0844215B781FCBB24FC8EFA ** get_address_of_firstValue_1() { return &___firstValue_1; } inline void set_firstValue_1(InputProcessor_1_tC797B512F2641A0AB0844215B781FCBB24FC8EFA * value) { ___firstValue_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value); } inline static int32_t get_offset_of_additionalValues_2() { return static_cast(offsetof(InlinedArray_1_t8135010B8D8001565931433B4FF0A3948925A9FD, ___additionalValues_2)); } inline InputProcessor_1U5BU5D_tE570C3D0B2C8F6ECE9058972450FE9624F6AAD62* get_additionalValues_2() const { return ___additionalValues_2; } inline InputProcessor_1U5BU5D_tE570C3D0B2C8F6ECE9058972450FE9624F6AAD62** get_address_of_additionalValues_2() { return &___additionalValues_2; } inline void set_additionalValues_2(InputProcessor_1U5BU5D_tE570C3D0B2C8F6ECE9058972450FE9624F6AAD62* value) { ___additionalValues_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value); } }; // UnityEngine.InputSystem.Utilities.InlinedArray`1 struct InlinedArray_1_tBE65FFEFA7BEF1F8DC1BBD3DE1B432C220FC51BF { public: // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues ActionU5BU5D_t4184CD78B103476FA93E685EDBF3C083DBA9E2C2* ___additionalValues_2; public: inline static int32_t get_offset_of_length_0() { return static_cast(offsetof(InlinedArray_1_tBE65FFEFA7BEF1F8DC1BBD3DE1B432C220FC51BF, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_firstValue_1() { return static_cast(offsetof(InlinedArray_1_tBE65FFEFA7BEF1F8DC1BBD3DE1B432C220FC51BF, ___firstValue_1)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_firstValue_1() const { return ___firstValue_1; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_firstValue_1() { return &___firstValue_1; } inline void set_firstValue_1(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___firstValue_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value); } inline static int32_t get_offset_of_additionalValues_2() { return static_cast(offsetof(InlinedArray_1_tBE65FFEFA7BEF1F8DC1BBD3DE1B432C220FC51BF, ___additionalValues_2)); } inline ActionU5BU5D_t4184CD78B103476FA93E685EDBF3C083DBA9E2C2* get_additionalValues_2() const { return ___additionalValues_2; } inline ActionU5BU5D_t4184CD78B103476FA93E685EDBF3C083DBA9E2C2** get_address_of_additionalValues_2() { return &___additionalValues_2; } inline void set_additionalValues_2(ActionU5BU5D_t4184CD78B103476FA93E685EDBF3C083DBA9E2C2* value) { ___additionalValues_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value); } }; // UnityEngine.InputSystem.Utilities.InlinedArray`1 struct InlinedArray_1_tC5C77F6FF5FBFA76A6453E7A72CF263550C8C40C { public: // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* ___additionalValues_2; public: inline static int32_t get_offset_of_length_0() { return static_cast(offsetof(InlinedArray_1_tC5C77F6FF5FBFA76A6453E7A72CF263550C8C40C, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_firstValue_1() { return static_cast(offsetof(InlinedArray_1_tC5C77F6FF5FBFA76A6453E7A72CF263550C8C40C, ___firstValue_1)); } inline InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * get_firstValue_1() const { return ___firstValue_1; } inline InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 ** get_address_of_firstValue_1() { return &___firstValue_1; } inline void set_firstValue_1(InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * value) { ___firstValue_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value); } inline static int32_t get_offset_of_additionalValues_2() { return static_cast(offsetof(InlinedArray_1_tC5C77F6FF5FBFA76A6453E7A72CF263550C8C40C, ___additionalValues_2)); } inline InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* get_additionalValues_2() const { return ___additionalValues_2; } inline InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6** get_address_of_additionalValues_2() { return &___additionalValues_2; } inline void set_additionalValues_2(InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* value) { ___additionalValues_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value); } }; // UnityEngine.InputSystem.Utilities.InlinedArray`1 struct InlinedArray_1_t740043C1A36A2183248E89E1B638F9E3954FE172 { public: // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue InputDeviceCommandDelegate_t967EA90378916CA01FF68A0403468313659A1718 * ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues InputDeviceCommandDelegateU5BU5D_t47EBBCFBA9C24BA7BE7CE0001AE9CB11F87CA7B3* ___additionalValues_2; public: inline static int32_t get_offset_of_length_0() { return static_cast(offsetof(InlinedArray_1_t740043C1A36A2183248E89E1B638F9E3954FE172, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_firstValue_1() { return static_cast(offsetof(InlinedArray_1_t740043C1A36A2183248E89E1B638F9E3954FE172, ___firstValue_1)); } inline InputDeviceCommandDelegate_t967EA90378916CA01FF68A0403468313659A1718 * get_firstValue_1() const { return ___firstValue_1; } inline InputDeviceCommandDelegate_t967EA90378916CA01FF68A0403468313659A1718 ** get_address_of_firstValue_1() { return &___firstValue_1; } inline void set_firstValue_1(InputDeviceCommandDelegate_t967EA90378916CA01FF68A0403468313659A1718 * value) { ___firstValue_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value); } inline static int32_t get_offset_of_additionalValues_2() { return static_cast(offsetof(InlinedArray_1_t740043C1A36A2183248E89E1B638F9E3954FE172, ___additionalValues_2)); } inline InputDeviceCommandDelegateU5BU5D_t47EBBCFBA9C24BA7BE7CE0001AE9CB11F87CA7B3* get_additionalValues_2() const { return ___additionalValues_2; } inline InputDeviceCommandDelegateU5BU5D_t47EBBCFBA9C24BA7BE7CE0001AE9CB11F87CA7B3** get_address_of_additionalValues_2() { return &___additionalValues_2; } inline void set_additionalValues_2(InputDeviceCommandDelegateU5BU5D_t47EBBCFBA9C24BA7BE7CE0001AE9CB11F87CA7B3* value) { ___additionalValues_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value); } }; // UnityEngine.InputSystem.Utilities.InlinedArray`1 struct InlinedArray_1_t28A0B99AACBC64E01FB1E06F511487AB0DF535CC { public: // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue InputDeviceFindControlLayoutDelegate_tE30412E20D6F6870BF090C6D6C4CA9B4CFD0978F * ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues InputDeviceFindControlLayoutDelegateU5BU5D_tD623D611CF24B7F8960BAA8B4EFC172CE4ADAB72* ___additionalValues_2; public: inline static int32_t get_offset_of_length_0() { return static_cast(offsetof(InlinedArray_1_t28A0B99AACBC64E01FB1E06F511487AB0DF535CC, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_firstValue_1() { return static_cast(offsetof(InlinedArray_1_t28A0B99AACBC64E01FB1E06F511487AB0DF535CC, ___firstValue_1)); } inline InputDeviceFindControlLayoutDelegate_tE30412E20D6F6870BF090C6D6C4CA9B4CFD0978F * get_firstValue_1() const { return ___firstValue_1; } inline InputDeviceFindControlLayoutDelegate_tE30412E20D6F6870BF090C6D6C4CA9B4CFD0978F ** get_address_of_firstValue_1() { return &___firstValue_1; } inline void set_firstValue_1(InputDeviceFindControlLayoutDelegate_tE30412E20D6F6870BF090C6D6C4CA9B4CFD0978F * value) { ___firstValue_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value); } inline static int32_t get_offset_of_additionalValues_2() { return static_cast(offsetof(InlinedArray_1_t28A0B99AACBC64E01FB1E06F511487AB0DF535CC, ___additionalValues_2)); } inline InputDeviceFindControlLayoutDelegateU5BU5D_tD623D611CF24B7F8960BAA8B4EFC172CE4ADAB72* get_additionalValues_2() const { return ___additionalValues_2; } inline InputDeviceFindControlLayoutDelegateU5BU5D_tD623D611CF24B7F8960BAA8B4EFC172CE4ADAB72** get_address_of_additionalValues_2() { return &___additionalValues_2; } inline void set_additionalValues_2(InputDeviceFindControlLayoutDelegateU5BU5D_tD623D611CF24B7F8960BAA8B4EFC172CE4ADAB72* value) { ___additionalValues_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value); } }; // UnityEngine.InputSystem.Utilities.InlinedArray`1 struct InlinedArray_1_tB0AAF680EA1CE867851DE37A96313A3779BF0BD2 { public: // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue RuntimeObject * ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___additionalValues_2; public: inline static int32_t get_offset_of_length_0() { return static_cast(offsetof(InlinedArray_1_tB0AAF680EA1CE867851DE37A96313A3779BF0BD2, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_firstValue_1() { return static_cast(offsetof(InlinedArray_1_tB0AAF680EA1CE867851DE37A96313A3779BF0BD2, ___firstValue_1)); } inline RuntimeObject * get_firstValue_1() const { return ___firstValue_1; } inline RuntimeObject ** get_address_of_firstValue_1() { return &___firstValue_1; } inline void set_firstValue_1(RuntimeObject * value) { ___firstValue_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value); } inline static int32_t get_offset_of_additionalValues_2() { return static_cast(offsetof(InlinedArray_1_tB0AAF680EA1CE867851DE37A96313A3779BF0BD2, ___additionalValues_2)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_additionalValues_2() const { return ___additionalValues_2; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_additionalValues_2() { return &___additionalValues_2; } inline void set_additionalValues_2(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___additionalValues_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value); } }; // UnityEngine.InputSystem.Utilities.InlinedArray`1 struct InlinedArray_1_t23FFA4FEA36F785EEEC44B0332DE84D5E6645F18 { public: // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue uint64_t ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* ___additionalValues_2; public: inline static int32_t get_offset_of_length_0() { return static_cast(offsetof(InlinedArray_1_t23FFA4FEA36F785EEEC44B0332DE84D5E6645F18, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_firstValue_1() { return static_cast(offsetof(InlinedArray_1_t23FFA4FEA36F785EEEC44B0332DE84D5E6645F18, ___firstValue_1)); } inline uint64_t get_firstValue_1() const { return ___firstValue_1; } inline uint64_t* get_address_of_firstValue_1() { return &___firstValue_1; } inline void set_firstValue_1(uint64_t value) { ___firstValue_1 = value; } inline static int32_t get_offset_of_additionalValues_2() { return static_cast(offsetof(InlinedArray_1_t23FFA4FEA36F785EEEC44B0332DE84D5E6645F18, ___additionalValues_2)); } inline UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* get_additionalValues_2() const { return ___additionalValues_2; } inline UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2** get_address_of_additionalValues_2() { return &___additionalValues_2; } inline void set_additionalValues_2(UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* value) { ___additionalValues_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2 struct KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value int32_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast(offsetof(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast(offsetof(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2 struct KeyValuePair_2_tD6E57B7EAC6134DCA97F39E5E598EB43B44A5EAE { public: // TKey System.Collections.Generic.KeyValuePair`2::key String_t* ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast(offsetof(KeyValuePair_2_tD6E57B7EAC6134DCA97F39E5E598EB43B44A5EAE, ___key_0)); } inline String_t* get_key_0() const { return ___key_0; } inline String_t** get_address_of_key_0() { return &___key_0; } inline void set_key_0(String_t* value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast(offsetof(KeyValuePair_2_tD6E57B7EAC6134DCA97F39E5E598EB43B44A5EAE, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Nullable`1 struct Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 { public: // T System.Nullable`1::value bool ___value_0; // System.Boolean System.Nullable`1::has_value bool ___has_value_1; public: inline static int32_t get_offset_of_value_0() { return static_cast(offsetof(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3, ___value_0)); } inline bool get_value_0() const { return ___value_0; } inline bool* get_address_of_value_0() { return &___value_0; } inline void set_value_0(bool value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast(offsetof(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; // System.Nullable`1 struct Nullable_1_t340361C8134256120F5769AC5A3F743DB6C11D1F { public: // T System.Nullable`1::value int64_t ___value_0; // System.Boolean System.Nullable`1::has_value bool ___has_value_1; public: inline static int32_t get_offset_of_value_0() { return static_cast(offsetof(Nullable_1_t340361C8134256120F5769AC5A3F743DB6C11D1F, ___value_0)); } inline int64_t get_value_0() const { return ___value_0; } inline int64_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(int64_t value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast(offsetof(Nullable_1_t340361C8134256120F5769AC5A3F743DB6C11D1F, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 struct ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 { public: // TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Array InputControlU5BU5D_tB874FECA56E2B08D3280F4174B988EA155E99680* ___m_Array_0; // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_StartIndex int32_t ___m_StartIndex_1; // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Length int32_t ___m_Length_2; public: inline static int32_t get_offset_of_m_Array_0() { return static_cast(offsetof(ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811, ___m_Array_0)); } inline InputControlU5BU5D_tB874FECA56E2B08D3280F4174B988EA155E99680* get_m_Array_0() const { return ___m_Array_0; } inline InputControlU5BU5D_tB874FECA56E2B08D3280F4174B988EA155E99680** get_address_of_m_Array_0() { return &___m_Array_0; } inline void set_m_Array_0(InputControlU5BU5D_tB874FECA56E2B08D3280F4174B988EA155E99680* value) { ___m_Array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Array_0), (void*)value); } inline static int32_t get_offset_of_m_StartIndex_1() { return static_cast(offsetof(ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811, ___m_StartIndex_1)); } inline int32_t get_m_StartIndex_1() const { return ___m_StartIndex_1; } inline int32_t* get_address_of_m_StartIndex_1() { return &___m_StartIndex_1; } inline void set_m_StartIndex_1(int32_t value) { ___m_StartIndex_1 = value; } inline static int32_t get_offset_of_m_Length_2() { return static_cast(offsetof(ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811, ___m_Length_2)); } inline int32_t get_m_Length_2() const { return ___m_Length_2; } inline int32_t* get_address_of_m_Length_2() { return &___m_Length_2; } inline void set_m_Length_2(int32_t value) { ___m_Length_2 = value; } }; // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 struct ReadOnlyArray_1_tACB506541C5CC2CCA16D8065F5F949D9874C78D0 { public: // TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Array InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* ___m_Array_0; // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_StartIndex int32_t ___m_StartIndex_1; // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Length int32_t ___m_Length_2; public: inline static int32_t get_offset_of_m_Array_0() { return static_cast(offsetof(ReadOnlyArray_1_tACB506541C5CC2CCA16D8065F5F949D9874C78D0, ___m_Array_0)); } inline InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* get_m_Array_0() const { return ___m_Array_0; } inline InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6** get_address_of_m_Array_0() { return &___m_Array_0; } inline void set_m_Array_0(InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* value) { ___m_Array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Array_0), (void*)value); } inline static int32_t get_offset_of_m_StartIndex_1() { return static_cast(offsetof(ReadOnlyArray_1_tACB506541C5CC2CCA16D8065F5F949D9874C78D0, ___m_StartIndex_1)); } inline int32_t get_m_StartIndex_1() const { return ___m_StartIndex_1; } inline int32_t* get_address_of_m_StartIndex_1() { return &___m_StartIndex_1; } inline void set_m_StartIndex_1(int32_t value) { ___m_StartIndex_1 = value; } inline static int32_t get_offset_of_m_Length_2() { return static_cast(offsetof(ReadOnlyArray_1_tACB506541C5CC2CCA16D8065F5F949D9874C78D0, ___m_Length_2)); } inline int32_t get_m_Length_2() const { return ___m_Length_2; } inline int32_t* get_address_of_m_Length_2() { return &___m_Length_2; } inline void set_m_Length_2(int32_t value) { ___m_Length_2 = value; } }; // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 struct ReadOnlyArray_1_t606E37DB0F1B75FCB4C4A029A0F6C2B4AE7DED75 { public: // TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Array InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* ___m_Array_0; // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_StartIndex int32_t ___m_StartIndex_1; // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Length int32_t ___m_Length_2; public: inline static int32_t get_offset_of_m_Array_0() { return static_cast(offsetof(ReadOnlyArray_1_t606E37DB0F1B75FCB4C4A029A0F6C2B4AE7DED75, ___m_Array_0)); } inline InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* get_m_Array_0() const { return ___m_Array_0; } inline InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4** get_address_of_m_Array_0() { return &___m_Array_0; } inline void set_m_Array_0(InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* value) { ___m_Array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Array_0), (void*)value); } inline static int32_t get_offset_of_m_StartIndex_1() { return static_cast(offsetof(ReadOnlyArray_1_t606E37DB0F1B75FCB4C4A029A0F6C2B4AE7DED75, ___m_StartIndex_1)); } inline int32_t get_m_StartIndex_1() const { return ___m_StartIndex_1; } inline int32_t* get_address_of_m_StartIndex_1() { return &___m_StartIndex_1; } inline void set_m_StartIndex_1(int32_t value) { ___m_StartIndex_1 = value; } inline static int32_t get_offset_of_m_Length_2() { return static_cast(offsetof(ReadOnlyArray_1_t606E37DB0F1B75FCB4C4A029A0F6C2B4AE7DED75, ___m_Length_2)); } inline int32_t get_m_Length_2() const { return ___m_Length_2; } inline int32_t* get_address_of_m_Length_2() { return &___m_Length_2; } inline void set_m_Length_2(int32_t value) { ___m_Length_2 = value; } }; // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 struct ReadOnlyArray_1_t9584B0851320AB0F5BC8FF261C123F5994A081B7 { public: // TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Array ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_Array_0; // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_StartIndex int32_t ___m_StartIndex_1; // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Length int32_t ___m_Length_2; public: inline static int32_t get_offset_of_m_Array_0() { return static_cast(offsetof(ReadOnlyArray_1_t9584B0851320AB0F5BC8FF261C123F5994A081B7, ___m_Array_0)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_Array_0() const { return ___m_Array_0; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_Array_0() { return &___m_Array_0; } inline void set_m_Array_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___m_Array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Array_0), (void*)value); } inline static int32_t get_offset_of_m_StartIndex_1() { return static_cast(offsetof(ReadOnlyArray_1_t9584B0851320AB0F5BC8FF261C123F5994A081B7, ___m_StartIndex_1)); } inline int32_t get_m_StartIndex_1() const { return ___m_StartIndex_1; } inline int32_t* get_address_of_m_StartIndex_1() { return &___m_StartIndex_1; } inline void set_m_StartIndex_1(int32_t value) { ___m_StartIndex_1 = value; } inline static int32_t get_offset_of_m_Length_2() { return static_cast(offsetof(ReadOnlyArray_1_t9584B0851320AB0F5BC8FF261C123F5994A081B7, ___m_Length_2)); } inline int32_t get_m_Length_2() const { return ___m_Length_2; } inline int32_t* get_address_of_m_Length_2() { return &___m_Length_2; } inline void set_m_Length_2(int32_t value) { ___m_Length_2 = value; } }; // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 struct ReadOnlyArray_1_t1395593458B5F4A22EB99780AA86DA049C3EACEF { public: // TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Array StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___m_Array_0; // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_StartIndex int32_t ___m_StartIndex_1; // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Length int32_t ___m_Length_2; public: inline static int32_t get_offset_of_m_Array_0() { return static_cast(offsetof(ReadOnlyArray_1_t1395593458B5F4A22EB99780AA86DA049C3EACEF, ___m_Array_0)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_m_Array_0() const { return ___m_Array_0; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_m_Array_0() { return &___m_Array_0; } inline void set_m_Array_0(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___m_Array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Array_0), (void*)value); } inline static int32_t get_offset_of_m_StartIndex_1() { return static_cast(offsetof(ReadOnlyArray_1_t1395593458B5F4A22EB99780AA86DA049C3EACEF, ___m_StartIndex_1)); } inline int32_t get_m_StartIndex_1() const { return ___m_StartIndex_1; } inline int32_t* get_address_of_m_StartIndex_1() { return &___m_StartIndex_1; } inline void set_m_StartIndex_1(int32_t value) { ___m_StartIndex_1 = value; } inline static int32_t get_offset_of_m_Length_2() { return static_cast(offsetof(ReadOnlyArray_1_t1395593458B5F4A22EB99780AA86DA049C3EACEF, ___m_Length_2)); } inline int32_t get_m_Length_2() const { return ___m_Length_2; } inline int32_t* get_address_of_m_Length_2() { return &___m_Length_2; } inline void set_m_Length_2(int32_t value) { ___m_Length_2 = value; } }; // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 struct ReadOnlyArray_1_t0DCCE2E9597891D2E289C44634892EF6129F71F9 { public: // TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Array TouchControlU5BU5D_t26ABEB41FF07BF7B670BE1BAD30055D56579D890* ___m_Array_0; // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_StartIndex int32_t ___m_StartIndex_1; // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Length int32_t ___m_Length_2; public: inline static int32_t get_offset_of_m_Array_0() { return static_cast(offsetof(ReadOnlyArray_1_t0DCCE2E9597891D2E289C44634892EF6129F71F9, ___m_Array_0)); } inline TouchControlU5BU5D_t26ABEB41FF07BF7B670BE1BAD30055D56579D890* get_m_Array_0() const { return ___m_Array_0; } inline TouchControlU5BU5D_t26ABEB41FF07BF7B670BE1BAD30055D56579D890** get_address_of_m_Array_0() { return &___m_Array_0; } inline void set_m_Array_0(TouchControlU5BU5D_t26ABEB41FF07BF7B670BE1BAD30055D56579D890* value) { ___m_Array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Array_0), (void*)value); } inline static int32_t get_offset_of_m_StartIndex_1() { return static_cast(offsetof(ReadOnlyArray_1_t0DCCE2E9597891D2E289C44634892EF6129F71F9, ___m_StartIndex_1)); } inline int32_t get_m_StartIndex_1() const { return ___m_StartIndex_1; } inline int32_t* get_address_of_m_StartIndex_1() { return &___m_StartIndex_1; } inline void set_m_StartIndex_1(int32_t value) { ___m_StartIndex_1 = value; } inline static int32_t get_offset_of_m_Length_2() { return static_cast(offsetof(ReadOnlyArray_1_t0DCCE2E9597891D2E289C44634892EF6129F71F9, ___m_Length_2)); } inline int32_t get_m_Length_2() const { return ___m_Length_2; } inline int32_t* get_address_of_m_Length_2() { return &___m_Length_2; } inline void set_m_Length_2(int32_t value) { ___m_Length_2 = value; } }; // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 struct ReadOnlyArray_1_tB0C672A35D9507319B5BF448296839F3F3BAF078 { public: // TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Array DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81* ___m_Array_0; // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_StartIndex int32_t ___m_StartIndex_1; // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Length int32_t ___m_Length_2; public: inline static int32_t get_offset_of_m_Array_0() { return static_cast(offsetof(ReadOnlyArray_1_tB0C672A35D9507319B5BF448296839F3F3BAF078, ___m_Array_0)); } inline DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81* get_m_Array_0() const { return ___m_Array_0; } inline DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81** get_address_of_m_Array_0() { return &___m_Array_0; } inline void set_m_Array_0(DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81* value) { ___m_Array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Array_0), (void*)value); } inline static int32_t get_offset_of_m_StartIndex_1() { return static_cast(offsetof(ReadOnlyArray_1_tB0C672A35D9507319B5BF448296839F3F3BAF078, ___m_StartIndex_1)); } inline int32_t get_m_StartIndex_1() const { return ___m_StartIndex_1; } inline int32_t* get_address_of_m_StartIndex_1() { return &___m_StartIndex_1; } inline void set_m_StartIndex_1(int32_t value) { ___m_StartIndex_1 = value; } inline static int32_t get_offset_of_m_Length_2() { return static_cast(offsetof(ReadOnlyArray_1_tB0C672A35D9507319B5BF448296839F3F3BAF078, ___m_Length_2)); } inline int32_t get_m_Length_2() const { return ___m_Length_2; } inline int32_t* get_address_of_m_Length_2() { return &___m_Length_2; } inline void set_m_Length_2(int32_t value) { ___m_Length_2 = value; } }; // System.Boolean struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37 { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; // System.Byte struct Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056 { public: // System.Byte System.Byte::m_value uint8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056, ___m_value_0)); } inline uint8_t get_m_value_0() const { return ___m_value_0; } inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint8_t value) { ___m_value_0 = value; } }; // System.Char struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14 { public: // System.Char System.Char::m_value Il2CppChar ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14, ___m_value_0)); } inline Il2CppChar get_m_value_0() const { return ___m_value_0; } inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(Il2CppChar value) { ___m_value_0 = value; } }; // System.ComponentModel.DisplayNameAttribute struct DisplayNameAttribute_t23E87B8B23DC5CF5E2A72B8039935029D0A53E85 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 { public: // System.String System.ComponentModel.DisplayNameAttribute::_displayName String_t* ____displayName_1; public: inline static int32_t get_offset_of__displayName_1() { return static_cast(offsetof(DisplayNameAttribute_t23E87B8B23DC5CF5E2A72B8039935029D0A53E85, ____displayName_1)); } inline String_t* get__displayName_1() const { return ____displayName_1; } inline String_t** get_address_of__displayName_1() { return &____displayName_1; } inline void set__displayName_1(String_t* value) { ____displayName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____displayName_1), (void*)value); } }; // System.Double struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181 { public: // System.Double System.Double::m_value double ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181, ___m_value_0)); } inline double get_m_value_0() const { return ___m_value_0; } inline double* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(double value) { ___m_value_0 = value; } }; // System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 { public: public: }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com { }; // UnityEngine.InputSystem.Utilities.FourCC struct FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 { public: // System.Int32 UnityEngine.InputSystem.Utilities.FourCC::m_Code int32_t ___m_Code_0; public: inline static int32_t get_offset_of_m_Code_0() { return static_cast(offsetof(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9, ___m_Code_0)); } inline int32_t get_m_Code_0() const { return ___m_Code_0; } inline int32_t* get_address_of_m_Code_0() { return &___m_Code_0; } inline void set_m_Code_0(int32_t value) { ___m_Code_0 = value; } }; // System.Runtime.InteropServices.GCHandle struct GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 { public: // System.Int32 System.Runtime.InteropServices.GCHandle::handle int32_t ___handle_0; public: inline static int32_t get_offset_of_handle_0() { return static_cast(offsetof(GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603, ___handle_0)); } inline int32_t get_handle_0() const { return ___handle_0; } inline int32_t* get_address_of_handle_0() { return &___handle_0; } inline void set_handle_0(int32_t value) { ___handle_0 = value; } }; // UnityEngine.InputSystem.Layouts.InputDeviceDescription struct InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 { public: // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_InterfaceName String_t* ___m_InterfaceName_0; // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_DeviceClass String_t* ___m_DeviceClass_1; // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Manufacturer String_t* ___m_Manufacturer_2; // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Product String_t* ___m_Product_3; // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Serial String_t* ___m_Serial_4; // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Version String_t* ___m_Version_5; // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Capabilities String_t* ___m_Capabilities_6; public: inline static int32_t get_offset_of_m_InterfaceName_0() { return static_cast(offsetof(InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58, ___m_InterfaceName_0)); } inline String_t* get_m_InterfaceName_0() const { return ___m_InterfaceName_0; } inline String_t** get_address_of_m_InterfaceName_0() { return &___m_InterfaceName_0; } inline void set_m_InterfaceName_0(String_t* value) { ___m_InterfaceName_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_InterfaceName_0), (void*)value); } inline static int32_t get_offset_of_m_DeviceClass_1() { return static_cast(offsetof(InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58, ___m_DeviceClass_1)); } inline String_t* get_m_DeviceClass_1() const { return ___m_DeviceClass_1; } inline String_t** get_address_of_m_DeviceClass_1() { return &___m_DeviceClass_1; } inline void set_m_DeviceClass_1(String_t* value) { ___m_DeviceClass_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DeviceClass_1), (void*)value); } inline static int32_t get_offset_of_m_Manufacturer_2() { return static_cast(offsetof(InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58, ___m_Manufacturer_2)); } inline String_t* get_m_Manufacturer_2() const { return ___m_Manufacturer_2; } inline String_t** get_address_of_m_Manufacturer_2() { return &___m_Manufacturer_2; } inline void set_m_Manufacturer_2(String_t* value) { ___m_Manufacturer_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Manufacturer_2), (void*)value); } inline static int32_t get_offset_of_m_Product_3() { return static_cast(offsetof(InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58, ___m_Product_3)); } inline String_t* get_m_Product_3() const { return ___m_Product_3; } inline String_t** get_address_of_m_Product_3() { return &___m_Product_3; } inline void set_m_Product_3(String_t* value) { ___m_Product_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Product_3), (void*)value); } inline static int32_t get_offset_of_m_Serial_4() { return static_cast(offsetof(InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58, ___m_Serial_4)); } inline String_t* get_m_Serial_4() const { return ___m_Serial_4; } inline String_t** get_address_of_m_Serial_4() { return &___m_Serial_4; } inline void set_m_Serial_4(String_t* value) { ___m_Serial_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Serial_4), (void*)value); } inline static int32_t get_offset_of_m_Version_5() { return static_cast(offsetof(InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58, ___m_Version_5)); } inline String_t* get_m_Version_5() const { return ___m_Version_5; } inline String_t** get_address_of_m_Version_5() { return &___m_Version_5; } inline void set_m_Version_5(String_t* value) { ___m_Version_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Version_5), (void*)value); } inline static int32_t get_offset_of_m_Capabilities_6() { return static_cast(offsetof(InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58, ___m_Capabilities_6)); } inline String_t* get_m_Capabilities_6() const { return ___m_Capabilities_6; } inline String_t** get_address_of_m_Capabilities_6() { return &___m_Capabilities_6; } inline void set_m_Capabilities_6(String_t* value) { ___m_Capabilities_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Capabilities_6), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputDeviceDescription struct InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshaled_pinvoke { char* ___m_InterfaceName_0; char* ___m_DeviceClass_1; char* ___m_Manufacturer_2; char* ___m_Product_3; char* ___m_Serial_4; char* ___m_Version_5; char* ___m_Capabilities_6; }; // Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputDeviceDescription struct InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshaled_com { Il2CppChar* ___m_InterfaceName_0; Il2CppChar* ___m_DeviceClass_1; Il2CppChar* ___m_Manufacturer_2; Il2CppChar* ___m_Product_3; Il2CppChar* ___m_Serial_4; Il2CppChar* ___m_Version_5; Il2CppChar* ___m_Capabilities_6; }; // UnityEngine.InputSystem.LowLevel.InputEventListener struct InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917 { public: union { struct { }; uint8_t InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917__padding[1]; }; public: }; // UnityEngine.InputSystem.LowLevel.InputEventPtr struct InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 { public: // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventPtr::m_EventPtr InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___m_EventPtr_0; public: inline static int32_t get_offset_of_m_EventPtr_0() { return static_cast(offsetof(InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1, ___m_EventPtr_0)); } inline InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * get_m_EventPtr_0() const { return ___m_EventPtr_0; } inline InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** get_address_of_m_EventPtr_0() { return &___m_EventPtr_0; } inline void set_m_EventPtr_0(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * value) { ___m_EventPtr_0 = value; } }; // UnityEngine.InputSystem.LowLevel.InputMetrics struct InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C { public: // System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::k__BackingField int32_t ___U3CmaxNumDevicesU3Ek__BackingField_0; // System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::k__BackingField int32_t ___U3CcurrentNumDevicesU3Ek__BackingField_1; // System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::k__BackingField int32_t ___U3CmaxStateSizeInBytesU3Ek__BackingField_2; // System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::k__BackingField int32_t ___U3CcurrentStateSizeInBytesU3Ek__BackingField_3; // System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::k__BackingField int32_t ___U3CcurrentControlCountU3Ek__BackingField_4; // System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::k__BackingField int32_t ___U3CcurrentLayoutCountU3Ek__BackingField_5; // System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::k__BackingField int32_t ___U3CtotalEventBytesU3Ek__BackingField_6; // System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::k__BackingField int32_t ___U3CtotalEventCountU3Ek__BackingField_7; // System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::k__BackingField int32_t ___U3CtotalUpdateCountU3Ek__BackingField_8; // System.Double UnityEngine.InputSystem.LowLevel.InputMetrics::k__BackingField double ___U3CtotalEventProcessingTimeU3Ek__BackingField_9; // System.Double UnityEngine.InputSystem.LowLevel.InputMetrics::k__BackingField double ___U3CtotalEventLagTimeU3Ek__BackingField_10; public: inline static int32_t get_offset_of_U3CmaxNumDevicesU3Ek__BackingField_0() { return static_cast(offsetof(InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C, ___U3CmaxNumDevicesU3Ek__BackingField_0)); } inline int32_t get_U3CmaxNumDevicesU3Ek__BackingField_0() const { return ___U3CmaxNumDevicesU3Ek__BackingField_0; } inline int32_t* get_address_of_U3CmaxNumDevicesU3Ek__BackingField_0() { return &___U3CmaxNumDevicesU3Ek__BackingField_0; } inline void set_U3CmaxNumDevicesU3Ek__BackingField_0(int32_t value) { ___U3CmaxNumDevicesU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CcurrentNumDevicesU3Ek__BackingField_1() { return static_cast(offsetof(InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C, ___U3CcurrentNumDevicesU3Ek__BackingField_1)); } inline int32_t get_U3CcurrentNumDevicesU3Ek__BackingField_1() const { return ___U3CcurrentNumDevicesU3Ek__BackingField_1; } inline int32_t* get_address_of_U3CcurrentNumDevicesU3Ek__BackingField_1() { return &___U3CcurrentNumDevicesU3Ek__BackingField_1; } inline void set_U3CcurrentNumDevicesU3Ek__BackingField_1(int32_t value) { ___U3CcurrentNumDevicesU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CmaxStateSizeInBytesU3Ek__BackingField_2() { return static_cast(offsetof(InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C, ___U3CmaxStateSizeInBytesU3Ek__BackingField_2)); } inline int32_t get_U3CmaxStateSizeInBytesU3Ek__BackingField_2() const { return ___U3CmaxStateSizeInBytesU3Ek__BackingField_2; } inline int32_t* get_address_of_U3CmaxStateSizeInBytesU3Ek__BackingField_2() { return &___U3CmaxStateSizeInBytesU3Ek__BackingField_2; } inline void set_U3CmaxStateSizeInBytesU3Ek__BackingField_2(int32_t value) { ___U3CmaxStateSizeInBytesU3Ek__BackingField_2 = value; } inline static int32_t get_offset_of_U3CcurrentStateSizeInBytesU3Ek__BackingField_3() { return static_cast(offsetof(InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C, ___U3CcurrentStateSizeInBytesU3Ek__BackingField_3)); } inline int32_t get_U3CcurrentStateSizeInBytesU3Ek__BackingField_3() const { return ___U3CcurrentStateSizeInBytesU3Ek__BackingField_3; } inline int32_t* get_address_of_U3CcurrentStateSizeInBytesU3Ek__BackingField_3() { return &___U3CcurrentStateSizeInBytesU3Ek__BackingField_3; } inline void set_U3CcurrentStateSizeInBytesU3Ek__BackingField_3(int32_t value) { ___U3CcurrentStateSizeInBytesU3Ek__BackingField_3 = value; } inline static int32_t get_offset_of_U3CcurrentControlCountU3Ek__BackingField_4() { return static_cast(offsetof(InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C, ___U3CcurrentControlCountU3Ek__BackingField_4)); } inline int32_t get_U3CcurrentControlCountU3Ek__BackingField_4() const { return ___U3CcurrentControlCountU3Ek__BackingField_4; } inline int32_t* get_address_of_U3CcurrentControlCountU3Ek__BackingField_4() { return &___U3CcurrentControlCountU3Ek__BackingField_4; } inline void set_U3CcurrentControlCountU3Ek__BackingField_4(int32_t value) { ___U3CcurrentControlCountU3Ek__BackingField_4 = value; } inline static int32_t get_offset_of_U3CcurrentLayoutCountU3Ek__BackingField_5() { return static_cast(offsetof(InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C, ___U3CcurrentLayoutCountU3Ek__BackingField_5)); } inline int32_t get_U3CcurrentLayoutCountU3Ek__BackingField_5() const { return ___U3CcurrentLayoutCountU3Ek__BackingField_5; } inline int32_t* get_address_of_U3CcurrentLayoutCountU3Ek__BackingField_5() { return &___U3CcurrentLayoutCountU3Ek__BackingField_5; } inline void set_U3CcurrentLayoutCountU3Ek__BackingField_5(int32_t value) { ___U3CcurrentLayoutCountU3Ek__BackingField_5 = value; } inline static int32_t get_offset_of_U3CtotalEventBytesU3Ek__BackingField_6() { return static_cast(offsetof(InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C, ___U3CtotalEventBytesU3Ek__BackingField_6)); } inline int32_t get_U3CtotalEventBytesU3Ek__BackingField_6() const { return ___U3CtotalEventBytesU3Ek__BackingField_6; } inline int32_t* get_address_of_U3CtotalEventBytesU3Ek__BackingField_6() { return &___U3CtotalEventBytesU3Ek__BackingField_6; } inline void set_U3CtotalEventBytesU3Ek__BackingField_6(int32_t value) { ___U3CtotalEventBytesU3Ek__BackingField_6 = value; } inline static int32_t get_offset_of_U3CtotalEventCountU3Ek__BackingField_7() { return static_cast(offsetof(InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C, ___U3CtotalEventCountU3Ek__BackingField_7)); } inline int32_t get_U3CtotalEventCountU3Ek__BackingField_7() const { return ___U3CtotalEventCountU3Ek__BackingField_7; } inline int32_t* get_address_of_U3CtotalEventCountU3Ek__BackingField_7() { return &___U3CtotalEventCountU3Ek__BackingField_7; } inline void set_U3CtotalEventCountU3Ek__BackingField_7(int32_t value) { ___U3CtotalEventCountU3Ek__BackingField_7 = value; } inline static int32_t get_offset_of_U3CtotalUpdateCountU3Ek__BackingField_8() { return static_cast(offsetof(InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C, ___U3CtotalUpdateCountU3Ek__BackingField_8)); } inline int32_t get_U3CtotalUpdateCountU3Ek__BackingField_8() const { return ___U3CtotalUpdateCountU3Ek__BackingField_8; } inline int32_t* get_address_of_U3CtotalUpdateCountU3Ek__BackingField_8() { return &___U3CtotalUpdateCountU3Ek__BackingField_8; } inline void set_U3CtotalUpdateCountU3Ek__BackingField_8(int32_t value) { ___U3CtotalUpdateCountU3Ek__BackingField_8 = value; } inline static int32_t get_offset_of_U3CtotalEventProcessingTimeU3Ek__BackingField_9() { return static_cast(offsetof(InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C, ___U3CtotalEventProcessingTimeU3Ek__BackingField_9)); } inline double get_U3CtotalEventProcessingTimeU3Ek__BackingField_9() const { return ___U3CtotalEventProcessingTimeU3Ek__BackingField_9; } inline double* get_address_of_U3CtotalEventProcessingTimeU3Ek__BackingField_9() { return &___U3CtotalEventProcessingTimeU3Ek__BackingField_9; } inline void set_U3CtotalEventProcessingTimeU3Ek__BackingField_9(double value) { ___U3CtotalEventProcessingTimeU3Ek__BackingField_9 = value; } inline static int32_t get_offset_of_U3CtotalEventLagTimeU3Ek__BackingField_10() { return static_cast(offsetof(InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C, ___U3CtotalEventLagTimeU3Ek__BackingField_10)); } inline double get_U3CtotalEventLagTimeU3Ek__BackingField_10() const { return ___U3CtotalEventLagTimeU3Ek__BackingField_10; } inline double* get_address_of_U3CtotalEventLagTimeU3Ek__BackingField_10() { return &___U3CtotalEventLagTimeU3Ek__BackingField_10; } inline void set_U3CtotalEventLagTimeU3Ek__BackingField_10(double value) { ___U3CtotalEventLagTimeU3Ek__BackingField_10 = value; } }; // System.Int32 struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; // System.Int64 struct Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; // UnityEngine.InputSystem.Utilities.InternedString struct InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED { public: // System.String UnityEngine.InputSystem.Utilities.InternedString::m_StringOriginalCase String_t* ___m_StringOriginalCase_0; // System.String UnityEngine.InputSystem.Utilities.InternedString::m_StringLowerCase String_t* ___m_StringLowerCase_1; public: inline static int32_t get_offset_of_m_StringOriginalCase_0() { return static_cast(offsetof(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED, ___m_StringOriginalCase_0)); } inline String_t* get_m_StringOriginalCase_0() const { return ___m_StringOriginalCase_0; } inline String_t** get_address_of_m_StringOriginalCase_0() { return &___m_StringOriginalCase_0; } inline void set_m_StringOriginalCase_0(String_t* value) { ___m_StringOriginalCase_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_StringOriginalCase_0), (void*)value); } inline static int32_t get_offset_of_m_StringLowerCase_1() { return static_cast(offsetof(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED, ___m_StringLowerCase_1)); } inline String_t* get_m_StringLowerCase_1() const { return ___m_StringLowerCase_1; } inline String_t** get_address_of_m_StringLowerCase_1() { return &___m_StringLowerCase_1; } inline void set_m_StringLowerCase_1(String_t* value) { ___m_StringLowerCase_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_StringLowerCase_1), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Utilities.InternedString struct InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_marshaled_pinvoke { char* ___m_StringOriginalCase_0; char* ___m_StringLowerCase_1; }; // Native definition for COM marshalling of UnityEngine.InputSystem.Utilities.InternedString struct InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_marshaled_com { Il2CppChar* ___m_StringOriginalCase_0; Il2CppChar* ___m_StringLowerCase_1; }; // UnityEngine.InputSystem.Utilities.JsonParser struct JsonParser_t4C34C450BC39EA738DBD7CDC56B48626355D272E { public: // System.String UnityEngine.InputSystem.Utilities.JsonParser::m_Text String_t* ___m_Text_0; // System.Int32 UnityEngine.InputSystem.Utilities.JsonParser::m_Length int32_t ___m_Length_1; // System.Int32 UnityEngine.InputSystem.Utilities.JsonParser::m_Position int32_t ___m_Position_2; // System.Boolean UnityEngine.InputSystem.Utilities.JsonParser::m_MatchAnyElementInArray bool ___m_MatchAnyElementInArray_3; // System.Boolean UnityEngine.InputSystem.Utilities.JsonParser::m_DryRun bool ___m_DryRun_4; public: inline static int32_t get_offset_of_m_Text_0() { return static_cast(offsetof(JsonParser_t4C34C450BC39EA738DBD7CDC56B48626355D272E, ___m_Text_0)); } inline String_t* get_m_Text_0() const { return ___m_Text_0; } inline String_t** get_address_of_m_Text_0() { return &___m_Text_0; } inline void set_m_Text_0(String_t* value) { ___m_Text_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Text_0), (void*)value); } inline static int32_t get_offset_of_m_Length_1() { return static_cast(offsetof(JsonParser_t4C34C450BC39EA738DBD7CDC56B48626355D272E, ___m_Length_1)); } inline int32_t get_m_Length_1() const { return ___m_Length_1; } inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; } inline void set_m_Length_1(int32_t value) { ___m_Length_1 = value; } inline static int32_t get_offset_of_m_Position_2() { return static_cast(offsetof(JsonParser_t4C34C450BC39EA738DBD7CDC56B48626355D272E, ___m_Position_2)); } inline int32_t get_m_Position_2() const { return ___m_Position_2; } inline int32_t* get_address_of_m_Position_2() { return &___m_Position_2; } inline void set_m_Position_2(int32_t value) { ___m_Position_2 = value; } inline static int32_t get_offset_of_m_MatchAnyElementInArray_3() { return static_cast(offsetof(JsonParser_t4C34C450BC39EA738DBD7CDC56B48626355D272E, ___m_MatchAnyElementInArray_3)); } inline bool get_m_MatchAnyElementInArray_3() const { return ___m_MatchAnyElementInArray_3; } inline bool* get_address_of_m_MatchAnyElementInArray_3() { return &___m_MatchAnyElementInArray_3; } inline void set_m_MatchAnyElementInArray_3(bool value) { ___m_MatchAnyElementInArray_3 = value; } inline static int32_t get_offset_of_m_DryRun_4() { return static_cast(offsetof(JsonParser_t4C34C450BC39EA738DBD7CDC56B48626355D272E, ___m_DryRun_4)); } inline bool get_m_DryRun_4() const { return ___m_DryRun_4; } inline bool* get_address_of_m_DryRun_4() { return &___m_DryRun_4; } inline void set_m_DryRun_4(bool value) { ___m_DryRun_4 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Utilities.JsonParser struct JsonParser_t4C34C450BC39EA738DBD7CDC56B48626355D272E_marshaled_pinvoke { char* ___m_Text_0; int32_t ___m_Length_1; int32_t ___m_Position_2; int32_t ___m_MatchAnyElementInArray_3; int32_t ___m_DryRun_4; }; // Native definition for COM marshalling of UnityEngine.InputSystem.Utilities.JsonParser struct JsonParser_t4C34C450BC39EA738DBD7CDC56B48626355D272E_marshaled_com { Il2CppChar* ___m_Text_0; int32_t ___m_Length_1; int32_t ___m_Position_2; int32_t ___m_MatchAnyElementInArray_3; int32_t ___m_DryRun_4; }; // System.Single struct Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E { public: // System.Single System.Single::m_value float ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E, ___m_value_0)); } inline float get_m_value_0() const { return ___m_value_0; } inline float* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(float value) { ___m_value_0 = value; } }; // System.IO.Stream struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 { public: // System.IO.Stream/ReadWriteTask System.IO.Stream::_activeReadWriteTask ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * ____activeReadWriteTask_3; // System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * ____asyncActiveSemaphore_4; public: inline static int32_t get_offset_of__activeReadWriteTask_3() { return static_cast(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB, ____activeReadWriteTask_3)); } inline ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * get__activeReadWriteTask_3() const { return ____activeReadWriteTask_3; } inline ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 ** get_address_of__activeReadWriteTask_3() { return &____activeReadWriteTask_3; } inline void set__activeReadWriteTask_3(ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * value) { ____activeReadWriteTask_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____activeReadWriteTask_3), (void*)value); } inline static int32_t get_offset_of__asyncActiveSemaphore_4() { return static_cast(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB, ____asyncActiveSemaphore_4)); } inline SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * get__asyncActiveSemaphore_4() const { return ____asyncActiveSemaphore_4; } inline SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 ** get_address_of__asyncActiveSemaphore_4() { return &____asyncActiveSemaphore_4; } inline void set__asyncActiveSemaphore_4(SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * value) { ____asyncActiveSemaphore_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____asyncActiveSemaphore_4), (void*)value); } }; // UnityEngine.InputSystem.Utilities.Substring struct Substring_t9EE457D8CFFFB970B2967B31E9D9AB465415571F { public: // System.String UnityEngine.InputSystem.Utilities.Substring::m_String String_t* ___m_String_0; // System.Int32 UnityEngine.InputSystem.Utilities.Substring::m_Index int32_t ___m_Index_1; // System.Int32 UnityEngine.InputSystem.Utilities.Substring::m_Length int32_t ___m_Length_2; public: inline static int32_t get_offset_of_m_String_0() { return static_cast(offsetof(Substring_t9EE457D8CFFFB970B2967B31E9D9AB465415571F, ___m_String_0)); } inline String_t* get_m_String_0() const { return ___m_String_0; } inline String_t** get_address_of_m_String_0() { return &___m_String_0; } inline void set_m_String_0(String_t* value) { ___m_String_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_String_0), (void*)value); } inline static int32_t get_offset_of_m_Index_1() { return static_cast(offsetof(Substring_t9EE457D8CFFFB970B2967B31E9D9AB465415571F, ___m_Index_1)); } inline int32_t get_m_Index_1() const { return ___m_Index_1; } inline int32_t* get_address_of_m_Index_1() { return &___m_Index_1; } inline void set_m_Index_1(int32_t value) { ___m_Index_1 = value; } inline static int32_t get_offset_of_m_Length_2() { return static_cast(offsetof(Substring_t9EE457D8CFFFB970B2967B31E9D9AB465415571F, ___m_Length_2)); } inline int32_t get_m_Length_2() const { return ___m_Length_2; } inline int32_t* get_address_of_m_Length_2() { return &___m_Length_2; } inline void set_m_Length_2(int32_t value) { ___m_Length_2 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Utilities.Substring struct Substring_t9EE457D8CFFFB970B2967B31E9D9AB465415571F_marshaled_pinvoke { char* ___m_String_0; int32_t ___m_Index_1; int32_t ___m_Length_2; }; // Native definition for COM marshalling of UnityEngine.InputSystem.Utilities.Substring struct Substring_t9EE457D8CFFFB970B2967B31E9D9AB465415571F_marshaled_com { Il2CppChar* ___m_String_0; int32_t ___m_Index_1; int32_t ___m_Length_2; }; // UnityEngine.InputSystem.Utilities.TypeTable struct TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F { public: // System.Collections.Generic.Dictionary`2 UnityEngine.InputSystem.Utilities.TypeTable::table Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * ___table_0; public: inline static int32_t get_offset_of_table_0() { return static_cast(offsetof(TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F, ___table_0)); } inline Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * get_table_0() const { return ___table_0; } inline Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E ** get_address_of_table_0() { return &___table_0; } inline void set_table_0(Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * value) { ___table_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___table_0), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Utilities.TypeTable struct TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F_marshaled_pinvoke { Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * ___table_0; }; // Native definition for COM marshalling of UnityEngine.InputSystem.Utilities.TypeTable struct TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F_marshaled_com { Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * ___table_0; }; // System.UInt16 struct UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD { public: // System.UInt16 System.UInt16::m_value uint16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD, ___m_value_0)); } inline uint16_t get_m_value_0() const { return ___m_value_0; } inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint16_t value) { ___m_value_0 = value; } }; // System.UInt32 struct UInt32_tE60352A06233E4E69DD198BCC67142159F686B15 { public: // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15, ___m_value_0)); } inline uint32_t get_m_value_0() const { return ___m_value_0; } inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint32_t value) { ___m_value_0 = value; } }; // System.UInt64 struct UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281 { public: // System.UInt64 System.UInt64::m_value uint64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281, ___m_value_0)); } inline uint64_t get_m_value_0() const { return ___m_value_0; } inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint64_t value) { ___m_value_0 = value; } }; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5 { public: union { struct { }; uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1]; }; public: }; // UnityEngine.InputSystem.LowLevel.DeltaStateEvent/e__FixedBuffer struct U3CstateDataU3Ee__FixedBuffer_t2787302BA59351E19E145A047CD3C8B77EF2E395 { public: union { struct { // System.Byte UnityEngine.InputSystem.LowLevel.DeltaStateEvent/e__FixedBuffer::FixedElementField uint8_t ___FixedElementField_0; }; uint8_t U3CstateDataU3Ee__FixedBuffer_t2787302BA59351E19E145A047CD3C8B77EF2E395__padding[1]; }; public: inline static int32_t get_offset_of_FixedElementField_0() { return static_cast(offsetof(U3CstateDataU3Ee__FixedBuffer_t2787302BA59351E19E145A047CD3C8B77EF2E395, ___FixedElementField_0)); } inline uint8_t get_FixedElementField_0() const { return ___FixedElementField_0; } inline uint8_t* get_address_of_FixedElementField_0() { return &___FixedElementField_0; } inline void set_FixedElementField_0(uint8_t value) { ___FixedElementField_0 = value; } }; // UnityEngine.InputSystem.LowLevel.IMECompositionString/e__FixedBuffer struct U3CbufferU3Ee__FixedBuffer_t88B6D84FC28714D9288385B2C11373B95985EF95 { public: union { struct { // System.Char UnityEngine.InputSystem.LowLevel.IMECompositionString/e__FixedBuffer::FixedElementField Il2CppChar ___FixedElementField_0; }; uint8_t U3CbufferU3Ee__FixedBuffer_t88B6D84FC28714D9288385B2C11373B95985EF95__padding[128]; }; public: inline static int32_t get_offset_of_FixedElementField_0() { return static_cast(offsetof(U3CbufferU3Ee__FixedBuffer_t88B6D84FC28714D9288385B2C11373B95985EF95, ___FixedElementField_0)); } inline Il2CppChar get_FixedElementField_0() const { return ___FixedElementField_0; } inline Il2CppChar* get_address_of_FixedElementField_0() { return &___FixedElementField_0; } inline void set_FixedElementField_0(Il2CppChar value) { ___FixedElementField_0 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.IMECompositionString/e__FixedBuffer struct U3CbufferU3Ee__FixedBuffer_t88B6D84FC28714D9288385B2C11373B95985EF95_marshaled_pinvoke { union { struct { uint8_t ___FixedElementField_0; }; uint8_t U3CbufferU3Ee__FixedBuffer_t88B6D84FC28714D9288385B2C11373B95985EF95__padding[128]; }; }; // Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.IMECompositionString/e__FixedBuffer struct U3CbufferU3Ee__FixedBuffer_t88B6D84FC28714D9288385B2C11373B95985EF95_marshaled_com { union { struct { uint8_t ___FixedElementField_0; }; uint8_t U3CbufferU3Ee__FixedBuffer_t88B6D84FC28714D9288385B2C11373B95985EF95__padding[128]; }; }; // UnityEngine.InputSystem.InputActionState/TriggerState struct TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 { public: union { struct { union { #pragma pack(push, tp, 1) struct { // System.Byte UnityEngine.InputSystem.InputActionState/TriggerState::m_Phase uint8_t ___m_Phase_3; }; #pragma pack(pop, tp) struct { uint8_t ___m_Phase_3_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_Flags_4_OffsetPadding[1]; // System.Byte UnityEngine.InputSystem.InputActionState/TriggerState::m_Flags uint8_t ___m_Flags_4; }; #pragma pack(pop, tp) struct { char ___m_Flags_4_OffsetPadding_forAlignmentOnly[1]; uint8_t ___m_Flags_4_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_MapIndex_5_OffsetPadding[2]; // System.Byte UnityEngine.InputSystem.InputActionState/TriggerState::m_MapIndex uint8_t ___m_MapIndex_5; }; #pragma pack(pop, tp) struct { char ___m_MapIndex_5_OffsetPadding_forAlignmentOnly[2]; uint8_t ___m_MapIndex_5_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_ControlIndex_6_OffsetPadding[4]; // System.UInt16 UnityEngine.InputSystem.InputActionState/TriggerState::m_ControlIndex uint16_t ___m_ControlIndex_6; }; #pragma pack(pop, tp) struct { char ___m_ControlIndex_6_OffsetPadding_forAlignmentOnly[4]; uint16_t ___m_ControlIndex_6_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_Time_7_OffsetPadding[8]; // System.Double UnityEngine.InputSystem.InputActionState/TriggerState::m_Time double ___m_Time_7; }; #pragma pack(pop, tp) struct { char ___m_Time_7_OffsetPadding_forAlignmentOnly[8]; double ___m_Time_7_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_StartTime_8_OffsetPadding[16]; // System.Double UnityEngine.InputSystem.InputActionState/TriggerState::m_StartTime double ___m_StartTime_8; }; #pragma pack(pop, tp) struct { char ___m_StartTime_8_OffsetPadding_forAlignmentOnly[16]; double ___m_StartTime_8_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_BindingIndex_9_OffsetPadding[24]; // System.UInt16 UnityEngine.InputSystem.InputActionState/TriggerState::m_BindingIndex uint16_t ___m_BindingIndex_9; }; #pragma pack(pop, tp) struct { char ___m_BindingIndex_9_OffsetPadding_forAlignmentOnly[24]; uint16_t ___m_BindingIndex_9_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_InteractionIndex_10_OffsetPadding[26]; // System.UInt16 UnityEngine.InputSystem.InputActionState/TriggerState::m_InteractionIndex uint16_t ___m_InteractionIndex_10; }; #pragma pack(pop, tp) struct { char ___m_InteractionIndex_10_OffsetPadding_forAlignmentOnly[26]; uint16_t ___m_InteractionIndex_10_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_Magnitude_11_OffsetPadding[28]; // System.Single UnityEngine.InputSystem.InputActionState/TriggerState::m_Magnitude float ___m_Magnitude_11; }; #pragma pack(pop, tp) struct { char ___m_Magnitude_11_OffsetPadding_forAlignmentOnly[28]; float ___m_Magnitude_11_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_LastPerformedInUpdate_12_OffsetPadding[32]; // System.UInt32 UnityEngine.InputSystem.InputActionState/TriggerState::m_LastPerformedInUpdate uint32_t ___m_LastPerformedInUpdate_12; }; #pragma pack(pop, tp) struct { char ___m_LastPerformedInUpdate_12_OffsetPadding_forAlignmentOnly[32]; uint32_t ___m_LastPerformedInUpdate_12_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_LastCanceledInUpdate_13_OffsetPadding[36]; // System.UInt32 UnityEngine.InputSystem.InputActionState/TriggerState::m_LastCanceledInUpdate uint32_t ___m_LastCanceledInUpdate_13; }; #pragma pack(pop, tp) struct { char ___m_LastCanceledInUpdate_13_OffsetPadding_forAlignmentOnly[36]; uint32_t ___m_LastCanceledInUpdate_13_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_PressedInUpdate_14_OffsetPadding[40]; // System.UInt32 UnityEngine.InputSystem.InputActionState/TriggerState::m_PressedInUpdate uint32_t ___m_PressedInUpdate_14; }; #pragma pack(pop, tp) struct { char ___m_PressedInUpdate_14_OffsetPadding_forAlignmentOnly[40]; uint32_t ___m_PressedInUpdate_14_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_ReleasedInUpdate_15_OffsetPadding[44]; // System.UInt32 UnityEngine.InputSystem.InputActionState/TriggerState::m_ReleasedInUpdate uint32_t ___m_ReleasedInUpdate_15; }; #pragma pack(pop, tp) struct { char ___m_ReleasedInUpdate_15_OffsetPadding_forAlignmentOnly[44]; uint32_t ___m_ReleasedInUpdate_15_forAlignmentOnly; }; }; }; uint8_t TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145__padding[48]; }; public: inline static int32_t get_offset_of_m_Phase_3() { return static_cast(offsetof(TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145, ___m_Phase_3)); } inline uint8_t get_m_Phase_3() const { return ___m_Phase_3; } inline uint8_t* get_address_of_m_Phase_3() { return &___m_Phase_3; } inline void set_m_Phase_3(uint8_t value) { ___m_Phase_3 = value; } inline static int32_t get_offset_of_m_Flags_4() { return static_cast(offsetof(TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145, ___m_Flags_4)); } inline uint8_t get_m_Flags_4() const { return ___m_Flags_4; } inline uint8_t* get_address_of_m_Flags_4() { return &___m_Flags_4; } inline void set_m_Flags_4(uint8_t value) { ___m_Flags_4 = value; } inline static int32_t get_offset_of_m_MapIndex_5() { return static_cast(offsetof(TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145, ___m_MapIndex_5)); } inline uint8_t get_m_MapIndex_5() const { return ___m_MapIndex_5; } inline uint8_t* get_address_of_m_MapIndex_5() { return &___m_MapIndex_5; } inline void set_m_MapIndex_5(uint8_t value) { ___m_MapIndex_5 = value; } inline static int32_t get_offset_of_m_ControlIndex_6() { return static_cast(offsetof(TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145, ___m_ControlIndex_6)); } inline uint16_t get_m_ControlIndex_6() const { return ___m_ControlIndex_6; } inline uint16_t* get_address_of_m_ControlIndex_6() { return &___m_ControlIndex_6; } inline void set_m_ControlIndex_6(uint16_t value) { ___m_ControlIndex_6 = value; } inline static int32_t get_offset_of_m_Time_7() { return static_cast(offsetof(TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145, ___m_Time_7)); } inline double get_m_Time_7() const { return ___m_Time_7; } inline double* get_address_of_m_Time_7() { return &___m_Time_7; } inline void set_m_Time_7(double value) { ___m_Time_7 = value; } inline static int32_t get_offset_of_m_StartTime_8() { return static_cast(offsetof(TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145, ___m_StartTime_8)); } inline double get_m_StartTime_8() const { return ___m_StartTime_8; } inline double* get_address_of_m_StartTime_8() { return &___m_StartTime_8; } inline void set_m_StartTime_8(double value) { ___m_StartTime_8 = value; } inline static int32_t get_offset_of_m_BindingIndex_9() { return static_cast(offsetof(TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145, ___m_BindingIndex_9)); } inline uint16_t get_m_BindingIndex_9() const { return ___m_BindingIndex_9; } inline uint16_t* get_address_of_m_BindingIndex_9() { return &___m_BindingIndex_9; } inline void set_m_BindingIndex_9(uint16_t value) { ___m_BindingIndex_9 = value; } inline static int32_t get_offset_of_m_InteractionIndex_10() { return static_cast(offsetof(TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145, ___m_InteractionIndex_10)); } inline uint16_t get_m_InteractionIndex_10() const { return ___m_InteractionIndex_10; } inline uint16_t* get_address_of_m_InteractionIndex_10() { return &___m_InteractionIndex_10; } inline void set_m_InteractionIndex_10(uint16_t value) { ___m_InteractionIndex_10 = value; } inline static int32_t get_offset_of_m_Magnitude_11() { return static_cast(offsetof(TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145, ___m_Magnitude_11)); } inline float get_m_Magnitude_11() const { return ___m_Magnitude_11; } inline float* get_address_of_m_Magnitude_11() { return &___m_Magnitude_11; } inline void set_m_Magnitude_11(float value) { ___m_Magnitude_11 = value; } inline static int32_t get_offset_of_m_LastPerformedInUpdate_12() { return static_cast(offsetof(TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145, ___m_LastPerformedInUpdate_12)); } inline uint32_t get_m_LastPerformedInUpdate_12() const { return ___m_LastPerformedInUpdate_12; } inline uint32_t* get_address_of_m_LastPerformedInUpdate_12() { return &___m_LastPerformedInUpdate_12; } inline void set_m_LastPerformedInUpdate_12(uint32_t value) { ___m_LastPerformedInUpdate_12 = value; } inline static int32_t get_offset_of_m_LastCanceledInUpdate_13() { return static_cast(offsetof(TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145, ___m_LastCanceledInUpdate_13)); } inline uint32_t get_m_LastCanceledInUpdate_13() const { return ___m_LastCanceledInUpdate_13; } inline uint32_t* get_address_of_m_LastCanceledInUpdate_13() { return &___m_LastCanceledInUpdate_13; } inline void set_m_LastCanceledInUpdate_13(uint32_t value) { ___m_LastCanceledInUpdate_13 = value; } inline static int32_t get_offset_of_m_PressedInUpdate_14() { return static_cast(offsetof(TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145, ___m_PressedInUpdate_14)); } inline uint32_t get_m_PressedInUpdate_14() const { return ___m_PressedInUpdate_14; } inline uint32_t* get_address_of_m_PressedInUpdate_14() { return &___m_PressedInUpdate_14; } inline void set_m_PressedInUpdate_14(uint32_t value) { ___m_PressedInUpdate_14 = value; } inline static int32_t get_offset_of_m_ReleasedInUpdate_15() { return static_cast(offsetof(TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145, ___m_ReleasedInUpdate_15)); } inline uint32_t get_m_ReleasedInUpdate_15() const { return ___m_ReleasedInUpdate_15; } inline uint32_t* get_address_of_m_ReleasedInUpdate_15() { return &___m_ReleasedInUpdate_15; } inline void set_m_ReleasedInUpdate_15(uint32_t value) { ___m_ReleasedInUpdate_15 = value; } }; // UnityEngine.InputSystem.InputActionState/UnmanagedMemory struct UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79 { public: // System.Void* UnityEngine.InputSystem.InputActionState/UnmanagedMemory::basePtr void* ___basePtr_0; // System.Int32 UnityEngine.InputSystem.InputActionState/UnmanagedMemory::mapCount int32_t ___mapCount_1; // System.Int32 UnityEngine.InputSystem.InputActionState/UnmanagedMemory::actionCount int32_t ___actionCount_2; // System.Int32 UnityEngine.InputSystem.InputActionState/UnmanagedMemory::interactionCount int32_t ___interactionCount_3; // System.Int32 UnityEngine.InputSystem.InputActionState/UnmanagedMemory::bindingCount int32_t ___bindingCount_4; // System.Int32 UnityEngine.InputSystem.InputActionState/UnmanagedMemory::controlCount int32_t ___controlCount_5; // System.Int32 UnityEngine.InputSystem.InputActionState/UnmanagedMemory::compositeCount int32_t ___compositeCount_6; // UnityEngine.InputSystem.InputActionState/TriggerState* UnityEngine.InputSystem.InputActionState/UnmanagedMemory::actionStates TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * ___actionStates_7; // UnityEngine.InputSystem.InputActionState/BindingState* UnityEngine.InputSystem.InputActionState/UnmanagedMemory::bindingStates BindingState_t568A45761EFD086FB6772BD7B933703E3ABFBF26 * ___bindingStates_8; // UnityEngine.InputSystem.InputActionState/InteractionState* UnityEngine.InputSystem.InputActionState/UnmanagedMemory::interactionStates InteractionState_tBD9D1657CA10C3E513F0A89AE637B7EF7CC68320 * ___interactionStates_9; // System.Single* UnityEngine.InputSystem.InputActionState/UnmanagedMemory::controlMagnitudes float* ___controlMagnitudes_10; // System.Single* UnityEngine.InputSystem.InputActionState/UnmanagedMemory::compositeMagnitudes float* ___compositeMagnitudes_11; // System.Int32* UnityEngine.InputSystem.InputActionState/UnmanagedMemory::enabledControls int32_t* ___enabledControls_12; // System.UInt16* UnityEngine.InputSystem.InputActionState/UnmanagedMemory::actionBindingIndicesAndCounts uint16_t* ___actionBindingIndicesAndCounts_13; // System.UInt16* UnityEngine.InputSystem.InputActionState/UnmanagedMemory::actionBindingIndices uint16_t* ___actionBindingIndices_14; // System.Int32* UnityEngine.InputSystem.InputActionState/UnmanagedMemory::controlIndexToBindingIndex int32_t* ___controlIndexToBindingIndex_15; // System.UInt16* UnityEngine.InputSystem.InputActionState/UnmanagedMemory::controlGroupingAndComplexity uint16_t* ___controlGroupingAndComplexity_16; // System.Boolean UnityEngine.InputSystem.InputActionState/UnmanagedMemory::controlGroupingInitialized bool ___controlGroupingInitialized_17; // UnityEngine.InputSystem.InputActionState/ActionMapIndices* UnityEngine.InputSystem.InputActionState/UnmanagedMemory::mapIndices ActionMapIndices_t627DF9CE7704FDD352C035C65CC9AF6D8B899A0A * ___mapIndices_18; public: inline static int32_t get_offset_of_basePtr_0() { return static_cast(offsetof(UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79, ___basePtr_0)); } inline void* get_basePtr_0() const { return ___basePtr_0; } inline void** get_address_of_basePtr_0() { return &___basePtr_0; } inline void set_basePtr_0(void* value) { ___basePtr_0 = value; } inline static int32_t get_offset_of_mapCount_1() { return static_cast(offsetof(UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79, ___mapCount_1)); } inline int32_t get_mapCount_1() const { return ___mapCount_1; } inline int32_t* get_address_of_mapCount_1() { return &___mapCount_1; } inline void set_mapCount_1(int32_t value) { ___mapCount_1 = value; } inline static int32_t get_offset_of_actionCount_2() { return static_cast(offsetof(UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79, ___actionCount_2)); } inline int32_t get_actionCount_2() const { return ___actionCount_2; } inline int32_t* get_address_of_actionCount_2() { return &___actionCount_2; } inline void set_actionCount_2(int32_t value) { ___actionCount_2 = value; } inline static int32_t get_offset_of_interactionCount_3() { return static_cast(offsetof(UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79, ___interactionCount_3)); } inline int32_t get_interactionCount_3() const { return ___interactionCount_3; } inline int32_t* get_address_of_interactionCount_3() { return &___interactionCount_3; } inline void set_interactionCount_3(int32_t value) { ___interactionCount_3 = value; } inline static int32_t get_offset_of_bindingCount_4() { return static_cast(offsetof(UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79, ___bindingCount_4)); } inline int32_t get_bindingCount_4() const { return ___bindingCount_4; } inline int32_t* get_address_of_bindingCount_4() { return &___bindingCount_4; } inline void set_bindingCount_4(int32_t value) { ___bindingCount_4 = value; } inline static int32_t get_offset_of_controlCount_5() { return static_cast(offsetof(UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79, ___controlCount_5)); } inline int32_t get_controlCount_5() const { return ___controlCount_5; } inline int32_t* get_address_of_controlCount_5() { return &___controlCount_5; } inline void set_controlCount_5(int32_t value) { ___controlCount_5 = value; } inline static int32_t get_offset_of_compositeCount_6() { return static_cast(offsetof(UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79, ___compositeCount_6)); } inline int32_t get_compositeCount_6() const { return ___compositeCount_6; } inline int32_t* get_address_of_compositeCount_6() { return &___compositeCount_6; } inline void set_compositeCount_6(int32_t value) { ___compositeCount_6 = value; } inline static int32_t get_offset_of_actionStates_7() { return static_cast(offsetof(UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79, ___actionStates_7)); } inline TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * get_actionStates_7() const { return ___actionStates_7; } inline TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 ** get_address_of_actionStates_7() { return &___actionStates_7; } inline void set_actionStates_7(TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * value) { ___actionStates_7 = value; } inline static int32_t get_offset_of_bindingStates_8() { return static_cast(offsetof(UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79, ___bindingStates_8)); } inline BindingState_t568A45761EFD086FB6772BD7B933703E3ABFBF26 * get_bindingStates_8() const { return ___bindingStates_8; } inline BindingState_t568A45761EFD086FB6772BD7B933703E3ABFBF26 ** get_address_of_bindingStates_8() { return &___bindingStates_8; } inline void set_bindingStates_8(BindingState_t568A45761EFD086FB6772BD7B933703E3ABFBF26 * value) { ___bindingStates_8 = value; } inline static int32_t get_offset_of_interactionStates_9() { return static_cast(offsetof(UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79, ___interactionStates_9)); } inline InteractionState_tBD9D1657CA10C3E513F0A89AE637B7EF7CC68320 * get_interactionStates_9() const { return ___interactionStates_9; } inline InteractionState_tBD9D1657CA10C3E513F0A89AE637B7EF7CC68320 ** get_address_of_interactionStates_9() { return &___interactionStates_9; } inline void set_interactionStates_9(InteractionState_tBD9D1657CA10C3E513F0A89AE637B7EF7CC68320 * value) { ___interactionStates_9 = value; } inline static int32_t get_offset_of_controlMagnitudes_10() { return static_cast(offsetof(UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79, ___controlMagnitudes_10)); } inline float* get_controlMagnitudes_10() const { return ___controlMagnitudes_10; } inline float** get_address_of_controlMagnitudes_10() { return &___controlMagnitudes_10; } inline void set_controlMagnitudes_10(float* value) { ___controlMagnitudes_10 = value; } inline static int32_t get_offset_of_compositeMagnitudes_11() { return static_cast(offsetof(UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79, ___compositeMagnitudes_11)); } inline float* get_compositeMagnitudes_11() const { return ___compositeMagnitudes_11; } inline float** get_address_of_compositeMagnitudes_11() { return &___compositeMagnitudes_11; } inline void set_compositeMagnitudes_11(float* value) { ___compositeMagnitudes_11 = value; } inline static int32_t get_offset_of_enabledControls_12() { return static_cast(offsetof(UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79, ___enabledControls_12)); } inline int32_t* get_enabledControls_12() const { return ___enabledControls_12; } inline int32_t** get_address_of_enabledControls_12() { return &___enabledControls_12; } inline void set_enabledControls_12(int32_t* value) { ___enabledControls_12 = value; } inline static int32_t get_offset_of_actionBindingIndicesAndCounts_13() { return static_cast(offsetof(UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79, ___actionBindingIndicesAndCounts_13)); } inline uint16_t* get_actionBindingIndicesAndCounts_13() const { return ___actionBindingIndicesAndCounts_13; } inline uint16_t** get_address_of_actionBindingIndicesAndCounts_13() { return &___actionBindingIndicesAndCounts_13; } inline void set_actionBindingIndicesAndCounts_13(uint16_t* value) { ___actionBindingIndicesAndCounts_13 = value; } inline static int32_t get_offset_of_actionBindingIndices_14() { return static_cast(offsetof(UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79, ___actionBindingIndices_14)); } inline uint16_t* get_actionBindingIndices_14() const { return ___actionBindingIndices_14; } inline uint16_t** get_address_of_actionBindingIndices_14() { return &___actionBindingIndices_14; } inline void set_actionBindingIndices_14(uint16_t* value) { ___actionBindingIndices_14 = value; } inline static int32_t get_offset_of_controlIndexToBindingIndex_15() { return static_cast(offsetof(UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79, ___controlIndexToBindingIndex_15)); } inline int32_t* get_controlIndexToBindingIndex_15() const { return ___controlIndexToBindingIndex_15; } inline int32_t** get_address_of_controlIndexToBindingIndex_15() { return &___controlIndexToBindingIndex_15; } inline void set_controlIndexToBindingIndex_15(int32_t* value) { ___controlIndexToBindingIndex_15 = value; } inline static int32_t get_offset_of_controlGroupingAndComplexity_16() { return static_cast(offsetof(UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79, ___controlGroupingAndComplexity_16)); } inline uint16_t* get_controlGroupingAndComplexity_16() const { return ___controlGroupingAndComplexity_16; } inline uint16_t** get_address_of_controlGroupingAndComplexity_16() { return &___controlGroupingAndComplexity_16; } inline void set_controlGroupingAndComplexity_16(uint16_t* value) { ___controlGroupingAndComplexity_16 = value; } inline static int32_t get_offset_of_controlGroupingInitialized_17() { return static_cast(offsetof(UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79, ___controlGroupingInitialized_17)); } inline bool get_controlGroupingInitialized_17() const { return ___controlGroupingInitialized_17; } inline bool* get_address_of_controlGroupingInitialized_17() { return &___controlGroupingInitialized_17; } inline void set_controlGroupingInitialized_17(bool value) { ___controlGroupingInitialized_17 = value; } inline static int32_t get_offset_of_mapIndices_18() { return static_cast(offsetof(UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79, ___mapIndices_18)); } inline ActionMapIndices_t627DF9CE7704FDD352C035C65CC9AF6D8B899A0A * get_mapIndices_18() const { return ___mapIndices_18; } inline ActionMapIndices_t627DF9CE7704FDD352C035C65CC9AF6D8B899A0A ** get_address_of_mapIndices_18() { return &___mapIndices_18; } inline void set_mapIndices_18(ActionMapIndices_t627DF9CE7704FDD352C035C65CC9AF6D8B899A0A * value) { ___mapIndices_18 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.InputActionState/UnmanagedMemory struct UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79_marshaled_pinvoke { void* ___basePtr_0; int32_t ___mapCount_1; int32_t ___actionCount_2; int32_t ___interactionCount_3; int32_t ___bindingCount_4; int32_t ___controlCount_5; int32_t ___compositeCount_6; TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * ___actionStates_7; BindingState_t568A45761EFD086FB6772BD7B933703E3ABFBF26 * ___bindingStates_8; InteractionState_tBD9D1657CA10C3E513F0A89AE637B7EF7CC68320 * ___interactionStates_9; float* ___controlMagnitudes_10; float* ___compositeMagnitudes_11; int32_t* ___enabledControls_12; uint16_t* ___actionBindingIndicesAndCounts_13; uint16_t* ___actionBindingIndices_14; int32_t* ___controlIndexToBindingIndex_15; uint16_t* ___controlGroupingAndComplexity_16; int32_t ___controlGroupingInitialized_17; ActionMapIndices_t627DF9CE7704FDD352C035C65CC9AF6D8B899A0A * ___mapIndices_18; }; // Native definition for COM marshalling of UnityEngine.InputSystem.InputActionState/UnmanagedMemory struct UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79_marshaled_com { void* ___basePtr_0; int32_t ___mapCount_1; int32_t ___actionCount_2; int32_t ___interactionCount_3; int32_t ___bindingCount_4; int32_t ___controlCount_5; int32_t ___compositeCount_6; TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * ___actionStates_7; BindingState_t568A45761EFD086FB6772BD7B933703E3ABFBF26 * ___bindingStates_8; InteractionState_tBD9D1657CA10C3E513F0A89AE637B7EF7CC68320 * ___interactionStates_9; float* ___controlMagnitudes_10; float* ___compositeMagnitudes_11; int32_t* ___enabledControls_12; uint16_t* ___actionBindingIndicesAndCounts_13; uint16_t* ___actionBindingIndices_14; int32_t* ___controlIndexToBindingIndex_15; uint16_t* ___controlGroupingAndComplexity_16; int32_t ___controlGroupingInitialized_17; ActionMapIndices_t627DF9CE7704FDD352C035C65CC9AF6D8B899A0A * ___mapIndices_18; }; // UnityEngine.InputSystem.Layouts.InputControlLayout/Cache struct Cache_tCCC71FFB1DEF56FF815ED5B09BB764EDB00EE82E { public: // System.Collections.Generic.Dictionary`2 UnityEngine.InputSystem.Layouts.InputControlLayout/Cache::table Dictionary_2_t5CDE7C1F4CCF20D97AD81FE47A410DD3383EFB65 * ___table_0; public: inline static int32_t get_offset_of_table_0() { return static_cast(offsetof(Cache_tCCC71FFB1DEF56FF815ED5B09BB764EDB00EE82E, ___table_0)); } inline Dictionary_2_t5CDE7C1F4CCF20D97AD81FE47A410DD3383EFB65 * get_table_0() const { return ___table_0; } inline Dictionary_2_t5CDE7C1F4CCF20D97AD81FE47A410DD3383EFB65 ** get_address_of_table_0() { return &___table_0; } inline void set_table_0(Dictionary_2_t5CDE7C1F4CCF20D97AD81FE47A410DD3383EFB65 * value) { ___table_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___table_0), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/Cache struct Cache_tCCC71FFB1DEF56FF815ED5B09BB764EDB00EE82E_marshaled_pinvoke { Dictionary_2_t5CDE7C1F4CCF20D97AD81FE47A410DD3383EFB65 * ___table_0; }; // Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/Cache struct Cache_tCCC71FFB1DEF56FF815ED5B09BB764EDB00EE82E_marshaled_com { Dictionary_2_t5CDE7C1F4CCF20D97AD81FE47A410DD3383EFB65 * ___table_0; }; // UnityEngine.InputSystem.Layouts.InputControlLayout/Collection struct Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F { public: // System.Collections.Generic.Dictionary`2 UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::layoutTypes Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * ___layoutTypes_1; // System.Collections.Generic.Dictionary`2 UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::layoutStrings Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E * ___layoutStrings_2; // System.Collections.Generic.Dictionary`2> UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::layoutBuilders Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9 * ___layoutBuilders_3; // System.Collections.Generic.Dictionary`2 UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::baseLayoutTable Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540 * ___baseLayoutTable_4; // System.Collections.Generic.Dictionary`2 UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::layoutOverrides Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86 * ___layoutOverrides_5; // System.Collections.Generic.HashSet`1 UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::layoutOverrideNames HashSet_1_t9DCF3402E30D433824DBE15EBB53B1DD79D671C1 * ___layoutOverrideNames_6; // System.Collections.Generic.Dictionary`2 UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::precompiledLayouts Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE * ___precompiledLayouts_7; // System.Collections.Generic.List`1 UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::layoutMatchers List_1_tB0AB87A0CDEC1CF5456422A1F87B5EC9EFF9516C * ___layoutMatchers_8; public: inline static int32_t get_offset_of_layoutTypes_1() { return static_cast(offsetof(Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F, ___layoutTypes_1)); } inline Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * get_layoutTypes_1() const { return ___layoutTypes_1; } inline Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E ** get_address_of_layoutTypes_1() { return &___layoutTypes_1; } inline void set_layoutTypes_1(Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * value) { ___layoutTypes_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___layoutTypes_1), (void*)value); } inline static int32_t get_offset_of_layoutStrings_2() { return static_cast(offsetof(Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F, ___layoutStrings_2)); } inline Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E * get_layoutStrings_2() const { return ___layoutStrings_2; } inline Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E ** get_address_of_layoutStrings_2() { return &___layoutStrings_2; } inline void set_layoutStrings_2(Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E * value) { ___layoutStrings_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___layoutStrings_2), (void*)value); } inline static int32_t get_offset_of_layoutBuilders_3() { return static_cast(offsetof(Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F, ___layoutBuilders_3)); } inline Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9 * get_layoutBuilders_3() const { return ___layoutBuilders_3; } inline Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9 ** get_address_of_layoutBuilders_3() { return &___layoutBuilders_3; } inline void set_layoutBuilders_3(Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9 * value) { ___layoutBuilders_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___layoutBuilders_3), (void*)value); } inline static int32_t get_offset_of_baseLayoutTable_4() { return static_cast(offsetof(Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F, ___baseLayoutTable_4)); } inline Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540 * get_baseLayoutTable_4() const { return ___baseLayoutTable_4; } inline Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540 ** get_address_of_baseLayoutTable_4() { return &___baseLayoutTable_4; } inline void set_baseLayoutTable_4(Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540 * value) { ___baseLayoutTable_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___baseLayoutTable_4), (void*)value); } inline static int32_t get_offset_of_layoutOverrides_5() { return static_cast(offsetof(Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F, ___layoutOverrides_5)); } inline Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86 * get_layoutOverrides_5() const { return ___layoutOverrides_5; } inline Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86 ** get_address_of_layoutOverrides_5() { return &___layoutOverrides_5; } inline void set_layoutOverrides_5(Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86 * value) { ___layoutOverrides_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___layoutOverrides_5), (void*)value); } inline static int32_t get_offset_of_layoutOverrideNames_6() { return static_cast(offsetof(Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F, ___layoutOverrideNames_6)); } inline HashSet_1_t9DCF3402E30D433824DBE15EBB53B1DD79D671C1 * get_layoutOverrideNames_6() const { return ___layoutOverrideNames_6; } inline HashSet_1_t9DCF3402E30D433824DBE15EBB53B1DD79D671C1 ** get_address_of_layoutOverrideNames_6() { return &___layoutOverrideNames_6; } inline void set_layoutOverrideNames_6(HashSet_1_t9DCF3402E30D433824DBE15EBB53B1DD79D671C1 * value) { ___layoutOverrideNames_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___layoutOverrideNames_6), (void*)value); } inline static int32_t get_offset_of_precompiledLayouts_7() { return static_cast(offsetof(Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F, ___precompiledLayouts_7)); } inline Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE * get_precompiledLayouts_7() const { return ___precompiledLayouts_7; } inline Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE ** get_address_of_precompiledLayouts_7() { return &___precompiledLayouts_7; } inline void set_precompiledLayouts_7(Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE * value) { ___precompiledLayouts_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___precompiledLayouts_7), (void*)value); } inline static int32_t get_offset_of_layoutMatchers_8() { return static_cast(offsetof(Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F, ___layoutMatchers_8)); } inline List_1_tB0AB87A0CDEC1CF5456422A1F87B5EC9EFF9516C * get_layoutMatchers_8() const { return ___layoutMatchers_8; } inline List_1_tB0AB87A0CDEC1CF5456422A1F87B5EC9EFF9516C ** get_address_of_layoutMatchers_8() { return &___layoutMatchers_8; } inline void set_layoutMatchers_8(List_1_tB0AB87A0CDEC1CF5456422A1F87B5EC9EFF9516C * value) { ___layoutMatchers_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___layoutMatchers_8), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/Collection struct Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F_marshaled_pinvoke { Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * ___layoutTypes_1; Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E * ___layoutStrings_2; Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9 * ___layoutBuilders_3; Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540 * ___baseLayoutTable_4; Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86 * ___layoutOverrides_5; HashSet_1_t9DCF3402E30D433824DBE15EBB53B1DD79D671C1 * ___layoutOverrideNames_6; Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE * ___precompiledLayouts_7; List_1_tB0AB87A0CDEC1CF5456422A1F87B5EC9EFF9516C * ___layoutMatchers_8; }; // Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/Collection struct Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F_marshaled_com { Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * ___layoutTypes_1; Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E * ___layoutStrings_2; Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9 * ___layoutBuilders_3; Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540 * ___baseLayoutTable_4; Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86 * ___layoutOverrides_5; HashSet_1_t9DCF3402E30D433824DBE15EBB53B1DD79D671C1 * ___layoutOverrideNames_6; Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE * ___precompiledLayouts_7; List_1_tB0AB87A0CDEC1CF5456422A1F87B5EC9EFF9516C * ___layoutMatchers_8; }; // UnityEngine.InputSystem.Layouts.InputDeviceBuilder/RefInstance struct RefInstance_t644EB29D353013AE02C53F47A026FFEEBA232E6F { public: union { struct { }; uint8_t RefInstance_t644EB29D353013AE02C53F47A026FFEEBA232E6F__padding[1]; }; public: }; // UnityEngine.InputSystem.Layouts.InputDeviceDescription/DeviceDescriptionJson struct DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413 { public: // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription/DeviceDescriptionJson::interface String_t* ___interface_0; // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription/DeviceDescriptionJson::type String_t* ___type_1; // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription/DeviceDescriptionJson::product String_t* ___product_2; // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription/DeviceDescriptionJson::serial String_t* ___serial_3; // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription/DeviceDescriptionJson::version String_t* ___version_4; // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription/DeviceDescriptionJson::manufacturer String_t* ___manufacturer_5; // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription/DeviceDescriptionJson::capabilities String_t* ___capabilities_6; public: inline static int32_t get_offset_of_interface_0() { return static_cast(offsetof(DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413, ___interface_0)); } inline String_t* get_interface_0() const { return ___interface_0; } inline String_t** get_address_of_interface_0() { return &___interface_0; } inline void set_interface_0(String_t* value) { ___interface_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___interface_0), (void*)value); } inline static int32_t get_offset_of_type_1() { return static_cast(offsetof(DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413, ___type_1)); } inline String_t* get_type_1() const { return ___type_1; } inline String_t** get_address_of_type_1() { return &___type_1; } inline void set_type_1(String_t* value) { ___type_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___type_1), (void*)value); } inline static int32_t get_offset_of_product_2() { return static_cast(offsetof(DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413, ___product_2)); } inline String_t* get_product_2() const { return ___product_2; } inline String_t** get_address_of_product_2() { return &___product_2; } inline void set_product_2(String_t* value) { ___product_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___product_2), (void*)value); } inline static int32_t get_offset_of_serial_3() { return static_cast(offsetof(DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413, ___serial_3)); } inline String_t* get_serial_3() const { return ___serial_3; } inline String_t** get_address_of_serial_3() { return &___serial_3; } inline void set_serial_3(String_t* value) { ___serial_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___serial_3), (void*)value); } inline static int32_t get_offset_of_version_4() { return static_cast(offsetof(DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413, ___version_4)); } inline String_t* get_version_4() const { return ___version_4; } inline String_t** get_address_of_version_4() { return &___version_4; } inline void set_version_4(String_t* value) { ___version_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_4), (void*)value); } inline static int32_t get_offset_of_manufacturer_5() { return static_cast(offsetof(DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413, ___manufacturer_5)); } inline String_t* get_manufacturer_5() const { return ___manufacturer_5; } inline String_t** get_address_of_manufacturer_5() { return &___manufacturer_5; } inline void set_manufacturer_5(String_t* value) { ___manufacturer_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___manufacturer_5), (void*)value); } inline static int32_t get_offset_of_capabilities_6() { return static_cast(offsetof(DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413, ___capabilities_6)); } inline String_t* get_capabilities_6() const { return ___capabilities_6; } inline String_t** get_address_of_capabilities_6() { return &___capabilities_6; } inline void set_capabilities_6(String_t* value) { ___capabilities_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___capabilities_6), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputDeviceDescription/DeviceDescriptionJson struct DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413_marshaled_pinvoke { char* ___interface_0; char* ___type_1; char* ___product_2; char* ___serial_3; char* ___version_4; char* ___manufacturer_5; char* ___capabilities_6; }; // Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputDeviceDescription/DeviceDescriptionJson struct DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413_marshaled_com { Il2CppChar* ___interface_0; Il2CppChar* ___type_1; Il2CppChar* ___product_2; Il2CppChar* ___serial_3; Il2CppChar* ___version_4; Il2CppChar* ___manufacturer_5; Il2CppChar* ___capabilities_6; }; // UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator struct Enumerator_tD8A07122686F8093CC59FC43AE479C73D2B32313 { public: // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::m_Buffer InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___m_Buffer_0; // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::m_EventCount int32_t ___m_EventCount_1; // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::m_CurrentEvent InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___m_CurrentEvent_2; // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::m_CurrentIndex int32_t ___m_CurrentIndex_3; public: inline static int32_t get_offset_of_m_Buffer_0() { return static_cast(offsetof(Enumerator_tD8A07122686F8093CC59FC43AE479C73D2B32313, ___m_Buffer_0)); } inline InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * get_m_Buffer_0() const { return ___m_Buffer_0; } inline InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** get_address_of_m_Buffer_0() { return &___m_Buffer_0; } inline void set_m_Buffer_0(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * value) { ___m_Buffer_0 = value; } inline static int32_t get_offset_of_m_EventCount_1() { return static_cast(offsetof(Enumerator_tD8A07122686F8093CC59FC43AE479C73D2B32313, ___m_EventCount_1)); } inline int32_t get_m_EventCount_1() const { return ___m_EventCount_1; } inline int32_t* get_address_of_m_EventCount_1() { return &___m_EventCount_1; } inline void set_m_EventCount_1(int32_t value) { ___m_EventCount_1 = value; } inline static int32_t get_offset_of_m_CurrentEvent_2() { return static_cast(offsetof(Enumerator_tD8A07122686F8093CC59FC43AE479C73D2B32313, ___m_CurrentEvent_2)); } inline InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * get_m_CurrentEvent_2() const { return ___m_CurrentEvent_2; } inline InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** get_address_of_m_CurrentEvent_2() { return &___m_CurrentEvent_2; } inline void set_m_CurrentEvent_2(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * value) { ___m_CurrentEvent_2 = value; } inline static int32_t get_offset_of_m_CurrentIndex_3() { return static_cast(offsetof(Enumerator_tD8A07122686F8093CC59FC43AE479C73D2B32313, ___m_CurrentIndex_3)); } inline int32_t get_m_CurrentIndex_3() const { return ___m_CurrentIndex_3; } inline int32_t* get_address_of_m_CurrentIndex_3() { return &___m_CurrentIndex_3; } inline void set_m_CurrentIndex_3(int32_t value) { ___m_CurrentIndex_3 = value; } }; // UnityEngine.InputSystem.InputManager/StateChangeMonitorListener struct StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757 { public: // UnityEngine.InputSystem.InputControl UnityEngine.InputSystem.InputManager/StateChangeMonitorListener::control InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * ___control_0; // UnityEngine.InputSystem.LowLevel.IInputStateChangeMonitor UnityEngine.InputSystem.InputManager/StateChangeMonitorListener::monitor RuntimeObject* ___monitor_1; // System.Int64 UnityEngine.InputSystem.InputManager/StateChangeMonitorListener::monitorIndex int64_t ___monitorIndex_2; // System.UInt32 UnityEngine.InputSystem.InputManager/StateChangeMonitorListener::groupIndex uint32_t ___groupIndex_3; public: inline static int32_t get_offset_of_control_0() { return static_cast(offsetof(StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757, ___control_0)); } inline InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * get_control_0() const { return ___control_0; } inline InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 ** get_address_of_control_0() { return &___control_0; } inline void set_control_0(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * value) { ___control_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___control_0), (void*)value); } inline static int32_t get_offset_of_monitor_1() { return static_cast(offsetof(StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757, ___monitor_1)); } inline RuntimeObject* get_monitor_1() const { return ___monitor_1; } inline RuntimeObject** get_address_of_monitor_1() { return &___monitor_1; } inline void set_monitor_1(RuntimeObject* value) { ___monitor_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___monitor_1), (void*)value); } inline static int32_t get_offset_of_monitorIndex_2() { return static_cast(offsetof(StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757, ___monitorIndex_2)); } inline int64_t get_monitorIndex_2() const { return ___monitorIndex_2; } inline int64_t* get_address_of_monitorIndex_2() { return &___monitorIndex_2; } inline void set_monitorIndex_2(int64_t value) { ___monitorIndex_2 = value; } inline static int32_t get_offset_of_groupIndex_3() { return static_cast(offsetof(StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757, ___groupIndex_3)); } inline uint32_t get_groupIndex_3() const { return ___groupIndex_3; } inline uint32_t* get_address_of_groupIndex_3() { return &___groupIndex_3; } inline void set_groupIndex_3(uint32_t value) { ___groupIndex_3 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.InputManager/StateChangeMonitorListener struct StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757_marshaled_pinvoke { InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * ___control_0; RuntimeObject* ___monitor_1; int64_t ___monitorIndex_2; uint32_t ___groupIndex_3; }; // Native definition for COM marshalling of UnityEngine.InputSystem.InputManager/StateChangeMonitorListener struct StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757_marshaled_com { InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * ___control_0; RuntimeObject* ___monitor_1; int64_t ___monitorIndex_2; uint32_t ___groupIndex_3; }; // UnityEngine.InputSystem.InputManager/StateChangeMonitorTimeout struct StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 { public: // UnityEngine.InputSystem.InputControl UnityEngine.InputSystem.InputManager/StateChangeMonitorTimeout::control InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * ___control_0; // System.Double UnityEngine.InputSystem.InputManager/StateChangeMonitorTimeout::time double ___time_1; // UnityEngine.InputSystem.LowLevel.IInputStateChangeMonitor UnityEngine.InputSystem.InputManager/StateChangeMonitorTimeout::monitor RuntimeObject* ___monitor_2; // System.Int64 UnityEngine.InputSystem.InputManager/StateChangeMonitorTimeout::monitorIndex int64_t ___monitorIndex_3; // System.Int32 UnityEngine.InputSystem.InputManager/StateChangeMonitorTimeout::timerIndex int32_t ___timerIndex_4; public: inline static int32_t get_offset_of_control_0() { return static_cast(offsetof(StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391, ___control_0)); } inline InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * get_control_0() const { return ___control_0; } inline InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 ** get_address_of_control_0() { return &___control_0; } inline void set_control_0(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * value) { ___control_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___control_0), (void*)value); } inline static int32_t get_offset_of_time_1() { return static_cast(offsetof(StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391, ___time_1)); } inline double get_time_1() const { return ___time_1; } inline double* get_address_of_time_1() { return &___time_1; } inline void set_time_1(double value) { ___time_1 = value; } inline static int32_t get_offset_of_monitor_2() { return static_cast(offsetof(StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391, ___monitor_2)); } inline RuntimeObject* get_monitor_2() const { return ___monitor_2; } inline RuntimeObject** get_address_of_monitor_2() { return &___monitor_2; } inline void set_monitor_2(RuntimeObject* value) { ___monitor_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___monitor_2), (void*)value); } inline static int32_t get_offset_of_monitorIndex_3() { return static_cast(offsetof(StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391, ___monitorIndex_3)); } inline int64_t get_monitorIndex_3() const { return ___monitorIndex_3; } inline int64_t* get_address_of_monitorIndex_3() { return &___monitorIndex_3; } inline void set_monitorIndex_3(int64_t value) { ___monitorIndex_3 = value; } inline static int32_t get_offset_of_timerIndex_4() { return static_cast(offsetof(StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391, ___timerIndex_4)); } inline int32_t get_timerIndex_4() const { return ___timerIndex_4; } inline int32_t* get_address_of_timerIndex_4() { return &___timerIndex_4; } inline void set_timerIndex_4(int32_t value) { ___timerIndex_4 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.InputManager/StateChangeMonitorTimeout struct StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391_marshaled_pinvoke { InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * ___control_0; double ___time_1; RuntimeObject* ___monitor_2; int64_t ___monitorIndex_3; int32_t ___timerIndex_4; }; // Native definition for COM marshalling of UnityEngine.InputSystem.InputManager/StateChangeMonitorTimeout struct StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391_marshaled_com { InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * ___control_0; double ___time_1; RuntimeObject* ___monitor_2; int64_t ___monitorIndex_3; int32_t ___timerIndex_4; }; // UnityEngine.InputSystem.LowLevel.InputStateBuffers/DoubleBuffers struct DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B { public: // System.Void** UnityEngine.InputSystem.LowLevel.InputStateBuffers/DoubleBuffers::deviceToBufferMapping void** ___deviceToBufferMapping_0; public: inline static int32_t get_offset_of_deviceToBufferMapping_0() { return static_cast(offsetof(DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B, ___deviceToBufferMapping_0)); } inline void** get_deviceToBufferMapping_0() const { return ___deviceToBufferMapping_0; } inline void*** get_address_of_deviceToBufferMapping_0() { return &___deviceToBufferMapping_0; } inline void set_deviceToBufferMapping_0(void** value) { ___deviceToBufferMapping_0 = value; } }; // UnityEngine.InputSystem.LowLevel.InputUpdate/UpdateStepCount struct UpdateStepCount_tD390726C525CA5CE3A339A33E2984D65356A4780 { public: // System.Boolean UnityEngine.InputSystem.LowLevel.InputUpdate/UpdateStepCount::m_WasUpdated bool ___m_WasUpdated_0; // System.UInt32 UnityEngine.InputSystem.LowLevel.InputUpdate/UpdateStepCount::k__BackingField uint32_t ___U3CvalueU3Ek__BackingField_1; public: inline static int32_t get_offset_of_m_WasUpdated_0() { return static_cast(offsetof(UpdateStepCount_tD390726C525CA5CE3A339A33E2984D65356A4780, ___m_WasUpdated_0)); } inline bool get_m_WasUpdated_0() const { return ___m_WasUpdated_0; } inline bool* get_address_of_m_WasUpdated_0() { return &___m_WasUpdated_0; } inline void set_m_WasUpdated_0(bool value) { ___m_WasUpdated_0 = value; } inline static int32_t get_offset_of_U3CvalueU3Ek__BackingField_1() { return static_cast(offsetof(UpdateStepCount_tD390726C525CA5CE3A339A33E2984D65356A4780, ___U3CvalueU3Ek__BackingField_1)); } inline uint32_t get_U3CvalueU3Ek__BackingField_1() const { return ___U3CvalueU3Ek__BackingField_1; } inline uint32_t* get_address_of_U3CvalueU3Ek__BackingField_1() { return &___U3CvalueU3Ek__BackingField_1; } inline void set_U3CvalueU3Ek__BackingField_1(uint32_t value) { ___U3CvalueU3Ek__BackingField_1 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.InputUpdate/UpdateStepCount struct UpdateStepCount_tD390726C525CA5CE3A339A33E2984D65356A4780_marshaled_pinvoke { int32_t ___m_WasUpdated_0; uint32_t ___U3CvalueU3Ek__BackingField_1; }; // Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.InputUpdate/UpdateStepCount struct UpdateStepCount_tD390726C525CA5CE3A339A33E2984D65356A4780_marshaled_com { int32_t ___m_WasUpdated_0; uint32_t ___U3CvalueU3Ek__BackingField_1; }; // UnityEngine.InputSystem.Utilities.MemoryHelpers/BitRegion struct BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 { public: // System.UInt32 UnityEngine.InputSystem.Utilities.MemoryHelpers/BitRegion::bitOffset uint32_t ___bitOffset_0; // System.UInt32 UnityEngine.InputSystem.Utilities.MemoryHelpers/BitRegion::sizeInBits uint32_t ___sizeInBits_1; public: inline static int32_t get_offset_of_bitOffset_0() { return static_cast(offsetof(BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0, ___bitOffset_0)); } inline uint32_t get_bitOffset_0() const { return ___bitOffset_0; } inline uint32_t* get_address_of_bitOffset_0() { return &___bitOffset_0; } inline void set_bitOffset_0(uint32_t value) { ___bitOffset_0 = value; } inline static int32_t get_offset_of_sizeInBits_1() { return static_cast(offsetof(BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0, ___sizeInBits_1)); } inline uint32_t get_sizeInBits_1() const { return ___sizeInBits_1; } inline uint32_t* get_address_of_sizeInBits_1() { return &___sizeInBits_1; } inline void set_sizeInBits_1(uint32_t value) { ___sizeInBits_1 = value; } }; // UnityEngine.InputSystem.LowLevel.StateEvent/e__FixedBuffer struct U3CstateDataU3Ee__FixedBuffer_t12BA1A66DF06BAD68C6F8E16C8DA5939E3D584E9 { public: union { struct { // System.Byte UnityEngine.InputSystem.LowLevel.StateEvent/e__FixedBuffer::FixedElementField uint8_t ___FixedElementField_0; }; uint8_t U3CstateDataU3Ee__FixedBuffer_t12BA1A66DF06BAD68C6F8E16C8DA5939E3D584E9__padding[1]; }; public: inline static int32_t get_offset_of_FixedElementField_0() { return static_cast(offsetof(U3CstateDataU3Ee__FixedBuffer_t12BA1A66DF06BAD68C6F8E16C8DA5939E3D584E9, ___FixedElementField_0)); } inline uint8_t get_FixedElementField_0() const { return ___FixedElementField_0; } inline uint8_t* get_address_of_FixedElementField_0() { return &___FixedElementField_0; } inline void set_FixedElementField_0(uint8_t value) { ___FixedElementField_0 = value; } }; // UnityEngine.InputSystem.Layouts.InputControlLayout/Collection/PrecompiledLayout struct PrecompiledLayout_t87B15ED374C6DA9C0C0D9333A1BDAC4F40E548CB { public: // System.Func`1 UnityEngine.InputSystem.Layouts.InputControlLayout/Collection/PrecompiledLayout::factoryMethod Func_1_t76DECFBA7E8607FAED0307739AF623E13E9A32D8 * ___factoryMethod_0; // System.String UnityEngine.InputSystem.Layouts.InputControlLayout/Collection/PrecompiledLayout::metadata String_t* ___metadata_1; public: inline static int32_t get_offset_of_factoryMethod_0() { return static_cast(offsetof(PrecompiledLayout_t87B15ED374C6DA9C0C0D9333A1BDAC4F40E548CB, ___factoryMethod_0)); } inline Func_1_t76DECFBA7E8607FAED0307739AF623E13E9A32D8 * get_factoryMethod_0() const { return ___factoryMethod_0; } inline Func_1_t76DECFBA7E8607FAED0307739AF623E13E9A32D8 ** get_address_of_factoryMethod_0() { return &___factoryMethod_0; } inline void set_factoryMethod_0(Func_1_t76DECFBA7E8607FAED0307739AF623E13E9A32D8 * value) { ___factoryMethod_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___factoryMethod_0), (void*)value); } inline static int32_t get_offset_of_metadata_1() { return static_cast(offsetof(PrecompiledLayout_t87B15ED374C6DA9C0C0D9333A1BDAC4F40E548CB, ___metadata_1)); } inline String_t* get_metadata_1() const { return ___metadata_1; } inline String_t** get_address_of_metadata_1() { return &___metadata_1; } inline void set_metadata_1(String_t* value) { ___metadata_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___metadata_1), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/Collection/PrecompiledLayout struct PrecompiledLayout_t87B15ED374C6DA9C0C0D9333A1BDAC4F40E548CB_marshaled_pinvoke { Il2CppMethodPointer ___factoryMethod_0; char* ___metadata_1; }; // Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/Collection/PrecompiledLayout struct PrecompiledLayout_t87B15ED374C6DA9C0C0D9333A1BDAC4F40E548CB_marshaled_com { Il2CppMethodPointer ___factoryMethod_0; Il2CppChar* ___metadata_1; }; // UnityEngine.InputSystem.Utilities.CallbackArray`1> struct CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008 { public: // System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray bool ___m_CannotMutateCallbacksArray_0; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks InlinedArray_1_tAA4815844922B683BC7EA863FF03644D1AA6A100 ___m_Callbacks_1; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd InlinedArray_1_tAA4815844922B683BC7EA863FF03644D1AA6A100 ___m_CallbacksToAdd_2; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove InlinedArray_1_tAA4815844922B683BC7EA863FF03644D1AA6A100 ___m_CallbacksToRemove_3; public: inline static int32_t get_offset_of_m_CannotMutateCallbacksArray_0() { return static_cast(offsetof(CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008, ___m_CannotMutateCallbacksArray_0)); } inline bool get_m_CannotMutateCallbacksArray_0() const { return ___m_CannotMutateCallbacksArray_0; } inline bool* get_address_of_m_CannotMutateCallbacksArray_0() { return &___m_CannotMutateCallbacksArray_0; } inline void set_m_CannotMutateCallbacksArray_0(bool value) { ___m_CannotMutateCallbacksArray_0 = value; } inline static int32_t get_offset_of_m_Callbacks_1() { return static_cast(offsetof(CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008, ___m_Callbacks_1)); } inline InlinedArray_1_tAA4815844922B683BC7EA863FF03644D1AA6A100 get_m_Callbacks_1() const { return ___m_Callbacks_1; } inline InlinedArray_1_tAA4815844922B683BC7EA863FF03644D1AA6A100 * get_address_of_m_Callbacks_1() { return &___m_Callbacks_1; } inline void set_m_Callbacks_1(InlinedArray_1_tAA4815844922B683BC7EA863FF03644D1AA6A100 value) { ___m_Callbacks_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToAdd_2() { return static_cast(offsetof(CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008, ___m_CallbacksToAdd_2)); } inline InlinedArray_1_tAA4815844922B683BC7EA863FF03644D1AA6A100 get_m_CallbacksToAdd_2() const { return ___m_CallbacksToAdd_2; } inline InlinedArray_1_tAA4815844922B683BC7EA863FF03644D1AA6A100 * get_address_of_m_CallbacksToAdd_2() { return &___m_CallbacksToAdd_2; } inline void set_m_CallbacksToAdd_2(InlinedArray_1_tAA4815844922B683BC7EA863FF03644D1AA6A100 value) { ___m_CallbacksToAdd_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToRemove_3() { return static_cast(offsetof(CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008, ___m_CallbacksToRemove_3)); } inline InlinedArray_1_tAA4815844922B683BC7EA863FF03644D1AA6A100 get_m_CallbacksToRemove_3() const { return ___m_CallbacksToRemove_3; } inline InlinedArray_1_tAA4815844922B683BC7EA863FF03644D1AA6A100 * get_address_of_m_CallbacksToRemove_3() { return &___m_CallbacksToRemove_3; } inline void set_m_CallbacksToRemove_3(InlinedArray_1_tAA4815844922B683BC7EA863FF03644D1AA6A100 value) { ___m_CallbacksToRemove_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } }; // UnityEngine.InputSystem.Utilities.CallbackArray`1> struct CallbackArray_1_tE03856E201C6AA8C7ED4B4A9675D5BD431CACF1D { public: // System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray bool ___m_CannotMutateCallbacksArray_0; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks InlinedArray_1_t78FDC7F1CD6623C5E091BB79EC2F93375CE38CE9 ___m_Callbacks_1; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd InlinedArray_1_t78FDC7F1CD6623C5E091BB79EC2F93375CE38CE9 ___m_CallbacksToAdd_2; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove InlinedArray_1_t78FDC7F1CD6623C5E091BB79EC2F93375CE38CE9 ___m_CallbacksToRemove_3; public: inline static int32_t get_offset_of_m_CannotMutateCallbacksArray_0() { return static_cast(offsetof(CallbackArray_1_tE03856E201C6AA8C7ED4B4A9675D5BD431CACF1D, ___m_CannotMutateCallbacksArray_0)); } inline bool get_m_CannotMutateCallbacksArray_0() const { return ___m_CannotMutateCallbacksArray_0; } inline bool* get_address_of_m_CannotMutateCallbacksArray_0() { return &___m_CannotMutateCallbacksArray_0; } inline void set_m_CannotMutateCallbacksArray_0(bool value) { ___m_CannotMutateCallbacksArray_0 = value; } inline static int32_t get_offset_of_m_Callbacks_1() { return static_cast(offsetof(CallbackArray_1_tE03856E201C6AA8C7ED4B4A9675D5BD431CACF1D, ___m_Callbacks_1)); } inline InlinedArray_1_t78FDC7F1CD6623C5E091BB79EC2F93375CE38CE9 get_m_Callbacks_1() const { return ___m_Callbacks_1; } inline InlinedArray_1_t78FDC7F1CD6623C5E091BB79EC2F93375CE38CE9 * get_address_of_m_Callbacks_1() { return &___m_Callbacks_1; } inline void set_m_Callbacks_1(InlinedArray_1_t78FDC7F1CD6623C5E091BB79EC2F93375CE38CE9 value) { ___m_Callbacks_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToAdd_2() { return static_cast(offsetof(CallbackArray_1_tE03856E201C6AA8C7ED4B4A9675D5BD431CACF1D, ___m_CallbacksToAdd_2)); } inline InlinedArray_1_t78FDC7F1CD6623C5E091BB79EC2F93375CE38CE9 get_m_CallbacksToAdd_2() const { return ___m_CallbacksToAdd_2; } inline InlinedArray_1_t78FDC7F1CD6623C5E091BB79EC2F93375CE38CE9 * get_address_of_m_CallbacksToAdd_2() { return &___m_CallbacksToAdd_2; } inline void set_m_CallbacksToAdd_2(InlinedArray_1_t78FDC7F1CD6623C5E091BB79EC2F93375CE38CE9 value) { ___m_CallbacksToAdd_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToRemove_3() { return static_cast(offsetof(CallbackArray_1_tE03856E201C6AA8C7ED4B4A9675D5BD431CACF1D, ___m_CallbacksToRemove_3)); } inline InlinedArray_1_t78FDC7F1CD6623C5E091BB79EC2F93375CE38CE9 get_m_CallbacksToRemove_3() const { return ___m_CallbacksToRemove_3; } inline InlinedArray_1_t78FDC7F1CD6623C5E091BB79EC2F93375CE38CE9 * get_address_of_m_CallbacksToRemove_3() { return &___m_CallbacksToRemove_3; } inline void set_m_CallbacksToRemove_3(InlinedArray_1_t78FDC7F1CD6623C5E091BB79EC2F93375CE38CE9 value) { ___m_CallbacksToRemove_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } }; // UnityEngine.InputSystem.Utilities.CallbackArray`1> struct CallbackArray_1_t9AA7F1C91BD426A599B158F2A207F494A0D431F1 { public: // System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray bool ___m_CannotMutateCallbacksArray_0; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks InlinedArray_1_t02AB39E6F94F40A915AE5843BDB88347C7AD02B5 ___m_Callbacks_1; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd InlinedArray_1_t02AB39E6F94F40A915AE5843BDB88347C7AD02B5 ___m_CallbacksToAdd_2; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove InlinedArray_1_t02AB39E6F94F40A915AE5843BDB88347C7AD02B5 ___m_CallbacksToRemove_3; public: inline static int32_t get_offset_of_m_CannotMutateCallbacksArray_0() { return static_cast(offsetof(CallbackArray_1_t9AA7F1C91BD426A599B158F2A207F494A0D431F1, ___m_CannotMutateCallbacksArray_0)); } inline bool get_m_CannotMutateCallbacksArray_0() const { return ___m_CannotMutateCallbacksArray_0; } inline bool* get_address_of_m_CannotMutateCallbacksArray_0() { return &___m_CannotMutateCallbacksArray_0; } inline void set_m_CannotMutateCallbacksArray_0(bool value) { ___m_CannotMutateCallbacksArray_0 = value; } inline static int32_t get_offset_of_m_Callbacks_1() { return static_cast(offsetof(CallbackArray_1_t9AA7F1C91BD426A599B158F2A207F494A0D431F1, ___m_Callbacks_1)); } inline InlinedArray_1_t02AB39E6F94F40A915AE5843BDB88347C7AD02B5 get_m_Callbacks_1() const { return ___m_Callbacks_1; } inline InlinedArray_1_t02AB39E6F94F40A915AE5843BDB88347C7AD02B5 * get_address_of_m_Callbacks_1() { return &___m_Callbacks_1; } inline void set_m_Callbacks_1(InlinedArray_1_t02AB39E6F94F40A915AE5843BDB88347C7AD02B5 value) { ___m_Callbacks_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToAdd_2() { return static_cast(offsetof(CallbackArray_1_t9AA7F1C91BD426A599B158F2A207F494A0D431F1, ___m_CallbacksToAdd_2)); } inline InlinedArray_1_t02AB39E6F94F40A915AE5843BDB88347C7AD02B5 get_m_CallbacksToAdd_2() const { return ___m_CallbacksToAdd_2; } inline InlinedArray_1_t02AB39E6F94F40A915AE5843BDB88347C7AD02B5 * get_address_of_m_CallbacksToAdd_2() { return &___m_CallbacksToAdd_2; } inline void set_m_CallbacksToAdd_2(InlinedArray_1_t02AB39E6F94F40A915AE5843BDB88347C7AD02B5 value) { ___m_CallbacksToAdd_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToRemove_3() { return static_cast(offsetof(CallbackArray_1_t9AA7F1C91BD426A599B158F2A207F494A0D431F1, ___m_CallbacksToRemove_3)); } inline InlinedArray_1_t02AB39E6F94F40A915AE5843BDB88347C7AD02B5 get_m_CallbacksToRemove_3() const { return ___m_CallbacksToRemove_3; } inline InlinedArray_1_t02AB39E6F94F40A915AE5843BDB88347C7AD02B5 * get_address_of_m_CallbacksToRemove_3() { return &___m_CallbacksToRemove_3; } inline void set_m_CallbacksToRemove_3(InlinedArray_1_t02AB39E6F94F40A915AE5843BDB88347C7AD02B5 value) { ___m_CallbacksToRemove_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } }; // UnityEngine.InputSystem.Utilities.CallbackArray`1> struct CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 { public: // System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray bool ___m_CannotMutateCallbacksArray_0; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks InlinedArray_1_t3C2C2D9BCDB3F198EA76C8FADB534D30D4BC026B ___m_Callbacks_1; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd InlinedArray_1_t3C2C2D9BCDB3F198EA76C8FADB534D30D4BC026B ___m_CallbacksToAdd_2; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove InlinedArray_1_t3C2C2D9BCDB3F198EA76C8FADB534D30D4BC026B ___m_CallbacksToRemove_3; public: inline static int32_t get_offset_of_m_CannotMutateCallbacksArray_0() { return static_cast(offsetof(CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55, ___m_CannotMutateCallbacksArray_0)); } inline bool get_m_CannotMutateCallbacksArray_0() const { return ___m_CannotMutateCallbacksArray_0; } inline bool* get_address_of_m_CannotMutateCallbacksArray_0() { return &___m_CannotMutateCallbacksArray_0; } inline void set_m_CannotMutateCallbacksArray_0(bool value) { ___m_CannotMutateCallbacksArray_0 = value; } inline static int32_t get_offset_of_m_Callbacks_1() { return static_cast(offsetof(CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55, ___m_Callbacks_1)); } inline InlinedArray_1_t3C2C2D9BCDB3F198EA76C8FADB534D30D4BC026B get_m_Callbacks_1() const { return ___m_Callbacks_1; } inline InlinedArray_1_t3C2C2D9BCDB3F198EA76C8FADB534D30D4BC026B * get_address_of_m_Callbacks_1() { return &___m_Callbacks_1; } inline void set_m_Callbacks_1(InlinedArray_1_t3C2C2D9BCDB3F198EA76C8FADB534D30D4BC026B value) { ___m_Callbacks_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToAdd_2() { return static_cast(offsetof(CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55, ___m_CallbacksToAdd_2)); } inline InlinedArray_1_t3C2C2D9BCDB3F198EA76C8FADB534D30D4BC026B get_m_CallbacksToAdd_2() const { return ___m_CallbacksToAdd_2; } inline InlinedArray_1_t3C2C2D9BCDB3F198EA76C8FADB534D30D4BC026B * get_address_of_m_CallbacksToAdd_2() { return &___m_CallbacksToAdd_2; } inline void set_m_CallbacksToAdd_2(InlinedArray_1_t3C2C2D9BCDB3F198EA76C8FADB534D30D4BC026B value) { ___m_CallbacksToAdd_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToRemove_3() { return static_cast(offsetof(CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55, ___m_CallbacksToRemove_3)); } inline InlinedArray_1_t3C2C2D9BCDB3F198EA76C8FADB534D30D4BC026B get_m_CallbacksToRemove_3() const { return ___m_CallbacksToRemove_3; } inline InlinedArray_1_t3C2C2D9BCDB3F198EA76C8FADB534D30D4BC026B * get_address_of_m_CallbacksToRemove_3() { return &___m_CallbacksToRemove_3; } inline void set_m_CallbacksToRemove_3(InlinedArray_1_t3C2C2D9BCDB3F198EA76C8FADB534D30D4BC026B value) { ___m_CallbacksToRemove_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } }; // UnityEngine.InputSystem.Utilities.CallbackArray`1> struct CallbackArray_1_t6B54B12C76958BFFEC586C4B69F70560884AEF34 { public: // System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray bool ___m_CannotMutateCallbacksArray_0; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks InlinedArray_1_t9A746F7A5D2F131C836D4D54FF78A4CF2610112F ___m_Callbacks_1; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd InlinedArray_1_t9A746F7A5D2F131C836D4D54FF78A4CF2610112F ___m_CallbacksToAdd_2; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove InlinedArray_1_t9A746F7A5D2F131C836D4D54FF78A4CF2610112F ___m_CallbacksToRemove_3; public: inline static int32_t get_offset_of_m_CannotMutateCallbacksArray_0() { return static_cast(offsetof(CallbackArray_1_t6B54B12C76958BFFEC586C4B69F70560884AEF34, ___m_CannotMutateCallbacksArray_0)); } inline bool get_m_CannotMutateCallbacksArray_0() const { return ___m_CannotMutateCallbacksArray_0; } inline bool* get_address_of_m_CannotMutateCallbacksArray_0() { return &___m_CannotMutateCallbacksArray_0; } inline void set_m_CannotMutateCallbacksArray_0(bool value) { ___m_CannotMutateCallbacksArray_0 = value; } inline static int32_t get_offset_of_m_Callbacks_1() { return static_cast(offsetof(CallbackArray_1_t6B54B12C76958BFFEC586C4B69F70560884AEF34, ___m_Callbacks_1)); } inline InlinedArray_1_t9A746F7A5D2F131C836D4D54FF78A4CF2610112F get_m_Callbacks_1() const { return ___m_Callbacks_1; } inline InlinedArray_1_t9A746F7A5D2F131C836D4D54FF78A4CF2610112F * get_address_of_m_Callbacks_1() { return &___m_Callbacks_1; } inline void set_m_Callbacks_1(InlinedArray_1_t9A746F7A5D2F131C836D4D54FF78A4CF2610112F value) { ___m_Callbacks_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToAdd_2() { return static_cast(offsetof(CallbackArray_1_t6B54B12C76958BFFEC586C4B69F70560884AEF34, ___m_CallbacksToAdd_2)); } inline InlinedArray_1_t9A746F7A5D2F131C836D4D54FF78A4CF2610112F get_m_CallbacksToAdd_2() const { return ___m_CallbacksToAdd_2; } inline InlinedArray_1_t9A746F7A5D2F131C836D4D54FF78A4CF2610112F * get_address_of_m_CallbacksToAdd_2() { return &___m_CallbacksToAdd_2; } inline void set_m_CallbacksToAdd_2(InlinedArray_1_t9A746F7A5D2F131C836D4D54FF78A4CF2610112F value) { ___m_CallbacksToAdd_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToRemove_3() { return static_cast(offsetof(CallbackArray_1_t6B54B12C76958BFFEC586C4B69F70560884AEF34, ___m_CallbacksToRemove_3)); } inline InlinedArray_1_t9A746F7A5D2F131C836D4D54FF78A4CF2610112F get_m_CallbacksToRemove_3() const { return ___m_CallbacksToRemove_3; } inline InlinedArray_1_t9A746F7A5D2F131C836D4D54FF78A4CF2610112F * get_address_of_m_CallbacksToRemove_3() { return &___m_CallbacksToRemove_3; } inline void set_m_CallbacksToRemove_3(InlinedArray_1_t9A746F7A5D2F131C836D4D54FF78A4CF2610112F value) { ___m_CallbacksToRemove_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } }; // UnityEngine.InputSystem.Utilities.CallbackArray`1> struct CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61 { public: // System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray bool ___m_CannotMutateCallbacksArray_0; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks InlinedArray_1_tD5F685FF73D92B8276AD229C65D1FAAA1B6EB726 ___m_Callbacks_1; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd InlinedArray_1_tD5F685FF73D92B8276AD229C65D1FAAA1B6EB726 ___m_CallbacksToAdd_2; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove InlinedArray_1_tD5F685FF73D92B8276AD229C65D1FAAA1B6EB726 ___m_CallbacksToRemove_3; public: inline static int32_t get_offset_of_m_CannotMutateCallbacksArray_0() { return static_cast(offsetof(CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61, ___m_CannotMutateCallbacksArray_0)); } inline bool get_m_CannotMutateCallbacksArray_0() const { return ___m_CannotMutateCallbacksArray_0; } inline bool* get_address_of_m_CannotMutateCallbacksArray_0() { return &___m_CannotMutateCallbacksArray_0; } inline void set_m_CannotMutateCallbacksArray_0(bool value) { ___m_CannotMutateCallbacksArray_0 = value; } inline static int32_t get_offset_of_m_Callbacks_1() { return static_cast(offsetof(CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61, ___m_Callbacks_1)); } inline InlinedArray_1_tD5F685FF73D92B8276AD229C65D1FAAA1B6EB726 get_m_Callbacks_1() const { return ___m_Callbacks_1; } inline InlinedArray_1_tD5F685FF73D92B8276AD229C65D1FAAA1B6EB726 * get_address_of_m_Callbacks_1() { return &___m_Callbacks_1; } inline void set_m_Callbacks_1(InlinedArray_1_tD5F685FF73D92B8276AD229C65D1FAAA1B6EB726 value) { ___m_Callbacks_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToAdd_2() { return static_cast(offsetof(CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61, ___m_CallbacksToAdd_2)); } inline InlinedArray_1_tD5F685FF73D92B8276AD229C65D1FAAA1B6EB726 get_m_CallbacksToAdd_2() const { return ___m_CallbacksToAdd_2; } inline InlinedArray_1_tD5F685FF73D92B8276AD229C65D1FAAA1B6EB726 * get_address_of_m_CallbacksToAdd_2() { return &___m_CallbacksToAdd_2; } inline void set_m_CallbacksToAdd_2(InlinedArray_1_tD5F685FF73D92B8276AD229C65D1FAAA1B6EB726 value) { ___m_CallbacksToAdd_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToRemove_3() { return static_cast(offsetof(CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61, ___m_CallbacksToRemove_3)); } inline InlinedArray_1_tD5F685FF73D92B8276AD229C65D1FAAA1B6EB726 get_m_CallbacksToRemove_3() const { return ___m_CallbacksToRemove_3; } inline InlinedArray_1_tD5F685FF73D92B8276AD229C65D1FAAA1B6EB726 * get_address_of_m_CallbacksToRemove_3() { return &___m_CallbacksToRemove_3; } inline void set_m_CallbacksToRemove_3(InlinedArray_1_tD5F685FF73D92B8276AD229C65D1FAAA1B6EB726 value) { ___m_CallbacksToRemove_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } }; // UnityEngine.InputSystem.Utilities.CallbackArray`1> struct CallbackArray_1_tC1980B45EE54E16579200C8DC8E433807FD87864 { public: // System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray bool ___m_CannotMutateCallbacksArray_0; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks InlinedArray_1_t11674460DA620A45244D88D34F7CCBEFE0595CE0 ___m_Callbacks_1; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd InlinedArray_1_t11674460DA620A45244D88D34F7CCBEFE0595CE0 ___m_CallbacksToAdd_2; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove InlinedArray_1_t11674460DA620A45244D88D34F7CCBEFE0595CE0 ___m_CallbacksToRemove_3; public: inline static int32_t get_offset_of_m_CannotMutateCallbacksArray_0() { return static_cast(offsetof(CallbackArray_1_tC1980B45EE54E16579200C8DC8E433807FD87864, ___m_CannotMutateCallbacksArray_0)); } inline bool get_m_CannotMutateCallbacksArray_0() const { return ___m_CannotMutateCallbacksArray_0; } inline bool* get_address_of_m_CannotMutateCallbacksArray_0() { return &___m_CannotMutateCallbacksArray_0; } inline void set_m_CannotMutateCallbacksArray_0(bool value) { ___m_CannotMutateCallbacksArray_0 = value; } inline static int32_t get_offset_of_m_Callbacks_1() { return static_cast(offsetof(CallbackArray_1_tC1980B45EE54E16579200C8DC8E433807FD87864, ___m_Callbacks_1)); } inline InlinedArray_1_t11674460DA620A45244D88D34F7CCBEFE0595CE0 get_m_Callbacks_1() const { return ___m_Callbacks_1; } inline InlinedArray_1_t11674460DA620A45244D88D34F7CCBEFE0595CE0 * get_address_of_m_Callbacks_1() { return &___m_Callbacks_1; } inline void set_m_Callbacks_1(InlinedArray_1_t11674460DA620A45244D88D34F7CCBEFE0595CE0 value) { ___m_Callbacks_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToAdd_2() { return static_cast(offsetof(CallbackArray_1_tC1980B45EE54E16579200C8DC8E433807FD87864, ___m_CallbacksToAdd_2)); } inline InlinedArray_1_t11674460DA620A45244D88D34F7CCBEFE0595CE0 get_m_CallbacksToAdd_2() const { return ___m_CallbacksToAdd_2; } inline InlinedArray_1_t11674460DA620A45244D88D34F7CCBEFE0595CE0 * get_address_of_m_CallbacksToAdd_2() { return &___m_CallbacksToAdd_2; } inline void set_m_CallbacksToAdd_2(InlinedArray_1_t11674460DA620A45244D88D34F7CCBEFE0595CE0 value) { ___m_CallbacksToAdd_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToRemove_3() { return static_cast(offsetof(CallbackArray_1_tC1980B45EE54E16579200C8DC8E433807FD87864, ___m_CallbacksToRemove_3)); } inline InlinedArray_1_t11674460DA620A45244D88D34F7CCBEFE0595CE0 get_m_CallbacksToRemove_3() const { return ___m_CallbacksToRemove_3; } inline InlinedArray_1_t11674460DA620A45244D88D34F7CCBEFE0595CE0 * get_address_of_m_CallbacksToRemove_3() { return &___m_CallbacksToRemove_3; } inline void set_m_CallbacksToRemove_3(InlinedArray_1_t11674460DA620A45244D88D34F7CCBEFE0595CE0 value) { ___m_CallbacksToRemove_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } }; // UnityEngine.InputSystem.Utilities.CallbackArray`1> struct CallbackArray_1_t552BD871FFF51BBEADFA595A48105D602791E7FA { public: // System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray bool ___m_CannotMutateCallbacksArray_0; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks InlinedArray_1_t83243D33E8FC822E3C1594248A3F8A3A0F856789 ___m_Callbacks_1; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd InlinedArray_1_t83243D33E8FC822E3C1594248A3F8A3A0F856789 ___m_CallbacksToAdd_2; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove InlinedArray_1_t83243D33E8FC822E3C1594248A3F8A3A0F856789 ___m_CallbacksToRemove_3; public: inline static int32_t get_offset_of_m_CannotMutateCallbacksArray_0() { return static_cast(offsetof(CallbackArray_1_t552BD871FFF51BBEADFA595A48105D602791E7FA, ___m_CannotMutateCallbacksArray_0)); } inline bool get_m_CannotMutateCallbacksArray_0() const { return ___m_CannotMutateCallbacksArray_0; } inline bool* get_address_of_m_CannotMutateCallbacksArray_0() { return &___m_CannotMutateCallbacksArray_0; } inline void set_m_CannotMutateCallbacksArray_0(bool value) { ___m_CannotMutateCallbacksArray_0 = value; } inline static int32_t get_offset_of_m_Callbacks_1() { return static_cast(offsetof(CallbackArray_1_t552BD871FFF51BBEADFA595A48105D602791E7FA, ___m_Callbacks_1)); } inline InlinedArray_1_t83243D33E8FC822E3C1594248A3F8A3A0F856789 get_m_Callbacks_1() const { return ___m_Callbacks_1; } inline InlinedArray_1_t83243D33E8FC822E3C1594248A3F8A3A0F856789 * get_address_of_m_Callbacks_1() { return &___m_Callbacks_1; } inline void set_m_Callbacks_1(InlinedArray_1_t83243D33E8FC822E3C1594248A3F8A3A0F856789 value) { ___m_Callbacks_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToAdd_2() { return static_cast(offsetof(CallbackArray_1_t552BD871FFF51BBEADFA595A48105D602791E7FA, ___m_CallbacksToAdd_2)); } inline InlinedArray_1_t83243D33E8FC822E3C1594248A3F8A3A0F856789 get_m_CallbacksToAdd_2() const { return ___m_CallbacksToAdd_2; } inline InlinedArray_1_t83243D33E8FC822E3C1594248A3F8A3A0F856789 * get_address_of_m_CallbacksToAdd_2() { return &___m_CallbacksToAdd_2; } inline void set_m_CallbacksToAdd_2(InlinedArray_1_t83243D33E8FC822E3C1594248A3F8A3A0F856789 value) { ___m_CallbacksToAdd_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToRemove_3() { return static_cast(offsetof(CallbackArray_1_t552BD871FFF51BBEADFA595A48105D602791E7FA, ___m_CallbacksToRemove_3)); } inline InlinedArray_1_t83243D33E8FC822E3C1594248A3F8A3A0F856789 get_m_CallbacksToRemove_3() const { return ___m_CallbacksToRemove_3; } inline InlinedArray_1_t83243D33E8FC822E3C1594248A3F8A3A0F856789 * get_address_of_m_CallbacksToRemove_3() { return &___m_CallbacksToRemove_3; } inline void set_m_CallbacksToRemove_3(InlinedArray_1_t83243D33E8FC822E3C1594248A3F8A3A0F856789 value) { ___m_CallbacksToRemove_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } }; // UnityEngine.InputSystem.Utilities.CallbackArray`1> struct CallbackArray_1_tB1610CE5579DCAF54D5DE046B298ED21644D9AF2 { public: // System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray bool ___m_CannotMutateCallbacksArray_0; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks InlinedArray_1_tF17E889B912A2846623D0697391F2AF3830FDA73 ___m_Callbacks_1; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd InlinedArray_1_tF17E889B912A2846623D0697391F2AF3830FDA73 ___m_CallbacksToAdd_2; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove InlinedArray_1_tF17E889B912A2846623D0697391F2AF3830FDA73 ___m_CallbacksToRemove_3; public: inline static int32_t get_offset_of_m_CannotMutateCallbacksArray_0() { return static_cast(offsetof(CallbackArray_1_tB1610CE5579DCAF54D5DE046B298ED21644D9AF2, ___m_CannotMutateCallbacksArray_0)); } inline bool get_m_CannotMutateCallbacksArray_0() const { return ___m_CannotMutateCallbacksArray_0; } inline bool* get_address_of_m_CannotMutateCallbacksArray_0() { return &___m_CannotMutateCallbacksArray_0; } inline void set_m_CannotMutateCallbacksArray_0(bool value) { ___m_CannotMutateCallbacksArray_0 = value; } inline static int32_t get_offset_of_m_Callbacks_1() { return static_cast(offsetof(CallbackArray_1_tB1610CE5579DCAF54D5DE046B298ED21644D9AF2, ___m_Callbacks_1)); } inline InlinedArray_1_tF17E889B912A2846623D0697391F2AF3830FDA73 get_m_Callbacks_1() const { return ___m_Callbacks_1; } inline InlinedArray_1_tF17E889B912A2846623D0697391F2AF3830FDA73 * get_address_of_m_Callbacks_1() { return &___m_Callbacks_1; } inline void set_m_Callbacks_1(InlinedArray_1_tF17E889B912A2846623D0697391F2AF3830FDA73 value) { ___m_Callbacks_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToAdd_2() { return static_cast(offsetof(CallbackArray_1_tB1610CE5579DCAF54D5DE046B298ED21644D9AF2, ___m_CallbacksToAdd_2)); } inline InlinedArray_1_tF17E889B912A2846623D0697391F2AF3830FDA73 get_m_CallbacksToAdd_2() const { return ___m_CallbacksToAdd_2; } inline InlinedArray_1_tF17E889B912A2846623D0697391F2AF3830FDA73 * get_address_of_m_CallbacksToAdd_2() { return &___m_CallbacksToAdd_2; } inline void set_m_CallbacksToAdd_2(InlinedArray_1_tF17E889B912A2846623D0697391F2AF3830FDA73 value) { ___m_CallbacksToAdd_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToRemove_3() { return static_cast(offsetof(CallbackArray_1_tB1610CE5579DCAF54D5DE046B298ED21644D9AF2, ___m_CallbacksToRemove_3)); } inline InlinedArray_1_tF17E889B912A2846623D0697391F2AF3830FDA73 get_m_CallbacksToRemove_3() const { return ___m_CallbacksToRemove_3; } inline InlinedArray_1_tF17E889B912A2846623D0697391F2AF3830FDA73 * get_address_of_m_CallbacksToRemove_3() { return &___m_CallbacksToRemove_3; } inline void set_m_CallbacksToRemove_3(InlinedArray_1_tF17E889B912A2846623D0697391F2AF3830FDA73 value) { ___m_CallbacksToRemove_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } }; // UnityEngine.InputSystem.Utilities.CallbackArray`1> struct CallbackArray_1_tB8BC79D1436E00F1A99D64DB9801E06E1C750F4C { public: // System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray bool ___m_CannotMutateCallbacksArray_0; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks InlinedArray_1_tAE03F643A92B30307BD81C17CFEF5289EF266D4A ___m_Callbacks_1; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd InlinedArray_1_tAE03F643A92B30307BD81C17CFEF5289EF266D4A ___m_CallbacksToAdd_2; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove InlinedArray_1_tAE03F643A92B30307BD81C17CFEF5289EF266D4A ___m_CallbacksToRemove_3; public: inline static int32_t get_offset_of_m_CannotMutateCallbacksArray_0() { return static_cast(offsetof(CallbackArray_1_tB8BC79D1436E00F1A99D64DB9801E06E1C750F4C, ___m_CannotMutateCallbacksArray_0)); } inline bool get_m_CannotMutateCallbacksArray_0() const { return ___m_CannotMutateCallbacksArray_0; } inline bool* get_address_of_m_CannotMutateCallbacksArray_0() { return &___m_CannotMutateCallbacksArray_0; } inline void set_m_CannotMutateCallbacksArray_0(bool value) { ___m_CannotMutateCallbacksArray_0 = value; } inline static int32_t get_offset_of_m_Callbacks_1() { return static_cast(offsetof(CallbackArray_1_tB8BC79D1436E00F1A99D64DB9801E06E1C750F4C, ___m_Callbacks_1)); } inline InlinedArray_1_tAE03F643A92B30307BD81C17CFEF5289EF266D4A get_m_Callbacks_1() const { return ___m_Callbacks_1; } inline InlinedArray_1_tAE03F643A92B30307BD81C17CFEF5289EF266D4A * get_address_of_m_Callbacks_1() { return &___m_Callbacks_1; } inline void set_m_Callbacks_1(InlinedArray_1_tAE03F643A92B30307BD81C17CFEF5289EF266D4A value) { ___m_Callbacks_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToAdd_2() { return static_cast(offsetof(CallbackArray_1_tB8BC79D1436E00F1A99D64DB9801E06E1C750F4C, ___m_CallbacksToAdd_2)); } inline InlinedArray_1_tAE03F643A92B30307BD81C17CFEF5289EF266D4A get_m_CallbacksToAdd_2() const { return ___m_CallbacksToAdd_2; } inline InlinedArray_1_tAE03F643A92B30307BD81C17CFEF5289EF266D4A * get_address_of_m_CallbacksToAdd_2() { return &___m_CallbacksToAdd_2; } inline void set_m_CallbacksToAdd_2(InlinedArray_1_tAE03F643A92B30307BD81C17CFEF5289EF266D4A value) { ___m_CallbacksToAdd_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToRemove_3() { return static_cast(offsetof(CallbackArray_1_tB8BC79D1436E00F1A99D64DB9801E06E1C750F4C, ___m_CallbacksToRemove_3)); } inline InlinedArray_1_tAE03F643A92B30307BD81C17CFEF5289EF266D4A get_m_CallbacksToRemove_3() const { return ___m_CallbacksToRemove_3; } inline InlinedArray_1_tAE03F643A92B30307BD81C17CFEF5289EF266D4A * get_address_of_m_CallbacksToRemove_3() { return &___m_CallbacksToRemove_3; } inline void set_m_CallbacksToRemove_3(InlinedArray_1_tAE03F643A92B30307BD81C17CFEF5289EF266D4A value) { ___m_CallbacksToRemove_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } }; // UnityEngine.InputSystem.Utilities.CallbackArray`1> struct CallbackArray_1_t506D5A43E1BA50974832B6281CE0E05C835BD3A9 { public: // System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray bool ___m_CannotMutateCallbacksArray_0; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks InlinedArray_1_t6D7DFF6DD189AA38362F43FFE7B988692F419234 ___m_Callbacks_1; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd InlinedArray_1_t6D7DFF6DD189AA38362F43FFE7B988692F419234 ___m_CallbacksToAdd_2; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove InlinedArray_1_t6D7DFF6DD189AA38362F43FFE7B988692F419234 ___m_CallbacksToRemove_3; public: inline static int32_t get_offset_of_m_CannotMutateCallbacksArray_0() { return static_cast(offsetof(CallbackArray_1_t506D5A43E1BA50974832B6281CE0E05C835BD3A9, ___m_CannotMutateCallbacksArray_0)); } inline bool get_m_CannotMutateCallbacksArray_0() const { return ___m_CannotMutateCallbacksArray_0; } inline bool* get_address_of_m_CannotMutateCallbacksArray_0() { return &___m_CannotMutateCallbacksArray_0; } inline void set_m_CannotMutateCallbacksArray_0(bool value) { ___m_CannotMutateCallbacksArray_0 = value; } inline static int32_t get_offset_of_m_Callbacks_1() { return static_cast(offsetof(CallbackArray_1_t506D5A43E1BA50974832B6281CE0E05C835BD3A9, ___m_Callbacks_1)); } inline InlinedArray_1_t6D7DFF6DD189AA38362F43FFE7B988692F419234 get_m_Callbacks_1() const { return ___m_Callbacks_1; } inline InlinedArray_1_t6D7DFF6DD189AA38362F43FFE7B988692F419234 * get_address_of_m_Callbacks_1() { return &___m_Callbacks_1; } inline void set_m_Callbacks_1(InlinedArray_1_t6D7DFF6DD189AA38362F43FFE7B988692F419234 value) { ___m_Callbacks_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToAdd_2() { return static_cast(offsetof(CallbackArray_1_t506D5A43E1BA50974832B6281CE0E05C835BD3A9, ___m_CallbacksToAdd_2)); } inline InlinedArray_1_t6D7DFF6DD189AA38362F43FFE7B988692F419234 get_m_CallbacksToAdd_2() const { return ___m_CallbacksToAdd_2; } inline InlinedArray_1_t6D7DFF6DD189AA38362F43FFE7B988692F419234 * get_address_of_m_CallbacksToAdd_2() { return &___m_CallbacksToAdd_2; } inline void set_m_CallbacksToAdd_2(InlinedArray_1_t6D7DFF6DD189AA38362F43FFE7B988692F419234 value) { ___m_CallbacksToAdd_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToRemove_3() { return static_cast(offsetof(CallbackArray_1_t506D5A43E1BA50974832B6281CE0E05C835BD3A9, ___m_CallbacksToRemove_3)); } inline InlinedArray_1_t6D7DFF6DD189AA38362F43FFE7B988692F419234 get_m_CallbacksToRemove_3() const { return ___m_CallbacksToRemove_3; } inline InlinedArray_1_t6D7DFF6DD189AA38362F43FFE7B988692F419234 * get_address_of_m_CallbacksToRemove_3() { return &___m_CallbacksToRemove_3; } inline void set_m_CallbacksToRemove_3(InlinedArray_1_t6D7DFF6DD189AA38362F43FFE7B988692F419234 value) { ___m_CallbacksToRemove_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } }; // UnityEngine.InputSystem.Utilities.CallbackArray`1 struct CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 { public: // System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray bool ___m_CannotMutateCallbacksArray_0; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks InlinedArray_1_tBE65FFEFA7BEF1F8DC1BBD3DE1B432C220FC51BF ___m_Callbacks_1; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd InlinedArray_1_tBE65FFEFA7BEF1F8DC1BBD3DE1B432C220FC51BF ___m_CallbacksToAdd_2; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove InlinedArray_1_tBE65FFEFA7BEF1F8DC1BBD3DE1B432C220FC51BF ___m_CallbacksToRemove_3; public: inline static int32_t get_offset_of_m_CannotMutateCallbacksArray_0() { return static_cast(offsetof(CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5, ___m_CannotMutateCallbacksArray_0)); } inline bool get_m_CannotMutateCallbacksArray_0() const { return ___m_CannotMutateCallbacksArray_0; } inline bool* get_address_of_m_CannotMutateCallbacksArray_0() { return &___m_CannotMutateCallbacksArray_0; } inline void set_m_CannotMutateCallbacksArray_0(bool value) { ___m_CannotMutateCallbacksArray_0 = value; } inline static int32_t get_offset_of_m_Callbacks_1() { return static_cast(offsetof(CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5, ___m_Callbacks_1)); } inline InlinedArray_1_tBE65FFEFA7BEF1F8DC1BBD3DE1B432C220FC51BF get_m_Callbacks_1() const { return ___m_Callbacks_1; } inline InlinedArray_1_tBE65FFEFA7BEF1F8DC1BBD3DE1B432C220FC51BF * get_address_of_m_Callbacks_1() { return &___m_Callbacks_1; } inline void set_m_Callbacks_1(InlinedArray_1_tBE65FFEFA7BEF1F8DC1BBD3DE1B432C220FC51BF value) { ___m_Callbacks_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToAdd_2() { return static_cast(offsetof(CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5, ___m_CallbacksToAdd_2)); } inline InlinedArray_1_tBE65FFEFA7BEF1F8DC1BBD3DE1B432C220FC51BF get_m_CallbacksToAdd_2() const { return ___m_CallbacksToAdd_2; } inline InlinedArray_1_tBE65FFEFA7BEF1F8DC1BBD3DE1B432C220FC51BF * get_address_of_m_CallbacksToAdd_2() { return &___m_CallbacksToAdd_2; } inline void set_m_CallbacksToAdd_2(InlinedArray_1_tBE65FFEFA7BEF1F8DC1BBD3DE1B432C220FC51BF value) { ___m_CallbacksToAdd_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToRemove_3() { return static_cast(offsetof(CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5, ___m_CallbacksToRemove_3)); } inline InlinedArray_1_tBE65FFEFA7BEF1F8DC1BBD3DE1B432C220FC51BF get_m_CallbacksToRemove_3() const { return ___m_CallbacksToRemove_3; } inline InlinedArray_1_tBE65FFEFA7BEF1F8DC1BBD3DE1B432C220FC51BF * get_address_of_m_CallbacksToRemove_3() { return &___m_CallbacksToRemove_3; } inline void set_m_CallbacksToRemove_3(InlinedArray_1_tBE65FFEFA7BEF1F8DC1BBD3DE1B432C220FC51BF value) { ___m_CallbacksToRemove_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } }; // UnityEngine.InputSystem.Utilities.CallbackArray`1 struct CallbackArray_1_t157FF6A379E3716A8F98AD7AA44984A6C7908C87 { public: // System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray bool ___m_CannotMutateCallbacksArray_0; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks InlinedArray_1_t740043C1A36A2183248E89E1B638F9E3954FE172 ___m_Callbacks_1; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd InlinedArray_1_t740043C1A36A2183248E89E1B638F9E3954FE172 ___m_CallbacksToAdd_2; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove InlinedArray_1_t740043C1A36A2183248E89E1B638F9E3954FE172 ___m_CallbacksToRemove_3; public: inline static int32_t get_offset_of_m_CannotMutateCallbacksArray_0() { return static_cast(offsetof(CallbackArray_1_t157FF6A379E3716A8F98AD7AA44984A6C7908C87, ___m_CannotMutateCallbacksArray_0)); } inline bool get_m_CannotMutateCallbacksArray_0() const { return ___m_CannotMutateCallbacksArray_0; } inline bool* get_address_of_m_CannotMutateCallbacksArray_0() { return &___m_CannotMutateCallbacksArray_0; } inline void set_m_CannotMutateCallbacksArray_0(bool value) { ___m_CannotMutateCallbacksArray_0 = value; } inline static int32_t get_offset_of_m_Callbacks_1() { return static_cast(offsetof(CallbackArray_1_t157FF6A379E3716A8F98AD7AA44984A6C7908C87, ___m_Callbacks_1)); } inline InlinedArray_1_t740043C1A36A2183248E89E1B638F9E3954FE172 get_m_Callbacks_1() const { return ___m_Callbacks_1; } inline InlinedArray_1_t740043C1A36A2183248E89E1B638F9E3954FE172 * get_address_of_m_Callbacks_1() { return &___m_Callbacks_1; } inline void set_m_Callbacks_1(InlinedArray_1_t740043C1A36A2183248E89E1B638F9E3954FE172 value) { ___m_Callbacks_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToAdd_2() { return static_cast(offsetof(CallbackArray_1_t157FF6A379E3716A8F98AD7AA44984A6C7908C87, ___m_CallbacksToAdd_2)); } inline InlinedArray_1_t740043C1A36A2183248E89E1B638F9E3954FE172 get_m_CallbacksToAdd_2() const { return ___m_CallbacksToAdd_2; } inline InlinedArray_1_t740043C1A36A2183248E89E1B638F9E3954FE172 * get_address_of_m_CallbacksToAdd_2() { return &___m_CallbacksToAdd_2; } inline void set_m_CallbacksToAdd_2(InlinedArray_1_t740043C1A36A2183248E89E1B638F9E3954FE172 value) { ___m_CallbacksToAdd_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToRemove_3() { return static_cast(offsetof(CallbackArray_1_t157FF6A379E3716A8F98AD7AA44984A6C7908C87, ___m_CallbacksToRemove_3)); } inline InlinedArray_1_t740043C1A36A2183248E89E1B638F9E3954FE172 get_m_CallbacksToRemove_3() const { return ___m_CallbacksToRemove_3; } inline InlinedArray_1_t740043C1A36A2183248E89E1B638F9E3954FE172 * get_address_of_m_CallbacksToRemove_3() { return &___m_CallbacksToRemove_3; } inline void set_m_CallbacksToRemove_3(InlinedArray_1_t740043C1A36A2183248E89E1B638F9E3954FE172 value) { ___m_CallbacksToRemove_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } }; // UnityEngine.InputSystem.Utilities.CallbackArray`1 struct CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 { public: // System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray bool ___m_CannotMutateCallbacksArray_0; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks InlinedArray_1_t28A0B99AACBC64E01FB1E06F511487AB0DF535CC ___m_Callbacks_1; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd InlinedArray_1_t28A0B99AACBC64E01FB1E06F511487AB0DF535CC ___m_CallbacksToAdd_2; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove InlinedArray_1_t28A0B99AACBC64E01FB1E06F511487AB0DF535CC ___m_CallbacksToRemove_3; public: inline static int32_t get_offset_of_m_CannotMutateCallbacksArray_0() { return static_cast(offsetof(CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8, ___m_CannotMutateCallbacksArray_0)); } inline bool get_m_CannotMutateCallbacksArray_0() const { return ___m_CannotMutateCallbacksArray_0; } inline bool* get_address_of_m_CannotMutateCallbacksArray_0() { return &___m_CannotMutateCallbacksArray_0; } inline void set_m_CannotMutateCallbacksArray_0(bool value) { ___m_CannotMutateCallbacksArray_0 = value; } inline static int32_t get_offset_of_m_Callbacks_1() { return static_cast(offsetof(CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8, ___m_Callbacks_1)); } inline InlinedArray_1_t28A0B99AACBC64E01FB1E06F511487AB0DF535CC get_m_Callbacks_1() const { return ___m_Callbacks_1; } inline InlinedArray_1_t28A0B99AACBC64E01FB1E06F511487AB0DF535CC * get_address_of_m_Callbacks_1() { return &___m_Callbacks_1; } inline void set_m_Callbacks_1(InlinedArray_1_t28A0B99AACBC64E01FB1E06F511487AB0DF535CC value) { ___m_Callbacks_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToAdd_2() { return static_cast(offsetof(CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8, ___m_CallbacksToAdd_2)); } inline InlinedArray_1_t28A0B99AACBC64E01FB1E06F511487AB0DF535CC get_m_CallbacksToAdd_2() const { return ___m_CallbacksToAdd_2; } inline InlinedArray_1_t28A0B99AACBC64E01FB1E06F511487AB0DF535CC * get_address_of_m_CallbacksToAdd_2() { return &___m_CallbacksToAdd_2; } inline void set_m_CallbacksToAdd_2(InlinedArray_1_t28A0B99AACBC64E01FB1E06F511487AB0DF535CC value) { ___m_CallbacksToAdd_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToRemove_3() { return static_cast(offsetof(CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8, ___m_CallbacksToRemove_3)); } inline InlinedArray_1_t28A0B99AACBC64E01FB1E06F511487AB0DF535CC get_m_CallbacksToRemove_3() const { return ___m_CallbacksToRemove_3; } inline InlinedArray_1_t28A0B99AACBC64E01FB1E06F511487AB0DF535CC * get_address_of_m_CallbacksToRemove_3() { return &___m_CallbacksToRemove_3; } inline void set_m_CallbacksToRemove_3(InlinedArray_1_t28A0B99AACBC64E01FB1E06F511487AB0DF535CC value) { ___m_CallbacksToRemove_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } }; // UnityEngine.InputSystem.Utilities.CallbackArray`1 struct CallbackArray_1_t5755F06076AF5BB3BB9EC99F526C8E517DA0AAAF { public: // System.Boolean UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CannotMutateCallbacksArray bool ___m_CannotMutateCallbacksArray_0; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_Callbacks InlinedArray_1_tB0AAF680EA1CE867851DE37A96313A3779BF0BD2 ___m_Callbacks_1; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToAdd InlinedArray_1_tB0AAF680EA1CE867851DE37A96313A3779BF0BD2 ___m_CallbacksToAdd_2; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Utilities.CallbackArray`1::m_CallbacksToRemove InlinedArray_1_tB0AAF680EA1CE867851DE37A96313A3779BF0BD2 ___m_CallbacksToRemove_3; public: inline static int32_t get_offset_of_m_CannotMutateCallbacksArray_0() { return static_cast(offsetof(CallbackArray_1_t5755F06076AF5BB3BB9EC99F526C8E517DA0AAAF, ___m_CannotMutateCallbacksArray_0)); } inline bool get_m_CannotMutateCallbacksArray_0() const { return ___m_CannotMutateCallbacksArray_0; } inline bool* get_address_of_m_CannotMutateCallbacksArray_0() { return &___m_CannotMutateCallbacksArray_0; } inline void set_m_CannotMutateCallbacksArray_0(bool value) { ___m_CannotMutateCallbacksArray_0 = value; } inline static int32_t get_offset_of_m_Callbacks_1() { return static_cast(offsetof(CallbackArray_1_t5755F06076AF5BB3BB9EC99F526C8E517DA0AAAF, ___m_Callbacks_1)); } inline InlinedArray_1_tB0AAF680EA1CE867851DE37A96313A3779BF0BD2 get_m_Callbacks_1() const { return ___m_Callbacks_1; } inline InlinedArray_1_tB0AAF680EA1CE867851DE37A96313A3779BF0BD2 * get_address_of_m_Callbacks_1() { return &___m_Callbacks_1; } inline void set_m_Callbacks_1(InlinedArray_1_tB0AAF680EA1CE867851DE37A96313A3779BF0BD2 value) { ___m_Callbacks_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToAdd_2() { return static_cast(offsetof(CallbackArray_1_t5755F06076AF5BB3BB9EC99F526C8E517DA0AAAF, ___m_CallbacksToAdd_2)); } inline InlinedArray_1_tB0AAF680EA1CE867851DE37A96313A3779BF0BD2 get_m_CallbacksToAdd_2() const { return ___m_CallbacksToAdd_2; } inline InlinedArray_1_tB0AAF680EA1CE867851DE37A96313A3779BF0BD2 * get_address_of_m_CallbacksToAdd_2() { return &___m_CallbacksToAdd_2; } inline void set_m_CallbacksToAdd_2(InlinedArray_1_tB0AAF680EA1CE867851DE37A96313A3779BF0BD2 value) { ___m_CallbacksToAdd_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CallbacksToRemove_3() { return static_cast(offsetof(CallbackArray_1_t5755F06076AF5BB3BB9EC99F526C8E517DA0AAAF, ___m_CallbacksToRemove_3)); } inline InlinedArray_1_tB0AAF680EA1CE867851DE37A96313A3779BF0BD2 get_m_CallbacksToRemove_3() const { return ___m_CallbacksToRemove_3; } inline InlinedArray_1_tB0AAF680EA1CE867851DE37A96313A3779BF0BD2 * get_address_of_m_CallbacksToRemove_3() { return &___m_CallbacksToRemove_3; } inline void set_m_CallbacksToRemove_3(InlinedArray_1_tB0AAF680EA1CE867851DE37A96313A3779BF0BD2 value) { ___m_CallbacksToRemove_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } }; // UnityEngine.InputSystem.Utilities.InlinedArray`1> struct InlinedArray_1_t73599F4D005E33EE995C1D2D1DEAD2515D694B81 { public: // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues KeyValuePair_2U5BU5D_t346E5EF32BF6AB8CE577D2FE538C7B4F90DA2D48* ___additionalValues_2; public: inline static int32_t get_offset_of_length_0() { return static_cast(offsetof(InlinedArray_1_t73599F4D005E33EE995C1D2D1DEAD2515D694B81, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_firstValue_1() { return static_cast(offsetof(InlinedArray_1_t73599F4D005E33EE995C1D2D1DEAD2515D694B81, ___firstValue_1)); } inline KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB get_firstValue_1() const { return ___firstValue_1; } inline KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * get_address_of_firstValue_1() { return &___firstValue_1; } inline void set_firstValue_1(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB value) { ___firstValue_1 = value; } inline static int32_t get_offset_of_additionalValues_2() { return static_cast(offsetof(InlinedArray_1_t73599F4D005E33EE995C1D2D1DEAD2515D694B81, ___additionalValues_2)); } inline KeyValuePair_2U5BU5D_t346E5EF32BF6AB8CE577D2FE538C7B4F90DA2D48* get_additionalValues_2() const { return ___additionalValues_2; } inline KeyValuePair_2U5BU5D_t346E5EF32BF6AB8CE577D2FE538C7B4F90DA2D48** get_address_of_additionalValues_2() { return &___additionalValues_2; } inline void set_additionalValues_2(KeyValuePair_2U5BU5D_t346E5EF32BF6AB8CE577D2FE538C7B4F90DA2D48* value) { ___additionalValues_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value); } }; // UnityEngine.InputSystem.Utilities.InlinedArray`1 struct InlinedArray_1_tFCA31E8102435E4A60A161C004710A41410BA314 { public: // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues GCHandleU5BU5D_tE15D27927DA8B3D667EF2723192CDC34B763D2F3* ___additionalValues_2; public: inline static int32_t get_offset_of_length_0() { return static_cast(offsetof(InlinedArray_1_tFCA31E8102435E4A60A161C004710A41410BA314, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_firstValue_1() { return static_cast(offsetof(InlinedArray_1_tFCA31E8102435E4A60A161C004710A41410BA314, ___firstValue_1)); } inline GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 get_firstValue_1() const { return ___firstValue_1; } inline GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 * get_address_of_firstValue_1() { return &___firstValue_1; } inline void set_firstValue_1(GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 value) { ___firstValue_1 = value; } inline static int32_t get_offset_of_additionalValues_2() { return static_cast(offsetof(InlinedArray_1_tFCA31E8102435E4A60A161C004710A41410BA314, ___additionalValues_2)); } inline GCHandleU5BU5D_tE15D27927DA8B3D667EF2723192CDC34B763D2F3* get_additionalValues_2() const { return ___additionalValues_2; } inline GCHandleU5BU5D_tE15D27927DA8B3D667EF2723192CDC34B763D2F3** get_address_of_additionalValues_2() { return &___additionalValues_2; } inline void set_additionalValues_2(GCHandleU5BU5D_tE15D27927DA8B3D667EF2723192CDC34B763D2F3* value) { ___additionalValues_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value); } }; // UnityEngine.InputSystem.Utilities.InlinedArray`1 struct InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB { public: // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* ___additionalValues_2; public: inline static int32_t get_offset_of_length_0() { return static_cast(offsetof(InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_firstValue_1() { return static_cast(offsetof(InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB, ___firstValue_1)); } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED get_firstValue_1() const { return ___firstValue_1; } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * get_address_of_firstValue_1() { return &___firstValue_1; } inline void set_firstValue_1(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED value) { ___firstValue_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___firstValue_1))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___firstValue_1))->___m_StringLowerCase_1), (void*)NULL); #endif } inline static int32_t get_offset_of_additionalValues_2() { return static_cast(offsetof(InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB, ___additionalValues_2)); } inline InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* get_additionalValues_2() const { return ___additionalValues_2; } inline InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4** get_address_of_additionalValues_2() { return &___additionalValues_2; } inline void set_additionalValues_2(InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* value) { ___additionalValues_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value); } }; // UnityEngine.InputSystem.Utilities.InlinedArray`1 struct InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A { public: // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues StateChangeMonitorTimeoutU5BU5D_tB541E66E8C64A4EE2D3C6F243A3A9833BFBE0BF7* ___additionalValues_2; public: inline static int32_t get_offset_of_length_0() { return static_cast(offsetof(InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_firstValue_1() { return static_cast(offsetof(InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A, ___firstValue_1)); } inline StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 get_firstValue_1() const { return ___firstValue_1; } inline StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 * get_address_of_firstValue_1() { return &___firstValue_1; } inline void set_firstValue_1(StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 value) { ___firstValue_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___firstValue_1))->___control_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___firstValue_1))->___monitor_2), (void*)NULL); #endif } inline static int32_t get_offset_of_additionalValues_2() { return static_cast(offsetof(InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A, ___additionalValues_2)); } inline StateChangeMonitorTimeoutU5BU5D_tB541E66E8C64A4EE2D3C6F243A3A9833BFBE0BF7* get_additionalValues_2() const { return ___additionalValues_2; } inline StateChangeMonitorTimeoutU5BU5D_tB541E66E8C64A4EE2D3C6F243A3A9833BFBE0BF7** get_address_of_additionalValues_2() { return &___additionalValues_2; } inline void set_additionalValues_2(StateChangeMonitorTimeoutU5BU5D_tB541E66E8C64A4EE2D3C6F243A3A9833BFBE0BF7* value) { ___additionalValues_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2> struct KeyValuePair_2_t2B4BD676624F7FEC54BCB9D6BF33CCB09221DB7B { public: // TKey System.Collections.Generic.KeyValuePair`2::key InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value Func_1_t87F4D899EDDDA25407AC884A9A61F602E32A21FA * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast(offsetof(KeyValuePair_2_t2B4BD676624F7FEC54BCB9D6BF33CCB09221DB7B, ___key_0)); } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED get_key_0() const { return ___key_0; } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * get_address_of_key_0() { return &___key_0; } inline void set_key_0(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___key_0))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___key_0))->___m_StringLowerCase_1), (void*)NULL); #endif } inline static int32_t get_offset_of_value_1() { return static_cast(offsetof(KeyValuePair_2_t2B4BD676624F7FEC54BCB9D6BF33CCB09221DB7B, ___value_1)); } inline Func_1_t87F4D899EDDDA25407AC884A9A61F602E32A21FA * get_value_1() const { return ___value_1; } inline Func_1_t87F4D899EDDDA25407AC884A9A61F602E32A21FA ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(Func_1_t87F4D899EDDDA25407AC884A9A61F602E32A21FA * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2 struct KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 { public: // TKey System.Collections.Generic.KeyValuePair`2::key InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast(offsetof(KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521, ___key_0)); } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED get_key_0() const { return ___key_0; } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * get_address_of_key_0() { return &___key_0; } inline void set_key_0(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___key_0))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___key_0))->___m_StringLowerCase_1), (void*)NULL); #endif } inline static int32_t get_offset_of_value_1() { return static_cast(offsetof(KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2 struct KeyValuePair_2_t76AE7CE0A1B0BF6D053BE29F1193D9C3EFFD608E { public: // TKey System.Collections.Generic.KeyValuePair`2::key InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value String_t* ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast(offsetof(KeyValuePair_2_t76AE7CE0A1B0BF6D053BE29F1193D9C3EFFD608E, ___key_0)); } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED get_key_0() const { return ___key_0; } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * get_address_of_key_0() { return &___key_0; } inline void set_key_0(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___key_0))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___key_0))->___m_StringLowerCase_1), (void*)NULL); #endif } inline static int32_t get_offset_of_value_1() { return static_cast(offsetof(KeyValuePair_2_t76AE7CE0A1B0BF6D053BE29F1193D9C3EFFD608E, ___value_1)); } inline String_t* get_value_1() const { return ___value_1; } inline String_t** get_address_of_value_1() { return &___value_1; } inline void set_value_1(String_t* value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2 struct KeyValuePair_2_t32554390D3DCC815F632A9813367A1A9E6C4C324 { public: // TKey System.Collections.Generic.KeyValuePair`2::key InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value Type_t * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast(offsetof(KeyValuePair_2_t32554390D3DCC815F632A9813367A1A9E6C4C324, ___key_0)); } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED get_key_0() const { return ___key_0; } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * get_address_of_key_0() { return &___key_0; } inline void set_key_0(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___key_0))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___key_0))->___m_StringLowerCase_1), (void*)NULL); #endif } inline static int32_t get_offset_of_value_1() { return static_cast(offsetof(KeyValuePair_2_t32554390D3DCC815F632A9813367A1A9E6C4C324, ___value_1)); } inline Type_t * get_value_1() const { return ___value_1; } inline Type_t ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(Type_t * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // Unity.Collections.Allocator struct Allocator_t9888223DEF4F46F3419ECFCCD0753599BEE52A05 { public: // System.Int32 Unity.Collections.Allocator::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Allocator_t9888223DEF4F46F3419ECFCCD0753599BEE52A05, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.BindingFlags struct BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733 { public: // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Delegate struct Delegate_t : public RuntimeObject { public: // System.IntPtr System.Delegate::method_ptr Il2CppMethodPointer ___method_ptr_0; // System.IntPtr System.Delegate::invoke_impl intptr_t ___invoke_impl_1; // System.Object System.Delegate::m_target RuntimeObject * ___m_target_2; // System.IntPtr System.Delegate::method intptr_t ___method_3; // System.IntPtr System.Delegate::delegate_trampoline intptr_t ___delegate_trampoline_4; // System.IntPtr System.Delegate::extra_arg intptr_t ___extra_arg_5; // System.IntPtr System.Delegate::method_code intptr_t ___method_code_6; // System.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t * ___method_info_7; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t * ___original_method_info_8; // System.DelegateData System.Delegate::data DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; // System.Boolean System.Delegate::method_is_virtual bool ___method_is_virtual_10; public: inline static int32_t get_offset_of_method_ptr_0() { return static_cast(offsetof(Delegate_t, ___method_ptr_0)); } inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; } inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; } inline void set_method_ptr_0(Il2CppMethodPointer value) { ___method_ptr_0 = value; } inline static int32_t get_offset_of_invoke_impl_1() { return static_cast(offsetof(Delegate_t, ___invoke_impl_1)); } inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; } inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; } inline void set_invoke_impl_1(intptr_t value) { ___invoke_impl_1 = value; } inline static int32_t get_offset_of_m_target_2() { return static_cast(offsetof(Delegate_t, ___m_target_2)); } inline RuntimeObject * get_m_target_2() const { return ___m_target_2; } inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; } inline void set_m_target_2(RuntimeObject * value) { ___m_target_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value); } inline static int32_t get_offset_of_method_3() { return static_cast(offsetof(Delegate_t, ___method_3)); } inline intptr_t get_method_3() const { return ___method_3; } inline intptr_t* get_address_of_method_3() { return &___method_3; } inline void set_method_3(intptr_t value) { ___method_3 = value; } inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast(offsetof(Delegate_t, ___delegate_trampoline_4)); } inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; } inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; } inline void set_delegate_trampoline_4(intptr_t value) { ___delegate_trampoline_4 = value; } inline static int32_t get_offset_of_extra_arg_5() { return static_cast(offsetof(Delegate_t, ___extra_arg_5)); } inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; } inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; } inline void set_extra_arg_5(intptr_t value) { ___extra_arg_5 = value; } inline static int32_t get_offset_of_method_code_6() { return static_cast(offsetof(Delegate_t, ___method_code_6)); } inline intptr_t get_method_code_6() const { return ___method_code_6; } inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; } inline void set_method_code_6(intptr_t value) { ___method_code_6 = value; } inline static int32_t get_offset_of_method_info_7() { return static_cast(offsetof(Delegate_t, ___method_info_7)); } inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; } inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; } inline void set_method_info_7(MethodInfo_t * value) { ___method_info_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value); } inline static int32_t get_offset_of_original_method_info_8() { return static_cast(offsetof(Delegate_t, ___original_method_info_8)); } inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; } inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; } inline void set_original_method_info_8(MethodInfo_t * value) { ___original_method_info_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value); } inline static int32_t get_offset_of_data_9() { return static_cast(offsetof(Delegate_t, ___data_9)); } inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * get_data_9() const { return ___data_9; } inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 ** get_address_of_data_9() { return &___data_9; } inline void set_data_9(DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * value) { ___data_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value); } inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast(offsetof(Delegate_t, ___method_is_virtual_10)); } inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; } inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; } inline void set_method_is_virtual_10(bool value) { ___method_is_virtual_10 = value; } }; // Native definition for P/Invoke marshalling of System.Delegate struct Delegate_t_marshaled_pinvoke { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; int32_t ___method_is_virtual_10; }; // Native definition for COM marshalling of System.Delegate struct Delegate_t_marshaled_com { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; int32_t ___method_is_virtual_10; }; // UnityEngine.InputSystem.DynamicBitfield struct DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 { public: // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.DynamicBitfield::array InlinedArray_1_t23FFA4FEA36F785EEEC44B0332DE84D5E6645F18 ___array_0; // System.Int32 UnityEngine.InputSystem.DynamicBitfield::length int32_t ___length_1; public: inline static int32_t get_offset_of_array_0() { return static_cast(offsetof(DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5, ___array_0)); } inline InlinedArray_1_t23FFA4FEA36F785EEEC44B0332DE84D5E6645F18 get_array_0() const { return ___array_0; } inline InlinedArray_1_t23FFA4FEA36F785EEEC44B0332DE84D5E6645F18 * get_address_of_array_0() { return &___array_0; } inline void set_array_0(InlinedArray_1_t23FFA4FEA36F785EEEC44B0332DE84D5E6645F18 value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___array_0))->___additionalValues_2), (void*)NULL); } inline static int32_t get_offset_of_length_1() { return static_cast(offsetof(DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5, ___length_1)); } inline int32_t get_length_1() const { return ___length_1; } inline int32_t* get_address_of_length_1() { return &___length_1; } inline void set_length_1(int32_t value) { ___length_1 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.DynamicBitfield struct DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5_marshaled_pinvoke { InlinedArray_1_t23FFA4FEA36F785EEEC44B0332DE84D5E6645F18 ___array_0; int32_t ___length_1; }; // Native definition for COM marshalling of UnityEngine.InputSystem.DynamicBitfield struct DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5_marshaled_com { InlinedArray_1_t23FFA4FEA36F785EEEC44B0332DE84D5E6645F18 ___array_0; int32_t ___length_1; }; // System.Exception struct Exception_t : public RuntimeObject { public: // System.String System.Exception::_className String_t* ____className_1; // System.String System.Exception::_message String_t* ____message_2; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_3; // System.Exception System.Exception::_innerException Exception_t * ____innerException_4; // System.String System.Exception::_helpURL String_t* ____helpURL_5; // System.Object System.Exception::_stackTrace RuntimeObject * ____stackTrace_6; // System.String System.Exception::_stackTraceString String_t* ____stackTraceString_7; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_8; // System.Int32 System.Exception::_remoteStackIndex int32_t ____remoteStackIndex_9; // System.Object System.Exception::_dynamicMethods RuntimeObject * ____dynamicMethods_10; // System.Int32 System.Exception::_HResult int32_t ____HResult_11; // System.String System.Exception::_source String_t* ____source_12; // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___native_trace_ips_15; public: inline static int32_t get_offset_of__className_1() { return static_cast(offsetof(Exception_t, ____className_1)); } inline String_t* get__className_1() const { return ____className_1; } inline String_t** get_address_of__className_1() { return &____className_1; } inline void set__className_1(String_t* value) { ____className_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value); } inline static int32_t get_offset_of__message_2() { return static_cast(offsetof(Exception_t, ____message_2)); } inline String_t* get__message_2() const { return ____message_2; } inline String_t** get_address_of__message_2() { return &____message_2; } inline void set__message_2(String_t* value) { ____message_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value); } inline static int32_t get_offset_of__data_3() { return static_cast(offsetof(Exception_t, ____data_3)); } inline RuntimeObject* get__data_3() const { return ____data_3; } inline RuntimeObject** get_address_of__data_3() { return &____data_3; } inline void set__data_3(RuntimeObject* value) { ____data_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value); } inline static int32_t get_offset_of__innerException_4() { return static_cast(offsetof(Exception_t, ____innerException_4)); } inline Exception_t * get__innerException_4() const { return ____innerException_4; } inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; } inline void set__innerException_4(Exception_t * value) { ____innerException_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value); } inline static int32_t get_offset_of__helpURL_5() { return static_cast(offsetof(Exception_t, ____helpURL_5)); } inline String_t* get__helpURL_5() const { return ____helpURL_5; } inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; } inline void set__helpURL_5(String_t* value) { ____helpURL_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value); } inline static int32_t get_offset_of__stackTrace_6() { return static_cast(offsetof(Exception_t, ____stackTrace_6)); } inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; } inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; } inline void set__stackTrace_6(RuntimeObject * value) { ____stackTrace_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value); } inline static int32_t get_offset_of__stackTraceString_7() { return static_cast(offsetof(Exception_t, ____stackTraceString_7)); } inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; } inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; } inline void set__stackTraceString_7(String_t* value) { ____stackTraceString_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value); } inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast(offsetof(Exception_t, ____remoteStackTraceString_8)); } inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; } inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; } inline void set__remoteStackTraceString_8(String_t* value) { ____remoteStackTraceString_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value); } inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast(offsetof(Exception_t, ____remoteStackIndex_9)); } inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; } inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; } inline void set__remoteStackIndex_9(int32_t value) { ____remoteStackIndex_9 = value; } inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast(offsetof(Exception_t, ____dynamicMethods_10)); } inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; } inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; } inline void set__dynamicMethods_10(RuntimeObject * value) { ____dynamicMethods_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value); } inline static int32_t get_offset_of__HResult_11() { return static_cast(offsetof(Exception_t, ____HResult_11)); } inline int32_t get__HResult_11() const { return ____HResult_11; } inline int32_t* get_address_of__HResult_11() { return &____HResult_11; } inline void set__HResult_11(int32_t value) { ____HResult_11 = value; } inline static int32_t get_offset_of__source_12() { return static_cast(offsetof(Exception_t, ____source_12)); } inline String_t* get__source_12() const { return ____source_12; } inline String_t** get_address_of__source_12() { return &____source_12; } inline void set__source_12(String_t* value) { ____source_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value); } inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast(offsetof(Exception_t, ____safeSerializationManager_13)); } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * value) { ____safeSerializationManager_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value); } inline static int32_t get_offset_of_captured_traces_14() { return static_cast(offsetof(Exception_t, ___captured_traces_14)); } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* value) { ___captured_traces_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value); } inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast(offsetof(Exception_t, ___native_trace_ips_15)); } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* value) { ___native_trace_ips_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Exception struct Exception_t_marshaled_pinvoke { char* ____className_1; char* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_pinvoke* ____innerException_4; char* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; char* ____stackTraceString_7; char* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; char* ____source_12; SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // Native definition for COM marshalling of System.Exception struct Exception_t_marshaled_com { Il2CppChar* ____className_1; Il2CppChar* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_com* ____innerException_4; Il2CppChar* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; Il2CppChar* ____stackTraceString_7; Il2CppChar* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; Il2CppChar* ____source_12; SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // System.IO.FileAccess struct FileAccess_t09E176678AB8520C44024354E0DB2F01D40A2F5B { public: // System.Int32 System.IO.FileAccess::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(FileAccess_t09E176678AB8520C44024354E0DB2F01D40A2F5B, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.HideFlags struct HideFlags_tDC64149E37544FF83B2B4222D3E9DC8188766A12 { public: // System.Int32 UnityEngine.HideFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(HideFlags_tDC64149E37544FF83B2B4222D3E9DC8188766A12, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.InputSystem.LowLevel.IMECompositionString struct IMECompositionString_t2FF8DD4A10EA5DF2D7023622FD79384367D4FD83 { public: union { struct { union { #pragma pack(push, tp, 1) struct { // System.Int32 UnityEngine.InputSystem.LowLevel.IMECompositionString::size int32_t ___size_0; }; #pragma pack(pop, tp) struct { int32_t ___size_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___buffer_1_OffsetPadding[4]; // UnityEngine.InputSystem.LowLevel.IMECompositionString/e__FixedBuffer UnityEngine.InputSystem.LowLevel.IMECompositionString::buffer U3CbufferU3Ee__FixedBuffer_t88B6D84FC28714D9288385B2C11373B95985EF95 ___buffer_1; }; #pragma pack(pop, tp) struct { char ___buffer_1_OffsetPadding_forAlignmentOnly[4]; U3CbufferU3Ee__FixedBuffer_t88B6D84FC28714D9288385B2C11373B95985EF95 ___buffer_1_forAlignmentOnly; }; }; }; uint8_t IMECompositionString_t2FF8DD4A10EA5DF2D7023622FD79384367D4FD83__padding[132]; }; public: inline static int32_t get_offset_of_size_0() { return static_cast(offsetof(IMECompositionString_t2FF8DD4A10EA5DF2D7023622FD79384367D4FD83, ___size_0)); } inline int32_t get_size_0() const { return ___size_0; } inline int32_t* get_address_of_size_0() { return &___size_0; } inline void set_size_0(int32_t value) { ___size_0 = value; } inline static int32_t get_offset_of_buffer_1() { return static_cast(offsetof(IMECompositionString_t2FF8DD4A10EA5DF2D7023622FD79384367D4FD83, ___buffer_1)); } inline U3CbufferU3Ee__FixedBuffer_t88B6D84FC28714D9288385B2C11373B95985EF95 get_buffer_1() const { return ___buffer_1; } inline U3CbufferU3Ee__FixedBuffer_t88B6D84FC28714D9288385B2C11373B95985EF95 * get_address_of_buffer_1() { return &___buffer_1; } inline void set_buffer_1(U3CbufferU3Ee__FixedBuffer_t88B6D84FC28714D9288385B2C11373B95985EF95 value) { ___buffer_1 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.IMECompositionString struct IMECompositionString_t2FF8DD4A10EA5DF2D7023622FD79384367D4FD83_marshaled_pinvoke { union { struct { union { #pragma pack(push, tp, 1) struct { int32_t ___size_0; }; #pragma pack(pop, tp) struct { int32_t ___size_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___buffer_1_OffsetPadding[4]; U3CbufferU3Ee__FixedBuffer_t88B6D84FC28714D9288385B2C11373B95985EF95_marshaled_pinvoke ___buffer_1; }; #pragma pack(pop, tp) struct { char ___buffer_1_OffsetPadding_forAlignmentOnly[4]; U3CbufferU3Ee__FixedBuffer_t88B6D84FC28714D9288385B2C11373B95985EF95_marshaled_pinvoke ___buffer_1_forAlignmentOnly; }; }; }; uint8_t IMECompositionString_t2FF8DD4A10EA5DF2D7023622FD79384367D4FD83__padding[132]; }; }; // Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.IMECompositionString struct IMECompositionString_t2FF8DD4A10EA5DF2D7023622FD79384367D4FD83_marshaled_com { union { struct { union { #pragma pack(push, tp, 1) struct { int32_t ___size_0; }; #pragma pack(pop, tp) struct { int32_t ___size_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___buffer_1_OffsetPadding[4]; U3CbufferU3Ee__FixedBuffer_t88B6D84FC28714D9288385B2C11373B95985EF95_marshaled_com ___buffer_1; }; #pragma pack(pop, tp) struct { char ___buffer_1_OffsetPadding_forAlignmentOnly[4]; U3CbufferU3Ee__FixedBuffer_t88B6D84FC28714D9288385B2C11373B95985EF95_marshaled_com ___buffer_1_forAlignmentOnly; }; }; }; uint8_t IMECompositionString_t2FF8DD4A10EA5DF2D7023622FD79384367D4FD83__padding[132]; }; }; // UnityEngine.InputSystem.InputActionPhase struct InputActionPhase_t2902D1C79819D41CAB80B5345925A58F2926824C { public: // System.Int32 UnityEngine.InputSystem.InputActionPhase::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(InputActionPhase_t2902D1C79819D41CAB80B5345925A58F2926824C, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.InputSystem.InputActionType struct InputActionType_tF334DB4C306B973538251E50C2CFE7939899AB35 { public: // System.Int32 UnityEngine.InputSystem.InputActionType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(InputActionType_tF334DB4C306B973538251E50C2CFE7939899AB35, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.InputSystem.InputBindingComposite struct InputBindingComposite_tFCCB9AFDBA6503C51555C9C5904186D990D36565 : public RuntimeObject { public: public: }; // UnityEngine.InputSystem.InputControlLayoutChange struct InputControlLayoutChange_tE5631ED390D3B861F06F45893369D3E67C90291A { public: // System.Int32 UnityEngine.InputSystem.InputControlLayoutChange::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(InputControlLayoutChange_tE5631ED390D3B861F06F45893369D3E67C90291A, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.InputSystem.InputDeviceChange struct InputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E { public: // System.Int32 UnityEngine.InputSystem.InputDeviceChange::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(InputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.InputSystem.LowLevel.InputDeviceCommand struct InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 { public: union { struct { union { #pragma pack(push, tp, 1) struct { // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputDeviceCommand::type FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___type_4; }; #pragma pack(pop, tp) struct { FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___type_4_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___sizeInBytes_5_OffsetPadding[4]; // System.Int32 UnityEngine.InputSystem.LowLevel.InputDeviceCommand::sizeInBytes int32_t ___sizeInBytes_5; }; #pragma pack(pop, tp) struct { char ___sizeInBytes_5_OffsetPadding_forAlignmentOnly[4]; int32_t ___sizeInBytes_5_forAlignmentOnly; }; }; }; uint8_t InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3__padding[8]; }; public: inline static int32_t get_offset_of_type_4() { return static_cast(offsetof(InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3, ___type_4)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_type_4() const { return ___type_4; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_type_4() { return &___type_4; } inline void set_type_4(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___type_4 = value; } inline static int32_t get_offset_of_sizeInBytes_5() { return static_cast(offsetof(InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3, ___sizeInBytes_5)); } inline int32_t get_sizeInBytes_5() const { return ___sizeInBytes_5; } inline int32_t* get_address_of_sizeInBytes_5() { return &___sizeInBytes_5; } inline void set_sizeInBytes_5(int32_t value) { ___sizeInBytes_5 = value; } }; // UnityEngine.InputSystem.Layouts.InputDeviceMatcher struct InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 { public: // System.Collections.Generic.KeyValuePair`2[] UnityEngine.InputSystem.Layouts.InputDeviceMatcher::m_Patterns KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105* ___m_Patterns_0; public: inline static int32_t get_offset_of_m_Patterns_0() { return static_cast(offsetof(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57, ___m_Patterns_0)); } inline KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105* get_m_Patterns_0() const { return ___m_Patterns_0; } inline KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105** get_address_of_m_Patterns_0() { return &___m_Patterns_0; } inline void set_m_Patterns_0(KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105* value) { ___m_Patterns_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Patterns_0), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputDeviceMatcher struct InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_marshaled_pinvoke { KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 * ___m_Patterns_0; }; // Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputDeviceMatcher struct InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_marshaled_com { KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 * ___m_Patterns_0; }; // UnityEngine.InputSystem.InputInteraction struct InputInteraction_t7BAD5F994214A465B34D56FB86391F9181113F78 : public RuntimeObject { public: public: }; // UnityEngine.InputSystem.InputProcessor struct InputProcessor_t245C316DEE36AA1BC9558F838B3B7A0223813A1D : public RuntimeObject { public: public: }; // UnityEngine.InputSystem.LowLevel.InputStateBlock struct InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B { public: // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::k__BackingField FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___U3CformatU3Ek__BackingField_33; // System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBlock::k__BackingField uint32_t ___U3CbyteOffsetU3Ek__BackingField_34; // System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBlock::k__BackingField uint32_t ___U3CbitOffsetU3Ek__BackingField_35; // System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBlock::k__BackingField uint32_t ___U3CsizeInBitsU3Ek__BackingField_36; public: inline static int32_t get_offset_of_U3CformatU3Ek__BackingField_33() { return static_cast(offsetof(InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B, ___U3CformatU3Ek__BackingField_33)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_U3CformatU3Ek__BackingField_33() const { return ___U3CformatU3Ek__BackingField_33; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_U3CformatU3Ek__BackingField_33() { return &___U3CformatU3Ek__BackingField_33; } inline void set_U3CformatU3Ek__BackingField_33(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___U3CformatU3Ek__BackingField_33 = value; } inline static int32_t get_offset_of_U3CbyteOffsetU3Ek__BackingField_34() { return static_cast(offsetof(InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B, ___U3CbyteOffsetU3Ek__BackingField_34)); } inline uint32_t get_U3CbyteOffsetU3Ek__BackingField_34() const { return ___U3CbyteOffsetU3Ek__BackingField_34; } inline uint32_t* get_address_of_U3CbyteOffsetU3Ek__BackingField_34() { return &___U3CbyteOffsetU3Ek__BackingField_34; } inline void set_U3CbyteOffsetU3Ek__BackingField_34(uint32_t value) { ___U3CbyteOffsetU3Ek__BackingField_34 = value; } inline static int32_t get_offset_of_U3CbitOffsetU3Ek__BackingField_35() { return static_cast(offsetof(InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B, ___U3CbitOffsetU3Ek__BackingField_35)); } inline uint32_t get_U3CbitOffsetU3Ek__BackingField_35() const { return ___U3CbitOffsetU3Ek__BackingField_35; } inline uint32_t* get_address_of_U3CbitOffsetU3Ek__BackingField_35() { return &___U3CbitOffsetU3Ek__BackingField_35; } inline void set_U3CbitOffsetU3Ek__BackingField_35(uint32_t value) { ___U3CbitOffsetU3Ek__BackingField_35 = value; } inline static int32_t get_offset_of_U3CsizeInBitsU3Ek__BackingField_36() { return static_cast(offsetof(InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B, ___U3CsizeInBitsU3Ek__BackingField_36)); } inline uint32_t get_U3CsizeInBitsU3Ek__BackingField_36() const { return ___U3CsizeInBitsU3Ek__BackingField_36; } inline uint32_t* get_address_of_U3CsizeInBitsU3Ek__BackingField_36() { return &___U3CsizeInBitsU3Ek__BackingField_36; } inline void set_U3CsizeInBitsU3Ek__BackingField_36(uint32_t value) { ___U3CsizeInBitsU3Ek__BackingField_36 = value; } }; // UnityEngine.InputSystem.LowLevel.InputStateBuffers struct InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA { public: // System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBuffers::sizePerBuffer uint32_t ___sizePerBuffer_0; // System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBuffers::totalSize uint32_t ___totalSize_1; // System.Void* UnityEngine.InputSystem.LowLevel.InputStateBuffers::defaultStateBuffer void* ___defaultStateBuffer_2; // System.Void* UnityEngine.InputSystem.LowLevel.InputStateBuffers::noiseMaskBuffer void* ___noiseMaskBuffer_3; // System.Void* UnityEngine.InputSystem.LowLevel.InputStateBuffers::resetMaskBuffer void* ___resetMaskBuffer_4; // System.Void* UnityEngine.InputSystem.LowLevel.InputStateBuffers::m_AllBuffers void* ___m_AllBuffers_5; // UnityEngine.InputSystem.LowLevel.InputStateBuffers/DoubleBuffers UnityEngine.InputSystem.LowLevel.InputStateBuffers::m_PlayerStateBuffers DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B ___m_PlayerStateBuffers_6; public: inline static int32_t get_offset_of_sizePerBuffer_0() { return static_cast(offsetof(InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA, ___sizePerBuffer_0)); } inline uint32_t get_sizePerBuffer_0() const { return ___sizePerBuffer_0; } inline uint32_t* get_address_of_sizePerBuffer_0() { return &___sizePerBuffer_0; } inline void set_sizePerBuffer_0(uint32_t value) { ___sizePerBuffer_0 = value; } inline static int32_t get_offset_of_totalSize_1() { return static_cast(offsetof(InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA, ___totalSize_1)); } inline uint32_t get_totalSize_1() const { return ___totalSize_1; } inline uint32_t* get_address_of_totalSize_1() { return &___totalSize_1; } inline void set_totalSize_1(uint32_t value) { ___totalSize_1 = value; } inline static int32_t get_offset_of_defaultStateBuffer_2() { return static_cast(offsetof(InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA, ___defaultStateBuffer_2)); } inline void* get_defaultStateBuffer_2() const { return ___defaultStateBuffer_2; } inline void** get_address_of_defaultStateBuffer_2() { return &___defaultStateBuffer_2; } inline void set_defaultStateBuffer_2(void* value) { ___defaultStateBuffer_2 = value; } inline static int32_t get_offset_of_noiseMaskBuffer_3() { return static_cast(offsetof(InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA, ___noiseMaskBuffer_3)); } inline void* get_noiseMaskBuffer_3() const { return ___noiseMaskBuffer_3; } inline void** get_address_of_noiseMaskBuffer_3() { return &___noiseMaskBuffer_3; } inline void set_noiseMaskBuffer_3(void* value) { ___noiseMaskBuffer_3 = value; } inline static int32_t get_offset_of_resetMaskBuffer_4() { return static_cast(offsetof(InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA, ___resetMaskBuffer_4)); } inline void* get_resetMaskBuffer_4() const { return ___resetMaskBuffer_4; } inline void** get_address_of_resetMaskBuffer_4() { return &___resetMaskBuffer_4; } inline void set_resetMaskBuffer_4(void* value) { ___resetMaskBuffer_4 = value; } inline static int32_t get_offset_of_m_AllBuffers_5() { return static_cast(offsetof(InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA, ___m_AllBuffers_5)); } inline void* get_m_AllBuffers_5() const { return ___m_AllBuffers_5; } inline void** get_address_of_m_AllBuffers_5() { return &___m_AllBuffers_5; } inline void set_m_AllBuffers_5(void* value) { ___m_AllBuffers_5 = value; } inline static int32_t get_offset_of_m_PlayerStateBuffers_6() { return static_cast(offsetof(InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA, ___m_PlayerStateBuffers_6)); } inline DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B get_m_PlayerStateBuffers_6() const { return ___m_PlayerStateBuffers_6; } inline DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B * get_address_of_m_PlayerStateBuffers_6() { return &___m_PlayerStateBuffers_6; } inline void set_m_PlayerStateBuffers_6(DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B value) { ___m_PlayerStateBuffers_6 = value; } }; // UnityEngine.InputSystem.LowLevel.InputUpdateType struct InputUpdateType_t3A14935AE3714E50FCAD74333D1E337513173AE2 { public: // System.Int32 UnityEngine.InputSystem.LowLevel.InputUpdateType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(InputUpdateType_t3A14935AE3714E50FCAD74333D1E337513173AE2, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Int32Enum struct Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C { public: // System.Int32 System.Int32Enum::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.InputSystem.Key struct Key_tE2B25F1EFB2FAC84C6D47C956FD66851E3ADA79D { public: // System.Int32 UnityEngine.InputSystem.Key::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Key_tE2B25F1EFB2FAC84C6D47C956FD66851E3ADA79D, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Unity.Collections.NativeArrayOptions struct NativeArrayOptions_t181E2A9B49F6D62868DE6428E4CDF148AEF558E3 { public: // System.Int32 Unity.Collections.NativeArrayOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(NativeArrayOptions_t181E2A9B49F6D62868DE6428E4CDF148AEF558E3, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngineInternal.Input.NativeInputEventType struct NativeInputEventType_tB3CDF49B057A87E6CBA3EB8C551A971D2B70C9E9 { public: // System.Int32 UnityEngineInternal.Input.NativeInputEventType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(NativeInputEventType_tB3CDF49B057A87E6CBA3EB8C551A971D2B70C9E9, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A : public RuntimeObject { public: // System.IntPtr UnityEngine.Object::m_CachedPtr intptr_t ___m_CachedPtr_0; public: inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast(offsetof(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A, ___m_CachedPtr_0)); } inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; } inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; } inline void set_m_CachedPtr_0(intptr_t value) { ___m_CachedPtr_0 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_pinvoke { intptr_t ___m_CachedPtr_0; }; // Native definition for COM marshalling of UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_com { intptr_t ___m_CachedPtr_0; }; // System.Text.RegularExpressions.RegexOptions struct RegexOptions_t8F8CD5BC6C55FC2B657722FD09ABDFDF5BA6F6A4 { public: // System.Int32 System.Text.RegularExpressions.RegexOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(RegexOptions_t8F8CD5BC6C55FC2B657722FD09ABDFDF5BA6F6A4, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.RuntimePlatform struct RuntimePlatform_tB8798C800FD9810C0FE2B7D2F2A0A3979D239065 { public: // System.Int32 UnityEngine.RuntimePlatform::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(RuntimePlatform_tB8798C800FD9810C0FE2B7D2F2A0A3979D239065, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.RuntimeTypeHandle struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 { public: // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast(offsetof(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.StringComparison struct StringComparison_tCC9F72B9B1E2C3C6D2566DD0D3A61E1621048998 { public: // System.Int32 System.StringComparison::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(StringComparison_tCC9F72B9B1E2C3C6D2566DD0D3A61E1621048998, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.TimeSpan struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 { public: // System.Int64 System.TimeSpan::_ticks int64_t ____ticks_3; public: inline static int32_t get_offset_of__ticks_3() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203, ____ticks_3)); } inline int64_t get__ticks_3() const { return ____ticks_3; } inline int64_t* get_address_of__ticks_3() { return &____ticks_3; } inline void set__ticks_3(int64_t value) { ____ticks_3 = value; } }; // UnityEngine.InputSystem.TouchPhase struct TouchPhase_tA69FA41B0024C2A1873B2181F02E484D4CC44BBA { public: // System.Int32 UnityEngine.InputSystem.TouchPhase::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(TouchPhase_tA69FA41B0024C2A1873B2181F02E484D4CC44BBA, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.TypeCode struct TypeCode_tCB39BAB5CFB7A1E0BCB521413E3C46B81C31AA7C { public: // System.Int32 System.TypeCode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(TypeCode_tCB39BAB5CFB7A1E0BCB521413E3C46B81C31AA7C, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.InputSystem.Controls.AxisControl/Clamp struct Clamp_tBAA9F43891E7A880B0DE8A650A254CD0E89C36BD { public: // System.Int32 UnityEngine.InputSystem.Controls.AxisControl/Clamp::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Clamp_tBAA9F43891E7A880B0DE8A650A254CD0E89C36BD, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.InputSystem.InputAction/ActionFlags struct ActionFlags_t7D04593349EAB81D5C0E58D2B0DBAABA6B914252 { public: // System.Int32 UnityEngine.InputSystem.InputAction/ActionFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ActionFlags_t7D04593349EAB81D5C0E58D2B0DBAABA6B914252, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.InputSystem.InputBinding/Flags struct Flags_tB8C0F66F19426A1903E4D43B669650457D5057D1 { public: // System.Int32 UnityEngine.InputSystem.InputBinding/Flags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Flags_tB8C0F66F19426A1903E4D43B669650457D5057D1, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.InputSystem.InputControl/ControlFlags struct ControlFlags_t43CF0138618503E94B4811FD6CF66F13F0186787 { public: // System.Int32 UnityEngine.InputSystem.InputControl/ControlFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ControlFlags_t43CF0138618503E94B4811FD6CF66F13F0186787, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.InputSystem.Layouts.InputControlLayout/Flags struct Flags_tDF082D58D1D7072FCDA4D49EE3588B35D629E14E { public: // System.Int32 UnityEngine.InputSystem.Layouts.InputControlLayout/Flags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Flags_tDF082D58D1D7072FCDA4D49EE3588B35D629E14E, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.InputSystem.InputDevice/DeviceFlags struct DeviceFlags_tF2567D99F286E930FC6B04C6A3CCB2E65B1D762D { public: // System.Int32 UnityEngine.InputSystem.InputDevice/DeviceFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(DeviceFlags_tF2567D99F286E930FC6B04C6A3CCB2E65B1D762D, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.InputSystem.LowLevel.InputEventListener/ObserverState struct ObserverState_t25A763CEA3E3A65975BE34C371224BCAC14681A8 : public RuntimeObject { public: // UnityEngine.InputSystem.Utilities.InlinedArray`1> UnityEngine.InputSystem.LowLevel.InputEventListener/ObserverState::observers InlinedArray_1_t13A70E27E7343557A3762B3A0536C9EC58637950 ___observers_0; // System.Action`2 UnityEngine.InputSystem.LowLevel.InputEventListener/ObserverState::onEventDelegate Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * ___onEventDelegate_1; public: inline static int32_t get_offset_of_observers_0() { return static_cast(offsetof(ObserverState_t25A763CEA3E3A65975BE34C371224BCAC14681A8, ___observers_0)); } inline InlinedArray_1_t13A70E27E7343557A3762B3A0536C9EC58637950 get_observers_0() const { return ___observers_0; } inline InlinedArray_1_t13A70E27E7343557A3762B3A0536C9EC58637950 * get_address_of_observers_0() { return &___observers_0; } inline void set_observers_0(InlinedArray_1_t13A70E27E7343557A3762B3A0536C9EC58637950 value) { ___observers_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___observers_0))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___observers_0))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_onEventDelegate_1() { return static_cast(offsetof(ObserverState_t25A763CEA3E3A65975BE34C371224BCAC14681A8, ___onEventDelegate_1)); } inline Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * get_onEventDelegate_1() const { return ___onEventDelegate_1; } inline Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C ** get_address_of_onEventDelegate_1() { return &___onEventDelegate_1; } inline void set_onEventDelegate_1(Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * value) { ___onEventDelegate_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___onEventDelegate_1), (void*)value); } }; // UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo struct DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F { public: // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::m_DeviceId int32_t ___m_DeviceId_0; // System.String UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::m_Layout String_t* ___m_Layout_1; // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::m_StateFormat FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___m_StateFormat_2; // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::m_StateSizeInBytes int32_t ___m_StateSizeInBytes_3; // System.String UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::m_FullLayoutJson String_t* ___m_FullLayoutJson_4; public: inline static int32_t get_offset_of_m_DeviceId_0() { return static_cast(offsetof(DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F, ___m_DeviceId_0)); } inline int32_t get_m_DeviceId_0() const { return ___m_DeviceId_0; } inline int32_t* get_address_of_m_DeviceId_0() { return &___m_DeviceId_0; } inline void set_m_DeviceId_0(int32_t value) { ___m_DeviceId_0 = value; } inline static int32_t get_offset_of_m_Layout_1() { return static_cast(offsetof(DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F, ___m_Layout_1)); } inline String_t* get_m_Layout_1() const { return ___m_Layout_1; } inline String_t** get_address_of_m_Layout_1() { return &___m_Layout_1; } inline void set_m_Layout_1(String_t* value) { ___m_Layout_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Layout_1), (void*)value); } inline static int32_t get_offset_of_m_StateFormat_2() { return static_cast(offsetof(DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F, ___m_StateFormat_2)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_m_StateFormat_2() const { return ___m_StateFormat_2; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_m_StateFormat_2() { return &___m_StateFormat_2; } inline void set_m_StateFormat_2(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___m_StateFormat_2 = value; } inline static int32_t get_offset_of_m_StateSizeInBytes_3() { return static_cast(offsetof(DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F, ___m_StateSizeInBytes_3)); } inline int32_t get_m_StateSizeInBytes_3() const { return ___m_StateSizeInBytes_3; } inline int32_t* get_address_of_m_StateSizeInBytes_3() { return &___m_StateSizeInBytes_3; } inline void set_m_StateSizeInBytes_3(int32_t value) { ___m_StateSizeInBytes_3 = value; } inline static int32_t get_offset_of_m_FullLayoutJson_4() { return static_cast(offsetof(DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F, ___m_FullLayoutJson_4)); } inline String_t* get_m_FullLayoutJson_4() const { return ___m_FullLayoutJson_4; } inline String_t** get_address_of_m_FullLayoutJson_4() { return &___m_FullLayoutJson_4; } inline void set_m_FullLayoutJson_4(String_t* value) { ___m_FullLayoutJson_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_FullLayoutJson_4), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo struct DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F_marshaled_pinvoke { int32_t ___m_DeviceId_0; char* ___m_Layout_1; FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___m_StateFormat_2; int32_t ___m_StateSizeInBytes_3; char* ___m_FullLayoutJson_4; }; // Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo struct DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F_marshaled_com { int32_t ___m_DeviceId_0; Il2CppChar* ___m_Layout_1; FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___m_StateFormat_2; int32_t ___m_StateSizeInBytes_3; Il2CppChar* ___m_FullLayoutJson_4; }; // UnityEngine.InputSystem.LowLevel.InputEventTrace/Enumerator struct Enumerator_tDC926D70FAEB628CE95D05C8FF1E24E55664B143 : public RuntimeObject { public: // UnityEngine.InputSystem.LowLevel.InputEventTrace UnityEngine.InputSystem.LowLevel.InputEventTrace/Enumerator::m_Trace InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * ___m_Trace_0; // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace/Enumerator::m_ChangeCounter int32_t ___m_ChangeCounter_1; // UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.InputEventTrace/Enumerator::m_Current InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___m_Current_2; public: inline static int32_t get_offset_of_m_Trace_0() { return static_cast(offsetof(Enumerator_tDC926D70FAEB628CE95D05C8FF1E24E55664B143, ___m_Trace_0)); } inline InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * get_m_Trace_0() const { return ___m_Trace_0; } inline InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 ** get_address_of_m_Trace_0() { return &___m_Trace_0; } inline void set_m_Trace_0(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * value) { ___m_Trace_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Trace_0), (void*)value); } inline static int32_t get_offset_of_m_ChangeCounter_1() { return static_cast(offsetof(Enumerator_tDC926D70FAEB628CE95D05C8FF1E24E55664B143, ___m_ChangeCounter_1)); } inline int32_t get_m_ChangeCounter_1() const { return ___m_ChangeCounter_1; } inline int32_t* get_address_of_m_ChangeCounter_1() { return &___m_ChangeCounter_1; } inline void set_m_ChangeCounter_1(int32_t value) { ___m_ChangeCounter_1 = value; } inline static int32_t get_offset_of_m_Current_2() { return static_cast(offsetof(Enumerator_tDC926D70FAEB628CE95D05C8FF1E24E55664B143, ___m_Current_2)); } inline InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 get_m_Current_2() const { return ___m_Current_2; } inline InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * get_address_of_m_Current_2() { return &___m_Current_2; } inline void set_m_Current_2(InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 value) { ___m_Current_2 = value; } }; // UnityEngine.InputSystem.LowLevel.InputEventTrace/FileFlags struct FileFlags_t61A9794400BB4A04F6D61A202E41CCA9BED4492B { public: // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace/FileFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(FileFlags_t61A9794400BB4A04F6D61A202E41CCA9BED4492B, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.InputSystem.InputInteractionContext/Flags struct Flags_t34ED5D4B0B25D47A9FBC0D7261391BC3E1DE1945 { public: // System.Int32 UnityEngine.InputSystem.InputInteractionContext/Flags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Flags_t34ED5D4B0B25D47A9FBC0D7261391BC3E1DE1945, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.InputSystem.InputManager/AvailableDevice struct AvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D { public: // UnityEngine.InputSystem.Layouts.InputDeviceDescription UnityEngine.InputSystem.InputManager/AvailableDevice::description InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___description_0; // System.Int32 UnityEngine.InputSystem.InputManager/AvailableDevice::deviceId int32_t ___deviceId_1; // System.Boolean UnityEngine.InputSystem.InputManager/AvailableDevice::isNative bool ___isNative_2; // System.Boolean UnityEngine.InputSystem.InputManager/AvailableDevice::isRemoved bool ___isRemoved_3; public: inline static int32_t get_offset_of_description_0() { return static_cast(offsetof(AvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D, ___description_0)); } inline InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 get_description_0() const { return ___description_0; } inline InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * get_address_of_description_0() { return &___description_0; } inline void set_description_0(InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 value) { ___description_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___description_0))->___m_InterfaceName_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___description_0))->___m_DeviceClass_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___description_0))->___m_Manufacturer_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___description_0))->___m_Product_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___description_0))->___m_Serial_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___description_0))->___m_Version_5), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___description_0))->___m_Capabilities_6), (void*)NULL); #endif } inline static int32_t get_offset_of_deviceId_1() { return static_cast(offsetof(AvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D, ___deviceId_1)); } inline int32_t get_deviceId_1() const { return ___deviceId_1; } inline int32_t* get_address_of_deviceId_1() { return &___deviceId_1; } inline void set_deviceId_1(int32_t value) { ___deviceId_1 = value; } inline static int32_t get_offset_of_isNative_2() { return static_cast(offsetof(AvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D, ___isNative_2)); } inline bool get_isNative_2() const { return ___isNative_2; } inline bool* get_address_of_isNative_2() { return &___isNative_2; } inline void set_isNative_2(bool value) { ___isNative_2 = value; } inline static int32_t get_offset_of_isRemoved_3() { return static_cast(offsetof(AvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D, ___isRemoved_3)); } inline bool get_isRemoved_3() const { return ___isRemoved_3; } inline bool* get_address_of_isRemoved_3() { return &___isRemoved_3; } inline void set_isRemoved_3(bool value) { ___isRemoved_3 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.InputManager/AvailableDevice struct AvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D_marshaled_pinvoke { InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshaled_pinvoke ___description_0; int32_t ___deviceId_1; int32_t ___isNative_2; int32_t ___isRemoved_3; }; // Native definition for COM marshalling of UnityEngine.InputSystem.InputManager/AvailableDevice struct AvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D_marshaled_com { InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshaled_com ___description_0; int32_t ___deviceId_1; int32_t ___isNative_2; int32_t ___isRemoved_3; }; // UnityEngine.InputSystem.InputManager/DeviceDisableScope struct DeviceDisableScope_t2117B3D2855B8C9D48D51994F591E92811A7618C { public: // System.Int32 UnityEngine.InputSystem.InputManager/DeviceDisableScope::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(DeviceDisableScope_t2117B3D2855B8C9D48D51994F591E92811A7618C, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.InputSystem.InputSettings/BackgroundBehavior struct BackgroundBehavior_tE63D5B74669C5DA0FF0E096E121F19D0808B66FE { public: // System.Int32 UnityEngine.InputSystem.InputSettings/BackgroundBehavior::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(BackgroundBehavior_tE63D5B74669C5DA0FF0E096E121F19D0808B66FE, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.InputSystem.InputSettings/EditorInputBehaviorInPlayMode struct EditorInputBehaviorInPlayMode_tB78DF611964C17CA803511AE27017C17CBFDBA8E { public: // System.Int32 UnityEngine.InputSystem.InputSettings/EditorInputBehaviorInPlayMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(EditorInputBehaviorInPlayMode_tB78DF611964C17CA803511AE27017C17CBFDBA8E, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.InputSystem.InputSettings/UpdateMode struct UpdateMode_tB1023A67A3F7862527D6797E3522EAC9DC5B00A1 { public: // System.Int32 UnityEngine.InputSystem.InputSettings/UpdateMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(UpdateMode_tB1023A67A3F7862527D6797E3522EAC9DC5B00A1, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.InputSystem.Utilities.JsonParser/JsonString struct JsonString_tB3A1938903F2377F780FF4C4FE7CC6EA81C0D301 { public: // UnityEngine.InputSystem.Utilities.Substring UnityEngine.InputSystem.Utilities.JsonParser/JsonString::text Substring_t9EE457D8CFFFB970B2967B31E9D9AB465415571F ___text_0; // System.Boolean UnityEngine.InputSystem.Utilities.JsonParser/JsonString::hasEscapes bool ___hasEscapes_1; public: inline static int32_t get_offset_of_text_0() { return static_cast(offsetof(JsonString_tB3A1938903F2377F780FF4C4FE7CC6EA81C0D301, ___text_0)); } inline Substring_t9EE457D8CFFFB970B2967B31E9D9AB465415571F get_text_0() const { return ___text_0; } inline Substring_t9EE457D8CFFFB970B2967B31E9D9AB465415571F * get_address_of_text_0() { return &___text_0; } inline void set_text_0(Substring_t9EE457D8CFFFB970B2967B31E9D9AB465415571F value) { ___text_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___text_0))->___m_String_0), (void*)NULL); } inline static int32_t get_offset_of_hasEscapes_1() { return static_cast(offsetof(JsonString_tB3A1938903F2377F780FF4C4FE7CC6EA81C0D301, ___hasEscapes_1)); } inline bool get_hasEscapes_1() const { return ___hasEscapes_1; } inline bool* get_address_of_hasEscapes_1() { return &___hasEscapes_1; } inline void set_hasEscapes_1(bool value) { ___hasEscapes_1 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Utilities.JsonParser/JsonString struct JsonString_tB3A1938903F2377F780FF4C4FE7CC6EA81C0D301_marshaled_pinvoke { Substring_t9EE457D8CFFFB970B2967B31E9D9AB465415571F_marshaled_pinvoke ___text_0; int32_t ___hasEscapes_1; }; // Native definition for COM marshalling of UnityEngine.InputSystem.Utilities.JsonParser/JsonString struct JsonString_tB3A1938903F2377F780FF4C4FE7CC6EA81C0D301_marshaled_com { Substring_t9EE457D8CFFFB970B2967B31E9D9AB465415571F_marshaled_com ___text_0; int32_t ___hasEscapes_1; }; // UnityEngine.InputSystem.Utilities.JsonParser/JsonValueType struct JsonValueType_t536726C35383E9602EC7AE443D8CFC95C5F35540 { public: // System.Int32 UnityEngine.InputSystem.Utilities.JsonParser/JsonValueType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(JsonValueType_t536726C35383E9602EC7AE443D8CFC95C5F35540, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator> struct Enumerator_t86F084708DD8E20059734F3D16C77A4CE4C171D9 { public: // System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2 System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t2B4BD676624F7FEC54BCB9D6BF33CCB09221DB7B ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast(offsetof(Enumerator_t86F084708DD8E20059734F3D16C77A4CE4C171D9, ___dictionary_0)); } inline Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast(offsetof(Enumerator_t86F084708DD8E20059734F3D16C77A4CE4C171D9, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast(offsetof(Enumerator_t86F084708DD8E20059734F3D16C77A4CE4C171D9, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast(offsetof(Enumerator_t86F084708DD8E20059734F3D16C77A4CE4C171D9, ___current_3)); } inline KeyValuePair_2_t2B4BD676624F7FEC54BCB9D6BF33CCB09221DB7B get_current_3() const { return ___current_3; } inline KeyValuePair_2_t2B4BD676624F7FEC54BCB9D6BF33CCB09221DB7B * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t2B4BD676624F7FEC54BCB9D6BF33CCB09221DB7B value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___key_0))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___key_0))->___m_StringLowerCase_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); #endif } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast(offsetof(Enumerator_t86F084708DD8E20059734F3D16C77A4CE4C171D9, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator struct Enumerator_t8AA648C8DF370A9EB2CD75C4D86DADC954C99CC4 { public: // System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t80D2D8B9C998CB48C246E0CF23198E0761CD3326 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2 System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast(offsetof(Enumerator_t8AA648C8DF370A9EB2CD75C4D86DADC954C99CC4, ___dictionary_0)); } inline Dictionary_2_t80D2D8B9C998CB48C246E0CF23198E0761CD3326 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t80D2D8B9C998CB48C246E0CF23198E0761CD3326 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t80D2D8B9C998CB48C246E0CF23198E0761CD3326 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast(offsetof(Enumerator_t8AA648C8DF370A9EB2CD75C4D86DADC954C99CC4, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast(offsetof(Enumerator_t8AA648C8DF370A9EB2CD75C4D86DADC954C99CC4, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast(offsetof(Enumerator_t8AA648C8DF370A9EB2CD75C4D86DADC954C99CC4, ___current_3)); } inline KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 get_current_3() const { return ___current_3; } inline KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___key_0))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___key_0))->___m_StringLowerCase_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); #endif } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast(offsetof(Enumerator_t8AA648C8DF370A9EB2CD75C4D86DADC954C99CC4, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator struct Enumerator_tA79D34AACF919BA3D1503DCC212621FFA3947536 { public: // System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2 System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t76AE7CE0A1B0BF6D053BE29F1193D9C3EFFD608E ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast(offsetof(Enumerator_tA79D34AACF919BA3D1503DCC212621FFA3947536, ___dictionary_0)); } inline Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast(offsetof(Enumerator_tA79D34AACF919BA3D1503DCC212621FFA3947536, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast(offsetof(Enumerator_tA79D34AACF919BA3D1503DCC212621FFA3947536, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast(offsetof(Enumerator_tA79D34AACF919BA3D1503DCC212621FFA3947536, ___current_3)); } inline KeyValuePair_2_t76AE7CE0A1B0BF6D053BE29F1193D9C3EFFD608E get_current_3() const { return ___current_3; } inline KeyValuePair_2_t76AE7CE0A1B0BF6D053BE29F1193D9C3EFFD608E * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t76AE7CE0A1B0BF6D053BE29F1193D9C3EFFD608E value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___key_0))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___key_0))->___m_StringLowerCase_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); #endif } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast(offsetof(Enumerator_tA79D34AACF919BA3D1503DCC212621FFA3947536, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator struct Enumerator_tBC97DB5B6B5870EB975D595B3E8450E430C0A0E5 { public: // System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2 System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t32554390D3DCC815F632A9813367A1A9E6C4C324 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast(offsetof(Enumerator_tBC97DB5B6B5870EB975D595B3E8450E430C0A0E5, ___dictionary_0)); } inline Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast(offsetof(Enumerator_tBC97DB5B6B5870EB975D595B3E8450E430C0A0E5, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast(offsetof(Enumerator_tBC97DB5B6B5870EB975D595B3E8450E430C0A0E5, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast(offsetof(Enumerator_tBC97DB5B6B5870EB975D595B3E8450E430C0A0E5, ___current_3)); } inline KeyValuePair_2_t32554390D3DCC815F632A9813367A1A9E6C4C324 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t32554390D3DCC815F632A9813367A1A9E6C4C324 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t32554390D3DCC815F632A9813367A1A9E6C4C324 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___key_0))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___key_0))->___m_StringLowerCase_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); #endif } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast(offsetof(Enumerator_tBC97DB5B6B5870EB975D595B3E8450E430C0A0E5, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // Unity.Collections.NativeArray`1 struct NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 { public: // System.Void* Unity.Collections.NativeArray`1::m_Buffer void* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeArray`1::m_Length int32_t ___m_Length_1; // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel int32_t ___m_AllocatorLabel_2; public: inline static int32_t get_offset_of_m_Buffer_0() { return static_cast(offsetof(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785, ___m_Buffer_0)); } inline void* get_m_Buffer_0() const { return ___m_Buffer_0; } inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; } inline void set_m_Buffer_0(void* value) { ___m_Buffer_0 = value; } inline static int32_t get_offset_of_m_Length_1() { return static_cast(offsetof(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785, ___m_Length_1)); } inline int32_t get_m_Length_1() const { return ___m_Length_1; } inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; } inline void set_m_Length_1(int32_t value) { ___m_Length_1 = value; } inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast(offsetof(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785, ___m_AllocatorLabel_2)); } inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; } inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; } inline void set_m_AllocatorLabel_2(int32_t value) { ___m_AllocatorLabel_2 = value; } }; // UnityEngine.InputSystem.LowLevel.DisableDeviceCommand struct DisableDeviceCommand_tB2F65EF65EBE67BF06541CD04C81BB31EE208FD5 { public: union { struct { union { #pragma pack(push, tp, 1) struct { // UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.DisableDeviceCommand::baseCommand InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 ___baseCommand_1; }; #pragma pack(pop, tp) struct { InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 ___baseCommand_1_forAlignmentOnly; }; }; }; uint8_t DisableDeviceCommand_tB2F65EF65EBE67BF06541CD04C81BB31EE208FD5__padding[8]; }; public: inline static int32_t get_offset_of_baseCommand_1() { return static_cast(offsetof(DisableDeviceCommand_tB2F65EF65EBE67BF06541CD04C81BB31EE208FD5, ___baseCommand_1)); } inline InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 get_baseCommand_1() const { return ___baseCommand_1; } inline InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * get_address_of_baseCommand_1() { return &___baseCommand_1; } inline void set_baseCommand_1(InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 value) { ___baseCommand_1 = value; } }; // UnityEngine.InputSystem.LowLevel.EnableDeviceCommand struct EnableDeviceCommand_tB57B3D3EDA2CD18BF45CCDB5132C993C6FBFA613 { public: union { struct { union { #pragma pack(push, tp, 1) struct { // UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.EnableDeviceCommand::baseCommand InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 ___baseCommand_1; }; #pragma pack(pop, tp) struct { InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 ___baseCommand_1_forAlignmentOnly; }; }; }; uint8_t EnableDeviceCommand_tB57B3D3EDA2CD18BF45CCDB5132C993C6FBFA613__padding[8]; }; public: inline static int32_t get_offset_of_baseCommand_1() { return static_cast(offsetof(EnableDeviceCommand_tB57B3D3EDA2CD18BF45CCDB5132C993C6FBFA613, ___baseCommand_1)); } inline InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 get_baseCommand_1() const { return ___baseCommand_1; } inline InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * get_address_of_baseCommand_1() { return &___baseCommand_1; } inline void set_baseCommand_1(InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 value) { ___baseCommand_1 = value; } }; // System.IO.FileStream struct FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB { public: // System.Byte[] System.IO.FileStream::buf ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buf_7; // System.String System.IO.FileStream::name String_t* ___name_8; // Microsoft.Win32.SafeHandles.SafeFileHandle System.IO.FileStream::safeHandle SafeFileHandle_tC77A9860A03C31DC46AD2C08EC10EACDC3B7A662 * ___safeHandle_9; // System.Boolean System.IO.FileStream::isExposed bool ___isExposed_10; // System.Int64 System.IO.FileStream::append_startpos int64_t ___append_startpos_11; // System.IO.FileAccess System.IO.FileStream::access int32_t ___access_12; // System.Boolean System.IO.FileStream::owner bool ___owner_13; // System.Boolean System.IO.FileStream::async bool ___async_14; // System.Boolean System.IO.FileStream::canseek bool ___canseek_15; // System.Boolean System.IO.FileStream::anonymous bool ___anonymous_16; // System.Boolean System.IO.FileStream::buf_dirty bool ___buf_dirty_17; // System.Int32 System.IO.FileStream::buf_size int32_t ___buf_size_18; // System.Int32 System.IO.FileStream::buf_length int32_t ___buf_length_19; // System.Int32 System.IO.FileStream::buf_offset int32_t ___buf_offset_20; // System.Int64 System.IO.FileStream::buf_start int64_t ___buf_start_21; public: inline static int32_t get_offset_of_buf_7() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___buf_7)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_buf_7() const { return ___buf_7; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_buf_7() { return &___buf_7; } inline void set_buf_7(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___buf_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___buf_7), (void*)value); } inline static int32_t get_offset_of_name_8() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___name_8)); } inline String_t* get_name_8() const { return ___name_8; } inline String_t** get_address_of_name_8() { return &___name_8; } inline void set_name_8(String_t* value) { ___name_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_8), (void*)value); } inline static int32_t get_offset_of_safeHandle_9() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___safeHandle_9)); } inline SafeFileHandle_tC77A9860A03C31DC46AD2C08EC10EACDC3B7A662 * get_safeHandle_9() const { return ___safeHandle_9; } inline SafeFileHandle_tC77A9860A03C31DC46AD2C08EC10EACDC3B7A662 ** get_address_of_safeHandle_9() { return &___safeHandle_9; } inline void set_safeHandle_9(SafeFileHandle_tC77A9860A03C31DC46AD2C08EC10EACDC3B7A662 * value) { ___safeHandle_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___safeHandle_9), (void*)value); } inline static int32_t get_offset_of_isExposed_10() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___isExposed_10)); } inline bool get_isExposed_10() const { return ___isExposed_10; } inline bool* get_address_of_isExposed_10() { return &___isExposed_10; } inline void set_isExposed_10(bool value) { ___isExposed_10 = value; } inline static int32_t get_offset_of_append_startpos_11() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___append_startpos_11)); } inline int64_t get_append_startpos_11() const { return ___append_startpos_11; } inline int64_t* get_address_of_append_startpos_11() { return &___append_startpos_11; } inline void set_append_startpos_11(int64_t value) { ___append_startpos_11 = value; } inline static int32_t get_offset_of_access_12() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___access_12)); } inline int32_t get_access_12() const { return ___access_12; } inline int32_t* get_address_of_access_12() { return &___access_12; } inline void set_access_12(int32_t value) { ___access_12 = value; } inline static int32_t get_offset_of_owner_13() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___owner_13)); } inline bool get_owner_13() const { return ___owner_13; } inline bool* get_address_of_owner_13() { return &___owner_13; } inline void set_owner_13(bool value) { ___owner_13 = value; } inline static int32_t get_offset_of_async_14() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___async_14)); } inline bool get_async_14() const { return ___async_14; } inline bool* get_address_of_async_14() { return &___async_14; } inline void set_async_14(bool value) { ___async_14 = value; } inline static int32_t get_offset_of_canseek_15() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___canseek_15)); } inline bool get_canseek_15() const { return ___canseek_15; } inline bool* get_address_of_canseek_15() { return &___canseek_15; } inline void set_canseek_15(bool value) { ___canseek_15 = value; } inline static int32_t get_offset_of_anonymous_16() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___anonymous_16)); } inline bool get_anonymous_16() const { return ___anonymous_16; } inline bool* get_address_of_anonymous_16() { return &___anonymous_16; } inline void set_anonymous_16(bool value) { ___anonymous_16 = value; } inline static int32_t get_offset_of_buf_dirty_17() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___buf_dirty_17)); } inline bool get_buf_dirty_17() const { return ___buf_dirty_17; } inline bool* get_address_of_buf_dirty_17() { return &___buf_dirty_17; } inline void set_buf_dirty_17(bool value) { ___buf_dirty_17 = value; } inline static int32_t get_offset_of_buf_size_18() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___buf_size_18)); } inline int32_t get_buf_size_18() const { return ___buf_size_18; } inline int32_t* get_address_of_buf_size_18() { return &___buf_size_18; } inline void set_buf_size_18(int32_t value) { ___buf_size_18 = value; } inline static int32_t get_offset_of_buf_length_19() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___buf_length_19)); } inline int32_t get_buf_length_19() const { return ___buf_length_19; } inline int32_t* get_address_of_buf_length_19() { return &___buf_length_19; } inline void set_buf_length_19(int32_t value) { ___buf_length_19 = value; } inline static int32_t get_offset_of_buf_offset_20() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___buf_offset_20)); } inline int32_t get_buf_offset_20() const { return ___buf_offset_20; } inline int32_t* get_address_of_buf_offset_20() { return &___buf_offset_20; } inline void set_buf_offset_20(int32_t value) { ___buf_offset_20 = value; } inline static int32_t get_offset_of_buf_start_21() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___buf_start_21)); } inline int64_t get_buf_start_21() const { return ___buf_start_21; } inline int64_t* get_address_of_buf_start_21() { return &___buf_start_21; } inline void set_buf_start_21(int64_t value) { ___buf_start_21 = value; } }; // UnityEngine.InputSystem.InputBinding struct InputBinding_t95FC40907C92DDB8F118F0062BE49C22ADF28FFB { public: // System.String UnityEngine.InputSystem.InputBinding::m_Name String_t* ___m_Name_2; // System.String UnityEngine.InputSystem.InputBinding::m_Id String_t* ___m_Id_3; // System.String UnityEngine.InputSystem.InputBinding::m_Path String_t* ___m_Path_4; // System.String UnityEngine.InputSystem.InputBinding::m_Interactions String_t* ___m_Interactions_5; // System.String UnityEngine.InputSystem.InputBinding::m_Processors String_t* ___m_Processors_6; // System.String UnityEngine.InputSystem.InputBinding::m_Groups String_t* ___m_Groups_7; // System.String UnityEngine.InputSystem.InputBinding::m_Action String_t* ___m_Action_8; // UnityEngine.InputSystem.InputBinding/Flags UnityEngine.InputSystem.InputBinding::m_Flags int32_t ___m_Flags_9; // System.String UnityEngine.InputSystem.InputBinding::m_OverridePath String_t* ___m_OverridePath_10; // System.String UnityEngine.InputSystem.InputBinding::m_OverrideInteractions String_t* ___m_OverrideInteractions_11; // System.String UnityEngine.InputSystem.InputBinding::m_OverrideProcessors String_t* ___m_OverrideProcessors_12; public: inline static int32_t get_offset_of_m_Name_2() { return static_cast(offsetof(InputBinding_t95FC40907C92DDB8F118F0062BE49C22ADF28FFB, ___m_Name_2)); } inline String_t* get_m_Name_2() const { return ___m_Name_2; } inline String_t** get_address_of_m_Name_2() { return &___m_Name_2; } inline void set_m_Name_2(String_t* value) { ___m_Name_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Name_2), (void*)value); } inline static int32_t get_offset_of_m_Id_3() { return static_cast(offsetof(InputBinding_t95FC40907C92DDB8F118F0062BE49C22ADF28FFB, ___m_Id_3)); } inline String_t* get_m_Id_3() const { return ___m_Id_3; } inline String_t** get_address_of_m_Id_3() { return &___m_Id_3; } inline void set_m_Id_3(String_t* value) { ___m_Id_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Id_3), (void*)value); } inline static int32_t get_offset_of_m_Path_4() { return static_cast(offsetof(InputBinding_t95FC40907C92DDB8F118F0062BE49C22ADF28FFB, ___m_Path_4)); } inline String_t* get_m_Path_4() const { return ___m_Path_4; } inline String_t** get_address_of_m_Path_4() { return &___m_Path_4; } inline void set_m_Path_4(String_t* value) { ___m_Path_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Path_4), (void*)value); } inline static int32_t get_offset_of_m_Interactions_5() { return static_cast(offsetof(InputBinding_t95FC40907C92DDB8F118F0062BE49C22ADF28FFB, ___m_Interactions_5)); } inline String_t* get_m_Interactions_5() const { return ___m_Interactions_5; } inline String_t** get_address_of_m_Interactions_5() { return &___m_Interactions_5; } inline void set_m_Interactions_5(String_t* value) { ___m_Interactions_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Interactions_5), (void*)value); } inline static int32_t get_offset_of_m_Processors_6() { return static_cast(offsetof(InputBinding_t95FC40907C92DDB8F118F0062BE49C22ADF28FFB, ___m_Processors_6)); } inline String_t* get_m_Processors_6() const { return ___m_Processors_6; } inline String_t** get_address_of_m_Processors_6() { return &___m_Processors_6; } inline void set_m_Processors_6(String_t* value) { ___m_Processors_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Processors_6), (void*)value); } inline static int32_t get_offset_of_m_Groups_7() { return static_cast(offsetof(InputBinding_t95FC40907C92DDB8F118F0062BE49C22ADF28FFB, ___m_Groups_7)); } inline String_t* get_m_Groups_7() const { return ___m_Groups_7; } inline String_t** get_address_of_m_Groups_7() { return &___m_Groups_7; } inline void set_m_Groups_7(String_t* value) { ___m_Groups_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Groups_7), (void*)value); } inline static int32_t get_offset_of_m_Action_8() { return static_cast(offsetof(InputBinding_t95FC40907C92DDB8F118F0062BE49C22ADF28FFB, ___m_Action_8)); } inline String_t* get_m_Action_8() const { return ___m_Action_8; } inline String_t** get_address_of_m_Action_8() { return &___m_Action_8; } inline void set_m_Action_8(String_t* value) { ___m_Action_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Action_8), (void*)value); } inline static int32_t get_offset_of_m_Flags_9() { return static_cast(offsetof(InputBinding_t95FC40907C92DDB8F118F0062BE49C22ADF28FFB, ___m_Flags_9)); } inline int32_t get_m_Flags_9() const { return ___m_Flags_9; } inline int32_t* get_address_of_m_Flags_9() { return &___m_Flags_9; } inline void set_m_Flags_9(int32_t value) { ___m_Flags_9 = value; } inline static int32_t get_offset_of_m_OverridePath_10() { return static_cast(offsetof(InputBinding_t95FC40907C92DDB8F118F0062BE49C22ADF28FFB, ___m_OverridePath_10)); } inline String_t* get_m_OverridePath_10() const { return ___m_OverridePath_10; } inline String_t** get_address_of_m_OverridePath_10() { return &___m_OverridePath_10; } inline void set_m_OverridePath_10(String_t* value) { ___m_OverridePath_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OverridePath_10), (void*)value); } inline static int32_t get_offset_of_m_OverrideInteractions_11() { return static_cast(offsetof(InputBinding_t95FC40907C92DDB8F118F0062BE49C22ADF28FFB, ___m_OverrideInteractions_11)); } inline String_t* get_m_OverrideInteractions_11() const { return ___m_OverrideInteractions_11; } inline String_t** get_address_of_m_OverrideInteractions_11() { return &___m_OverrideInteractions_11; } inline void set_m_OverrideInteractions_11(String_t* value) { ___m_OverrideInteractions_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OverrideInteractions_11), (void*)value); } inline static int32_t get_offset_of_m_OverrideProcessors_12() { return static_cast(offsetof(InputBinding_t95FC40907C92DDB8F118F0062BE49C22ADF28FFB, ___m_OverrideProcessors_12)); } inline String_t* get_m_OverrideProcessors_12() const { return ___m_OverrideProcessors_12; } inline String_t** get_address_of_m_OverrideProcessors_12() { return &___m_OverrideProcessors_12; } inline void set_m_OverrideProcessors_12(String_t* value) { ___m_OverrideProcessors_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OverrideProcessors_12), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.InputBinding struct InputBinding_t95FC40907C92DDB8F118F0062BE49C22ADF28FFB_marshaled_pinvoke { char* ___m_Name_2; char* ___m_Id_3; char* ___m_Path_4; char* ___m_Interactions_5; char* ___m_Processors_6; char* ___m_Groups_7; char* ___m_Action_8; int32_t ___m_Flags_9; char* ___m_OverridePath_10; char* ___m_OverrideInteractions_11; char* ___m_OverrideProcessors_12; }; // Native definition for COM marshalling of UnityEngine.InputSystem.InputBinding struct InputBinding_t95FC40907C92DDB8F118F0062BE49C22ADF28FFB_marshaled_com { Il2CppChar* ___m_Name_2; Il2CppChar* ___m_Id_3; Il2CppChar* ___m_Path_4; Il2CppChar* ___m_Interactions_5; Il2CppChar* ___m_Processors_6; Il2CppChar* ___m_Groups_7; Il2CppChar* ___m_Action_8; int32_t ___m_Flags_9; Il2CppChar* ___m_OverridePath_10; Il2CppChar* ___m_OverrideInteractions_11; Il2CppChar* ___m_OverrideProcessors_12; }; // UnityEngine.InputSystem.Layouts.InputControlLayout struct InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741 : public RuntimeObject { public: // UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputControlLayout::m_Name InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___m_Name_2; // System.Type UnityEngine.InputSystem.Layouts.InputControlLayout::m_Type Type_t * ___m_Type_3; // UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputControlLayout::m_Variants InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___m_Variants_4; // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.Layouts.InputControlLayout::m_StateFormat FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___m_StateFormat_5; // System.Int32 UnityEngine.InputSystem.Layouts.InputControlLayout::m_StateSizeInBytes int32_t ___m_StateSizeInBytes_6; // System.Nullable`1 UnityEngine.InputSystem.Layouts.InputControlLayout::m_UpdateBeforeRender Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___m_UpdateBeforeRender_7; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Layouts.InputControlLayout::m_BaseLayouts InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB ___m_BaseLayouts_8; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.Layouts.InputControlLayout::m_AppliedOverrides InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB ___m_AppliedOverrides_9; // UnityEngine.InputSystem.Utilities.InternedString[] UnityEngine.InputSystem.Layouts.InputControlLayout::m_CommonUsages InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* ___m_CommonUsages_10; // UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem[] UnityEngine.InputSystem.Layouts.InputControlLayout::m_Controls ControlItemU5BU5D_t534859CA6A52E2EC9DDDCA52FE280E8D5CD598DB* ___m_Controls_11; // System.String UnityEngine.InputSystem.Layouts.InputControlLayout::m_DisplayName String_t* ___m_DisplayName_12; // System.String UnityEngine.InputSystem.Layouts.InputControlLayout::m_Description String_t* ___m_Description_13; // UnityEngine.InputSystem.Layouts.InputControlLayout/Flags UnityEngine.InputSystem.Layouts.InputControlLayout::m_Flags int32_t ___m_Flags_14; public: inline static int32_t get_offset_of_m_Name_2() { return static_cast(offsetof(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741, ___m_Name_2)); } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED get_m_Name_2() const { return ___m_Name_2; } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * get_address_of_m_Name_2() { return &___m_Name_2; } inline void set_m_Name_2(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED value) { ___m_Name_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Name_2))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Name_2))->___m_StringLowerCase_1), (void*)NULL); #endif } inline static int32_t get_offset_of_m_Type_3() { return static_cast(offsetof(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741, ___m_Type_3)); } inline Type_t * get_m_Type_3() const { return ___m_Type_3; } inline Type_t ** get_address_of_m_Type_3() { return &___m_Type_3; } inline void set_m_Type_3(Type_t * value) { ___m_Type_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Type_3), (void*)value); } inline static int32_t get_offset_of_m_Variants_4() { return static_cast(offsetof(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741, ___m_Variants_4)); } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED get_m_Variants_4() const { return ___m_Variants_4; } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * get_address_of_m_Variants_4() { return &___m_Variants_4; } inline void set_m_Variants_4(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED value) { ___m_Variants_4 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Variants_4))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Variants_4))->___m_StringLowerCase_1), (void*)NULL); #endif } inline static int32_t get_offset_of_m_StateFormat_5() { return static_cast(offsetof(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741, ___m_StateFormat_5)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_m_StateFormat_5() const { return ___m_StateFormat_5; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_m_StateFormat_5() { return &___m_StateFormat_5; } inline void set_m_StateFormat_5(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___m_StateFormat_5 = value; } inline static int32_t get_offset_of_m_StateSizeInBytes_6() { return static_cast(offsetof(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741, ___m_StateSizeInBytes_6)); } inline int32_t get_m_StateSizeInBytes_6() const { return ___m_StateSizeInBytes_6; } inline int32_t* get_address_of_m_StateSizeInBytes_6() { return &___m_StateSizeInBytes_6; } inline void set_m_StateSizeInBytes_6(int32_t value) { ___m_StateSizeInBytes_6 = value; } inline static int32_t get_offset_of_m_UpdateBeforeRender_7() { return static_cast(offsetof(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741, ___m_UpdateBeforeRender_7)); } inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 get_m_UpdateBeforeRender_7() const { return ___m_UpdateBeforeRender_7; } inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * get_address_of_m_UpdateBeforeRender_7() { return &___m_UpdateBeforeRender_7; } inline void set_m_UpdateBeforeRender_7(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 value) { ___m_UpdateBeforeRender_7 = value; } inline static int32_t get_offset_of_m_BaseLayouts_8() { return static_cast(offsetof(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741, ___m_BaseLayouts_8)); } inline InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB get_m_BaseLayouts_8() const { return ___m_BaseLayouts_8; } inline InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB * get_address_of_m_BaseLayouts_8() { return &___m_BaseLayouts_8; } inline void set_m_BaseLayouts_8(InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB value) { ___m_BaseLayouts_8 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_BaseLayouts_8))->___firstValue_1))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_BaseLayouts_8))->___firstValue_1))->___m_StringLowerCase_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_BaseLayouts_8))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_AppliedOverrides_9() { return static_cast(offsetof(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741, ___m_AppliedOverrides_9)); } inline InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB get_m_AppliedOverrides_9() const { return ___m_AppliedOverrides_9; } inline InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB * get_address_of_m_AppliedOverrides_9() { return &___m_AppliedOverrides_9; } inline void set_m_AppliedOverrides_9(InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB value) { ___m_AppliedOverrides_9 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_AppliedOverrides_9))->___firstValue_1))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_AppliedOverrides_9))->___firstValue_1))->___m_StringLowerCase_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_AppliedOverrides_9))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_CommonUsages_10() { return static_cast(offsetof(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741, ___m_CommonUsages_10)); } inline InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* get_m_CommonUsages_10() const { return ___m_CommonUsages_10; } inline InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4** get_address_of_m_CommonUsages_10() { return &___m_CommonUsages_10; } inline void set_m_CommonUsages_10(InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* value) { ___m_CommonUsages_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CommonUsages_10), (void*)value); } inline static int32_t get_offset_of_m_Controls_11() { return static_cast(offsetof(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741, ___m_Controls_11)); } inline ControlItemU5BU5D_t534859CA6A52E2EC9DDDCA52FE280E8D5CD598DB* get_m_Controls_11() const { return ___m_Controls_11; } inline ControlItemU5BU5D_t534859CA6A52E2EC9DDDCA52FE280E8D5CD598DB** get_address_of_m_Controls_11() { return &___m_Controls_11; } inline void set_m_Controls_11(ControlItemU5BU5D_t534859CA6A52E2EC9DDDCA52FE280E8D5CD598DB* value) { ___m_Controls_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Controls_11), (void*)value); } inline static int32_t get_offset_of_m_DisplayName_12() { return static_cast(offsetof(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741, ___m_DisplayName_12)); } inline String_t* get_m_DisplayName_12() const { return ___m_DisplayName_12; } inline String_t** get_address_of_m_DisplayName_12() { return &___m_DisplayName_12; } inline void set_m_DisplayName_12(String_t* value) { ___m_DisplayName_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DisplayName_12), (void*)value); } inline static int32_t get_offset_of_m_Description_13() { return static_cast(offsetof(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741, ___m_Description_13)); } inline String_t* get_m_Description_13() const { return ___m_Description_13; } inline String_t** get_address_of_m_Description_13() { return &___m_Description_13; } inline void set_m_Description_13(String_t* value) { ___m_Description_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Description_13), (void*)value); } inline static int32_t get_offset_of_m_Flags_14() { return static_cast(offsetof(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741, ___m_Flags_14)); } inline int32_t get_m_Flags_14() const { return ___m_Flags_14; } inline int32_t* get_address_of_m_Flags_14() { return &___m_Flags_14; } inline void set_m_Flags_14(int32_t value) { ___m_Flags_14 = value; } }; // UnityEngine.InputSystem.LowLevel.InputEventTrace struct InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 : public RuntimeObject { public: // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_ChangeCounter int32_t ___m_ChangeCounter_1; // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace::m_Enabled bool ___m_Enabled_2; // System.Func`3 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_OnFilterEvent Func_3_tD99A6009701E72566BE785B8109E9B5773975D91 * ___m_OnFilterEvent_3; // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_DeviceId int32_t ___m_DeviceId_4; // UnityEngine.InputSystem.Utilities.CallbackArray`1> UnityEngine.InputSystem.LowLevel.InputEventTrace::m_EventListeners CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008 ___m_EventListeners_5; // System.Int64 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_EventBufferSize int64_t ___m_EventBufferSize_6; // System.Int64 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_MaxEventBufferSize int64_t ___m_MaxEventBufferSize_7; // System.Int64 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_GrowIncrementSize int64_t ___m_GrowIncrementSize_8; // System.Int64 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_EventCount int64_t ___m_EventCount_9; // System.Int64 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_EventSizeInBytes int64_t ___m_EventSizeInBytes_10; // System.UInt64 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_EventBufferStorage uint64_t ___m_EventBufferStorage_11; // System.UInt64 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_EventBufferHeadStorage uint64_t ___m_EventBufferHeadStorage_12; // System.UInt64 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_EventBufferTailStorage uint64_t ___m_EventBufferTailStorage_13; // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace::m_HasWrapped bool ___m_HasWrapped_14; // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace::m_RecordFrameMarkers bool ___m_RecordFrameMarkers_15; // UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo[] UnityEngine.InputSystem.LowLevel.InputEventTrace::m_DeviceInfos DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81* ___m_DeviceInfos_16; public: inline static int32_t get_offset_of_m_ChangeCounter_1() { return static_cast(offsetof(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646, ___m_ChangeCounter_1)); } inline int32_t get_m_ChangeCounter_1() const { return ___m_ChangeCounter_1; } inline int32_t* get_address_of_m_ChangeCounter_1() { return &___m_ChangeCounter_1; } inline void set_m_ChangeCounter_1(int32_t value) { ___m_ChangeCounter_1 = value; } inline static int32_t get_offset_of_m_Enabled_2() { return static_cast(offsetof(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646, ___m_Enabled_2)); } inline bool get_m_Enabled_2() const { return ___m_Enabled_2; } inline bool* get_address_of_m_Enabled_2() { return &___m_Enabled_2; } inline void set_m_Enabled_2(bool value) { ___m_Enabled_2 = value; } inline static int32_t get_offset_of_m_OnFilterEvent_3() { return static_cast(offsetof(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646, ___m_OnFilterEvent_3)); } inline Func_3_tD99A6009701E72566BE785B8109E9B5773975D91 * get_m_OnFilterEvent_3() const { return ___m_OnFilterEvent_3; } inline Func_3_tD99A6009701E72566BE785B8109E9B5773975D91 ** get_address_of_m_OnFilterEvent_3() { return &___m_OnFilterEvent_3; } inline void set_m_OnFilterEvent_3(Func_3_tD99A6009701E72566BE785B8109E9B5773975D91 * value) { ___m_OnFilterEvent_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnFilterEvent_3), (void*)value); } inline static int32_t get_offset_of_m_DeviceId_4() { return static_cast(offsetof(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646, ___m_DeviceId_4)); } inline int32_t get_m_DeviceId_4() const { return ___m_DeviceId_4; } inline int32_t* get_address_of_m_DeviceId_4() { return &___m_DeviceId_4; } inline void set_m_DeviceId_4(int32_t value) { ___m_DeviceId_4 = value; } inline static int32_t get_offset_of_m_EventListeners_5() { return static_cast(offsetof(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646, ___m_EventListeners_5)); } inline CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008 get_m_EventListeners_5() const { return ___m_EventListeners_5; } inline CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008 * get_address_of_m_EventListeners_5() { return &___m_EventListeners_5; } inline void set_m_EventListeners_5(CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008 value) { ___m_EventListeners_5 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_EventListeners_5))->___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_EventListeners_5))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_EventListeners_5))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_EventListeners_5))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_EventListeners_5))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_EventListeners_5))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_EventBufferSize_6() { return static_cast(offsetof(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646, ___m_EventBufferSize_6)); } inline int64_t get_m_EventBufferSize_6() const { return ___m_EventBufferSize_6; } inline int64_t* get_address_of_m_EventBufferSize_6() { return &___m_EventBufferSize_6; } inline void set_m_EventBufferSize_6(int64_t value) { ___m_EventBufferSize_6 = value; } inline static int32_t get_offset_of_m_MaxEventBufferSize_7() { return static_cast(offsetof(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646, ___m_MaxEventBufferSize_7)); } inline int64_t get_m_MaxEventBufferSize_7() const { return ___m_MaxEventBufferSize_7; } inline int64_t* get_address_of_m_MaxEventBufferSize_7() { return &___m_MaxEventBufferSize_7; } inline void set_m_MaxEventBufferSize_7(int64_t value) { ___m_MaxEventBufferSize_7 = value; } inline static int32_t get_offset_of_m_GrowIncrementSize_8() { return static_cast(offsetof(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646, ___m_GrowIncrementSize_8)); } inline int64_t get_m_GrowIncrementSize_8() const { return ___m_GrowIncrementSize_8; } inline int64_t* get_address_of_m_GrowIncrementSize_8() { return &___m_GrowIncrementSize_8; } inline void set_m_GrowIncrementSize_8(int64_t value) { ___m_GrowIncrementSize_8 = value; } inline static int32_t get_offset_of_m_EventCount_9() { return static_cast(offsetof(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646, ___m_EventCount_9)); } inline int64_t get_m_EventCount_9() const { return ___m_EventCount_9; } inline int64_t* get_address_of_m_EventCount_9() { return &___m_EventCount_9; } inline void set_m_EventCount_9(int64_t value) { ___m_EventCount_9 = value; } inline static int32_t get_offset_of_m_EventSizeInBytes_10() { return static_cast(offsetof(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646, ___m_EventSizeInBytes_10)); } inline int64_t get_m_EventSizeInBytes_10() const { return ___m_EventSizeInBytes_10; } inline int64_t* get_address_of_m_EventSizeInBytes_10() { return &___m_EventSizeInBytes_10; } inline void set_m_EventSizeInBytes_10(int64_t value) { ___m_EventSizeInBytes_10 = value; } inline static int32_t get_offset_of_m_EventBufferStorage_11() { return static_cast(offsetof(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646, ___m_EventBufferStorage_11)); } inline uint64_t get_m_EventBufferStorage_11() const { return ___m_EventBufferStorage_11; } inline uint64_t* get_address_of_m_EventBufferStorage_11() { return &___m_EventBufferStorage_11; } inline void set_m_EventBufferStorage_11(uint64_t value) { ___m_EventBufferStorage_11 = value; } inline static int32_t get_offset_of_m_EventBufferHeadStorage_12() { return static_cast(offsetof(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646, ___m_EventBufferHeadStorage_12)); } inline uint64_t get_m_EventBufferHeadStorage_12() const { return ___m_EventBufferHeadStorage_12; } inline uint64_t* get_address_of_m_EventBufferHeadStorage_12() { return &___m_EventBufferHeadStorage_12; } inline void set_m_EventBufferHeadStorage_12(uint64_t value) { ___m_EventBufferHeadStorage_12 = value; } inline static int32_t get_offset_of_m_EventBufferTailStorage_13() { return static_cast(offsetof(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646, ___m_EventBufferTailStorage_13)); } inline uint64_t get_m_EventBufferTailStorage_13() const { return ___m_EventBufferTailStorage_13; } inline uint64_t* get_address_of_m_EventBufferTailStorage_13() { return &___m_EventBufferTailStorage_13; } inline void set_m_EventBufferTailStorage_13(uint64_t value) { ___m_EventBufferTailStorage_13 = value; } inline static int32_t get_offset_of_m_HasWrapped_14() { return static_cast(offsetof(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646, ___m_HasWrapped_14)); } inline bool get_m_HasWrapped_14() const { return ___m_HasWrapped_14; } inline bool* get_address_of_m_HasWrapped_14() { return &___m_HasWrapped_14; } inline void set_m_HasWrapped_14(bool value) { ___m_HasWrapped_14 = value; } inline static int32_t get_offset_of_m_RecordFrameMarkers_15() { return static_cast(offsetof(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646, ___m_RecordFrameMarkers_15)); } inline bool get_m_RecordFrameMarkers_15() const { return ___m_RecordFrameMarkers_15; } inline bool* get_address_of_m_RecordFrameMarkers_15() { return &___m_RecordFrameMarkers_15; } inline void set_m_RecordFrameMarkers_15(bool value) { ___m_RecordFrameMarkers_15 = value; } inline static int32_t get_offset_of_m_DeviceInfos_16() { return static_cast(offsetof(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646, ___m_DeviceInfos_16)); } inline DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81* get_m_DeviceInfos_16() const { return ___m_DeviceInfos_16; } inline DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81** get_address_of_m_DeviceInfos_16() { return &___m_DeviceInfos_16; } inline void set_m_DeviceInfos_16(DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81* value) { ___m_DeviceInfos_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DeviceInfos_16), (void*)value); } }; // UnityEngine.InputSystem.InputInteractionContext struct InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 { public: // UnityEngine.InputSystem.InputActionState UnityEngine.InputSystem.InputInteractionContext::m_State InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9 * ___m_State_0; // UnityEngine.InputSystem.InputInteractionContext/Flags UnityEngine.InputSystem.InputInteractionContext::m_Flags int32_t ___m_Flags_1; // UnityEngine.InputSystem.InputActionState/TriggerState UnityEngine.InputSystem.InputInteractionContext::m_TriggerState TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 ___m_TriggerState_2; public: inline static int32_t get_offset_of_m_State_0() { return static_cast(offsetof(InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909, ___m_State_0)); } inline InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9 * get_m_State_0() const { return ___m_State_0; } inline InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9 ** get_address_of_m_State_0() { return &___m_State_0; } inline void set_m_State_0(InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9 * value) { ___m_State_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_State_0), (void*)value); } inline static int32_t get_offset_of_m_Flags_1() { return static_cast(offsetof(InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909, ___m_Flags_1)); } inline int32_t get_m_Flags_1() const { return ___m_Flags_1; } inline int32_t* get_address_of_m_Flags_1() { return &___m_Flags_1; } inline void set_m_Flags_1(int32_t value) { ___m_Flags_1 = value; } inline static int32_t get_offset_of_m_TriggerState_2() { return static_cast(offsetof(InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909, ___m_TriggerState_2)); } inline TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 get_m_TriggerState_2() const { return ___m_TriggerState_2; } inline TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * get_address_of_m_TriggerState_2() { return &___m_TriggerState_2; } inline void set_m_TriggerState_2(TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 value) { ___m_TriggerState_2 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.InputInteractionContext struct InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909_marshaled_pinvoke { InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9 * ___m_State_0; int32_t ___m_Flags_1; TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 ___m_TriggerState_2; }; // Native definition for COM marshalling of UnityEngine.InputSystem.InputInteractionContext struct InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909_marshaled_com { InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9 * ___m_State_0; int32_t ___m_Flags_1; TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 ___m_TriggerState_2; }; // UnityEngine.InputSystem.LowLevel.InputUpdate struct InputUpdate_t16159151984D134E806E18584FE12416F7A6DA57 : public RuntimeObject { public: public: }; // System.MulticastDelegate struct MulticastDelegate_t : public Delegate_t { public: // System.Delegate[] System.MulticastDelegate::delegates DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* ___delegates_11; public: inline static int32_t get_offset_of_delegates_11() { return static_cast(offsetof(MulticastDelegate_t, ___delegates_11)); } inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* get_delegates_11() const { return ___delegates_11; } inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8** get_address_of_delegates_11() { return &___delegates_11; } inline void set_delegates_11(DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* value) { ___delegates_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value); } }; // Native definition for P/Invoke marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke { Delegate_t_marshaled_pinvoke** ___delegates_11; }; // Native definition for COM marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com { Delegate_t_marshaled_com** ___delegates_11; }; // UnityEngineInternal.Input.NativeInputEvent struct NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD { public: union { struct { union { #pragma pack(push, tp, 1) struct { // UnityEngineInternal.Input.NativeInputEventType UnityEngineInternal.Input.NativeInputEvent::type int32_t ___type_1; }; #pragma pack(pop, tp) #pragma pack(push, tp, 1) struct { int32_t ___type_1_forAlignmentOnly; }; #pragma pack(pop, tp) #pragma pack(push, tp, 1) struct { char ___sizeInBytes_2_OffsetPadding[4]; // System.UInt16 UnityEngineInternal.Input.NativeInputEvent::sizeInBytes uint16_t ___sizeInBytes_2; }; #pragma pack(pop, tp) #pragma pack(push, tp, 1) struct { char ___sizeInBytes_2_OffsetPadding_forAlignmentOnly[4]; uint16_t ___sizeInBytes_2_forAlignmentOnly; }; #pragma pack(pop, tp) #pragma pack(push, tp, 1) struct { char ___deviceId_3_OffsetPadding[6]; // System.UInt16 UnityEngineInternal.Input.NativeInputEvent::deviceId uint16_t ___deviceId_3; }; #pragma pack(pop, tp) #pragma pack(push, tp, 1) struct { char ___deviceId_3_OffsetPadding_forAlignmentOnly[6]; uint16_t ___deviceId_3_forAlignmentOnly; }; #pragma pack(pop, tp) #pragma pack(push, tp, 1) struct { char ___time_4_OffsetPadding[8]; // System.Double UnityEngineInternal.Input.NativeInputEvent::time double ___time_4; }; #pragma pack(pop, tp) #pragma pack(push, tp, 1) struct { char ___time_4_OffsetPadding_forAlignmentOnly[8]; double ___time_4_forAlignmentOnly; }; #pragma pack(pop, tp) #pragma pack(push, tp, 1) struct { char ___eventId_5_OffsetPadding[16]; // System.Int32 UnityEngineInternal.Input.NativeInputEvent::eventId int32_t ___eventId_5; }; #pragma pack(pop, tp) #pragma pack(push, tp, 1) struct { char ___eventId_5_OffsetPadding_forAlignmentOnly[16]; int32_t ___eventId_5_forAlignmentOnly; }; #pragma pack(pop, tp) }; }; uint8_t NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD__padding[20]; }; public: inline static int32_t get_offset_of_type_1() { return static_cast(offsetof(NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD, ___type_1)); } inline int32_t get_type_1() const { return ___type_1; } inline int32_t* get_address_of_type_1() { return &___type_1; } inline void set_type_1(int32_t value) { ___type_1 = value; } inline static int32_t get_offset_of_sizeInBytes_2() { return static_cast(offsetof(NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD, ___sizeInBytes_2)); } inline uint16_t get_sizeInBytes_2() const { return ___sizeInBytes_2; } inline uint16_t* get_address_of_sizeInBytes_2() { return &___sizeInBytes_2; } inline void set_sizeInBytes_2(uint16_t value) { ___sizeInBytes_2 = value; } inline static int32_t get_offset_of_deviceId_3() { return static_cast(offsetof(NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD, ___deviceId_3)); } inline uint16_t get_deviceId_3() const { return ___deviceId_3; } inline uint16_t* get_address_of_deviceId_3() { return &___deviceId_3; } inline void set_deviceId_3(uint16_t value) { ___deviceId_3 = value; } inline static int32_t get_offset_of_time_4() { return static_cast(offsetof(NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD, ___time_4)); } inline double get_time_4() const { return ___time_4; } inline double* get_address_of_time_4() { return &___time_4; } inline void set_time_4(double value) { ___time_4 = value; } inline static int32_t get_offset_of_eventId_5() { return static_cast(offsetof(NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD, ___eventId_5)); } inline int32_t get_eventId_5() const { return ___eventId_5; } inline int32_t* get_address_of_eventId_5() { return &___eventId_5; } inline void set_eventId_5(int32_t value) { ___eventId_5 = value; } }; // UnityEngine.InputSystem.Utilities.PrimitiveValue struct PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8 { public: union { #pragma pack(push, tp, 1) struct { // System.TypeCode UnityEngine.InputSystem.Utilities.PrimitiveValue::m_Type int32_t ___m_Type_0; }; #pragma pack(pop, tp) struct { int32_t ___m_Type_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_BoolValue_1_OffsetPadding[4]; // System.Boolean UnityEngine.InputSystem.Utilities.PrimitiveValue::m_BoolValue bool ___m_BoolValue_1; }; #pragma pack(pop, tp) struct { char ___m_BoolValue_1_OffsetPadding_forAlignmentOnly[4]; bool ___m_BoolValue_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_CharValue_2_OffsetPadding[4]; // System.Char UnityEngine.InputSystem.Utilities.PrimitiveValue::m_CharValue Il2CppChar ___m_CharValue_2; }; #pragma pack(pop, tp) struct { char ___m_CharValue_2_OffsetPadding_forAlignmentOnly[4]; Il2CppChar ___m_CharValue_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_ByteValue_3_OffsetPadding[4]; // System.Byte UnityEngine.InputSystem.Utilities.PrimitiveValue::m_ByteValue uint8_t ___m_ByteValue_3; }; #pragma pack(pop, tp) struct { char ___m_ByteValue_3_OffsetPadding_forAlignmentOnly[4]; uint8_t ___m_ByteValue_3_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_SByteValue_4_OffsetPadding[4]; // System.SByte UnityEngine.InputSystem.Utilities.PrimitiveValue::m_SByteValue int8_t ___m_SByteValue_4; }; #pragma pack(pop, tp) struct { char ___m_SByteValue_4_OffsetPadding_forAlignmentOnly[4]; int8_t ___m_SByteValue_4_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_ShortValue_5_OffsetPadding[4]; // System.Int16 UnityEngine.InputSystem.Utilities.PrimitiveValue::m_ShortValue int16_t ___m_ShortValue_5; }; #pragma pack(pop, tp) struct { char ___m_ShortValue_5_OffsetPadding_forAlignmentOnly[4]; int16_t ___m_ShortValue_5_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_UShortValue_6_OffsetPadding[4]; // System.UInt16 UnityEngine.InputSystem.Utilities.PrimitiveValue::m_UShortValue uint16_t ___m_UShortValue_6; }; #pragma pack(pop, tp) struct { char ___m_UShortValue_6_OffsetPadding_forAlignmentOnly[4]; uint16_t ___m_UShortValue_6_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_IntValue_7_OffsetPadding[4]; // System.Int32 UnityEngine.InputSystem.Utilities.PrimitiveValue::m_IntValue int32_t ___m_IntValue_7; }; #pragma pack(pop, tp) struct { char ___m_IntValue_7_OffsetPadding_forAlignmentOnly[4]; int32_t ___m_IntValue_7_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_UIntValue_8_OffsetPadding[4]; // System.UInt32 UnityEngine.InputSystem.Utilities.PrimitiveValue::m_UIntValue uint32_t ___m_UIntValue_8; }; #pragma pack(pop, tp) struct { char ___m_UIntValue_8_OffsetPadding_forAlignmentOnly[4]; uint32_t ___m_UIntValue_8_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_LongValue_9_OffsetPadding[4]; // System.Int64 UnityEngine.InputSystem.Utilities.PrimitiveValue::m_LongValue int64_t ___m_LongValue_9; }; #pragma pack(pop, tp) struct { char ___m_LongValue_9_OffsetPadding_forAlignmentOnly[4]; int64_t ___m_LongValue_9_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_ULongValue_10_OffsetPadding[4]; // System.UInt64 UnityEngine.InputSystem.Utilities.PrimitiveValue::m_ULongValue uint64_t ___m_ULongValue_10; }; #pragma pack(pop, tp) struct { char ___m_ULongValue_10_OffsetPadding_forAlignmentOnly[4]; uint64_t ___m_ULongValue_10_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_FloatValue_11_OffsetPadding[4]; // System.Single UnityEngine.InputSystem.Utilities.PrimitiveValue::m_FloatValue float ___m_FloatValue_11; }; #pragma pack(pop, tp) struct { char ___m_FloatValue_11_OffsetPadding_forAlignmentOnly[4]; float ___m_FloatValue_11_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_DoubleValue_12_OffsetPadding[4]; // System.Double UnityEngine.InputSystem.Utilities.PrimitiveValue::m_DoubleValue double ___m_DoubleValue_12; }; #pragma pack(pop, tp) struct { char ___m_DoubleValue_12_OffsetPadding_forAlignmentOnly[4]; double ___m_DoubleValue_12_forAlignmentOnly; }; }; public: inline static int32_t get_offset_of_m_Type_0() { return static_cast(offsetof(PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8, ___m_Type_0)); } inline int32_t get_m_Type_0() const { return ___m_Type_0; } inline int32_t* get_address_of_m_Type_0() { return &___m_Type_0; } inline void set_m_Type_0(int32_t value) { ___m_Type_0 = value; } inline static int32_t get_offset_of_m_BoolValue_1() { return static_cast(offsetof(PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8, ___m_BoolValue_1)); } inline bool get_m_BoolValue_1() const { return ___m_BoolValue_1; } inline bool* get_address_of_m_BoolValue_1() { return &___m_BoolValue_1; } inline void set_m_BoolValue_1(bool value) { ___m_BoolValue_1 = value; } inline static int32_t get_offset_of_m_CharValue_2() { return static_cast(offsetof(PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8, ___m_CharValue_2)); } inline Il2CppChar get_m_CharValue_2() const { return ___m_CharValue_2; } inline Il2CppChar* get_address_of_m_CharValue_2() { return &___m_CharValue_2; } inline void set_m_CharValue_2(Il2CppChar value) { ___m_CharValue_2 = value; } inline static int32_t get_offset_of_m_ByteValue_3() { return static_cast(offsetof(PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8, ___m_ByteValue_3)); } inline uint8_t get_m_ByteValue_3() const { return ___m_ByteValue_3; } inline uint8_t* get_address_of_m_ByteValue_3() { return &___m_ByteValue_3; } inline void set_m_ByteValue_3(uint8_t value) { ___m_ByteValue_3 = value; } inline static int32_t get_offset_of_m_SByteValue_4() { return static_cast(offsetof(PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8, ___m_SByteValue_4)); } inline int8_t get_m_SByteValue_4() const { return ___m_SByteValue_4; } inline int8_t* get_address_of_m_SByteValue_4() { return &___m_SByteValue_4; } inline void set_m_SByteValue_4(int8_t value) { ___m_SByteValue_4 = value; } inline static int32_t get_offset_of_m_ShortValue_5() { return static_cast(offsetof(PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8, ___m_ShortValue_5)); } inline int16_t get_m_ShortValue_5() const { return ___m_ShortValue_5; } inline int16_t* get_address_of_m_ShortValue_5() { return &___m_ShortValue_5; } inline void set_m_ShortValue_5(int16_t value) { ___m_ShortValue_5 = value; } inline static int32_t get_offset_of_m_UShortValue_6() { return static_cast(offsetof(PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8, ___m_UShortValue_6)); } inline uint16_t get_m_UShortValue_6() const { return ___m_UShortValue_6; } inline uint16_t* get_address_of_m_UShortValue_6() { return &___m_UShortValue_6; } inline void set_m_UShortValue_6(uint16_t value) { ___m_UShortValue_6 = value; } inline static int32_t get_offset_of_m_IntValue_7() { return static_cast(offsetof(PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8, ___m_IntValue_7)); } inline int32_t get_m_IntValue_7() const { return ___m_IntValue_7; } inline int32_t* get_address_of_m_IntValue_7() { return &___m_IntValue_7; } inline void set_m_IntValue_7(int32_t value) { ___m_IntValue_7 = value; } inline static int32_t get_offset_of_m_UIntValue_8() { return static_cast(offsetof(PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8, ___m_UIntValue_8)); } inline uint32_t get_m_UIntValue_8() const { return ___m_UIntValue_8; } inline uint32_t* get_address_of_m_UIntValue_8() { return &___m_UIntValue_8; } inline void set_m_UIntValue_8(uint32_t value) { ___m_UIntValue_8 = value; } inline static int32_t get_offset_of_m_LongValue_9() { return static_cast(offsetof(PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8, ___m_LongValue_9)); } inline int64_t get_m_LongValue_9() const { return ___m_LongValue_9; } inline int64_t* get_address_of_m_LongValue_9() { return &___m_LongValue_9; } inline void set_m_LongValue_9(int64_t value) { ___m_LongValue_9 = value; } inline static int32_t get_offset_of_m_ULongValue_10() { return static_cast(offsetof(PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8, ___m_ULongValue_10)); } inline uint64_t get_m_ULongValue_10() const { return ___m_ULongValue_10; } inline uint64_t* get_address_of_m_ULongValue_10() { return &___m_ULongValue_10; } inline void set_m_ULongValue_10(uint64_t value) { ___m_ULongValue_10 = value; } inline static int32_t get_offset_of_m_FloatValue_11() { return static_cast(offsetof(PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8, ___m_FloatValue_11)); } inline float get_m_FloatValue_11() const { return ___m_FloatValue_11; } inline float* get_address_of_m_FloatValue_11() { return &___m_FloatValue_11; } inline void set_m_FloatValue_11(float value) { ___m_FloatValue_11 = value; } inline static int32_t get_offset_of_m_DoubleValue_12() { return static_cast(offsetof(PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8, ___m_DoubleValue_12)); } inline double get_m_DoubleValue_12() const { return ___m_DoubleValue_12; } inline double* get_address_of_m_DoubleValue_12() { return &___m_DoubleValue_12; } inline void set_m_DoubleValue_12(double value) { ___m_DoubleValue_12 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Utilities.PrimitiveValue struct PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8_marshaled_pinvoke { union { #pragma pack(push, tp, 1) struct { int32_t ___m_Type_0; }; #pragma pack(pop, tp) struct { int32_t ___m_Type_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_BoolValue_1_OffsetPadding[4]; int32_t ___m_BoolValue_1; }; #pragma pack(pop, tp) struct { char ___m_BoolValue_1_OffsetPadding_forAlignmentOnly[4]; int32_t ___m_BoolValue_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_CharValue_2_OffsetPadding[4]; uint8_t ___m_CharValue_2; }; #pragma pack(pop, tp) struct { char ___m_CharValue_2_OffsetPadding_forAlignmentOnly[4]; uint8_t ___m_CharValue_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_ByteValue_3_OffsetPadding[4]; uint8_t ___m_ByteValue_3; }; #pragma pack(pop, tp) struct { char ___m_ByteValue_3_OffsetPadding_forAlignmentOnly[4]; uint8_t ___m_ByteValue_3_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_SByteValue_4_OffsetPadding[4]; int8_t ___m_SByteValue_4; }; #pragma pack(pop, tp) struct { char ___m_SByteValue_4_OffsetPadding_forAlignmentOnly[4]; int8_t ___m_SByteValue_4_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_ShortValue_5_OffsetPadding[4]; int16_t ___m_ShortValue_5; }; #pragma pack(pop, tp) struct { char ___m_ShortValue_5_OffsetPadding_forAlignmentOnly[4]; int16_t ___m_ShortValue_5_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_UShortValue_6_OffsetPadding[4]; uint16_t ___m_UShortValue_6; }; #pragma pack(pop, tp) struct { char ___m_UShortValue_6_OffsetPadding_forAlignmentOnly[4]; uint16_t ___m_UShortValue_6_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_IntValue_7_OffsetPadding[4]; int32_t ___m_IntValue_7; }; #pragma pack(pop, tp) struct { char ___m_IntValue_7_OffsetPadding_forAlignmentOnly[4]; int32_t ___m_IntValue_7_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_UIntValue_8_OffsetPadding[4]; uint32_t ___m_UIntValue_8; }; #pragma pack(pop, tp) struct { char ___m_UIntValue_8_OffsetPadding_forAlignmentOnly[4]; uint32_t ___m_UIntValue_8_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_LongValue_9_OffsetPadding[4]; int64_t ___m_LongValue_9; }; #pragma pack(pop, tp) struct { char ___m_LongValue_9_OffsetPadding_forAlignmentOnly[4]; int64_t ___m_LongValue_9_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_ULongValue_10_OffsetPadding[4]; uint64_t ___m_ULongValue_10; }; #pragma pack(pop, tp) struct { char ___m_ULongValue_10_OffsetPadding_forAlignmentOnly[4]; uint64_t ___m_ULongValue_10_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_FloatValue_11_OffsetPadding[4]; float ___m_FloatValue_11; }; #pragma pack(pop, tp) struct { char ___m_FloatValue_11_OffsetPadding_forAlignmentOnly[4]; float ___m_FloatValue_11_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_DoubleValue_12_OffsetPadding[4]; double ___m_DoubleValue_12; }; #pragma pack(pop, tp) struct { char ___m_DoubleValue_12_OffsetPadding_forAlignmentOnly[4]; double ___m_DoubleValue_12_forAlignmentOnly; }; }; }; // Native definition for COM marshalling of UnityEngine.InputSystem.Utilities.PrimitiveValue struct PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8_marshaled_com { union { #pragma pack(push, tp, 1) struct { int32_t ___m_Type_0; }; #pragma pack(pop, tp) struct { int32_t ___m_Type_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_BoolValue_1_OffsetPadding[4]; int32_t ___m_BoolValue_1; }; #pragma pack(pop, tp) struct { char ___m_BoolValue_1_OffsetPadding_forAlignmentOnly[4]; int32_t ___m_BoolValue_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_CharValue_2_OffsetPadding[4]; uint8_t ___m_CharValue_2; }; #pragma pack(pop, tp) struct { char ___m_CharValue_2_OffsetPadding_forAlignmentOnly[4]; uint8_t ___m_CharValue_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_ByteValue_3_OffsetPadding[4]; uint8_t ___m_ByteValue_3; }; #pragma pack(pop, tp) struct { char ___m_ByteValue_3_OffsetPadding_forAlignmentOnly[4]; uint8_t ___m_ByteValue_3_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_SByteValue_4_OffsetPadding[4]; int8_t ___m_SByteValue_4; }; #pragma pack(pop, tp) struct { char ___m_SByteValue_4_OffsetPadding_forAlignmentOnly[4]; int8_t ___m_SByteValue_4_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_ShortValue_5_OffsetPadding[4]; int16_t ___m_ShortValue_5; }; #pragma pack(pop, tp) struct { char ___m_ShortValue_5_OffsetPadding_forAlignmentOnly[4]; int16_t ___m_ShortValue_5_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_UShortValue_6_OffsetPadding[4]; uint16_t ___m_UShortValue_6; }; #pragma pack(pop, tp) struct { char ___m_UShortValue_6_OffsetPadding_forAlignmentOnly[4]; uint16_t ___m_UShortValue_6_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_IntValue_7_OffsetPadding[4]; int32_t ___m_IntValue_7; }; #pragma pack(pop, tp) struct { char ___m_IntValue_7_OffsetPadding_forAlignmentOnly[4]; int32_t ___m_IntValue_7_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_UIntValue_8_OffsetPadding[4]; uint32_t ___m_UIntValue_8; }; #pragma pack(pop, tp) struct { char ___m_UIntValue_8_OffsetPadding_forAlignmentOnly[4]; uint32_t ___m_UIntValue_8_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_LongValue_9_OffsetPadding[4]; int64_t ___m_LongValue_9; }; #pragma pack(pop, tp) struct { char ___m_LongValue_9_OffsetPadding_forAlignmentOnly[4]; int64_t ___m_LongValue_9_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_ULongValue_10_OffsetPadding[4]; uint64_t ___m_ULongValue_10; }; #pragma pack(pop, tp) struct { char ___m_ULongValue_10_OffsetPadding_forAlignmentOnly[4]; uint64_t ___m_ULongValue_10_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_FloatValue_11_OffsetPadding[4]; float ___m_FloatValue_11; }; #pragma pack(pop, tp) struct { char ___m_FloatValue_11_OffsetPadding_forAlignmentOnly[4]; float ___m_FloatValue_11_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_DoubleValue_12_OffsetPadding[4]; double ___m_DoubleValue_12; }; #pragma pack(pop, tp) struct { char ___m_DoubleValue_12_OffsetPadding_forAlignmentOnly[4]; double ___m_DoubleValue_12_forAlignmentOnly; }; }; }; // System.Text.RegularExpressions.Regex struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F : public RuntimeObject { public: // System.String System.Text.RegularExpressions.Regex::pattern String_t* ___pattern_0; // System.Text.RegularExpressions.RegexRunnerFactory System.Text.RegularExpressions.Regex::factory RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 * ___factory_1; // System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.Regex::roptions int32_t ___roptions_2; // System.TimeSpan System.Text.RegularExpressions.Regex::internalMatchTimeout TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___internalMatchTimeout_5; // System.Collections.Hashtable System.Text.RegularExpressions.Regex::caps Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___caps_8; // System.Collections.Hashtable System.Text.RegularExpressions.Regex::capnames Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___capnames_9; // System.String[] System.Text.RegularExpressions.Regex::capslist StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___capslist_10; // System.Int32 System.Text.RegularExpressions.Regex::capsize int32_t ___capsize_11; // System.Text.RegularExpressions.ExclusiveReference System.Text.RegularExpressions.Regex::runnerref ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 * ___runnerref_12; // System.Text.RegularExpressions.SharedReference System.Text.RegularExpressions.Regex::replref SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 * ___replref_13; // System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.Regex::code RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * ___code_14; // System.Boolean System.Text.RegularExpressions.Regex::refsInitialized bool ___refsInitialized_15; public: inline static int32_t get_offset_of_pattern_0() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___pattern_0)); } inline String_t* get_pattern_0() const { return ___pattern_0; } inline String_t** get_address_of_pattern_0() { return &___pattern_0; } inline void set_pattern_0(String_t* value) { ___pattern_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___pattern_0), (void*)value); } inline static int32_t get_offset_of_factory_1() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___factory_1)); } inline RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 * get_factory_1() const { return ___factory_1; } inline RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 ** get_address_of_factory_1() { return &___factory_1; } inline void set_factory_1(RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 * value) { ___factory_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___factory_1), (void*)value); } inline static int32_t get_offset_of_roptions_2() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___roptions_2)); } inline int32_t get_roptions_2() const { return ___roptions_2; } inline int32_t* get_address_of_roptions_2() { return &___roptions_2; } inline void set_roptions_2(int32_t value) { ___roptions_2 = value; } inline static int32_t get_offset_of_internalMatchTimeout_5() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___internalMatchTimeout_5)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_internalMatchTimeout_5() const { return ___internalMatchTimeout_5; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_internalMatchTimeout_5() { return &___internalMatchTimeout_5; } inline void set_internalMatchTimeout_5(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___internalMatchTimeout_5 = value; } inline static int32_t get_offset_of_caps_8() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___caps_8)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_caps_8() const { return ___caps_8; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_caps_8() { return &___caps_8; } inline void set_caps_8(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___caps_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___caps_8), (void*)value); } inline static int32_t get_offset_of_capnames_9() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___capnames_9)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_capnames_9() const { return ___capnames_9; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_capnames_9() { return &___capnames_9; } inline void set_capnames_9(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___capnames_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___capnames_9), (void*)value); } inline static int32_t get_offset_of_capslist_10() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___capslist_10)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_capslist_10() const { return ___capslist_10; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_capslist_10() { return &___capslist_10; } inline void set_capslist_10(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___capslist_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___capslist_10), (void*)value); } inline static int32_t get_offset_of_capsize_11() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___capsize_11)); } inline int32_t get_capsize_11() const { return ___capsize_11; } inline int32_t* get_address_of_capsize_11() { return &___capsize_11; } inline void set_capsize_11(int32_t value) { ___capsize_11 = value; } inline static int32_t get_offset_of_runnerref_12() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___runnerref_12)); } inline ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 * get_runnerref_12() const { return ___runnerref_12; } inline ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 ** get_address_of_runnerref_12() { return &___runnerref_12; } inline void set_runnerref_12(ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 * value) { ___runnerref_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___runnerref_12), (void*)value); } inline static int32_t get_offset_of_replref_13() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___replref_13)); } inline SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 * get_replref_13() const { return ___replref_13; } inline SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 ** get_address_of_replref_13() { return &___replref_13; } inline void set_replref_13(SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 * value) { ___replref_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___replref_13), (void*)value); } inline static int32_t get_offset_of_code_14() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___code_14)); } inline RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * get_code_14() const { return ___code_14; } inline RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 ** get_address_of_code_14() { return &___code_14; } inline void set_code_14(RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * value) { ___code_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___code_14), (void*)value); } inline static int32_t get_offset_of_refsInitialized_15() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___refsInitialized_15)); } inline bool get_refsInitialized_15() const { return ___refsInitialized_15; } inline bool* get_address_of_refsInitialized_15() { return &___refsInitialized_15; } inline void set_refsInitialized_15(bool value) { ___refsInitialized_15 = value; } }; // UnityEngine.ScriptableObject struct ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: public: }; // Native definition for P/Invoke marshalling of UnityEngine.ScriptableObject struct ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A_marshaled_pinvoke : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_pinvoke { }; // Native definition for COM marshalling of UnityEngine.ScriptableObject struct ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A_marshaled_com : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_com { }; // System.SystemException struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t { public: public: }; // System.Type struct Type_t : public MemberInfo_t { public: // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9; public: inline static int32_t get_offset_of__impl_9() { return static_cast(offsetof(Type_t, ____impl_9)); } inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; } inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; } inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value) { ____impl_9 = value; } }; // UnityEngine.InputSystem.LowLevel.UseWindowsGamingInputCommand struct UseWindowsGamingInputCommand_tB66739BB4992AB11B421FE57CFEE81FBD534C6F3 { public: union { struct { union { #pragma pack(push, tp, 1) struct { // UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.UseWindowsGamingInputCommand::baseCommand InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 ___baseCommand_1; }; #pragma pack(pop, tp) struct { InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 ___baseCommand_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___enable_2_OffsetPadding[8]; // System.Byte UnityEngine.InputSystem.LowLevel.UseWindowsGamingInputCommand::enable uint8_t ___enable_2; }; #pragma pack(pop, tp) struct { char ___enable_2_OffsetPadding_forAlignmentOnly[8]; uint8_t ___enable_2_forAlignmentOnly; }; }; }; uint8_t UseWindowsGamingInputCommand_tB66739BB4992AB11B421FE57CFEE81FBD534C6F3__padding[9]; }; public: inline static int32_t get_offset_of_baseCommand_1() { return static_cast(offsetof(UseWindowsGamingInputCommand_tB66739BB4992AB11B421FE57CFEE81FBD534C6F3, ___baseCommand_1)); } inline InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 get_baseCommand_1() const { return ___baseCommand_1; } inline InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * get_address_of_baseCommand_1() { return &___baseCommand_1; } inline void set_baseCommand_1(InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 value) { ___baseCommand_1 = value; } inline static int32_t get_offset_of_enable_2() { return static_cast(offsetof(UseWindowsGamingInputCommand_tB66739BB4992AB11B421FE57CFEE81FBD534C6F3, ___enable_2)); } inline uint8_t get_enable_2() const { return ___enable_2; } inline uint8_t* get_address_of_enable_2() { return &___enable_2; } inline void set_enable_2(uint8_t value) { ___enable_2 = value; } }; // UnityEngine.InputSystem.InputActionState/GlobalState struct GlobalState_tF1D93500AFBAA25C7FCA48B5D89640B84C44D0AB { public: // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.InputActionState/GlobalState::globalList InlinedArray_1_tFCA31E8102435E4A60A161C004710A41410BA314 ___globalList_0; // UnityEngine.InputSystem.Utilities.CallbackArray`1> UnityEngine.InputSystem.InputActionState/GlobalState::onActionChange CallbackArray_1_t552BD871FFF51BBEADFA595A48105D602791E7FA ___onActionChange_1; // UnityEngine.InputSystem.Utilities.CallbackArray`1> UnityEngine.InputSystem.InputActionState/GlobalState::onActionControlsChanged CallbackArray_1_tE03856E201C6AA8C7ED4B4A9675D5BD431CACF1D ___onActionControlsChanged_2; public: inline static int32_t get_offset_of_globalList_0() { return static_cast(offsetof(GlobalState_tF1D93500AFBAA25C7FCA48B5D89640B84C44D0AB, ___globalList_0)); } inline InlinedArray_1_tFCA31E8102435E4A60A161C004710A41410BA314 get_globalList_0() const { return ___globalList_0; } inline InlinedArray_1_tFCA31E8102435E4A60A161C004710A41410BA314 * get_address_of_globalList_0() { return &___globalList_0; } inline void set_globalList_0(InlinedArray_1_tFCA31E8102435E4A60A161C004710A41410BA314 value) { ___globalList_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___globalList_0))->___additionalValues_2), (void*)NULL); } inline static int32_t get_offset_of_onActionChange_1() { return static_cast(offsetof(GlobalState_tF1D93500AFBAA25C7FCA48B5D89640B84C44D0AB, ___onActionChange_1)); } inline CallbackArray_1_t552BD871FFF51BBEADFA595A48105D602791E7FA get_onActionChange_1() const { return ___onActionChange_1; } inline CallbackArray_1_t552BD871FFF51BBEADFA595A48105D602791E7FA * get_address_of_onActionChange_1() { return &___onActionChange_1; } inline void set_onActionChange_1(CallbackArray_1_t552BD871FFF51BBEADFA595A48105D602791E7FA value) { ___onActionChange_1 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___onActionChange_1))->___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___onActionChange_1))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___onActionChange_1))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___onActionChange_1))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___onActionChange_1))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___onActionChange_1))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_onActionControlsChanged_2() { return static_cast(offsetof(GlobalState_tF1D93500AFBAA25C7FCA48B5D89640B84C44D0AB, ___onActionControlsChanged_2)); } inline CallbackArray_1_tE03856E201C6AA8C7ED4B4A9675D5BD431CACF1D get_onActionControlsChanged_2() const { return ___onActionControlsChanged_2; } inline CallbackArray_1_tE03856E201C6AA8C7ED4B4A9675D5BD431CACF1D * get_address_of_onActionControlsChanged_2() { return &___onActionControlsChanged_2; } inline void set_onActionControlsChanged_2(CallbackArray_1_tE03856E201C6AA8C7ED4B4A9675D5BD431CACF1D value) { ___onActionControlsChanged_2 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___onActionControlsChanged_2))->___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___onActionControlsChanged_2))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___onActionControlsChanged_2))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___onActionControlsChanged_2))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___onActionControlsChanged_2))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___onActionControlsChanged_2))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.InputActionState/GlobalState struct GlobalState_tF1D93500AFBAA25C7FCA48B5D89640B84C44D0AB_marshaled_pinvoke { InlinedArray_1_tFCA31E8102435E4A60A161C004710A41410BA314 ___globalList_0; CallbackArray_1_t552BD871FFF51BBEADFA595A48105D602791E7FA ___onActionChange_1; CallbackArray_1_tE03856E201C6AA8C7ED4B4A9675D5BD431CACF1D ___onActionControlsChanged_2; }; // Native definition for COM marshalling of UnityEngine.InputSystem.InputActionState/GlobalState struct GlobalState_tF1D93500AFBAA25C7FCA48B5D89640B84C44D0AB_marshaled_com { InlinedArray_1_tFCA31E8102435E4A60A161C004710A41410BA314 ___globalList_0; CallbackArray_1_t552BD871FFF51BBEADFA595A48105D602791E7FA ___onActionChange_1; CallbackArray_1_tE03856E201C6AA8C7ED4B4A9675D5BD431CACF1D ___onActionControlsChanged_2; }; // UnityEngine.InputSystem.Layouts.InputDeviceMatcher/d__4 struct U3Cget_patternsU3Ed__4_t6191EF324445918A4E234231F0240556B56CA816 : public RuntimeObject { public: // System.Int32 UnityEngine.InputSystem.Layouts.InputDeviceMatcher/d__4::<>1__state int32_t ___U3CU3E1__state_0; // System.Collections.Generic.KeyValuePair`2 UnityEngine.InputSystem.Layouts.InputDeviceMatcher/d__4::<>2__current KeyValuePair_2_tD6E57B7EAC6134DCA97F39E5E598EB43B44A5EAE ___U3CU3E2__current_1; // System.Int32 UnityEngine.InputSystem.Layouts.InputDeviceMatcher/d__4::<>l__initialThreadId int32_t ___U3CU3El__initialThreadId_2; // UnityEngine.InputSystem.Layouts.InputDeviceMatcher UnityEngine.InputSystem.Layouts.InputDeviceMatcher/d__4::<>4__this InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 ___U3CU3E4__this_3; // UnityEngine.InputSystem.Layouts.InputDeviceMatcher UnityEngine.InputSystem.Layouts.InputDeviceMatcher/d__4::<>3__<>4__this InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 ___U3CU3E3__U3CU3E4__this_4; // System.Int32 UnityEngine.InputSystem.Layouts.InputDeviceMatcher/d__4::5__2 int32_t ___U3CcountU3E5__2_5; // System.Int32 UnityEngine.InputSystem.Layouts.InputDeviceMatcher/d__4::5__3 int32_t ___U3CiU3E5__3_6; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast(offsetof(U3Cget_patternsU3Ed__4_t6191EF324445918A4E234231F0240556B56CA816, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast(offsetof(U3Cget_patternsU3Ed__4_t6191EF324445918A4E234231F0240556B56CA816, ___U3CU3E2__current_1)); } inline KeyValuePair_2_tD6E57B7EAC6134DCA97F39E5E598EB43B44A5EAE get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline KeyValuePair_2_tD6E57B7EAC6134DCA97F39E5E598EB43B44A5EAE * get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(KeyValuePair_2_tD6E57B7EAC6134DCA97F39E5E598EB43B44A5EAE value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E2__current_1))->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E2__current_1))->___value_1), (void*)NULL); #endif } inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast(offsetof(U3Cget_patternsU3Ed__4_t6191EF324445918A4E234231F0240556B56CA816, ___U3CU3El__initialThreadId_2)); } inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; } inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; } inline void set_U3CU3El__initialThreadId_2(int32_t value) { ___U3CU3El__initialThreadId_2 = value; } inline static int32_t get_offset_of_U3CU3E4__this_3() { return static_cast(offsetof(U3Cget_patternsU3Ed__4_t6191EF324445918A4E234231F0240556B56CA816, ___U3CU3E4__this_3)); } inline InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 get_U3CU3E4__this_3() const { return ___U3CU3E4__this_3; } inline InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * get_address_of_U3CU3E4__this_3() { return &___U3CU3E4__this_3; } inline void set_U3CU3E4__this_3(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 value) { ___U3CU3E4__this_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E4__this_3))->___m_Patterns_0), (void*)NULL); } inline static int32_t get_offset_of_U3CU3E3__U3CU3E4__this_4() { return static_cast(offsetof(U3Cget_patternsU3Ed__4_t6191EF324445918A4E234231F0240556B56CA816, ___U3CU3E3__U3CU3E4__this_4)); } inline InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 get_U3CU3E3__U3CU3E4__this_4() const { return ___U3CU3E3__U3CU3E4__this_4; } inline InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * get_address_of_U3CU3E3__U3CU3E4__this_4() { return &___U3CU3E3__U3CU3E4__this_4; } inline void set_U3CU3E3__U3CU3E4__this_4(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 value) { ___U3CU3E3__U3CU3E4__this_4 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E3__U3CU3E4__this_4))->___m_Patterns_0), (void*)NULL); } inline static int32_t get_offset_of_U3CcountU3E5__2_5() { return static_cast(offsetof(U3Cget_patternsU3Ed__4_t6191EF324445918A4E234231F0240556B56CA816, ___U3CcountU3E5__2_5)); } inline int32_t get_U3CcountU3E5__2_5() const { return ___U3CcountU3E5__2_5; } inline int32_t* get_address_of_U3CcountU3E5__2_5() { return &___U3CcountU3E5__2_5; } inline void set_U3CcountU3E5__2_5(int32_t value) { ___U3CcountU3E5__2_5 = value; } inline static int32_t get_offset_of_U3CiU3E5__3_6() { return static_cast(offsetof(U3Cget_patternsU3Ed__4_t6191EF324445918A4E234231F0240556B56CA816, ___U3CiU3E5__3_6)); } inline int32_t get_U3CiU3E5__3_6() const { return ___U3CiU3E5__3_6; } inline int32_t* get_address_of_U3CiU3E5__3_6() { return &___U3CiU3E5__3_6; } inline void set_U3CiU3E5__3_6(int32_t value) { ___U3CiU3E5__3_6 = value; } }; // UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController struct ReplayController_tB89A6FAB335193E670D3B2A1E84BB7F291060755 : public RuntimeObject { public: // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::k__BackingField bool ___U3CfinishedU3Ek__BackingField_0; // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::k__BackingField bool ___U3CpausedU3Ek__BackingField_1; // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::k__BackingField int32_t ___U3CpositionU3Ek__BackingField_2; // UnityEngine.InputSystem.LowLevel.InputEventTrace UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_EventTrace InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * ___m_EventTrace_3; // UnityEngine.InputSystem.LowLevel.InputEventTrace/Enumerator UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_Enumerator Enumerator_tDC926D70FAEB628CE95D05C8FF1E24E55664B143 * ___m_Enumerator_4; // UnityEngine.InputSystem.Utilities.InlinedArray`1> UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_DeviceIDMappings InlinedArray_1_t73599F4D005E33EE995C1D2D1DEAD2515D694B81 ___m_DeviceIDMappings_5; // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_CreateNewDevices bool ___m_CreateNewDevices_6; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_CreatedDevices InlinedArray_1_tC5C77F6FF5FBFA76A6453E7A72CF263550C8C40C ___m_CreatedDevices_7; // System.Action UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_OnFinished Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___m_OnFinished_8; // System.Action`1 UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_OnEvent Action_1_t231F2AF856D3317D1380298224A60D02F9F43072 * ___m_OnEvent_9; // System.Double UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_StartTimeAsPerFirstEvent double ___m_StartTimeAsPerFirstEvent_10; // System.Double UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_StartTimeAsPerRuntime double ___m_StartTimeAsPerRuntime_11; // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_AllEventsByTimeIndex int32_t ___m_AllEventsByTimeIndex_12; // System.Collections.Generic.List`1 UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_AllEventsByTime List_1_t980EF2517D85AC88F5978408EA85D232DFCECEDF * ___m_AllEventsByTime_13; public: inline static int32_t get_offset_of_U3CfinishedU3Ek__BackingField_0() { return static_cast(offsetof(ReplayController_tB89A6FAB335193E670D3B2A1E84BB7F291060755, ___U3CfinishedU3Ek__BackingField_0)); } inline bool get_U3CfinishedU3Ek__BackingField_0() const { return ___U3CfinishedU3Ek__BackingField_0; } inline bool* get_address_of_U3CfinishedU3Ek__BackingField_0() { return &___U3CfinishedU3Ek__BackingField_0; } inline void set_U3CfinishedU3Ek__BackingField_0(bool value) { ___U3CfinishedU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CpausedU3Ek__BackingField_1() { return static_cast(offsetof(ReplayController_tB89A6FAB335193E670D3B2A1E84BB7F291060755, ___U3CpausedU3Ek__BackingField_1)); } inline bool get_U3CpausedU3Ek__BackingField_1() const { return ___U3CpausedU3Ek__BackingField_1; } inline bool* get_address_of_U3CpausedU3Ek__BackingField_1() { return &___U3CpausedU3Ek__BackingField_1; } inline void set_U3CpausedU3Ek__BackingField_1(bool value) { ___U3CpausedU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CpositionU3Ek__BackingField_2() { return static_cast(offsetof(ReplayController_tB89A6FAB335193E670D3B2A1E84BB7F291060755, ___U3CpositionU3Ek__BackingField_2)); } inline int32_t get_U3CpositionU3Ek__BackingField_2() const { return ___U3CpositionU3Ek__BackingField_2; } inline int32_t* get_address_of_U3CpositionU3Ek__BackingField_2() { return &___U3CpositionU3Ek__BackingField_2; } inline void set_U3CpositionU3Ek__BackingField_2(int32_t value) { ___U3CpositionU3Ek__BackingField_2 = value; } inline static int32_t get_offset_of_m_EventTrace_3() { return static_cast(offsetof(ReplayController_tB89A6FAB335193E670D3B2A1E84BB7F291060755, ___m_EventTrace_3)); } inline InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * get_m_EventTrace_3() const { return ___m_EventTrace_3; } inline InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 ** get_address_of_m_EventTrace_3() { return &___m_EventTrace_3; } inline void set_m_EventTrace_3(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * value) { ___m_EventTrace_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_EventTrace_3), (void*)value); } inline static int32_t get_offset_of_m_Enumerator_4() { return static_cast(offsetof(ReplayController_tB89A6FAB335193E670D3B2A1E84BB7F291060755, ___m_Enumerator_4)); } inline Enumerator_tDC926D70FAEB628CE95D05C8FF1E24E55664B143 * get_m_Enumerator_4() const { return ___m_Enumerator_4; } inline Enumerator_tDC926D70FAEB628CE95D05C8FF1E24E55664B143 ** get_address_of_m_Enumerator_4() { return &___m_Enumerator_4; } inline void set_m_Enumerator_4(Enumerator_tDC926D70FAEB628CE95D05C8FF1E24E55664B143 * value) { ___m_Enumerator_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Enumerator_4), (void*)value); } inline static int32_t get_offset_of_m_DeviceIDMappings_5() { return static_cast(offsetof(ReplayController_tB89A6FAB335193E670D3B2A1E84BB7F291060755, ___m_DeviceIDMappings_5)); } inline InlinedArray_1_t73599F4D005E33EE995C1D2D1DEAD2515D694B81 get_m_DeviceIDMappings_5() const { return ___m_DeviceIDMappings_5; } inline InlinedArray_1_t73599F4D005E33EE995C1D2D1DEAD2515D694B81 * get_address_of_m_DeviceIDMappings_5() { return &___m_DeviceIDMappings_5; } inline void set_m_DeviceIDMappings_5(InlinedArray_1_t73599F4D005E33EE995C1D2D1DEAD2515D694B81 value) { ___m_DeviceIDMappings_5 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_DeviceIDMappings_5))->___additionalValues_2), (void*)NULL); } inline static int32_t get_offset_of_m_CreateNewDevices_6() { return static_cast(offsetof(ReplayController_tB89A6FAB335193E670D3B2A1E84BB7F291060755, ___m_CreateNewDevices_6)); } inline bool get_m_CreateNewDevices_6() const { return ___m_CreateNewDevices_6; } inline bool* get_address_of_m_CreateNewDevices_6() { return &___m_CreateNewDevices_6; } inline void set_m_CreateNewDevices_6(bool value) { ___m_CreateNewDevices_6 = value; } inline static int32_t get_offset_of_m_CreatedDevices_7() { return static_cast(offsetof(ReplayController_tB89A6FAB335193E670D3B2A1E84BB7F291060755, ___m_CreatedDevices_7)); } inline InlinedArray_1_tC5C77F6FF5FBFA76A6453E7A72CF263550C8C40C get_m_CreatedDevices_7() const { return ___m_CreatedDevices_7; } inline InlinedArray_1_tC5C77F6FF5FBFA76A6453E7A72CF263550C8C40C * get_address_of_m_CreatedDevices_7() { return &___m_CreatedDevices_7; } inline void set_m_CreatedDevices_7(InlinedArray_1_tC5C77F6FF5FBFA76A6453E7A72CF263550C8C40C value) { ___m_CreatedDevices_7 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_CreatedDevices_7))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_CreatedDevices_7))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_OnFinished_8() { return static_cast(offsetof(ReplayController_tB89A6FAB335193E670D3B2A1E84BB7F291060755, ___m_OnFinished_8)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_m_OnFinished_8() const { return ___m_OnFinished_8; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_m_OnFinished_8() { return &___m_OnFinished_8; } inline void set_m_OnFinished_8(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___m_OnFinished_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnFinished_8), (void*)value); } inline static int32_t get_offset_of_m_OnEvent_9() { return static_cast(offsetof(ReplayController_tB89A6FAB335193E670D3B2A1E84BB7F291060755, ___m_OnEvent_9)); } inline Action_1_t231F2AF856D3317D1380298224A60D02F9F43072 * get_m_OnEvent_9() const { return ___m_OnEvent_9; } inline Action_1_t231F2AF856D3317D1380298224A60D02F9F43072 ** get_address_of_m_OnEvent_9() { return &___m_OnEvent_9; } inline void set_m_OnEvent_9(Action_1_t231F2AF856D3317D1380298224A60D02F9F43072 * value) { ___m_OnEvent_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnEvent_9), (void*)value); } inline static int32_t get_offset_of_m_StartTimeAsPerFirstEvent_10() { return static_cast(offsetof(ReplayController_tB89A6FAB335193E670D3B2A1E84BB7F291060755, ___m_StartTimeAsPerFirstEvent_10)); } inline double get_m_StartTimeAsPerFirstEvent_10() const { return ___m_StartTimeAsPerFirstEvent_10; } inline double* get_address_of_m_StartTimeAsPerFirstEvent_10() { return &___m_StartTimeAsPerFirstEvent_10; } inline void set_m_StartTimeAsPerFirstEvent_10(double value) { ___m_StartTimeAsPerFirstEvent_10 = value; } inline static int32_t get_offset_of_m_StartTimeAsPerRuntime_11() { return static_cast(offsetof(ReplayController_tB89A6FAB335193E670D3B2A1E84BB7F291060755, ___m_StartTimeAsPerRuntime_11)); } inline double get_m_StartTimeAsPerRuntime_11() const { return ___m_StartTimeAsPerRuntime_11; } inline double* get_address_of_m_StartTimeAsPerRuntime_11() { return &___m_StartTimeAsPerRuntime_11; } inline void set_m_StartTimeAsPerRuntime_11(double value) { ___m_StartTimeAsPerRuntime_11 = value; } inline static int32_t get_offset_of_m_AllEventsByTimeIndex_12() { return static_cast(offsetof(ReplayController_tB89A6FAB335193E670D3B2A1E84BB7F291060755, ___m_AllEventsByTimeIndex_12)); } inline int32_t get_m_AllEventsByTimeIndex_12() const { return ___m_AllEventsByTimeIndex_12; } inline int32_t* get_address_of_m_AllEventsByTimeIndex_12() { return &___m_AllEventsByTimeIndex_12; } inline void set_m_AllEventsByTimeIndex_12(int32_t value) { ___m_AllEventsByTimeIndex_12 = value; } inline static int32_t get_offset_of_m_AllEventsByTime_13() { return static_cast(offsetof(ReplayController_tB89A6FAB335193E670D3B2A1E84BB7F291060755, ___m_AllEventsByTime_13)); } inline List_1_t980EF2517D85AC88F5978408EA85D232DFCECEDF * get_m_AllEventsByTime_13() const { return ___m_AllEventsByTime_13; } inline List_1_t980EF2517D85AC88F5978408EA85D232DFCECEDF ** get_address_of_m_AllEventsByTime_13() { return &___m_AllEventsByTime_13; } inline void set_m_AllEventsByTime_13(List_1_t980EF2517D85AC88F5978408EA85D232DFCECEDF * value) { ___m_AllEventsByTime_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_AllEventsByTime_13), (void*)value); } }; // UnityEngine.InputSystem.InputManager/StateChangeMonitorsForDevice struct StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 { public: // UnityEngine.InputSystem.Utilities.MemoryHelpers/BitRegion[] UnityEngine.InputSystem.InputManager/StateChangeMonitorsForDevice::memoryRegions BitRegionU5BU5D_tF6D5F89A752F557BCBFDE82CA0F4C7CB0ABF364B* ___memoryRegions_0; // UnityEngine.InputSystem.InputManager/StateChangeMonitorListener[] UnityEngine.InputSystem.InputManager/StateChangeMonitorsForDevice::listeners StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10* ___listeners_1; // UnityEngine.InputSystem.DynamicBitfield UnityEngine.InputSystem.InputManager/StateChangeMonitorsForDevice::signalled DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 ___signalled_2; // System.Boolean UnityEngine.InputSystem.InputManager/StateChangeMonitorsForDevice::needToUpdateOrderingOfMonitors bool ___needToUpdateOrderingOfMonitors_3; // System.Boolean UnityEngine.InputSystem.InputManager/StateChangeMonitorsForDevice::needToCompactArrays bool ___needToCompactArrays_4; public: inline static int32_t get_offset_of_memoryRegions_0() { return static_cast(offsetof(StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0, ___memoryRegions_0)); } inline BitRegionU5BU5D_tF6D5F89A752F557BCBFDE82CA0F4C7CB0ABF364B* get_memoryRegions_0() const { return ___memoryRegions_0; } inline BitRegionU5BU5D_tF6D5F89A752F557BCBFDE82CA0F4C7CB0ABF364B** get_address_of_memoryRegions_0() { return &___memoryRegions_0; } inline void set_memoryRegions_0(BitRegionU5BU5D_tF6D5F89A752F557BCBFDE82CA0F4C7CB0ABF364B* value) { ___memoryRegions_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___memoryRegions_0), (void*)value); } inline static int32_t get_offset_of_listeners_1() { return static_cast(offsetof(StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0, ___listeners_1)); } inline StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10* get_listeners_1() const { return ___listeners_1; } inline StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10** get_address_of_listeners_1() { return &___listeners_1; } inline void set_listeners_1(StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10* value) { ___listeners_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___listeners_1), (void*)value); } inline static int32_t get_offset_of_signalled_2() { return static_cast(offsetof(StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0, ___signalled_2)); } inline DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 get_signalled_2() const { return ___signalled_2; } inline DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 * get_address_of_signalled_2() { return &___signalled_2; } inline void set_signalled_2(DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 value) { ___signalled_2 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___signalled_2))->___array_0))->___additionalValues_2), (void*)NULL); } inline static int32_t get_offset_of_needToUpdateOrderingOfMonitors_3() { return static_cast(offsetof(StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0, ___needToUpdateOrderingOfMonitors_3)); } inline bool get_needToUpdateOrderingOfMonitors_3() const { return ___needToUpdateOrderingOfMonitors_3; } inline bool* get_address_of_needToUpdateOrderingOfMonitors_3() { return &___needToUpdateOrderingOfMonitors_3; } inline void set_needToUpdateOrderingOfMonitors_3(bool value) { ___needToUpdateOrderingOfMonitors_3 = value; } inline static int32_t get_offset_of_needToCompactArrays_4() { return static_cast(offsetof(StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0, ___needToCompactArrays_4)); } inline bool get_needToCompactArrays_4() const { return ___needToCompactArrays_4; } inline bool* get_address_of_needToCompactArrays_4() { return &___needToCompactArrays_4; } inline void set_needToCompactArrays_4(bool value) { ___needToCompactArrays_4 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.InputManager/StateChangeMonitorsForDevice struct StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_marshaled_pinvoke { BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 * ___memoryRegions_0; StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757_marshaled_pinvoke* ___listeners_1; DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5_marshaled_pinvoke ___signalled_2; int32_t ___needToUpdateOrderingOfMonitors_3; int32_t ___needToCompactArrays_4; }; // Native definition for COM marshalling of UnityEngine.InputSystem.InputManager/StateChangeMonitorsForDevice struct StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_marshaled_com { BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 * ___memoryRegions_0; StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757_marshaled_com* ___listeners_1; DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5_marshaled_com ___signalled_2; int32_t ___needToUpdateOrderingOfMonitors_3; int32_t ___needToCompactArrays_4; }; // UnityEngine.InputSystem.LowLevel.InputUpdate/SerializedState struct SerializedState_t542737D41B915A28FA67E1A2C7EA7CCA67660462 { public: // UnityEngine.InputSystem.LowLevel.InputUpdateType UnityEngine.InputSystem.LowLevel.InputUpdate/SerializedState::lastUpdateType int32_t ___lastUpdateType_0; // UnityEngine.InputSystem.LowLevel.InputUpdate/UpdateStepCount UnityEngine.InputSystem.LowLevel.InputUpdate/SerializedState::playerUpdateStepCount UpdateStepCount_tD390726C525CA5CE3A339A33E2984D65356A4780 ___playerUpdateStepCount_1; public: inline static int32_t get_offset_of_lastUpdateType_0() { return static_cast(offsetof(SerializedState_t542737D41B915A28FA67E1A2C7EA7CCA67660462, ___lastUpdateType_0)); } inline int32_t get_lastUpdateType_0() const { return ___lastUpdateType_0; } inline int32_t* get_address_of_lastUpdateType_0() { return &___lastUpdateType_0; } inline void set_lastUpdateType_0(int32_t value) { ___lastUpdateType_0 = value; } inline static int32_t get_offset_of_playerUpdateStepCount_1() { return static_cast(offsetof(SerializedState_t542737D41B915A28FA67E1A2C7EA7CCA67660462, ___playerUpdateStepCount_1)); } inline UpdateStepCount_tD390726C525CA5CE3A339A33E2984D65356A4780 get_playerUpdateStepCount_1() const { return ___playerUpdateStepCount_1; } inline UpdateStepCount_tD390726C525CA5CE3A339A33E2984D65356A4780 * get_address_of_playerUpdateStepCount_1() { return &___playerUpdateStepCount_1; } inline void set_playerUpdateStepCount_1(UpdateStepCount_tD390726C525CA5CE3A339A33E2984D65356A4780 value) { ___playerUpdateStepCount_1 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.InputUpdate/SerializedState struct SerializedState_t542737D41B915A28FA67E1A2C7EA7CCA67660462_marshaled_pinvoke { int32_t ___lastUpdateType_0; UpdateStepCount_tD390726C525CA5CE3A339A33E2984D65356A4780_marshaled_pinvoke ___playerUpdateStepCount_1; }; // Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.InputUpdate/SerializedState struct SerializedState_t542737D41B915A28FA67E1A2C7EA7CCA67660462_marshaled_com { int32_t ___lastUpdateType_0; UpdateStepCount_tD390726C525CA5CE3A339A33E2984D65356A4780_marshaled_com ___playerUpdateStepCount_1; }; // UnityEngine.InputSystem.Utilities.JsonParser/JsonValue struct JsonValue_t547F68925DBBEF3A29A4E14D26153A04872154DB { public: // UnityEngine.InputSystem.Utilities.JsonParser/JsonValueType UnityEngine.InputSystem.Utilities.JsonParser/JsonValue::type int32_t ___type_0; // System.Boolean UnityEngine.InputSystem.Utilities.JsonParser/JsonValue::boolValue bool ___boolValue_1; // System.Double UnityEngine.InputSystem.Utilities.JsonParser/JsonValue::realValue double ___realValue_2; // System.Int64 UnityEngine.InputSystem.Utilities.JsonParser/JsonValue::integerValue int64_t ___integerValue_3; // UnityEngine.InputSystem.Utilities.JsonParser/JsonString UnityEngine.InputSystem.Utilities.JsonParser/JsonValue::stringValue JsonString_tB3A1938903F2377F780FF4C4FE7CC6EA81C0D301 ___stringValue_4; // System.Collections.Generic.List`1 UnityEngine.InputSystem.Utilities.JsonParser/JsonValue::arrayValue List_1_tEC0B302C3EF23400C3EC92ED7672A715CA602068 * ___arrayValue_5; // System.Collections.Generic.Dictionary`2 UnityEngine.InputSystem.Utilities.JsonParser/JsonValue::objectValue Dictionary_2_t7A371082270CA8FD6BC79B5622CCD5E1C87A6E42 * ___objectValue_6; // System.Object UnityEngine.InputSystem.Utilities.JsonParser/JsonValue::anyValue RuntimeObject * ___anyValue_7; public: inline static int32_t get_offset_of_type_0() { return static_cast(offsetof(JsonValue_t547F68925DBBEF3A29A4E14D26153A04872154DB, ___type_0)); } inline int32_t get_type_0() const { return ___type_0; } inline int32_t* get_address_of_type_0() { return &___type_0; } inline void set_type_0(int32_t value) { ___type_0 = value; } inline static int32_t get_offset_of_boolValue_1() { return static_cast(offsetof(JsonValue_t547F68925DBBEF3A29A4E14D26153A04872154DB, ___boolValue_1)); } inline bool get_boolValue_1() const { return ___boolValue_1; } inline bool* get_address_of_boolValue_1() { return &___boolValue_1; } inline void set_boolValue_1(bool value) { ___boolValue_1 = value; } inline static int32_t get_offset_of_realValue_2() { return static_cast(offsetof(JsonValue_t547F68925DBBEF3A29A4E14D26153A04872154DB, ___realValue_2)); } inline double get_realValue_2() const { return ___realValue_2; } inline double* get_address_of_realValue_2() { return &___realValue_2; } inline void set_realValue_2(double value) { ___realValue_2 = value; } inline static int32_t get_offset_of_integerValue_3() { return static_cast(offsetof(JsonValue_t547F68925DBBEF3A29A4E14D26153A04872154DB, ___integerValue_3)); } inline int64_t get_integerValue_3() const { return ___integerValue_3; } inline int64_t* get_address_of_integerValue_3() { return &___integerValue_3; } inline void set_integerValue_3(int64_t value) { ___integerValue_3 = value; } inline static int32_t get_offset_of_stringValue_4() { return static_cast(offsetof(JsonValue_t547F68925DBBEF3A29A4E14D26153A04872154DB, ___stringValue_4)); } inline JsonString_tB3A1938903F2377F780FF4C4FE7CC6EA81C0D301 get_stringValue_4() const { return ___stringValue_4; } inline JsonString_tB3A1938903F2377F780FF4C4FE7CC6EA81C0D301 * get_address_of_stringValue_4() { return &___stringValue_4; } inline void set_stringValue_4(JsonString_tB3A1938903F2377F780FF4C4FE7CC6EA81C0D301 value) { ___stringValue_4 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___stringValue_4))->___text_0))->___m_String_0), (void*)NULL); } inline static int32_t get_offset_of_arrayValue_5() { return static_cast(offsetof(JsonValue_t547F68925DBBEF3A29A4E14D26153A04872154DB, ___arrayValue_5)); } inline List_1_tEC0B302C3EF23400C3EC92ED7672A715CA602068 * get_arrayValue_5() const { return ___arrayValue_5; } inline List_1_tEC0B302C3EF23400C3EC92ED7672A715CA602068 ** get_address_of_arrayValue_5() { return &___arrayValue_5; } inline void set_arrayValue_5(List_1_tEC0B302C3EF23400C3EC92ED7672A715CA602068 * value) { ___arrayValue_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___arrayValue_5), (void*)value); } inline static int32_t get_offset_of_objectValue_6() { return static_cast(offsetof(JsonValue_t547F68925DBBEF3A29A4E14D26153A04872154DB, ___objectValue_6)); } inline Dictionary_2_t7A371082270CA8FD6BC79B5622CCD5E1C87A6E42 * get_objectValue_6() const { return ___objectValue_6; } inline Dictionary_2_t7A371082270CA8FD6BC79B5622CCD5E1C87A6E42 ** get_address_of_objectValue_6() { return &___objectValue_6; } inline void set_objectValue_6(Dictionary_2_t7A371082270CA8FD6BC79B5622CCD5E1C87A6E42 * value) { ___objectValue_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___objectValue_6), (void*)value); } inline static int32_t get_offset_of_anyValue_7() { return static_cast(offsetof(JsonValue_t547F68925DBBEF3A29A4E14D26153A04872154DB, ___anyValue_7)); } inline RuntimeObject * get_anyValue_7() const { return ___anyValue_7; } inline RuntimeObject ** get_address_of_anyValue_7() { return &___anyValue_7; } inline void set_anyValue_7(RuntimeObject * value) { ___anyValue_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___anyValue_7), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Utilities.JsonParser/JsonValue struct JsonValue_t547F68925DBBEF3A29A4E14D26153A04872154DB_marshaled_pinvoke { int32_t ___type_0; int32_t ___boolValue_1; double ___realValue_2; int64_t ___integerValue_3; JsonString_tB3A1938903F2377F780FF4C4FE7CC6EA81C0D301_marshaled_pinvoke ___stringValue_4; List_1_tEC0B302C3EF23400C3EC92ED7672A715CA602068 * ___arrayValue_5; Dictionary_2_t7A371082270CA8FD6BC79B5622CCD5E1C87A6E42 * ___objectValue_6; Il2CppIUnknown* ___anyValue_7; }; // Native definition for COM marshalling of UnityEngine.InputSystem.Utilities.JsonParser/JsonValue struct JsonValue_t547F68925DBBEF3A29A4E14D26153A04872154DB_marshaled_com { int32_t ___type_0; int32_t ___boolValue_1; double ___realValue_2; int64_t ___integerValue_3; JsonString_tB3A1938903F2377F780FF4C4FE7CC6EA81C0D301_marshaled_com ___stringValue_4; List_1_tEC0B302C3EF23400C3EC92ED7672A715CA602068 * ___arrayValue_5; Dictionary_2_t7A371082270CA8FD6BC79B5622CCD5E1C87A6E42 * ___objectValue_6; Il2CppIUnknown* ___anyValue_7; }; // System.Action`1 struct Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83 : public MulticastDelegate_t { public: public: }; // System.Action`1 struct Action_1_t231F2AF856D3317D1380298224A60D02F9F43072 : public MulticastDelegate_t { public: public: }; // System.Action`1 struct Action_1_tC6AEC56D51A701342DD5D9DEEE77C063945AE4DC : public MulticastDelegate_t { public: public: }; // System.Action`2 struct Action_2_tA58D913EBCC7FD3E95DEC877EDB4363CD3051DF4 : public MulticastDelegate_t { public: public: }; // System.Action`2 struct Action_2_t22339AC0C02B10DD3C743D557C52738BA901E74A : public MulticastDelegate_t { public: public: }; // System.Action`2 struct Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C : public MulticastDelegate_t { public: public: }; // System.Action`2 struct Action_2_t0359A210F354A728FCD80F275D8CF192D61A98C5 : public MulticastDelegate_t { public: public: }; // System.Action`2 struct Action_2_tB596892BAE11233D1410B282A3EE7610732B50EC : public MulticastDelegate_t { public: public: }; // System.Func`1 struct Func_1_t87F4D899EDDDA25407AC884A9A61F602E32A21FA : public MulticastDelegate_t { public: public: }; // System.Func`2 struct Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A : public MulticastDelegate_t { public: public: }; // System.Func`2 struct Func_2_t42D51CF507A4D7E5E1BB1ADA2AD1B58BD47C50C9 : public MulticastDelegate_t { public: public: }; // System.Func`2 struct Func_2_t22C5BAC876F4C9C77BF9B2631852275B10FE99EC : public MulticastDelegate_t { public: public: }; // System.Func`3 struct Func_3_tD99A6009701E72566BE785B8109E9B5773975D91 : public MulticastDelegate_t { public: public: }; // System.Nullable`1 struct Nullable_1_t2055E88624438E34B0C4AEB7B387170528759E07 { public: // T System.Nullable`1::value InputBinding_t95FC40907C92DDB8F118F0062BE49C22ADF28FFB ___value_0; // System.Boolean System.Nullable`1::has_value bool ___has_value_1; public: inline static int32_t get_offset_of_value_0() { return static_cast(offsetof(Nullable_1_t2055E88624438E34B0C4AEB7B387170528759E07, ___value_0)); } inline InputBinding_t95FC40907C92DDB8F118F0062BE49C22ADF28FFB get_value_0() const { return ___value_0; } inline InputBinding_t95FC40907C92DDB8F118F0062BE49C22ADF28FFB * get_address_of_value_0() { return &___value_0; } inline void set_value_0(InputBinding_t95FC40907C92DDB8F118F0062BE49C22ADF28FFB value) { ___value_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->___m_Name_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->___m_Id_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->___m_Path_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->___m_Interactions_5), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->___m_Processors_6), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->___m_Groups_7), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->___m_Action_8), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->___m_OverridePath_10), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->___m_OverrideInteractions_11), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->___m_OverrideProcessors_12), (void*)NULL); #endif } inline static int32_t get_offset_of_has_value_1() { return static_cast(offsetof(Nullable_1_t2055E88624438E34B0C4AEB7B387170528759E07, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; // System.Action struct Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 : public MulticastDelegate_t { public: public: }; // System.ArgumentException struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: // System.String System.ArgumentException::m_paramName String_t* ___m_paramName_17; public: inline static int32_t get_offset_of_m_paramName_17() { return static_cast(offsetof(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00, ___m_paramName_17)); } inline String_t* get_m_paramName_17() const { return ___m_paramName_17; } inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; } inline void set_m_paramName_17(String_t* value) { ___m_paramName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value); } }; // System.AsyncCallback struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA : public MulticastDelegate_t { public: public: }; // System.IO.IOException struct IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: // System.String System.IO.IOException::_maybeFullPath String_t* ____maybeFullPath_17; public: inline static int32_t get_offset_of__maybeFullPath_17() { return static_cast(offsetof(IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA, ____maybeFullPath_17)); } inline String_t* get__maybeFullPath_17() const { return ____maybeFullPath_17; } inline String_t** get_address_of__maybeFullPath_17() { return &____maybeFullPath_17; } inline void set__maybeFullPath_17(String_t* value) { ____maybeFullPath_17 = value; Il2CppCodeGenWriteBarrier((void**)(&____maybeFullPath_17), (void*)value); } }; // UnityEngine.InputSystem.InputActionState struct InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9 : public RuntimeObject { public: // UnityEngine.InputSystem.InputActionMap[] UnityEngine.InputSystem.InputActionState::maps InputActionMapU5BU5D_t31943BDD82120CBC1067BC90B51BCDEF32226609* ___maps_1; // UnityEngine.InputSystem.InputControl[] UnityEngine.InputSystem.InputActionState::controls InputControlU5BU5D_tB874FECA56E2B08D3280F4174B988EA155E99680* ___controls_2; // UnityEngine.InputSystem.IInputInteraction[] UnityEngine.InputSystem.InputActionState::interactions IInputInteractionU5BU5D_t9766C7D49E9505A3D2D3D69481F14808988287DA* ___interactions_3; // UnityEngine.InputSystem.InputProcessor[] UnityEngine.InputSystem.InputActionState::processors InputProcessorU5BU5D_t6C9B3D9B68534217E9628B72E54D186B839399A0* ___processors_4; // UnityEngine.InputSystem.InputBindingComposite[] UnityEngine.InputSystem.InputActionState::composites InputBindingCompositeU5BU5D_tA39005B1C18E39B68364430213FAAD8B58DC9083* ___composites_5; // System.Int32 UnityEngine.InputSystem.InputActionState::totalProcessorCount int32_t ___totalProcessorCount_6; // UnityEngine.InputSystem.InputActionState/UnmanagedMemory UnityEngine.InputSystem.InputActionState::memory UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79 ___memory_7; // System.Boolean UnityEngine.InputSystem.InputActionState::m_OnBeforeUpdateHooked bool ___m_OnBeforeUpdateHooked_8; // System.Boolean UnityEngine.InputSystem.InputActionState::m_OnAfterUpdateHooked bool ___m_OnAfterUpdateHooked_9; // System.Boolean UnityEngine.InputSystem.InputActionState::m_InProcessControlStateChange bool ___m_InProcessControlStateChange_10; // UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.InputActionState::m_CurrentlyProcessingThisEvent InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___m_CurrentlyProcessingThisEvent_11; // System.Action UnityEngine.InputSystem.InputActionState::m_OnBeforeUpdateDelegate Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___m_OnBeforeUpdateDelegate_12; // System.Action UnityEngine.InputSystem.InputActionState::m_OnAfterUpdateDelegate Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___m_OnAfterUpdateDelegate_13; public: inline static int32_t get_offset_of_maps_1() { return static_cast(offsetof(InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9, ___maps_1)); } inline InputActionMapU5BU5D_t31943BDD82120CBC1067BC90B51BCDEF32226609* get_maps_1() const { return ___maps_1; } inline InputActionMapU5BU5D_t31943BDD82120CBC1067BC90B51BCDEF32226609** get_address_of_maps_1() { return &___maps_1; } inline void set_maps_1(InputActionMapU5BU5D_t31943BDD82120CBC1067BC90B51BCDEF32226609* value) { ___maps_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___maps_1), (void*)value); } inline static int32_t get_offset_of_controls_2() { return static_cast(offsetof(InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9, ___controls_2)); } inline InputControlU5BU5D_tB874FECA56E2B08D3280F4174B988EA155E99680* get_controls_2() const { return ___controls_2; } inline InputControlU5BU5D_tB874FECA56E2B08D3280F4174B988EA155E99680** get_address_of_controls_2() { return &___controls_2; } inline void set_controls_2(InputControlU5BU5D_tB874FECA56E2B08D3280F4174B988EA155E99680* value) { ___controls_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___controls_2), (void*)value); } inline static int32_t get_offset_of_interactions_3() { return static_cast(offsetof(InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9, ___interactions_3)); } inline IInputInteractionU5BU5D_t9766C7D49E9505A3D2D3D69481F14808988287DA* get_interactions_3() const { return ___interactions_3; } inline IInputInteractionU5BU5D_t9766C7D49E9505A3D2D3D69481F14808988287DA** get_address_of_interactions_3() { return &___interactions_3; } inline void set_interactions_3(IInputInteractionU5BU5D_t9766C7D49E9505A3D2D3D69481F14808988287DA* value) { ___interactions_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___interactions_3), (void*)value); } inline static int32_t get_offset_of_processors_4() { return static_cast(offsetof(InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9, ___processors_4)); } inline InputProcessorU5BU5D_t6C9B3D9B68534217E9628B72E54D186B839399A0* get_processors_4() const { return ___processors_4; } inline InputProcessorU5BU5D_t6C9B3D9B68534217E9628B72E54D186B839399A0** get_address_of_processors_4() { return &___processors_4; } inline void set_processors_4(InputProcessorU5BU5D_t6C9B3D9B68534217E9628B72E54D186B839399A0* value) { ___processors_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___processors_4), (void*)value); } inline static int32_t get_offset_of_composites_5() { return static_cast(offsetof(InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9, ___composites_5)); } inline InputBindingCompositeU5BU5D_tA39005B1C18E39B68364430213FAAD8B58DC9083* get_composites_5() const { return ___composites_5; } inline InputBindingCompositeU5BU5D_tA39005B1C18E39B68364430213FAAD8B58DC9083** get_address_of_composites_5() { return &___composites_5; } inline void set_composites_5(InputBindingCompositeU5BU5D_tA39005B1C18E39B68364430213FAAD8B58DC9083* value) { ___composites_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___composites_5), (void*)value); } inline static int32_t get_offset_of_totalProcessorCount_6() { return static_cast(offsetof(InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9, ___totalProcessorCount_6)); } inline int32_t get_totalProcessorCount_6() const { return ___totalProcessorCount_6; } inline int32_t* get_address_of_totalProcessorCount_6() { return &___totalProcessorCount_6; } inline void set_totalProcessorCount_6(int32_t value) { ___totalProcessorCount_6 = value; } inline static int32_t get_offset_of_memory_7() { return static_cast(offsetof(InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9, ___memory_7)); } inline UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79 get_memory_7() const { return ___memory_7; } inline UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79 * get_address_of_memory_7() { return &___memory_7; } inline void set_memory_7(UnmanagedMemory_tEFEC9104756D90F1ECBC9A1BFFBCDD0423D2DB79 value) { ___memory_7 = value; } inline static int32_t get_offset_of_m_OnBeforeUpdateHooked_8() { return static_cast(offsetof(InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9, ___m_OnBeforeUpdateHooked_8)); } inline bool get_m_OnBeforeUpdateHooked_8() const { return ___m_OnBeforeUpdateHooked_8; } inline bool* get_address_of_m_OnBeforeUpdateHooked_8() { return &___m_OnBeforeUpdateHooked_8; } inline void set_m_OnBeforeUpdateHooked_8(bool value) { ___m_OnBeforeUpdateHooked_8 = value; } inline static int32_t get_offset_of_m_OnAfterUpdateHooked_9() { return static_cast(offsetof(InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9, ___m_OnAfterUpdateHooked_9)); } inline bool get_m_OnAfterUpdateHooked_9() const { return ___m_OnAfterUpdateHooked_9; } inline bool* get_address_of_m_OnAfterUpdateHooked_9() { return &___m_OnAfterUpdateHooked_9; } inline void set_m_OnAfterUpdateHooked_9(bool value) { ___m_OnAfterUpdateHooked_9 = value; } inline static int32_t get_offset_of_m_InProcessControlStateChange_10() { return static_cast(offsetof(InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9, ___m_InProcessControlStateChange_10)); } inline bool get_m_InProcessControlStateChange_10() const { return ___m_InProcessControlStateChange_10; } inline bool* get_address_of_m_InProcessControlStateChange_10() { return &___m_InProcessControlStateChange_10; } inline void set_m_InProcessControlStateChange_10(bool value) { ___m_InProcessControlStateChange_10 = value; } inline static int32_t get_offset_of_m_CurrentlyProcessingThisEvent_11() { return static_cast(offsetof(InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9, ___m_CurrentlyProcessingThisEvent_11)); } inline InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 get_m_CurrentlyProcessingThisEvent_11() const { return ___m_CurrentlyProcessingThisEvent_11; } inline InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * get_address_of_m_CurrentlyProcessingThisEvent_11() { return &___m_CurrentlyProcessingThisEvent_11; } inline void set_m_CurrentlyProcessingThisEvent_11(InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 value) { ___m_CurrentlyProcessingThisEvent_11 = value; } inline static int32_t get_offset_of_m_OnBeforeUpdateDelegate_12() { return static_cast(offsetof(InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9, ___m_OnBeforeUpdateDelegate_12)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_m_OnBeforeUpdateDelegate_12() const { return ___m_OnBeforeUpdateDelegate_12; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_m_OnBeforeUpdateDelegate_12() { return &___m_OnBeforeUpdateDelegate_12; } inline void set_m_OnBeforeUpdateDelegate_12(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___m_OnBeforeUpdateDelegate_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnBeforeUpdateDelegate_12), (void*)value); } inline static int32_t get_offset_of_m_OnAfterUpdateDelegate_13() { return static_cast(offsetof(InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9, ___m_OnAfterUpdateDelegate_13)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_m_OnAfterUpdateDelegate_13() const { return ___m_OnAfterUpdateDelegate_13; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_m_OnAfterUpdateDelegate_13() { return &___m_OnAfterUpdateDelegate_13; } inline void set_m_OnAfterUpdateDelegate_13(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___m_OnAfterUpdateDelegate_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnAfterUpdateDelegate_13), (void*)value); } }; // UnityEngine.InputSystem.InputControl struct InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 : public RuntimeObject { public: // UnityEngine.InputSystem.LowLevel.InputStateBlock UnityEngine.InputSystem.InputControl::m_StateBlock InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B ___m_StateBlock_0; // UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.InputControl::m_Name InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___m_Name_1; // System.String UnityEngine.InputSystem.InputControl::m_Path String_t* ___m_Path_2; // System.String UnityEngine.InputSystem.InputControl::m_DisplayName String_t* ___m_DisplayName_3; // System.String UnityEngine.InputSystem.InputControl::m_DisplayNameFromLayout String_t* ___m_DisplayNameFromLayout_4; // System.String UnityEngine.InputSystem.InputControl::m_ShortDisplayName String_t* ___m_ShortDisplayName_5; // System.String UnityEngine.InputSystem.InputControl::m_ShortDisplayNameFromLayout String_t* ___m_ShortDisplayNameFromLayout_6; // UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.InputControl::m_Layout InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___m_Layout_7; // UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.InputControl::m_Variants InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___m_Variants_8; // UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputControl::m_Device InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___m_Device_9; // UnityEngine.InputSystem.InputControl UnityEngine.InputSystem.InputControl::m_Parent InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * ___m_Parent_10; // System.Int32 UnityEngine.InputSystem.InputControl::m_UsageCount int32_t ___m_UsageCount_11; // System.Int32 UnityEngine.InputSystem.InputControl::m_UsageStartIndex int32_t ___m_UsageStartIndex_12; // System.Int32 UnityEngine.InputSystem.InputControl::m_AliasCount int32_t ___m_AliasCount_13; // System.Int32 UnityEngine.InputSystem.InputControl::m_AliasStartIndex int32_t ___m_AliasStartIndex_14; // System.Int32 UnityEngine.InputSystem.InputControl::m_ChildCount int32_t ___m_ChildCount_15; // System.Int32 UnityEngine.InputSystem.InputControl::m_ChildStartIndex int32_t ___m_ChildStartIndex_16; // UnityEngine.InputSystem.InputControl/ControlFlags UnityEngine.InputSystem.InputControl::m_ControlFlags int32_t ___m_ControlFlags_17; // UnityEngine.InputSystem.Utilities.PrimitiveValue UnityEngine.InputSystem.InputControl::m_DefaultState PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8 ___m_DefaultState_18; // UnityEngine.InputSystem.Utilities.PrimitiveValue UnityEngine.InputSystem.InputControl::m_MinValue PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8 ___m_MinValue_19; // UnityEngine.InputSystem.Utilities.PrimitiveValue UnityEngine.InputSystem.InputControl::m_MaxValue PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8 ___m_MaxValue_20; public: inline static int32_t get_offset_of_m_StateBlock_0() { return static_cast(offsetof(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1, ___m_StateBlock_0)); } inline InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B get_m_StateBlock_0() const { return ___m_StateBlock_0; } inline InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * get_address_of_m_StateBlock_0() { return &___m_StateBlock_0; } inline void set_m_StateBlock_0(InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B value) { ___m_StateBlock_0 = value; } inline static int32_t get_offset_of_m_Name_1() { return static_cast(offsetof(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1, ___m_Name_1)); } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED get_m_Name_1() const { return ___m_Name_1; } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * get_address_of_m_Name_1() { return &___m_Name_1; } inline void set_m_Name_1(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED value) { ___m_Name_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Name_1))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Name_1))->___m_StringLowerCase_1), (void*)NULL); #endif } inline static int32_t get_offset_of_m_Path_2() { return static_cast(offsetof(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1, ___m_Path_2)); } inline String_t* get_m_Path_2() const { return ___m_Path_2; } inline String_t** get_address_of_m_Path_2() { return &___m_Path_2; } inline void set_m_Path_2(String_t* value) { ___m_Path_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Path_2), (void*)value); } inline static int32_t get_offset_of_m_DisplayName_3() { return static_cast(offsetof(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1, ___m_DisplayName_3)); } inline String_t* get_m_DisplayName_3() const { return ___m_DisplayName_3; } inline String_t** get_address_of_m_DisplayName_3() { return &___m_DisplayName_3; } inline void set_m_DisplayName_3(String_t* value) { ___m_DisplayName_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DisplayName_3), (void*)value); } inline static int32_t get_offset_of_m_DisplayNameFromLayout_4() { return static_cast(offsetof(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1, ___m_DisplayNameFromLayout_4)); } inline String_t* get_m_DisplayNameFromLayout_4() const { return ___m_DisplayNameFromLayout_4; } inline String_t** get_address_of_m_DisplayNameFromLayout_4() { return &___m_DisplayNameFromLayout_4; } inline void set_m_DisplayNameFromLayout_4(String_t* value) { ___m_DisplayNameFromLayout_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DisplayNameFromLayout_4), (void*)value); } inline static int32_t get_offset_of_m_ShortDisplayName_5() { return static_cast(offsetof(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1, ___m_ShortDisplayName_5)); } inline String_t* get_m_ShortDisplayName_5() const { return ___m_ShortDisplayName_5; } inline String_t** get_address_of_m_ShortDisplayName_5() { return &___m_ShortDisplayName_5; } inline void set_m_ShortDisplayName_5(String_t* value) { ___m_ShortDisplayName_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ShortDisplayName_5), (void*)value); } inline static int32_t get_offset_of_m_ShortDisplayNameFromLayout_6() { return static_cast(offsetof(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1, ___m_ShortDisplayNameFromLayout_6)); } inline String_t* get_m_ShortDisplayNameFromLayout_6() const { return ___m_ShortDisplayNameFromLayout_6; } inline String_t** get_address_of_m_ShortDisplayNameFromLayout_6() { return &___m_ShortDisplayNameFromLayout_6; } inline void set_m_ShortDisplayNameFromLayout_6(String_t* value) { ___m_ShortDisplayNameFromLayout_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ShortDisplayNameFromLayout_6), (void*)value); } inline static int32_t get_offset_of_m_Layout_7() { return static_cast(offsetof(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1, ___m_Layout_7)); } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED get_m_Layout_7() const { return ___m_Layout_7; } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * get_address_of_m_Layout_7() { return &___m_Layout_7; } inline void set_m_Layout_7(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED value) { ___m_Layout_7 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Layout_7))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Layout_7))->___m_StringLowerCase_1), (void*)NULL); #endif } inline static int32_t get_offset_of_m_Variants_8() { return static_cast(offsetof(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1, ___m_Variants_8)); } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED get_m_Variants_8() const { return ___m_Variants_8; } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * get_address_of_m_Variants_8() { return &___m_Variants_8; } inline void set_m_Variants_8(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED value) { ___m_Variants_8 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Variants_8))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Variants_8))->___m_StringLowerCase_1), (void*)NULL); #endif } inline static int32_t get_offset_of_m_Device_9() { return static_cast(offsetof(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1, ___m_Device_9)); } inline InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * get_m_Device_9() const { return ___m_Device_9; } inline InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 ** get_address_of_m_Device_9() { return &___m_Device_9; } inline void set_m_Device_9(InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * value) { ___m_Device_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Device_9), (void*)value); } inline static int32_t get_offset_of_m_Parent_10() { return static_cast(offsetof(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1, ___m_Parent_10)); } inline InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * get_m_Parent_10() const { return ___m_Parent_10; } inline InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 ** get_address_of_m_Parent_10() { return &___m_Parent_10; } inline void set_m_Parent_10(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * value) { ___m_Parent_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Parent_10), (void*)value); } inline static int32_t get_offset_of_m_UsageCount_11() { return static_cast(offsetof(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1, ___m_UsageCount_11)); } inline int32_t get_m_UsageCount_11() const { return ___m_UsageCount_11; } inline int32_t* get_address_of_m_UsageCount_11() { return &___m_UsageCount_11; } inline void set_m_UsageCount_11(int32_t value) { ___m_UsageCount_11 = value; } inline static int32_t get_offset_of_m_UsageStartIndex_12() { return static_cast(offsetof(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1, ___m_UsageStartIndex_12)); } inline int32_t get_m_UsageStartIndex_12() const { return ___m_UsageStartIndex_12; } inline int32_t* get_address_of_m_UsageStartIndex_12() { return &___m_UsageStartIndex_12; } inline void set_m_UsageStartIndex_12(int32_t value) { ___m_UsageStartIndex_12 = value; } inline static int32_t get_offset_of_m_AliasCount_13() { return static_cast(offsetof(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1, ___m_AliasCount_13)); } inline int32_t get_m_AliasCount_13() const { return ___m_AliasCount_13; } inline int32_t* get_address_of_m_AliasCount_13() { return &___m_AliasCount_13; } inline void set_m_AliasCount_13(int32_t value) { ___m_AliasCount_13 = value; } inline static int32_t get_offset_of_m_AliasStartIndex_14() { return static_cast(offsetof(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1, ___m_AliasStartIndex_14)); } inline int32_t get_m_AliasStartIndex_14() const { return ___m_AliasStartIndex_14; } inline int32_t* get_address_of_m_AliasStartIndex_14() { return &___m_AliasStartIndex_14; } inline void set_m_AliasStartIndex_14(int32_t value) { ___m_AliasStartIndex_14 = value; } inline static int32_t get_offset_of_m_ChildCount_15() { return static_cast(offsetof(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1, ___m_ChildCount_15)); } inline int32_t get_m_ChildCount_15() const { return ___m_ChildCount_15; } inline int32_t* get_address_of_m_ChildCount_15() { return &___m_ChildCount_15; } inline void set_m_ChildCount_15(int32_t value) { ___m_ChildCount_15 = value; } inline static int32_t get_offset_of_m_ChildStartIndex_16() { return static_cast(offsetof(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1, ___m_ChildStartIndex_16)); } inline int32_t get_m_ChildStartIndex_16() const { return ___m_ChildStartIndex_16; } inline int32_t* get_address_of_m_ChildStartIndex_16() { return &___m_ChildStartIndex_16; } inline void set_m_ChildStartIndex_16(int32_t value) { ___m_ChildStartIndex_16 = value; } inline static int32_t get_offset_of_m_ControlFlags_17() { return static_cast(offsetof(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1, ___m_ControlFlags_17)); } inline int32_t get_m_ControlFlags_17() const { return ___m_ControlFlags_17; } inline int32_t* get_address_of_m_ControlFlags_17() { return &___m_ControlFlags_17; } inline void set_m_ControlFlags_17(int32_t value) { ___m_ControlFlags_17 = value; } inline static int32_t get_offset_of_m_DefaultState_18() { return static_cast(offsetof(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1, ___m_DefaultState_18)); } inline PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8 get_m_DefaultState_18() const { return ___m_DefaultState_18; } inline PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8 * get_address_of_m_DefaultState_18() { return &___m_DefaultState_18; } inline void set_m_DefaultState_18(PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8 value) { ___m_DefaultState_18 = value; } inline static int32_t get_offset_of_m_MinValue_19() { return static_cast(offsetof(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1, ___m_MinValue_19)); } inline PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8 get_m_MinValue_19() const { return ___m_MinValue_19; } inline PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8 * get_address_of_m_MinValue_19() { return &___m_MinValue_19; } inline void set_m_MinValue_19(PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8 value) { ___m_MinValue_19 = value; } inline static int32_t get_offset_of_m_MaxValue_20() { return static_cast(offsetof(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1, ___m_MaxValue_20)); } inline PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8 get_m_MaxValue_20() const { return ___m_MaxValue_20; } inline PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8 * get_address_of_m_MaxValue_20() { return &___m_MaxValue_20; } inline void set_m_MaxValue_20(PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8 value) { ___m_MaxValue_20 = value; } }; // UnityEngine.InputSystem.LowLevel.InputDeviceCommandDelegate struct InputDeviceCommandDelegate_t967EA90378916CA01FF68A0403468313659A1718 : public MulticastDelegate_t { public: public: }; // UnityEngine.InputSystem.LowLevel.InputDeviceExecuteCommandDelegate struct InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D : public MulticastDelegate_t { public: public: }; // UnityEngine.InputSystem.Layouts.InputDeviceFindControlLayoutDelegate struct InputDeviceFindControlLayoutDelegate_tE30412E20D6F6870BF090C6D6C4CA9B4CFD0978F : public MulticastDelegate_t { public: public: }; // UnityEngine.InputSystem.LowLevel.InputEvent struct InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 { public: union { struct { union { #pragma pack(push, tp, 1) struct { // UnityEngineInternal.Input.NativeInputEvent UnityEngine.InputSystem.LowLevel.InputEvent::m_Event NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD ___m_Event_5; }; #pragma pack(pop, tp) #pragma pack(push, tp, 1) struct { NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD ___m_Event_5_forAlignmentOnly; }; #pragma pack(pop, tp) }; }; uint8_t InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234__padding[20]; }; public: inline static int32_t get_offset_of_m_Event_5() { return static_cast(offsetof(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234, ___m_Event_5)); } inline NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD get_m_Event_5() const { return ___m_Event_5; } inline NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * get_address_of_m_Event_5() { return &___m_Event_5; } inline void set_m_Event_5(NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD value) { ___m_Event_5 = value; } }; // UnityEngine.InputSystem.LowLevel.InputEventBuffer struct InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA { public: // Unity.Collections.NativeArray`1 UnityEngine.InputSystem.LowLevel.InputEventBuffer::m_Buffer NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___m_Buffer_1; // System.Int64 UnityEngine.InputSystem.LowLevel.InputEventBuffer::m_SizeInBytes int64_t ___m_SizeInBytes_2; // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventBuffer::m_EventCount int32_t ___m_EventCount_3; // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventBuffer::m_WeOwnTheBuffer bool ___m_WeOwnTheBuffer_4; public: inline static int32_t get_offset_of_m_Buffer_1() { return static_cast(offsetof(InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA, ___m_Buffer_1)); } inline NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 get_m_Buffer_1() const { return ___m_Buffer_1; } inline NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * get_address_of_m_Buffer_1() { return &___m_Buffer_1; } inline void set_m_Buffer_1(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 value) { ___m_Buffer_1 = value; } inline static int32_t get_offset_of_m_SizeInBytes_2() { return static_cast(offsetof(InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA, ___m_SizeInBytes_2)); } inline int64_t get_m_SizeInBytes_2() const { return ___m_SizeInBytes_2; } inline int64_t* get_address_of_m_SizeInBytes_2() { return &___m_SizeInBytes_2; } inline void set_m_SizeInBytes_2(int64_t value) { ___m_SizeInBytes_2 = value; } inline static int32_t get_offset_of_m_EventCount_3() { return static_cast(offsetof(InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA, ___m_EventCount_3)); } inline int32_t get_m_EventCount_3() const { return ___m_EventCount_3; } inline int32_t* get_address_of_m_EventCount_3() { return &___m_EventCount_3; } inline void set_m_EventCount_3(int32_t value) { ___m_EventCount_3 = value; } inline static int32_t get_offset_of_m_WeOwnTheBuffer_4() { return static_cast(offsetof(InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA, ___m_WeOwnTheBuffer_4)); } inline bool get_m_WeOwnTheBuffer_4() const { return ___m_WeOwnTheBuffer_4; } inline bool* get_address_of_m_WeOwnTheBuffer_4() { return &___m_WeOwnTheBuffer_4; } inline void set_m_WeOwnTheBuffer_4(bool value) { ___m_WeOwnTheBuffer_4 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.InputEventBuffer struct InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshaled_pinvoke { NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___m_Buffer_1; int64_t ___m_SizeInBytes_2; int32_t ___m_EventCount_3; int32_t ___m_WeOwnTheBuffer_4; }; // Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.InputEventBuffer struct InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshaled_com { NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___m_Buffer_1; int64_t ___m_SizeInBytes_2; int32_t ___m_EventCount_3; int32_t ___m_WeOwnTheBuffer_4; }; // UnityEngine.InputSystem.InputSettings struct InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 : public ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A { public: // System.String[] UnityEngine.InputSystem.InputSettings::m_SupportedDevices StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___m_SupportedDevices_4; // UnityEngine.InputSystem.InputSettings/UpdateMode UnityEngine.InputSystem.InputSettings::m_UpdateMode int32_t ___m_UpdateMode_5; // System.Int32 UnityEngine.InputSystem.InputSettings::m_MaxEventBytesPerUpdate int32_t ___m_MaxEventBytesPerUpdate_6; // System.Int32 UnityEngine.InputSystem.InputSettings::m_MaxQueuedEventsPerUpdate int32_t ___m_MaxQueuedEventsPerUpdate_7; // System.Boolean UnityEngine.InputSystem.InputSettings::m_CompensateForScreenOrientation bool ___m_CompensateForScreenOrientation_8; // UnityEngine.InputSystem.InputSettings/BackgroundBehavior UnityEngine.InputSystem.InputSettings::m_BackgroundBehavior int32_t ___m_BackgroundBehavior_9; // UnityEngine.InputSystem.InputSettings/EditorInputBehaviorInPlayMode UnityEngine.InputSystem.InputSettings::m_EditorInputBehaviorInPlayMode int32_t ___m_EditorInputBehaviorInPlayMode_10; // System.Single UnityEngine.InputSystem.InputSettings::m_DefaultDeadzoneMin float ___m_DefaultDeadzoneMin_11; // System.Single UnityEngine.InputSystem.InputSettings::m_DefaultDeadzoneMax float ___m_DefaultDeadzoneMax_12; // System.Single UnityEngine.InputSystem.InputSettings::m_DefaultButtonPressPoint float ___m_DefaultButtonPressPoint_13; // System.Single UnityEngine.InputSystem.InputSettings::m_ButtonReleaseThreshold float ___m_ButtonReleaseThreshold_14; // System.Single UnityEngine.InputSystem.InputSettings::m_DefaultTapTime float ___m_DefaultTapTime_15; // System.Single UnityEngine.InputSystem.InputSettings::m_DefaultSlowTapTime float ___m_DefaultSlowTapTime_16; // System.Single UnityEngine.InputSystem.InputSettings::m_DefaultHoldTime float ___m_DefaultHoldTime_17; // System.Single UnityEngine.InputSystem.InputSettings::m_TapRadius float ___m_TapRadius_18; // System.Single UnityEngine.InputSystem.InputSettings::m_MultiTapDelayTime float ___m_MultiTapDelayTime_19; // System.Boolean UnityEngine.InputSystem.InputSettings::m_DisableRedundantEventsMerging bool ___m_DisableRedundantEventsMerging_20; // System.Boolean UnityEngine.InputSystem.InputSettings::m_ShortcutKeysConsumeInputs bool ___m_ShortcutKeysConsumeInputs_21; // System.Collections.Generic.HashSet`1 UnityEngine.InputSystem.InputSettings::m_FeatureFlags HashSet_1_t45F75268054D01D9E70EB33D7F6D2FA609DB9229 * ___m_FeatureFlags_22; public: inline static int32_t get_offset_of_m_SupportedDevices_4() { return static_cast(offsetof(InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6, ___m_SupportedDevices_4)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_m_SupportedDevices_4() const { return ___m_SupportedDevices_4; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_m_SupportedDevices_4() { return &___m_SupportedDevices_4; } inline void set_m_SupportedDevices_4(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___m_SupportedDevices_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SupportedDevices_4), (void*)value); } inline static int32_t get_offset_of_m_UpdateMode_5() { return static_cast(offsetof(InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6, ___m_UpdateMode_5)); } inline int32_t get_m_UpdateMode_5() const { return ___m_UpdateMode_5; } inline int32_t* get_address_of_m_UpdateMode_5() { return &___m_UpdateMode_5; } inline void set_m_UpdateMode_5(int32_t value) { ___m_UpdateMode_5 = value; } inline static int32_t get_offset_of_m_MaxEventBytesPerUpdate_6() { return static_cast(offsetof(InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6, ___m_MaxEventBytesPerUpdate_6)); } inline int32_t get_m_MaxEventBytesPerUpdate_6() const { return ___m_MaxEventBytesPerUpdate_6; } inline int32_t* get_address_of_m_MaxEventBytesPerUpdate_6() { return &___m_MaxEventBytesPerUpdate_6; } inline void set_m_MaxEventBytesPerUpdate_6(int32_t value) { ___m_MaxEventBytesPerUpdate_6 = value; } inline static int32_t get_offset_of_m_MaxQueuedEventsPerUpdate_7() { return static_cast(offsetof(InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6, ___m_MaxQueuedEventsPerUpdate_7)); } inline int32_t get_m_MaxQueuedEventsPerUpdate_7() const { return ___m_MaxQueuedEventsPerUpdate_7; } inline int32_t* get_address_of_m_MaxQueuedEventsPerUpdate_7() { return &___m_MaxQueuedEventsPerUpdate_7; } inline void set_m_MaxQueuedEventsPerUpdate_7(int32_t value) { ___m_MaxQueuedEventsPerUpdate_7 = value; } inline static int32_t get_offset_of_m_CompensateForScreenOrientation_8() { return static_cast(offsetof(InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6, ___m_CompensateForScreenOrientation_8)); } inline bool get_m_CompensateForScreenOrientation_8() const { return ___m_CompensateForScreenOrientation_8; } inline bool* get_address_of_m_CompensateForScreenOrientation_8() { return &___m_CompensateForScreenOrientation_8; } inline void set_m_CompensateForScreenOrientation_8(bool value) { ___m_CompensateForScreenOrientation_8 = value; } inline static int32_t get_offset_of_m_BackgroundBehavior_9() { return static_cast(offsetof(InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6, ___m_BackgroundBehavior_9)); } inline int32_t get_m_BackgroundBehavior_9() const { return ___m_BackgroundBehavior_9; } inline int32_t* get_address_of_m_BackgroundBehavior_9() { return &___m_BackgroundBehavior_9; } inline void set_m_BackgroundBehavior_9(int32_t value) { ___m_BackgroundBehavior_9 = value; } inline static int32_t get_offset_of_m_EditorInputBehaviorInPlayMode_10() { return static_cast(offsetof(InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6, ___m_EditorInputBehaviorInPlayMode_10)); } inline int32_t get_m_EditorInputBehaviorInPlayMode_10() const { return ___m_EditorInputBehaviorInPlayMode_10; } inline int32_t* get_address_of_m_EditorInputBehaviorInPlayMode_10() { return &___m_EditorInputBehaviorInPlayMode_10; } inline void set_m_EditorInputBehaviorInPlayMode_10(int32_t value) { ___m_EditorInputBehaviorInPlayMode_10 = value; } inline static int32_t get_offset_of_m_DefaultDeadzoneMin_11() { return static_cast(offsetof(InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6, ___m_DefaultDeadzoneMin_11)); } inline float get_m_DefaultDeadzoneMin_11() const { return ___m_DefaultDeadzoneMin_11; } inline float* get_address_of_m_DefaultDeadzoneMin_11() { return &___m_DefaultDeadzoneMin_11; } inline void set_m_DefaultDeadzoneMin_11(float value) { ___m_DefaultDeadzoneMin_11 = value; } inline static int32_t get_offset_of_m_DefaultDeadzoneMax_12() { return static_cast(offsetof(InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6, ___m_DefaultDeadzoneMax_12)); } inline float get_m_DefaultDeadzoneMax_12() const { return ___m_DefaultDeadzoneMax_12; } inline float* get_address_of_m_DefaultDeadzoneMax_12() { return &___m_DefaultDeadzoneMax_12; } inline void set_m_DefaultDeadzoneMax_12(float value) { ___m_DefaultDeadzoneMax_12 = value; } inline static int32_t get_offset_of_m_DefaultButtonPressPoint_13() { return static_cast(offsetof(InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6, ___m_DefaultButtonPressPoint_13)); } inline float get_m_DefaultButtonPressPoint_13() const { return ___m_DefaultButtonPressPoint_13; } inline float* get_address_of_m_DefaultButtonPressPoint_13() { return &___m_DefaultButtonPressPoint_13; } inline void set_m_DefaultButtonPressPoint_13(float value) { ___m_DefaultButtonPressPoint_13 = value; } inline static int32_t get_offset_of_m_ButtonReleaseThreshold_14() { return static_cast(offsetof(InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6, ___m_ButtonReleaseThreshold_14)); } inline float get_m_ButtonReleaseThreshold_14() const { return ___m_ButtonReleaseThreshold_14; } inline float* get_address_of_m_ButtonReleaseThreshold_14() { return &___m_ButtonReleaseThreshold_14; } inline void set_m_ButtonReleaseThreshold_14(float value) { ___m_ButtonReleaseThreshold_14 = value; } inline static int32_t get_offset_of_m_DefaultTapTime_15() { return static_cast(offsetof(InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6, ___m_DefaultTapTime_15)); } inline float get_m_DefaultTapTime_15() const { return ___m_DefaultTapTime_15; } inline float* get_address_of_m_DefaultTapTime_15() { return &___m_DefaultTapTime_15; } inline void set_m_DefaultTapTime_15(float value) { ___m_DefaultTapTime_15 = value; } inline static int32_t get_offset_of_m_DefaultSlowTapTime_16() { return static_cast(offsetof(InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6, ___m_DefaultSlowTapTime_16)); } inline float get_m_DefaultSlowTapTime_16() const { return ___m_DefaultSlowTapTime_16; } inline float* get_address_of_m_DefaultSlowTapTime_16() { return &___m_DefaultSlowTapTime_16; } inline void set_m_DefaultSlowTapTime_16(float value) { ___m_DefaultSlowTapTime_16 = value; } inline static int32_t get_offset_of_m_DefaultHoldTime_17() { return static_cast(offsetof(InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6, ___m_DefaultHoldTime_17)); } inline float get_m_DefaultHoldTime_17() const { return ___m_DefaultHoldTime_17; } inline float* get_address_of_m_DefaultHoldTime_17() { return &___m_DefaultHoldTime_17; } inline void set_m_DefaultHoldTime_17(float value) { ___m_DefaultHoldTime_17 = value; } inline static int32_t get_offset_of_m_TapRadius_18() { return static_cast(offsetof(InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6, ___m_TapRadius_18)); } inline float get_m_TapRadius_18() const { return ___m_TapRadius_18; } inline float* get_address_of_m_TapRadius_18() { return &___m_TapRadius_18; } inline void set_m_TapRadius_18(float value) { ___m_TapRadius_18 = value; } inline static int32_t get_offset_of_m_MultiTapDelayTime_19() { return static_cast(offsetof(InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6, ___m_MultiTapDelayTime_19)); } inline float get_m_MultiTapDelayTime_19() const { return ___m_MultiTapDelayTime_19; } inline float* get_address_of_m_MultiTapDelayTime_19() { return &___m_MultiTapDelayTime_19; } inline void set_m_MultiTapDelayTime_19(float value) { ___m_MultiTapDelayTime_19 = value; } inline static int32_t get_offset_of_m_DisableRedundantEventsMerging_20() { return static_cast(offsetof(InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6, ___m_DisableRedundantEventsMerging_20)); } inline bool get_m_DisableRedundantEventsMerging_20() const { return ___m_DisableRedundantEventsMerging_20; } inline bool* get_address_of_m_DisableRedundantEventsMerging_20() { return &___m_DisableRedundantEventsMerging_20; } inline void set_m_DisableRedundantEventsMerging_20(bool value) { ___m_DisableRedundantEventsMerging_20 = value; } inline static int32_t get_offset_of_m_ShortcutKeysConsumeInputs_21() { return static_cast(offsetof(InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6, ___m_ShortcutKeysConsumeInputs_21)); } inline bool get_m_ShortcutKeysConsumeInputs_21() const { return ___m_ShortcutKeysConsumeInputs_21; } inline bool* get_address_of_m_ShortcutKeysConsumeInputs_21() { return &___m_ShortcutKeysConsumeInputs_21; } inline void set_m_ShortcutKeysConsumeInputs_21(bool value) { ___m_ShortcutKeysConsumeInputs_21 = value; } inline static int32_t get_offset_of_m_FeatureFlags_22() { return static_cast(offsetof(InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6, ___m_FeatureFlags_22)); } inline HashSet_1_t45F75268054D01D9E70EB33D7F6D2FA609DB9229 * get_m_FeatureFlags_22() const { return ___m_FeatureFlags_22; } inline HashSet_1_t45F75268054D01D9E70EB33D7F6D2FA609DB9229 ** get_address_of_m_FeatureFlags_22() { return &___m_FeatureFlags_22; } inline void set_m_FeatureFlags_22(HashSet_1_t45F75268054D01D9E70EB33D7F6D2FA609DB9229 * value) { ___m_FeatureFlags_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_FeatureFlags_22), (void*)value); } }; // System.InvalidOperationException struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.NotImplementedException struct NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.NotSupportedException struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // UnityEngine.InputSystem.InputManager/d__75 struct U3CListControlLayoutsU3Ed__75_tA3D7E50B5429656CACEB609171EC221DD2A94B89 : public RuntimeObject { public: // System.Int32 UnityEngine.InputSystem.InputManager/d__75::<>1__state int32_t ___U3CU3E1__state_0; // System.String UnityEngine.InputSystem.InputManager/d__75::<>2__current String_t* ___U3CU3E2__current_1; // System.Int32 UnityEngine.InputSystem.InputManager/d__75::<>l__initialThreadId int32_t ___U3CU3El__initialThreadId_2; // System.String UnityEngine.InputSystem.InputManager/d__75::basedOn String_t* ___basedOn_3; // System.String UnityEngine.InputSystem.InputManager/d__75::<>3__basedOn String_t* ___U3CU3E3__basedOn_4; // UnityEngine.InputSystem.InputManager UnityEngine.InputSystem.InputManager/d__75::<>4__this InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * ___U3CU3E4__this_5; // UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.InputManager/d__75::5__2 InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___U3CinternedBasedOnU3E5__2_6; // System.Collections.Generic.Dictionary`2/Enumerator UnityEngine.InputSystem.InputManager/d__75::<>7__wrap2 Enumerator_tBC97DB5B6B5870EB975D595B3E8450E430C0A0E5 ___U3CU3E7__wrap2_7; // System.Collections.Generic.Dictionary`2/Enumerator UnityEngine.InputSystem.InputManager/d__75::<>7__wrap3 Enumerator_tA79D34AACF919BA3D1503DCC212621FFA3947536 ___U3CU3E7__wrap3_8; // System.Collections.Generic.Dictionary`2/Enumerator> UnityEngine.InputSystem.InputManager/d__75::<>7__wrap4 Enumerator_t86F084708DD8E20059734F3D16C77A4CE4C171D9 ___U3CU3E7__wrap4_9; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast(offsetof(U3CListControlLayoutsU3Ed__75_tA3D7E50B5429656CACEB609171EC221DD2A94B89, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast(offsetof(U3CListControlLayoutsU3Ed__75_tA3D7E50B5429656CACEB609171EC221DD2A94B89, ___U3CU3E2__current_1)); } inline String_t* get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline String_t** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(String_t* value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast(offsetof(U3CListControlLayoutsU3Ed__75_tA3D7E50B5429656CACEB609171EC221DD2A94B89, ___U3CU3El__initialThreadId_2)); } inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; } inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; } inline void set_U3CU3El__initialThreadId_2(int32_t value) { ___U3CU3El__initialThreadId_2 = value; } inline static int32_t get_offset_of_basedOn_3() { return static_cast(offsetof(U3CListControlLayoutsU3Ed__75_tA3D7E50B5429656CACEB609171EC221DD2A94B89, ___basedOn_3)); } inline String_t* get_basedOn_3() const { return ___basedOn_3; } inline String_t** get_address_of_basedOn_3() { return &___basedOn_3; } inline void set_basedOn_3(String_t* value) { ___basedOn_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___basedOn_3), (void*)value); } inline static int32_t get_offset_of_U3CU3E3__basedOn_4() { return static_cast(offsetof(U3CListControlLayoutsU3Ed__75_tA3D7E50B5429656CACEB609171EC221DD2A94B89, ___U3CU3E3__basedOn_4)); } inline String_t* get_U3CU3E3__basedOn_4() const { return ___U3CU3E3__basedOn_4; } inline String_t** get_address_of_U3CU3E3__basedOn_4() { return &___U3CU3E3__basedOn_4; } inline void set_U3CU3E3__basedOn_4(String_t* value) { ___U3CU3E3__basedOn_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E3__basedOn_4), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_5() { return static_cast(offsetof(U3CListControlLayoutsU3Ed__75_tA3D7E50B5429656CACEB609171EC221DD2A94B89, ___U3CU3E4__this_5)); } inline InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * get_U3CU3E4__this_5() const { return ___U3CU3E4__this_5; } inline InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F ** get_address_of_U3CU3E4__this_5() { return &___U3CU3E4__this_5; } inline void set_U3CU3E4__this_5(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * value) { ___U3CU3E4__this_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_5), (void*)value); } inline static int32_t get_offset_of_U3CinternedBasedOnU3E5__2_6() { return static_cast(offsetof(U3CListControlLayoutsU3Ed__75_tA3D7E50B5429656CACEB609171EC221DD2A94B89, ___U3CinternedBasedOnU3E5__2_6)); } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED get_U3CinternedBasedOnU3E5__2_6() const { return ___U3CinternedBasedOnU3E5__2_6; } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * get_address_of_U3CinternedBasedOnU3E5__2_6() { return &___U3CinternedBasedOnU3E5__2_6; } inline void set_U3CinternedBasedOnU3E5__2_6(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED value) { ___U3CinternedBasedOnU3E5__2_6 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CinternedBasedOnU3E5__2_6))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___U3CinternedBasedOnU3E5__2_6))->___m_StringLowerCase_1), (void*)NULL); #endif } inline static int32_t get_offset_of_U3CU3E7__wrap2_7() { return static_cast(offsetof(U3CListControlLayoutsU3Ed__75_tA3D7E50B5429656CACEB609171EC221DD2A94B89, ___U3CU3E7__wrap2_7)); } inline Enumerator_tBC97DB5B6B5870EB975D595B3E8450E430C0A0E5 get_U3CU3E7__wrap2_7() const { return ___U3CU3E7__wrap2_7; } inline Enumerator_tBC97DB5B6B5870EB975D595B3E8450E430C0A0E5 * get_address_of_U3CU3E7__wrap2_7() { return &___U3CU3E7__wrap2_7; } inline void set_U3CU3E7__wrap2_7(Enumerator_tBC97DB5B6B5870EB975D595B3E8450E430C0A0E5 value) { ___U3CU3E7__wrap2_7 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E7__wrap2_7))->___dictionary_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___U3CU3E7__wrap2_7))->___current_3))->___key_0))->___m_StringOriginalCase_0), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___U3CU3E7__wrap2_7))->___current_3))->___key_0))->___m_StringLowerCase_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___U3CU3E7__wrap2_7))->___current_3))->___value_1), (void*)NULL); #endif } inline static int32_t get_offset_of_U3CU3E7__wrap3_8() { return static_cast(offsetof(U3CListControlLayoutsU3Ed__75_tA3D7E50B5429656CACEB609171EC221DD2A94B89, ___U3CU3E7__wrap3_8)); } inline Enumerator_tA79D34AACF919BA3D1503DCC212621FFA3947536 get_U3CU3E7__wrap3_8() const { return ___U3CU3E7__wrap3_8; } inline Enumerator_tA79D34AACF919BA3D1503DCC212621FFA3947536 * get_address_of_U3CU3E7__wrap3_8() { return &___U3CU3E7__wrap3_8; } inline void set_U3CU3E7__wrap3_8(Enumerator_tA79D34AACF919BA3D1503DCC212621FFA3947536 value) { ___U3CU3E7__wrap3_8 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E7__wrap3_8))->___dictionary_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___U3CU3E7__wrap3_8))->___current_3))->___key_0))->___m_StringOriginalCase_0), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___U3CU3E7__wrap3_8))->___current_3))->___key_0))->___m_StringLowerCase_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___U3CU3E7__wrap3_8))->___current_3))->___value_1), (void*)NULL); #endif } inline static int32_t get_offset_of_U3CU3E7__wrap4_9() { return static_cast(offsetof(U3CListControlLayoutsU3Ed__75_tA3D7E50B5429656CACEB609171EC221DD2A94B89, ___U3CU3E7__wrap4_9)); } inline Enumerator_t86F084708DD8E20059734F3D16C77A4CE4C171D9 get_U3CU3E7__wrap4_9() const { return ___U3CU3E7__wrap4_9; } inline Enumerator_t86F084708DD8E20059734F3D16C77A4CE4C171D9 * get_address_of_U3CU3E7__wrap4_9() { return &___U3CU3E7__wrap4_9; } inline void set_U3CU3E7__wrap4_9(Enumerator_t86F084708DD8E20059734F3D16C77A4CE4C171D9 value) { ___U3CU3E7__wrap4_9 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E7__wrap4_9))->___dictionary_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___U3CU3E7__wrap4_9))->___current_3))->___key_0))->___m_StringOriginalCase_0), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___U3CU3E7__wrap4_9))->___current_3))->___key_0))->___m_StringLowerCase_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___U3CU3E7__wrap4_9))->___current_3))->___value_1), (void*)NULL); #endif } }; // UnityEngine.InputSystem.InputControl`1 struct InputControl_1_t011854B2ED3F016A34A91350FC9B9055E1E820D3 : public InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 { public: // UnityEngine.InputSystem.Utilities.InlinedArray`1> UnityEngine.InputSystem.InputControl`1::m_ProcessorStack InlinedArray_1_t8135010B8D8001565931433B4FF0A3948925A9FD ___m_ProcessorStack_21; public: inline static int32_t get_offset_of_m_ProcessorStack_21() { return static_cast(offsetof(InputControl_1_t011854B2ED3F016A34A91350FC9B9055E1E820D3, ___m_ProcessorStack_21)); } inline InlinedArray_1_t8135010B8D8001565931433B4FF0A3948925A9FD get_m_ProcessorStack_21() const { return ___m_ProcessorStack_21; } inline InlinedArray_1_t8135010B8D8001565931433B4FF0A3948925A9FD * get_address_of_m_ProcessorStack_21() { return &___m_ProcessorStack_21; } inline void set_m_ProcessorStack_21(InlinedArray_1_t8135010B8D8001565931433B4FF0A3948925A9FD value) { ___m_ProcessorStack_21 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_ProcessorStack_21))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_ProcessorStack_21))->___additionalValues_2), (void*)NULL); #endif } }; // System.ArgumentNullException struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 { public: public: }; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 { public: // System.Object System.ArgumentOutOfRangeException::m_actualValue RuntimeObject * ___m_actualValue_19; public: inline static int32_t get_offset_of_m_actualValue_19() { return static_cast(offsetof(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8, ___m_actualValue_19)); } inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; } inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; } inline void set_m_actualValue_19(RuntimeObject * value) { ___m_actualValue_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_actualValue_19), (void*)value); } }; // UnityEngine.InputSystem.LowLevel.DeltaStateEvent struct DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4 { public: union { struct { union { #pragma pack(push, tp, 1) struct { // UnityEngine.InputSystem.LowLevel.InputEvent UnityEngine.InputSystem.LowLevel.DeltaStateEvent::baseEvent InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ___baseEvent_1; }; #pragma pack(pop, tp) #pragma pack(push, tp, 1) struct { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ___baseEvent_1_forAlignmentOnly; }; #pragma pack(pop, tp) #pragma pack(push, tp, 1) struct { char ___stateFormat_2_OffsetPadding[20]; // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.DeltaStateEvent::stateFormat FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___stateFormat_2; }; #pragma pack(pop, tp) #pragma pack(push, tp, 1) struct { char ___stateFormat_2_OffsetPadding_forAlignmentOnly[20]; FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___stateFormat_2_forAlignmentOnly; }; #pragma pack(pop, tp) #pragma pack(push, tp, 1) struct { char ___stateOffset_3_OffsetPadding[24]; // System.UInt32 UnityEngine.InputSystem.LowLevel.DeltaStateEvent::stateOffset uint32_t ___stateOffset_3; }; #pragma pack(pop, tp) #pragma pack(push, tp, 1) struct { char ___stateOffset_3_OffsetPadding_forAlignmentOnly[24]; uint32_t ___stateOffset_3_forAlignmentOnly; }; #pragma pack(pop, tp) #pragma pack(push, tp, 1) struct { char ___stateData_4_OffsetPadding[28]; // UnityEngine.InputSystem.LowLevel.DeltaStateEvent/e__FixedBuffer UnityEngine.InputSystem.LowLevel.DeltaStateEvent::stateData U3CstateDataU3Ee__FixedBuffer_t2787302BA59351E19E145A047CD3C8B77EF2E395 ___stateData_4; }; #pragma pack(pop, tp) #pragma pack(push, tp, 1) struct { char ___stateData_4_OffsetPadding_forAlignmentOnly[28]; U3CstateDataU3Ee__FixedBuffer_t2787302BA59351E19E145A047CD3C8B77EF2E395 ___stateData_4_forAlignmentOnly; }; #pragma pack(pop, tp) }; }; uint8_t DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4__padding[29]; }; public: inline static int32_t get_offset_of_baseEvent_1() { return static_cast(offsetof(DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4, ___baseEvent_1)); } inline InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 get_baseEvent_1() const { return ___baseEvent_1; } inline InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * get_address_of_baseEvent_1() { return &___baseEvent_1; } inline void set_baseEvent_1(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 value) { ___baseEvent_1 = value; } inline static int32_t get_offset_of_stateFormat_2() { return static_cast(offsetof(DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4, ___stateFormat_2)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_stateFormat_2() const { return ___stateFormat_2; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_stateFormat_2() { return &___stateFormat_2; } inline void set_stateFormat_2(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___stateFormat_2 = value; } inline static int32_t get_offset_of_stateOffset_3() { return static_cast(offsetof(DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4, ___stateOffset_3)); } inline uint32_t get_stateOffset_3() const { return ___stateOffset_3; } inline uint32_t* get_address_of_stateOffset_3() { return &___stateOffset_3; } inline void set_stateOffset_3(uint32_t value) { ___stateOffset_3 = value; } inline static int32_t get_offset_of_stateData_4() { return static_cast(offsetof(DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4, ___stateData_4)); } inline U3CstateDataU3Ee__FixedBuffer_t2787302BA59351E19E145A047CD3C8B77EF2E395 get_stateData_4() const { return ___stateData_4; } inline U3CstateDataU3Ee__FixedBuffer_t2787302BA59351E19E145A047CD3C8B77EF2E395 * get_address_of_stateData_4() { return &___stateData_4; } inline void set_stateData_4(U3CstateDataU3Ee__FixedBuffer_t2787302BA59351E19E145A047CD3C8B77EF2E395 value) { ___stateData_4 = value; } }; // UnityEngine.InputSystem.LowLevel.DeviceResetEvent struct DeviceResetEvent_t019FD2CD6A6D9D254A93C00568626114B1ACCD81 { public: union { struct { union { #pragma pack(push, tp, 1) struct { // UnityEngine.InputSystem.LowLevel.InputEvent UnityEngine.InputSystem.LowLevel.DeviceResetEvent::baseEvent InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ___baseEvent_1; }; #pragma pack(pop, tp) struct { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ___baseEvent_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___hardReset_2_OffsetPadding[8]; // System.Boolean UnityEngine.InputSystem.LowLevel.DeviceResetEvent::hardReset bool ___hardReset_2; }; #pragma pack(pop, tp) struct { char ___hardReset_2_OffsetPadding_forAlignmentOnly[8]; bool ___hardReset_2_forAlignmentOnly; }; }; }; uint8_t DeviceResetEvent_t019FD2CD6A6D9D254A93C00568626114B1ACCD81__padding[20]; }; public: inline static int32_t get_offset_of_baseEvent_1() { return static_cast(offsetof(DeviceResetEvent_t019FD2CD6A6D9D254A93C00568626114B1ACCD81, ___baseEvent_1)); } inline InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 get_baseEvent_1() const { return ___baseEvent_1; } inline InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * get_address_of_baseEvent_1() { return &___baseEvent_1; } inline void set_baseEvent_1(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 value) { ___baseEvent_1 = value; } inline static int32_t get_offset_of_hardReset_2() { return static_cast(offsetof(DeviceResetEvent_t019FD2CD6A6D9D254A93C00568626114B1ACCD81, ___hardReset_2)); } inline bool get_hardReset_2() const { return ___hardReset_2; } inline bool* get_address_of_hardReset_2() { return &___hardReset_2; } inline void set_hardReset_2(bool value) { ___hardReset_2 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.DeviceResetEvent struct DeviceResetEvent_t019FD2CD6A6D9D254A93C00568626114B1ACCD81_marshaled_pinvoke { union { struct { union { #pragma pack(push, tp, 1) struct { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ___baseEvent_1; }; #pragma pack(pop, tp) struct { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ___baseEvent_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___hardReset_2_OffsetPadding[8]; int32_t ___hardReset_2; }; #pragma pack(pop, tp) struct { char ___hardReset_2_OffsetPadding_forAlignmentOnly[8]; int32_t ___hardReset_2_forAlignmentOnly; }; }; }; uint8_t DeviceResetEvent_t019FD2CD6A6D9D254A93C00568626114B1ACCD81__padding[20]; }; }; // Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.DeviceResetEvent struct DeviceResetEvent_t019FD2CD6A6D9D254A93C00568626114B1ACCD81_marshaled_com { union { struct { union { #pragma pack(push, tp, 1) struct { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ___baseEvent_1; }; #pragma pack(pop, tp) struct { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ___baseEvent_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___hardReset_2_OffsetPadding[8]; int32_t ___hardReset_2; }; #pragma pack(pop, tp) struct { char ___hardReset_2_OffsetPadding_forAlignmentOnly[8]; int32_t ___hardReset_2_forAlignmentOnly; }; }; }; uint8_t DeviceResetEvent_t019FD2CD6A6D9D254A93C00568626114B1ACCD81__padding[20]; }; }; // UnityEngine.InputSystem.LowLevel.IMECompositionEvent struct IMECompositionEvent_t82F313ECCD7453AF6E105059CD8F8092B5F744EA { public: union { struct { union { #pragma pack(push, tp, 1) struct { // UnityEngine.InputSystem.LowLevel.InputEvent UnityEngine.InputSystem.LowLevel.IMECompositionEvent::baseEvent InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ___baseEvent_2; }; #pragma pack(pop, tp) struct { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ___baseEvent_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___compositionString_3_OffsetPadding[20]; // UnityEngine.InputSystem.LowLevel.IMECompositionString UnityEngine.InputSystem.LowLevel.IMECompositionEvent::compositionString IMECompositionString_t2FF8DD4A10EA5DF2D7023622FD79384367D4FD83 ___compositionString_3; }; #pragma pack(pop, tp) struct { char ___compositionString_3_OffsetPadding_forAlignmentOnly[20]; IMECompositionString_t2FF8DD4A10EA5DF2D7023622FD79384367D4FD83 ___compositionString_3_forAlignmentOnly; }; }; }; uint8_t IMECompositionEvent_t82F313ECCD7453AF6E105059CD8F8092B5F744EA__padding[152]; }; public: inline static int32_t get_offset_of_baseEvent_2() { return static_cast(offsetof(IMECompositionEvent_t82F313ECCD7453AF6E105059CD8F8092B5F744EA, ___baseEvent_2)); } inline InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 get_baseEvent_2() const { return ___baseEvent_2; } inline InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * get_address_of_baseEvent_2() { return &___baseEvent_2; } inline void set_baseEvent_2(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 value) { ___baseEvent_2 = value; } inline static int32_t get_offset_of_compositionString_3() { return static_cast(offsetof(IMECompositionEvent_t82F313ECCD7453AF6E105059CD8F8092B5F744EA, ___compositionString_3)); } inline IMECompositionString_t2FF8DD4A10EA5DF2D7023622FD79384367D4FD83 get_compositionString_3() const { return ___compositionString_3; } inline IMECompositionString_t2FF8DD4A10EA5DF2D7023622FD79384367D4FD83 * get_address_of_compositionString_3() { return &___compositionString_3; } inline void set_compositionString_3(IMECompositionString_t2FF8DD4A10EA5DF2D7023622FD79384367D4FD83 value) { ___compositionString_3 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.IMECompositionEvent struct IMECompositionEvent_t82F313ECCD7453AF6E105059CD8F8092B5F744EA_marshaled_pinvoke { union { struct { union { #pragma pack(push, tp, 1) struct { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ___baseEvent_2; }; #pragma pack(pop, tp) struct { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ___baseEvent_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___compositionString_3_OffsetPadding[20]; IMECompositionString_t2FF8DD4A10EA5DF2D7023622FD79384367D4FD83_marshaled_pinvoke ___compositionString_3; }; #pragma pack(pop, tp) struct { char ___compositionString_3_OffsetPadding_forAlignmentOnly[20]; IMECompositionString_t2FF8DD4A10EA5DF2D7023622FD79384367D4FD83_marshaled_pinvoke ___compositionString_3_forAlignmentOnly; }; }; }; uint8_t IMECompositionEvent_t82F313ECCD7453AF6E105059CD8F8092B5F744EA__padding[152]; }; }; // Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.IMECompositionEvent struct IMECompositionEvent_t82F313ECCD7453AF6E105059CD8F8092B5F744EA_marshaled_com { union { struct { union { #pragma pack(push, tp, 1) struct { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ___baseEvent_2; }; #pragma pack(pop, tp) struct { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ___baseEvent_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___compositionString_3_OffsetPadding[20]; IMECompositionString_t2FF8DD4A10EA5DF2D7023622FD79384367D4FD83_marshaled_com ___compositionString_3; }; #pragma pack(pop, tp) struct { char ___compositionString_3_OffsetPadding_forAlignmentOnly[20]; IMECompositionString_t2FF8DD4A10EA5DF2D7023622FD79384367D4FD83_marshaled_com ___compositionString_3_forAlignmentOnly; }; }; }; uint8_t IMECompositionEvent_t82F313ECCD7453AF6E105059CD8F8092B5F744EA__padding[152]; }; }; // UnityEngine.InputSystem.InputAction struct InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B : public RuntimeObject { public: // System.String UnityEngine.InputSystem.InputAction::m_Name String_t* ___m_Name_0; // UnityEngine.InputSystem.InputActionType UnityEngine.InputSystem.InputAction::m_Type int32_t ___m_Type_1; // System.String UnityEngine.InputSystem.InputAction::m_ExpectedControlType String_t* ___m_ExpectedControlType_2; // System.String UnityEngine.InputSystem.InputAction::m_Id String_t* ___m_Id_3; // System.String UnityEngine.InputSystem.InputAction::m_Processors String_t* ___m_Processors_4; // System.String UnityEngine.InputSystem.InputAction::m_Interactions String_t* ___m_Interactions_5; // UnityEngine.InputSystem.InputBinding[] UnityEngine.InputSystem.InputAction::m_SingletonActionBindings InputBindingU5BU5D_tFBF775077101E34ED6C54C4468F6E0722ECB2EF6* ___m_SingletonActionBindings_6; // UnityEngine.InputSystem.InputAction/ActionFlags UnityEngine.InputSystem.InputAction::m_Flags int32_t ___m_Flags_7; // System.Nullable`1 UnityEngine.InputSystem.InputAction::m_BindingMask Nullable_1_t2055E88624438E34B0C4AEB7B387170528759E07 ___m_BindingMask_8; // System.Int32 UnityEngine.InputSystem.InputAction::m_BindingsStartIndex int32_t ___m_BindingsStartIndex_9; // System.Int32 UnityEngine.InputSystem.InputAction::m_BindingsCount int32_t ___m_BindingsCount_10; // System.Int32 UnityEngine.InputSystem.InputAction::m_ControlStartIndex int32_t ___m_ControlStartIndex_11; // System.Int32 UnityEngine.InputSystem.InputAction::m_ControlCount int32_t ___m_ControlCount_12; // System.Int32 UnityEngine.InputSystem.InputAction::m_ActionIndexInState int32_t ___m_ActionIndexInState_13; // UnityEngine.InputSystem.InputActionMap UnityEngine.InputSystem.InputAction::m_ActionMap InputActionMap_t588F4834F020838C4E8AE148F8A42CC84FA75B44 * ___m_ActionMap_14; // UnityEngine.InputSystem.Utilities.CallbackArray`1> UnityEngine.InputSystem.InputAction::m_OnStarted CallbackArray_1_t9AA7F1C91BD426A599B158F2A207F494A0D431F1 ___m_OnStarted_15; // UnityEngine.InputSystem.Utilities.CallbackArray`1> UnityEngine.InputSystem.InputAction::m_OnCanceled CallbackArray_1_t9AA7F1C91BD426A599B158F2A207F494A0D431F1 ___m_OnCanceled_16; // UnityEngine.InputSystem.Utilities.CallbackArray`1> UnityEngine.InputSystem.InputAction::m_OnPerformed CallbackArray_1_t9AA7F1C91BD426A599B158F2A207F494A0D431F1 ___m_OnPerformed_17; public: inline static int32_t get_offset_of_m_Name_0() { return static_cast(offsetof(InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B, ___m_Name_0)); } inline String_t* get_m_Name_0() const { return ___m_Name_0; } inline String_t** get_address_of_m_Name_0() { return &___m_Name_0; } inline void set_m_Name_0(String_t* value) { ___m_Name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Name_0), (void*)value); } inline static int32_t get_offset_of_m_Type_1() { return static_cast(offsetof(InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B, ___m_Type_1)); } inline int32_t get_m_Type_1() const { return ___m_Type_1; } inline int32_t* get_address_of_m_Type_1() { return &___m_Type_1; } inline void set_m_Type_1(int32_t value) { ___m_Type_1 = value; } inline static int32_t get_offset_of_m_ExpectedControlType_2() { return static_cast(offsetof(InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B, ___m_ExpectedControlType_2)); } inline String_t* get_m_ExpectedControlType_2() const { return ___m_ExpectedControlType_2; } inline String_t** get_address_of_m_ExpectedControlType_2() { return &___m_ExpectedControlType_2; } inline void set_m_ExpectedControlType_2(String_t* value) { ___m_ExpectedControlType_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ExpectedControlType_2), (void*)value); } inline static int32_t get_offset_of_m_Id_3() { return static_cast(offsetof(InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B, ___m_Id_3)); } inline String_t* get_m_Id_3() const { return ___m_Id_3; } inline String_t** get_address_of_m_Id_3() { return &___m_Id_3; } inline void set_m_Id_3(String_t* value) { ___m_Id_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Id_3), (void*)value); } inline static int32_t get_offset_of_m_Processors_4() { return static_cast(offsetof(InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B, ___m_Processors_4)); } inline String_t* get_m_Processors_4() const { return ___m_Processors_4; } inline String_t** get_address_of_m_Processors_4() { return &___m_Processors_4; } inline void set_m_Processors_4(String_t* value) { ___m_Processors_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Processors_4), (void*)value); } inline static int32_t get_offset_of_m_Interactions_5() { return static_cast(offsetof(InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B, ___m_Interactions_5)); } inline String_t* get_m_Interactions_5() const { return ___m_Interactions_5; } inline String_t** get_address_of_m_Interactions_5() { return &___m_Interactions_5; } inline void set_m_Interactions_5(String_t* value) { ___m_Interactions_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Interactions_5), (void*)value); } inline static int32_t get_offset_of_m_SingletonActionBindings_6() { return static_cast(offsetof(InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B, ___m_SingletonActionBindings_6)); } inline InputBindingU5BU5D_tFBF775077101E34ED6C54C4468F6E0722ECB2EF6* get_m_SingletonActionBindings_6() const { return ___m_SingletonActionBindings_6; } inline InputBindingU5BU5D_tFBF775077101E34ED6C54C4468F6E0722ECB2EF6** get_address_of_m_SingletonActionBindings_6() { return &___m_SingletonActionBindings_6; } inline void set_m_SingletonActionBindings_6(InputBindingU5BU5D_tFBF775077101E34ED6C54C4468F6E0722ECB2EF6* value) { ___m_SingletonActionBindings_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SingletonActionBindings_6), (void*)value); } inline static int32_t get_offset_of_m_Flags_7() { return static_cast(offsetof(InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B, ___m_Flags_7)); } inline int32_t get_m_Flags_7() const { return ___m_Flags_7; } inline int32_t* get_address_of_m_Flags_7() { return &___m_Flags_7; } inline void set_m_Flags_7(int32_t value) { ___m_Flags_7 = value; } inline static int32_t get_offset_of_m_BindingMask_8() { return static_cast(offsetof(InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B, ___m_BindingMask_8)); } inline Nullable_1_t2055E88624438E34B0C4AEB7B387170528759E07 get_m_BindingMask_8() const { return ___m_BindingMask_8; } inline Nullable_1_t2055E88624438E34B0C4AEB7B387170528759E07 * get_address_of_m_BindingMask_8() { return &___m_BindingMask_8; } inline void set_m_BindingMask_8(Nullable_1_t2055E88624438E34B0C4AEB7B387170528759E07 value) { ___m_BindingMask_8 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_BindingMask_8))->___value_0))->___m_Name_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_BindingMask_8))->___value_0))->___m_Id_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_BindingMask_8))->___value_0))->___m_Path_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_BindingMask_8))->___value_0))->___m_Interactions_5), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_BindingMask_8))->___value_0))->___m_Processors_6), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_BindingMask_8))->___value_0))->___m_Groups_7), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_BindingMask_8))->___value_0))->___m_Action_8), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_BindingMask_8))->___value_0))->___m_OverridePath_10), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_BindingMask_8))->___value_0))->___m_OverrideInteractions_11), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_BindingMask_8))->___value_0))->___m_OverrideProcessors_12), (void*)NULL); #endif } inline static int32_t get_offset_of_m_BindingsStartIndex_9() { return static_cast(offsetof(InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B, ___m_BindingsStartIndex_9)); } inline int32_t get_m_BindingsStartIndex_9() const { return ___m_BindingsStartIndex_9; } inline int32_t* get_address_of_m_BindingsStartIndex_9() { return &___m_BindingsStartIndex_9; } inline void set_m_BindingsStartIndex_9(int32_t value) { ___m_BindingsStartIndex_9 = value; } inline static int32_t get_offset_of_m_BindingsCount_10() { return static_cast(offsetof(InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B, ___m_BindingsCount_10)); } inline int32_t get_m_BindingsCount_10() const { return ___m_BindingsCount_10; } inline int32_t* get_address_of_m_BindingsCount_10() { return &___m_BindingsCount_10; } inline void set_m_BindingsCount_10(int32_t value) { ___m_BindingsCount_10 = value; } inline static int32_t get_offset_of_m_ControlStartIndex_11() { return static_cast(offsetof(InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B, ___m_ControlStartIndex_11)); } inline int32_t get_m_ControlStartIndex_11() const { return ___m_ControlStartIndex_11; } inline int32_t* get_address_of_m_ControlStartIndex_11() { return &___m_ControlStartIndex_11; } inline void set_m_ControlStartIndex_11(int32_t value) { ___m_ControlStartIndex_11 = value; } inline static int32_t get_offset_of_m_ControlCount_12() { return static_cast(offsetof(InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B, ___m_ControlCount_12)); } inline int32_t get_m_ControlCount_12() const { return ___m_ControlCount_12; } inline int32_t* get_address_of_m_ControlCount_12() { return &___m_ControlCount_12; } inline void set_m_ControlCount_12(int32_t value) { ___m_ControlCount_12 = value; } inline static int32_t get_offset_of_m_ActionIndexInState_13() { return static_cast(offsetof(InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B, ___m_ActionIndexInState_13)); } inline int32_t get_m_ActionIndexInState_13() const { return ___m_ActionIndexInState_13; } inline int32_t* get_address_of_m_ActionIndexInState_13() { return &___m_ActionIndexInState_13; } inline void set_m_ActionIndexInState_13(int32_t value) { ___m_ActionIndexInState_13 = value; } inline static int32_t get_offset_of_m_ActionMap_14() { return static_cast(offsetof(InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B, ___m_ActionMap_14)); } inline InputActionMap_t588F4834F020838C4E8AE148F8A42CC84FA75B44 * get_m_ActionMap_14() const { return ___m_ActionMap_14; } inline InputActionMap_t588F4834F020838C4E8AE148F8A42CC84FA75B44 ** get_address_of_m_ActionMap_14() { return &___m_ActionMap_14; } inline void set_m_ActionMap_14(InputActionMap_t588F4834F020838C4E8AE148F8A42CC84FA75B44 * value) { ___m_ActionMap_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ActionMap_14), (void*)value); } inline static int32_t get_offset_of_m_OnStarted_15() { return static_cast(offsetof(InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B, ___m_OnStarted_15)); } inline CallbackArray_1_t9AA7F1C91BD426A599B158F2A207F494A0D431F1 get_m_OnStarted_15() const { return ___m_OnStarted_15; } inline CallbackArray_1_t9AA7F1C91BD426A599B158F2A207F494A0D431F1 * get_address_of_m_OnStarted_15() { return &___m_OnStarted_15; } inline void set_m_OnStarted_15(CallbackArray_1_t9AA7F1C91BD426A599B158F2A207F494A0D431F1 value) { ___m_OnStarted_15 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_OnStarted_15))->___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_OnStarted_15))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_OnStarted_15))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_OnStarted_15))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_OnStarted_15))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_OnStarted_15))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_OnCanceled_16() { return static_cast(offsetof(InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B, ___m_OnCanceled_16)); } inline CallbackArray_1_t9AA7F1C91BD426A599B158F2A207F494A0D431F1 get_m_OnCanceled_16() const { return ___m_OnCanceled_16; } inline CallbackArray_1_t9AA7F1C91BD426A599B158F2A207F494A0D431F1 * get_address_of_m_OnCanceled_16() { return &___m_OnCanceled_16; } inline void set_m_OnCanceled_16(CallbackArray_1_t9AA7F1C91BD426A599B158F2A207F494A0D431F1 value) { ___m_OnCanceled_16 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_OnCanceled_16))->___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_OnCanceled_16))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_OnCanceled_16))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_OnCanceled_16))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_OnCanceled_16))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_OnCanceled_16))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_OnPerformed_17() { return static_cast(offsetof(InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B, ___m_OnPerformed_17)); } inline CallbackArray_1_t9AA7F1C91BD426A599B158F2A207F494A0D431F1 get_m_OnPerformed_17() const { return ___m_OnPerformed_17; } inline CallbackArray_1_t9AA7F1C91BD426A599B158F2A207F494A0D431F1 * get_address_of_m_OnPerformed_17() { return &___m_OnPerformed_17; } inline void set_m_OnPerformed_17(CallbackArray_1_t9AA7F1C91BD426A599B158F2A207F494A0D431F1 value) { ___m_OnPerformed_17 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_OnPerformed_17))->___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_OnPerformed_17))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_OnPerformed_17))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_OnPerformed_17))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_OnPerformed_17))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_OnPerformed_17))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } }; // UnityEngine.InputSystem.InputDevice struct InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 : public InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 { public: // UnityEngine.InputSystem.InputDevice/DeviceFlags UnityEngine.InputSystem.InputDevice::m_DeviceFlags int32_t ___m_DeviceFlags_24; // System.Int32 UnityEngine.InputSystem.InputDevice::m_DeviceId int32_t ___m_DeviceId_25; // System.Int32 UnityEngine.InputSystem.InputDevice::m_ParticipantId int32_t ___m_ParticipantId_26; // System.Int32 UnityEngine.InputSystem.InputDevice::m_DeviceIndex int32_t ___m_DeviceIndex_27; // UnityEngine.InputSystem.Layouts.InputDeviceDescription UnityEngine.InputSystem.InputDevice::m_Description InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___m_Description_28; // System.Double UnityEngine.InputSystem.InputDevice::m_LastUpdateTimeInternal double ___m_LastUpdateTimeInternal_29; // System.UInt32 UnityEngine.InputSystem.InputDevice::m_CurrentUpdateStepCount uint32_t ___m_CurrentUpdateStepCount_30; // UnityEngine.InputSystem.Utilities.InternedString[] UnityEngine.InputSystem.InputDevice::m_AliasesForEachControl InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* ___m_AliasesForEachControl_31; // UnityEngine.InputSystem.Utilities.InternedString[] UnityEngine.InputSystem.InputDevice::m_UsagesForEachControl InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* ___m_UsagesForEachControl_32; // UnityEngine.InputSystem.InputControl[] UnityEngine.InputSystem.InputDevice::m_UsageToControl InputControlU5BU5D_tB874FECA56E2B08D3280F4174B988EA155E99680* ___m_UsageToControl_33; // UnityEngine.InputSystem.InputControl[] UnityEngine.InputSystem.InputDevice::m_ChildrenForEachControl InputControlU5BU5D_tB874FECA56E2B08D3280F4174B988EA155E99680* ___m_ChildrenForEachControl_34; // System.UInt32[] UnityEngine.InputSystem.InputDevice::m_StateOffsetToControlMap UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___m_StateOffsetToControlMap_35; public: inline static int32_t get_offset_of_m_DeviceFlags_24() { return static_cast(offsetof(InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87, ___m_DeviceFlags_24)); } inline int32_t get_m_DeviceFlags_24() const { return ___m_DeviceFlags_24; } inline int32_t* get_address_of_m_DeviceFlags_24() { return &___m_DeviceFlags_24; } inline void set_m_DeviceFlags_24(int32_t value) { ___m_DeviceFlags_24 = value; } inline static int32_t get_offset_of_m_DeviceId_25() { return static_cast(offsetof(InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87, ___m_DeviceId_25)); } inline int32_t get_m_DeviceId_25() const { return ___m_DeviceId_25; } inline int32_t* get_address_of_m_DeviceId_25() { return &___m_DeviceId_25; } inline void set_m_DeviceId_25(int32_t value) { ___m_DeviceId_25 = value; } inline static int32_t get_offset_of_m_ParticipantId_26() { return static_cast(offsetof(InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87, ___m_ParticipantId_26)); } inline int32_t get_m_ParticipantId_26() const { return ___m_ParticipantId_26; } inline int32_t* get_address_of_m_ParticipantId_26() { return &___m_ParticipantId_26; } inline void set_m_ParticipantId_26(int32_t value) { ___m_ParticipantId_26 = value; } inline static int32_t get_offset_of_m_DeviceIndex_27() { return static_cast(offsetof(InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87, ___m_DeviceIndex_27)); } inline int32_t get_m_DeviceIndex_27() const { return ___m_DeviceIndex_27; } inline int32_t* get_address_of_m_DeviceIndex_27() { return &___m_DeviceIndex_27; } inline void set_m_DeviceIndex_27(int32_t value) { ___m_DeviceIndex_27 = value; } inline static int32_t get_offset_of_m_Description_28() { return static_cast(offsetof(InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87, ___m_Description_28)); } inline InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 get_m_Description_28() const { return ___m_Description_28; } inline InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * get_address_of_m_Description_28() { return &___m_Description_28; } inline void set_m_Description_28(InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 value) { ___m_Description_28 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Description_28))->___m_InterfaceName_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Description_28))->___m_DeviceClass_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Description_28))->___m_Manufacturer_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Description_28))->___m_Product_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Description_28))->___m_Serial_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Description_28))->___m_Version_5), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Description_28))->___m_Capabilities_6), (void*)NULL); #endif } inline static int32_t get_offset_of_m_LastUpdateTimeInternal_29() { return static_cast(offsetof(InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87, ___m_LastUpdateTimeInternal_29)); } inline double get_m_LastUpdateTimeInternal_29() const { return ___m_LastUpdateTimeInternal_29; } inline double* get_address_of_m_LastUpdateTimeInternal_29() { return &___m_LastUpdateTimeInternal_29; } inline void set_m_LastUpdateTimeInternal_29(double value) { ___m_LastUpdateTimeInternal_29 = value; } inline static int32_t get_offset_of_m_CurrentUpdateStepCount_30() { return static_cast(offsetof(InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87, ___m_CurrentUpdateStepCount_30)); } inline uint32_t get_m_CurrentUpdateStepCount_30() const { return ___m_CurrentUpdateStepCount_30; } inline uint32_t* get_address_of_m_CurrentUpdateStepCount_30() { return &___m_CurrentUpdateStepCount_30; } inline void set_m_CurrentUpdateStepCount_30(uint32_t value) { ___m_CurrentUpdateStepCount_30 = value; } inline static int32_t get_offset_of_m_AliasesForEachControl_31() { return static_cast(offsetof(InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87, ___m_AliasesForEachControl_31)); } inline InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* get_m_AliasesForEachControl_31() const { return ___m_AliasesForEachControl_31; } inline InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4** get_address_of_m_AliasesForEachControl_31() { return &___m_AliasesForEachControl_31; } inline void set_m_AliasesForEachControl_31(InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* value) { ___m_AliasesForEachControl_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_AliasesForEachControl_31), (void*)value); } inline static int32_t get_offset_of_m_UsagesForEachControl_32() { return static_cast(offsetof(InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87, ___m_UsagesForEachControl_32)); } inline InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* get_m_UsagesForEachControl_32() const { return ___m_UsagesForEachControl_32; } inline InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4** get_address_of_m_UsagesForEachControl_32() { return &___m_UsagesForEachControl_32; } inline void set_m_UsagesForEachControl_32(InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* value) { ___m_UsagesForEachControl_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_UsagesForEachControl_32), (void*)value); } inline static int32_t get_offset_of_m_UsageToControl_33() { return static_cast(offsetof(InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87, ___m_UsageToControl_33)); } inline InputControlU5BU5D_tB874FECA56E2B08D3280F4174B988EA155E99680* get_m_UsageToControl_33() const { return ___m_UsageToControl_33; } inline InputControlU5BU5D_tB874FECA56E2B08D3280F4174B988EA155E99680** get_address_of_m_UsageToControl_33() { return &___m_UsageToControl_33; } inline void set_m_UsageToControl_33(InputControlU5BU5D_tB874FECA56E2B08D3280F4174B988EA155E99680* value) { ___m_UsageToControl_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_UsageToControl_33), (void*)value); } inline static int32_t get_offset_of_m_ChildrenForEachControl_34() { return static_cast(offsetof(InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87, ___m_ChildrenForEachControl_34)); } inline InputControlU5BU5D_tB874FECA56E2B08D3280F4174B988EA155E99680* get_m_ChildrenForEachControl_34() const { return ___m_ChildrenForEachControl_34; } inline InputControlU5BU5D_tB874FECA56E2B08D3280F4174B988EA155E99680** get_address_of_m_ChildrenForEachControl_34() { return &___m_ChildrenForEachControl_34; } inline void set_m_ChildrenForEachControl_34(InputControlU5BU5D_tB874FECA56E2B08D3280F4174B988EA155E99680* value) { ___m_ChildrenForEachControl_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChildrenForEachControl_34), (void*)value); } inline static int32_t get_offset_of_m_StateOffsetToControlMap_35() { return static_cast(offsetof(InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87, ___m_StateOffsetToControlMap_35)); } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get_m_StateOffsetToControlMap_35() const { return ___m_StateOffsetToControlMap_35; } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of_m_StateOffsetToControlMap_35() { return &___m_StateOffsetToControlMap_35; } inline void set_m_StateOffsetToControlMap_35(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value) { ___m_StateOffsetToControlMap_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_StateOffsetToControlMap_35), (void*)value); } }; // UnityEngine.InputSystem.LowLevel.InputEventStream struct InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 { public: // UnityEngine.InputSystem.LowLevel.InputEventBuffer UnityEngine.InputSystem.LowLevel.InputEventStream::m_NativeBuffer InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA ___m_NativeBuffer_0; // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventStream::m_CurrentNativeEventReadPtr InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___m_CurrentNativeEventReadPtr_1; // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventStream::m_CurrentNativeEventWritePtr InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___m_CurrentNativeEventWritePtr_2; // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventStream::m_RemainingNativeEventCount int32_t ___m_RemainingNativeEventCount_3; // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventStream::m_MaxAppendedEvents int32_t ___m_MaxAppendedEvents_4; // UnityEngine.InputSystem.LowLevel.InputEventBuffer UnityEngine.InputSystem.LowLevel.InputEventStream::m_AppendBuffer InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA ___m_AppendBuffer_5; // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventStream::m_CurrentAppendEventReadPtr InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___m_CurrentAppendEventReadPtr_6; // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventStream::m_CurrentAppendEventWritePtr InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___m_CurrentAppendEventWritePtr_7; // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventStream::m_RemainingAppendEventCount int32_t ___m_RemainingAppendEventCount_8; // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventStream::m_NumEventsRetainedInBuffer int32_t ___m_NumEventsRetainedInBuffer_9; // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventStream::m_IsOpen bool ___m_IsOpen_10; public: inline static int32_t get_offset_of_m_NativeBuffer_0() { return static_cast(offsetof(InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755, ___m_NativeBuffer_0)); } inline InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA get_m_NativeBuffer_0() const { return ___m_NativeBuffer_0; } inline InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * get_address_of_m_NativeBuffer_0() { return &___m_NativeBuffer_0; } inline void set_m_NativeBuffer_0(InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA value) { ___m_NativeBuffer_0 = value; } inline static int32_t get_offset_of_m_CurrentNativeEventReadPtr_1() { return static_cast(offsetof(InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755, ___m_CurrentNativeEventReadPtr_1)); } inline InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * get_m_CurrentNativeEventReadPtr_1() const { return ___m_CurrentNativeEventReadPtr_1; } inline InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** get_address_of_m_CurrentNativeEventReadPtr_1() { return &___m_CurrentNativeEventReadPtr_1; } inline void set_m_CurrentNativeEventReadPtr_1(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * value) { ___m_CurrentNativeEventReadPtr_1 = value; } inline static int32_t get_offset_of_m_CurrentNativeEventWritePtr_2() { return static_cast(offsetof(InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755, ___m_CurrentNativeEventWritePtr_2)); } inline InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * get_m_CurrentNativeEventWritePtr_2() const { return ___m_CurrentNativeEventWritePtr_2; } inline InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** get_address_of_m_CurrentNativeEventWritePtr_2() { return &___m_CurrentNativeEventWritePtr_2; } inline void set_m_CurrentNativeEventWritePtr_2(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * value) { ___m_CurrentNativeEventWritePtr_2 = value; } inline static int32_t get_offset_of_m_RemainingNativeEventCount_3() { return static_cast(offsetof(InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755, ___m_RemainingNativeEventCount_3)); } inline int32_t get_m_RemainingNativeEventCount_3() const { return ___m_RemainingNativeEventCount_3; } inline int32_t* get_address_of_m_RemainingNativeEventCount_3() { return &___m_RemainingNativeEventCount_3; } inline void set_m_RemainingNativeEventCount_3(int32_t value) { ___m_RemainingNativeEventCount_3 = value; } inline static int32_t get_offset_of_m_MaxAppendedEvents_4() { return static_cast(offsetof(InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755, ___m_MaxAppendedEvents_4)); } inline int32_t get_m_MaxAppendedEvents_4() const { return ___m_MaxAppendedEvents_4; } inline int32_t* get_address_of_m_MaxAppendedEvents_4() { return &___m_MaxAppendedEvents_4; } inline void set_m_MaxAppendedEvents_4(int32_t value) { ___m_MaxAppendedEvents_4 = value; } inline static int32_t get_offset_of_m_AppendBuffer_5() { return static_cast(offsetof(InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755, ___m_AppendBuffer_5)); } inline InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA get_m_AppendBuffer_5() const { return ___m_AppendBuffer_5; } inline InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * get_address_of_m_AppendBuffer_5() { return &___m_AppendBuffer_5; } inline void set_m_AppendBuffer_5(InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA value) { ___m_AppendBuffer_5 = value; } inline static int32_t get_offset_of_m_CurrentAppendEventReadPtr_6() { return static_cast(offsetof(InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755, ___m_CurrentAppendEventReadPtr_6)); } inline InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * get_m_CurrentAppendEventReadPtr_6() const { return ___m_CurrentAppendEventReadPtr_6; } inline InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** get_address_of_m_CurrentAppendEventReadPtr_6() { return &___m_CurrentAppendEventReadPtr_6; } inline void set_m_CurrentAppendEventReadPtr_6(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * value) { ___m_CurrentAppendEventReadPtr_6 = value; } inline static int32_t get_offset_of_m_CurrentAppendEventWritePtr_7() { return static_cast(offsetof(InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755, ___m_CurrentAppendEventWritePtr_7)); } inline InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * get_m_CurrentAppendEventWritePtr_7() const { return ___m_CurrentAppendEventWritePtr_7; } inline InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** get_address_of_m_CurrentAppendEventWritePtr_7() { return &___m_CurrentAppendEventWritePtr_7; } inline void set_m_CurrentAppendEventWritePtr_7(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * value) { ___m_CurrentAppendEventWritePtr_7 = value; } inline static int32_t get_offset_of_m_RemainingAppendEventCount_8() { return static_cast(offsetof(InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755, ___m_RemainingAppendEventCount_8)); } inline int32_t get_m_RemainingAppendEventCount_8() const { return ___m_RemainingAppendEventCount_8; } inline int32_t* get_address_of_m_RemainingAppendEventCount_8() { return &___m_RemainingAppendEventCount_8; } inline void set_m_RemainingAppendEventCount_8(int32_t value) { ___m_RemainingAppendEventCount_8 = value; } inline static int32_t get_offset_of_m_NumEventsRetainedInBuffer_9() { return static_cast(offsetof(InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755, ___m_NumEventsRetainedInBuffer_9)); } inline int32_t get_m_NumEventsRetainedInBuffer_9() const { return ___m_NumEventsRetainedInBuffer_9; } inline int32_t* get_address_of_m_NumEventsRetainedInBuffer_9() { return &___m_NumEventsRetainedInBuffer_9; } inline void set_m_NumEventsRetainedInBuffer_9(int32_t value) { ___m_NumEventsRetainedInBuffer_9 = value; } inline static int32_t get_offset_of_m_IsOpen_10() { return static_cast(offsetof(InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755, ___m_IsOpen_10)); } inline bool get_m_IsOpen_10() const { return ___m_IsOpen_10; } inline bool* get_address_of_m_IsOpen_10() { return &___m_IsOpen_10; } inline void set_m_IsOpen_10(bool value) { ___m_IsOpen_10 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.InputEventStream struct InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755_marshaled_pinvoke { InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshaled_pinvoke ___m_NativeBuffer_0; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___m_CurrentNativeEventReadPtr_1; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___m_CurrentNativeEventWritePtr_2; int32_t ___m_RemainingNativeEventCount_3; int32_t ___m_MaxAppendedEvents_4; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshaled_pinvoke ___m_AppendBuffer_5; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___m_CurrentAppendEventReadPtr_6; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___m_CurrentAppendEventWritePtr_7; int32_t ___m_RemainingAppendEventCount_8; int32_t ___m_NumEventsRetainedInBuffer_9; int32_t ___m_IsOpen_10; }; // Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.InputEventStream struct InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755_marshaled_com { InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshaled_com ___m_NativeBuffer_0; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___m_CurrentNativeEventReadPtr_1; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___m_CurrentNativeEventWritePtr_2; int32_t ___m_RemainingNativeEventCount_3; int32_t ___m_MaxAppendedEvents_4; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshaled_com ___m_AppendBuffer_5; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___m_CurrentAppendEventReadPtr_6; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___m_CurrentAppendEventWritePtr_7; int32_t ___m_RemainingAppendEventCount_8; int32_t ___m_NumEventsRetainedInBuffer_9; int32_t ___m_IsOpen_10; }; // UnityEngine.InputSystem.LowLevel.InputUpdateDelegate struct InputUpdateDelegate_t3193D229360F70BB8E2781DED27A71B0F5355045 : public MulticastDelegate_t { public: public: }; // UnityEngine.InputSystem.LowLevel.StateEvent struct StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 { public: union { struct { union { #pragma pack(push, tp, 1) struct { // UnityEngine.InputSystem.LowLevel.InputEvent UnityEngine.InputSystem.LowLevel.StateEvent::baseEvent InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ___baseEvent_2; }; #pragma pack(pop, tp) #pragma pack(push, tp, 1) struct { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ___baseEvent_2_forAlignmentOnly; }; #pragma pack(pop, tp) #pragma pack(push, tp, 1) struct { char ___stateFormat_3_OffsetPadding[20]; // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.StateEvent::stateFormat FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___stateFormat_3; }; #pragma pack(pop, tp) #pragma pack(push, tp, 1) struct { char ___stateFormat_3_OffsetPadding_forAlignmentOnly[20]; FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___stateFormat_3_forAlignmentOnly; }; #pragma pack(pop, tp) #pragma pack(push, tp, 1) struct { char ___stateData_4_OffsetPadding[24]; // UnityEngine.InputSystem.LowLevel.StateEvent/e__FixedBuffer UnityEngine.InputSystem.LowLevel.StateEvent::stateData U3CstateDataU3Ee__FixedBuffer_t12BA1A66DF06BAD68C6F8E16C8DA5939E3D584E9 ___stateData_4; }; #pragma pack(pop, tp) #pragma pack(push, tp, 1) struct { char ___stateData_4_OffsetPadding_forAlignmentOnly[24]; U3CstateDataU3Ee__FixedBuffer_t12BA1A66DF06BAD68C6F8E16C8DA5939E3D584E9 ___stateData_4_forAlignmentOnly; }; #pragma pack(pop, tp) }; }; uint8_t StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3__padding[25]; }; public: inline static int32_t get_offset_of_baseEvent_2() { return static_cast(offsetof(StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3, ___baseEvent_2)); } inline InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 get_baseEvent_2() const { return ___baseEvent_2; } inline InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * get_address_of_baseEvent_2() { return &___baseEvent_2; } inline void set_baseEvent_2(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 value) { ___baseEvent_2 = value; } inline static int32_t get_offset_of_stateFormat_3() { return static_cast(offsetof(StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3, ___stateFormat_3)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_stateFormat_3() const { return ___stateFormat_3; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_stateFormat_3() { return &___stateFormat_3; } inline void set_stateFormat_3(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___stateFormat_3 = value; } inline static int32_t get_offset_of_stateData_4() { return static_cast(offsetof(StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3, ___stateData_4)); } inline U3CstateDataU3Ee__FixedBuffer_t12BA1A66DF06BAD68C6F8E16C8DA5939E3D584E9 get_stateData_4() const { return ___stateData_4; } inline U3CstateDataU3Ee__FixedBuffer_t12BA1A66DF06BAD68C6F8E16C8DA5939E3D584E9 * get_address_of_stateData_4() { return &___stateData_4; } inline void set_stateData_4(U3CstateDataU3Ee__FixedBuffer_t12BA1A66DF06BAD68C6F8E16C8DA5939E3D584E9 value) { ___stateData_4 = value; } }; // UnityEngine.InputSystem.LowLevel.TextEvent struct TextEvent_t2939C7C6CFDD852AEAB3AB23431FB1326E29C011 { public: union { struct { union { #pragma pack(push, tp, 1) struct { // UnityEngine.InputSystem.LowLevel.InputEvent UnityEngine.InputSystem.LowLevel.TextEvent::baseEvent InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ___baseEvent_1; }; #pragma pack(pop, tp) struct { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ___baseEvent_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___character_2_OffsetPadding[20]; // System.Int32 UnityEngine.InputSystem.LowLevel.TextEvent::character int32_t ___character_2; }; #pragma pack(pop, tp) struct { char ___character_2_OffsetPadding_forAlignmentOnly[20]; int32_t ___character_2_forAlignmentOnly; }; }; }; uint8_t TextEvent_t2939C7C6CFDD852AEAB3AB23431FB1326E29C011__padding[24]; }; public: inline static int32_t get_offset_of_baseEvent_1() { return static_cast(offsetof(TextEvent_t2939C7C6CFDD852AEAB3AB23431FB1326E29C011, ___baseEvent_1)); } inline InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 get_baseEvent_1() const { return ___baseEvent_1; } inline InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * get_address_of_baseEvent_1() { return &___baseEvent_1; } inline void set_baseEvent_1(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 value) { ___baseEvent_1 = value; } inline static int32_t get_offset_of_character_2() { return static_cast(offsetof(TextEvent_t2939C7C6CFDD852AEAB3AB23431FB1326E29C011, ___character_2)); } inline int32_t get_character_2() const { return ___character_2; } inline int32_t* get_address_of_character_2() { return &___character_2; } inline void set_character_2(int32_t value) { ___character_2 = value; } }; // UnityEngine.InputSystem.Controls.AxisControl struct AxisControl_tA997FF52442F7B08C7E13B7028393B4117248680 : public InputControl_1_t011854B2ED3F016A34A91350FC9B9055E1E820D3 { public: // UnityEngine.InputSystem.Controls.AxisControl/Clamp UnityEngine.InputSystem.Controls.AxisControl::clamp int32_t ___clamp_22; // System.Single UnityEngine.InputSystem.Controls.AxisControl::clampMin float ___clampMin_23; // System.Single UnityEngine.InputSystem.Controls.AxisControl::clampMax float ___clampMax_24; // System.Single UnityEngine.InputSystem.Controls.AxisControl::clampConstant float ___clampConstant_25; // System.Boolean UnityEngine.InputSystem.Controls.AxisControl::invert bool ___invert_26; // System.Boolean UnityEngine.InputSystem.Controls.AxisControl::normalize bool ___normalize_27; // System.Single UnityEngine.InputSystem.Controls.AxisControl::normalizeMin float ___normalizeMin_28; // System.Single UnityEngine.InputSystem.Controls.AxisControl::normalizeMax float ___normalizeMax_29; // System.Single UnityEngine.InputSystem.Controls.AxisControl::normalizeZero float ___normalizeZero_30; // System.Boolean UnityEngine.InputSystem.Controls.AxisControl::scale bool ___scale_31; // System.Single UnityEngine.InputSystem.Controls.AxisControl::scaleFactor float ___scaleFactor_32; public: inline static int32_t get_offset_of_clamp_22() { return static_cast(offsetof(AxisControl_tA997FF52442F7B08C7E13B7028393B4117248680, ___clamp_22)); } inline int32_t get_clamp_22() const { return ___clamp_22; } inline int32_t* get_address_of_clamp_22() { return &___clamp_22; } inline void set_clamp_22(int32_t value) { ___clamp_22 = value; } inline static int32_t get_offset_of_clampMin_23() { return static_cast(offsetof(AxisControl_tA997FF52442F7B08C7E13B7028393B4117248680, ___clampMin_23)); } inline float get_clampMin_23() const { return ___clampMin_23; } inline float* get_address_of_clampMin_23() { return &___clampMin_23; } inline void set_clampMin_23(float value) { ___clampMin_23 = value; } inline static int32_t get_offset_of_clampMax_24() { return static_cast(offsetof(AxisControl_tA997FF52442F7B08C7E13B7028393B4117248680, ___clampMax_24)); } inline float get_clampMax_24() const { return ___clampMax_24; } inline float* get_address_of_clampMax_24() { return &___clampMax_24; } inline void set_clampMax_24(float value) { ___clampMax_24 = value; } inline static int32_t get_offset_of_clampConstant_25() { return static_cast(offsetof(AxisControl_tA997FF52442F7B08C7E13B7028393B4117248680, ___clampConstant_25)); } inline float get_clampConstant_25() const { return ___clampConstant_25; } inline float* get_address_of_clampConstant_25() { return &___clampConstant_25; } inline void set_clampConstant_25(float value) { ___clampConstant_25 = value; } inline static int32_t get_offset_of_invert_26() { return static_cast(offsetof(AxisControl_tA997FF52442F7B08C7E13B7028393B4117248680, ___invert_26)); } inline bool get_invert_26() const { return ___invert_26; } inline bool* get_address_of_invert_26() { return &___invert_26; } inline void set_invert_26(bool value) { ___invert_26 = value; } inline static int32_t get_offset_of_normalize_27() { return static_cast(offsetof(AxisControl_tA997FF52442F7B08C7E13B7028393B4117248680, ___normalize_27)); } inline bool get_normalize_27() const { return ___normalize_27; } inline bool* get_address_of_normalize_27() { return &___normalize_27; } inline void set_normalize_27(bool value) { ___normalize_27 = value; } inline static int32_t get_offset_of_normalizeMin_28() { return static_cast(offsetof(AxisControl_tA997FF52442F7B08C7E13B7028393B4117248680, ___normalizeMin_28)); } inline float get_normalizeMin_28() const { return ___normalizeMin_28; } inline float* get_address_of_normalizeMin_28() { return &___normalizeMin_28; } inline void set_normalizeMin_28(float value) { ___normalizeMin_28 = value; } inline static int32_t get_offset_of_normalizeMax_29() { return static_cast(offsetof(AxisControl_tA997FF52442F7B08C7E13B7028393B4117248680, ___normalizeMax_29)); } inline float get_normalizeMax_29() const { return ___normalizeMax_29; } inline float* get_address_of_normalizeMax_29() { return &___normalizeMax_29; } inline void set_normalizeMax_29(float value) { ___normalizeMax_29 = value; } inline static int32_t get_offset_of_normalizeZero_30() { return static_cast(offsetof(AxisControl_tA997FF52442F7B08C7E13B7028393B4117248680, ___normalizeZero_30)); } inline float get_normalizeZero_30() const { return ___normalizeZero_30; } inline float* get_address_of_normalizeZero_30() { return &___normalizeZero_30; } inline void set_normalizeZero_30(float value) { ___normalizeZero_30 = value; } inline static int32_t get_offset_of_scale_31() { return static_cast(offsetof(AxisControl_tA997FF52442F7B08C7E13B7028393B4117248680, ___scale_31)); } inline bool get_scale_31() const { return ___scale_31; } inline bool* get_address_of_scale_31() { return &___scale_31; } inline void set_scale_31(bool value) { ___scale_31 = value; } inline static int32_t get_offset_of_scaleFactor_32() { return static_cast(offsetof(AxisControl_tA997FF52442F7B08C7E13B7028393B4117248680, ___scaleFactor_32)); } inline float get_scaleFactor_32() const { return ___scaleFactor_32; } inline float* get_address_of_scaleFactor_32() { return &___scaleFactor_32; } inline void set_scaleFactor_32(float value) { ___scaleFactor_32 = value; } }; // UnityEngine.InputSystem.InputManager struct InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F : public RuntimeObject { public: // System.Int32 UnityEngine.InputSystem.InputManager::m_LayoutRegistrationVersion int32_t ___m_LayoutRegistrationVersion_0; // System.Single UnityEngine.InputSystem.InputManager::m_PollingFrequency float ___m_PollingFrequency_1; // UnityEngine.InputSystem.Layouts.InputControlLayout/Collection UnityEngine.InputSystem.InputManager::m_Layouts Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F ___m_Layouts_2; // UnityEngine.InputSystem.Utilities.TypeTable UnityEngine.InputSystem.InputManager::m_Processors TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F ___m_Processors_3; // UnityEngine.InputSystem.Utilities.TypeTable UnityEngine.InputSystem.InputManager::m_Interactions TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F ___m_Interactions_4; // UnityEngine.InputSystem.Utilities.TypeTable UnityEngine.InputSystem.InputManager::m_Composites TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F ___m_Composites_5; // System.Int32 UnityEngine.InputSystem.InputManager::m_DevicesCount int32_t ___m_DevicesCount_6; // UnityEngine.InputSystem.InputDevice[] UnityEngine.InputSystem.InputManager::m_Devices InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* ___m_Devices_7; // System.Collections.Generic.Dictionary`2 UnityEngine.InputSystem.InputManager::m_DevicesById Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7 * ___m_DevicesById_8; // System.Int32 UnityEngine.InputSystem.InputManager::m_AvailableDeviceCount int32_t ___m_AvailableDeviceCount_9; // UnityEngine.InputSystem.InputManager/AvailableDevice[] UnityEngine.InputSystem.InputManager::m_AvailableDevices AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330* ___m_AvailableDevices_10; // System.Int32 UnityEngine.InputSystem.InputManager::m_DisconnectedDevicesCount int32_t ___m_DisconnectedDevicesCount_11; // UnityEngine.InputSystem.InputDevice[] UnityEngine.InputSystem.InputManager::m_DisconnectedDevices InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* ___m_DisconnectedDevices_12; // UnityEngine.InputSystem.LowLevel.InputUpdateType UnityEngine.InputSystem.InputManager::m_UpdateMask int32_t ___m_UpdateMask_13; // UnityEngine.InputSystem.LowLevel.InputUpdateType UnityEngine.InputSystem.InputManager::m_CurrentUpdate int32_t ___m_CurrentUpdate_14; // UnityEngine.InputSystem.LowLevel.InputStateBuffers UnityEngine.InputSystem.InputManager::m_StateBuffers InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA ___m_StateBuffers_15; // UnityEngine.InputSystem.Utilities.CallbackArray`1> UnityEngine.InputSystem.InputManager::m_DeviceChangeListeners CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 ___m_DeviceChangeListeners_16; // UnityEngine.InputSystem.Utilities.CallbackArray`1> UnityEngine.InputSystem.InputManager::m_DeviceStateChangeListeners CallbackArray_1_t6B54B12C76958BFFEC586C4B69F70560884AEF34 ___m_DeviceStateChangeListeners_17; // UnityEngine.InputSystem.Utilities.CallbackArray`1 UnityEngine.InputSystem.InputManager::m_DeviceFindLayoutCallbacks CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 ___m_DeviceFindLayoutCallbacks_18; // UnityEngine.InputSystem.Utilities.CallbackArray`1 UnityEngine.InputSystem.InputManager::m_DeviceCommandCallbacks CallbackArray_1_t157FF6A379E3716A8F98AD7AA44984A6C7908C87 ___m_DeviceCommandCallbacks_19; // UnityEngine.InputSystem.Utilities.CallbackArray`1> UnityEngine.InputSystem.InputManager::m_LayoutChangeListeners CallbackArray_1_t506D5A43E1BA50974832B6281CE0E05C835BD3A9 ___m_LayoutChangeListeners_20; // UnityEngine.InputSystem.Utilities.CallbackArray`1> UnityEngine.InputSystem.InputManager::m_EventListeners CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61 ___m_EventListeners_21; // UnityEngine.InputSystem.Utilities.CallbackArray`1 UnityEngine.InputSystem.InputManager::m_BeforeUpdateListeners CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 ___m_BeforeUpdateListeners_22; // UnityEngine.InputSystem.Utilities.CallbackArray`1 UnityEngine.InputSystem.InputManager::m_AfterUpdateListeners CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 ___m_AfterUpdateListeners_23; // UnityEngine.InputSystem.Utilities.CallbackArray`1 UnityEngine.InputSystem.InputManager::m_SettingsChangedListeners CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 ___m_SettingsChangedListeners_24; // System.Boolean UnityEngine.InputSystem.InputManager::m_NativeBeforeUpdateHooked bool ___m_NativeBeforeUpdateHooked_25; // System.Boolean UnityEngine.InputSystem.InputManager::m_HaveDevicesWithStateCallbackReceivers bool ___m_HaveDevicesWithStateCallbackReceivers_26; // System.Boolean UnityEngine.InputSystem.InputManager::m_HasFocus bool ___m_HasFocus_27; // UnityEngine.InputSystem.LowLevel.InputEventStream UnityEngine.InputSystem.InputManager::m_InputEventStream InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 ___m_InputEventStream_28; // UnityEngine.InputSystem.LowLevel.InputDeviceExecuteCommandDelegate UnityEngine.InputSystem.InputManager::m_DeviceFindExecuteCommandDelegate InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D * ___m_DeviceFindExecuteCommandDelegate_29; // System.Int32 UnityEngine.InputSystem.InputManager::m_DeviceFindExecuteCommandDeviceId int32_t ___m_DeviceFindExecuteCommandDeviceId_30; // UnityEngine.InputSystem.LowLevel.IInputRuntime UnityEngine.InputSystem.InputManager::m_Runtime RuntimeObject* ___m_Runtime_31; // UnityEngine.InputSystem.LowLevel.InputMetrics UnityEngine.InputSystem.InputManager::m_Metrics InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C ___m_Metrics_32; // UnityEngine.InputSystem.InputSettings UnityEngine.InputSystem.InputManager::m_Settings InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * ___m_Settings_33; // UnityEngine.InputSystem.InputManager/StateChangeMonitorsForDevice[] UnityEngine.InputSystem.InputManager::m_StateChangeMonitors StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* ___m_StateChangeMonitors_34; // UnityEngine.InputSystem.Utilities.InlinedArray`1 UnityEngine.InputSystem.InputManager::m_StateChangeMonitorTimeouts InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A ___m_StateChangeMonitorTimeouts_35; public: inline static int32_t get_offset_of_m_LayoutRegistrationVersion_0() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_LayoutRegistrationVersion_0)); } inline int32_t get_m_LayoutRegistrationVersion_0() const { return ___m_LayoutRegistrationVersion_0; } inline int32_t* get_address_of_m_LayoutRegistrationVersion_0() { return &___m_LayoutRegistrationVersion_0; } inline void set_m_LayoutRegistrationVersion_0(int32_t value) { ___m_LayoutRegistrationVersion_0 = value; } inline static int32_t get_offset_of_m_PollingFrequency_1() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_PollingFrequency_1)); } inline float get_m_PollingFrequency_1() const { return ___m_PollingFrequency_1; } inline float* get_address_of_m_PollingFrequency_1() { return &___m_PollingFrequency_1; } inline void set_m_PollingFrequency_1(float value) { ___m_PollingFrequency_1 = value; } inline static int32_t get_offset_of_m_Layouts_2() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_Layouts_2)); } inline Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F get_m_Layouts_2() const { return ___m_Layouts_2; } inline Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * get_address_of_m_Layouts_2() { return &___m_Layouts_2; } inline void set_m_Layouts_2(Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F value) { ___m_Layouts_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Layouts_2))->___layoutTypes_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Layouts_2))->___layoutStrings_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Layouts_2))->___layoutBuilders_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Layouts_2))->___baseLayoutTable_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Layouts_2))->___layoutOverrides_5), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Layouts_2))->___layoutOverrideNames_6), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Layouts_2))->___precompiledLayouts_7), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Layouts_2))->___layoutMatchers_8), (void*)NULL); #endif } inline static int32_t get_offset_of_m_Processors_3() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_Processors_3)); } inline TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F get_m_Processors_3() const { return ___m_Processors_3; } inline TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F * get_address_of_m_Processors_3() { return &___m_Processors_3; } inline void set_m_Processors_3(TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F value) { ___m_Processors_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Processors_3))->___table_0), (void*)NULL); } inline static int32_t get_offset_of_m_Interactions_4() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_Interactions_4)); } inline TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F get_m_Interactions_4() const { return ___m_Interactions_4; } inline TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F * get_address_of_m_Interactions_4() { return &___m_Interactions_4; } inline void set_m_Interactions_4(TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F value) { ___m_Interactions_4 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Interactions_4))->___table_0), (void*)NULL); } inline static int32_t get_offset_of_m_Composites_5() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_Composites_5)); } inline TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F get_m_Composites_5() const { return ___m_Composites_5; } inline TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F * get_address_of_m_Composites_5() { return &___m_Composites_5; } inline void set_m_Composites_5(TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F value) { ___m_Composites_5 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Composites_5))->___table_0), (void*)NULL); } inline static int32_t get_offset_of_m_DevicesCount_6() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_DevicesCount_6)); } inline int32_t get_m_DevicesCount_6() const { return ___m_DevicesCount_6; } inline int32_t* get_address_of_m_DevicesCount_6() { return &___m_DevicesCount_6; } inline void set_m_DevicesCount_6(int32_t value) { ___m_DevicesCount_6 = value; } inline static int32_t get_offset_of_m_Devices_7() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_Devices_7)); } inline InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* get_m_Devices_7() const { return ___m_Devices_7; } inline InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6** get_address_of_m_Devices_7() { return &___m_Devices_7; } inline void set_m_Devices_7(InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* value) { ___m_Devices_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Devices_7), (void*)value); } inline static int32_t get_offset_of_m_DevicesById_8() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_DevicesById_8)); } inline Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7 * get_m_DevicesById_8() const { return ___m_DevicesById_8; } inline Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7 ** get_address_of_m_DevicesById_8() { return &___m_DevicesById_8; } inline void set_m_DevicesById_8(Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7 * value) { ___m_DevicesById_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DevicesById_8), (void*)value); } inline static int32_t get_offset_of_m_AvailableDeviceCount_9() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_AvailableDeviceCount_9)); } inline int32_t get_m_AvailableDeviceCount_9() const { return ___m_AvailableDeviceCount_9; } inline int32_t* get_address_of_m_AvailableDeviceCount_9() { return &___m_AvailableDeviceCount_9; } inline void set_m_AvailableDeviceCount_9(int32_t value) { ___m_AvailableDeviceCount_9 = value; } inline static int32_t get_offset_of_m_AvailableDevices_10() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_AvailableDevices_10)); } inline AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330* get_m_AvailableDevices_10() const { return ___m_AvailableDevices_10; } inline AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330** get_address_of_m_AvailableDevices_10() { return &___m_AvailableDevices_10; } inline void set_m_AvailableDevices_10(AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330* value) { ___m_AvailableDevices_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_AvailableDevices_10), (void*)value); } inline static int32_t get_offset_of_m_DisconnectedDevicesCount_11() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_DisconnectedDevicesCount_11)); } inline int32_t get_m_DisconnectedDevicesCount_11() const { return ___m_DisconnectedDevicesCount_11; } inline int32_t* get_address_of_m_DisconnectedDevicesCount_11() { return &___m_DisconnectedDevicesCount_11; } inline void set_m_DisconnectedDevicesCount_11(int32_t value) { ___m_DisconnectedDevicesCount_11 = value; } inline static int32_t get_offset_of_m_DisconnectedDevices_12() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_DisconnectedDevices_12)); } inline InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* get_m_DisconnectedDevices_12() const { return ___m_DisconnectedDevices_12; } inline InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6** get_address_of_m_DisconnectedDevices_12() { return &___m_DisconnectedDevices_12; } inline void set_m_DisconnectedDevices_12(InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* value) { ___m_DisconnectedDevices_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DisconnectedDevices_12), (void*)value); } inline static int32_t get_offset_of_m_UpdateMask_13() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_UpdateMask_13)); } inline int32_t get_m_UpdateMask_13() const { return ___m_UpdateMask_13; } inline int32_t* get_address_of_m_UpdateMask_13() { return &___m_UpdateMask_13; } inline void set_m_UpdateMask_13(int32_t value) { ___m_UpdateMask_13 = value; } inline static int32_t get_offset_of_m_CurrentUpdate_14() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_CurrentUpdate_14)); } inline int32_t get_m_CurrentUpdate_14() const { return ___m_CurrentUpdate_14; } inline int32_t* get_address_of_m_CurrentUpdate_14() { return &___m_CurrentUpdate_14; } inline void set_m_CurrentUpdate_14(int32_t value) { ___m_CurrentUpdate_14 = value; } inline static int32_t get_offset_of_m_StateBuffers_15() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_StateBuffers_15)); } inline InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA get_m_StateBuffers_15() const { return ___m_StateBuffers_15; } inline InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA * get_address_of_m_StateBuffers_15() { return &___m_StateBuffers_15; } inline void set_m_StateBuffers_15(InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA value) { ___m_StateBuffers_15 = value; } inline static int32_t get_offset_of_m_DeviceChangeListeners_16() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_DeviceChangeListeners_16)); } inline CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 get_m_DeviceChangeListeners_16() const { return ___m_DeviceChangeListeners_16; } inline CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 * get_address_of_m_DeviceChangeListeners_16() { return &___m_DeviceChangeListeners_16; } inline void set_m_DeviceChangeListeners_16(CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 value) { ___m_DeviceChangeListeners_16 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DeviceChangeListeners_16))->___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DeviceChangeListeners_16))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DeviceChangeListeners_16))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DeviceChangeListeners_16))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DeviceChangeListeners_16))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DeviceChangeListeners_16))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_DeviceStateChangeListeners_17() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_DeviceStateChangeListeners_17)); } inline CallbackArray_1_t6B54B12C76958BFFEC586C4B69F70560884AEF34 get_m_DeviceStateChangeListeners_17() const { return ___m_DeviceStateChangeListeners_17; } inline CallbackArray_1_t6B54B12C76958BFFEC586C4B69F70560884AEF34 * get_address_of_m_DeviceStateChangeListeners_17() { return &___m_DeviceStateChangeListeners_17; } inline void set_m_DeviceStateChangeListeners_17(CallbackArray_1_t6B54B12C76958BFFEC586C4B69F70560884AEF34 value) { ___m_DeviceStateChangeListeners_17 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DeviceStateChangeListeners_17))->___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DeviceStateChangeListeners_17))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DeviceStateChangeListeners_17))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DeviceStateChangeListeners_17))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DeviceStateChangeListeners_17))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DeviceStateChangeListeners_17))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_DeviceFindLayoutCallbacks_18() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_DeviceFindLayoutCallbacks_18)); } inline CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 get_m_DeviceFindLayoutCallbacks_18() const { return ___m_DeviceFindLayoutCallbacks_18; } inline CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 * get_address_of_m_DeviceFindLayoutCallbacks_18() { return &___m_DeviceFindLayoutCallbacks_18; } inline void set_m_DeviceFindLayoutCallbacks_18(CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 value) { ___m_DeviceFindLayoutCallbacks_18 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DeviceFindLayoutCallbacks_18))->___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DeviceFindLayoutCallbacks_18))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DeviceFindLayoutCallbacks_18))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DeviceFindLayoutCallbacks_18))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DeviceFindLayoutCallbacks_18))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DeviceFindLayoutCallbacks_18))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_DeviceCommandCallbacks_19() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_DeviceCommandCallbacks_19)); } inline CallbackArray_1_t157FF6A379E3716A8F98AD7AA44984A6C7908C87 get_m_DeviceCommandCallbacks_19() const { return ___m_DeviceCommandCallbacks_19; } inline CallbackArray_1_t157FF6A379E3716A8F98AD7AA44984A6C7908C87 * get_address_of_m_DeviceCommandCallbacks_19() { return &___m_DeviceCommandCallbacks_19; } inline void set_m_DeviceCommandCallbacks_19(CallbackArray_1_t157FF6A379E3716A8F98AD7AA44984A6C7908C87 value) { ___m_DeviceCommandCallbacks_19 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DeviceCommandCallbacks_19))->___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DeviceCommandCallbacks_19))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DeviceCommandCallbacks_19))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DeviceCommandCallbacks_19))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DeviceCommandCallbacks_19))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DeviceCommandCallbacks_19))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_LayoutChangeListeners_20() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_LayoutChangeListeners_20)); } inline CallbackArray_1_t506D5A43E1BA50974832B6281CE0E05C835BD3A9 get_m_LayoutChangeListeners_20() const { return ___m_LayoutChangeListeners_20; } inline CallbackArray_1_t506D5A43E1BA50974832B6281CE0E05C835BD3A9 * get_address_of_m_LayoutChangeListeners_20() { return &___m_LayoutChangeListeners_20; } inline void set_m_LayoutChangeListeners_20(CallbackArray_1_t506D5A43E1BA50974832B6281CE0E05C835BD3A9 value) { ___m_LayoutChangeListeners_20 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_LayoutChangeListeners_20))->___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_LayoutChangeListeners_20))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_LayoutChangeListeners_20))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_LayoutChangeListeners_20))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_LayoutChangeListeners_20))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_LayoutChangeListeners_20))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_EventListeners_21() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_EventListeners_21)); } inline CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61 get_m_EventListeners_21() const { return ___m_EventListeners_21; } inline CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61 * get_address_of_m_EventListeners_21() { return &___m_EventListeners_21; } inline void set_m_EventListeners_21(CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61 value) { ___m_EventListeners_21 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_EventListeners_21))->___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_EventListeners_21))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_EventListeners_21))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_EventListeners_21))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_EventListeners_21))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_EventListeners_21))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_BeforeUpdateListeners_22() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_BeforeUpdateListeners_22)); } inline CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 get_m_BeforeUpdateListeners_22() const { return ___m_BeforeUpdateListeners_22; } inline CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 * get_address_of_m_BeforeUpdateListeners_22() { return &___m_BeforeUpdateListeners_22; } inline void set_m_BeforeUpdateListeners_22(CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 value) { ___m_BeforeUpdateListeners_22 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_BeforeUpdateListeners_22))->___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_BeforeUpdateListeners_22))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_BeforeUpdateListeners_22))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_BeforeUpdateListeners_22))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_BeforeUpdateListeners_22))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_BeforeUpdateListeners_22))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_AfterUpdateListeners_23() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_AfterUpdateListeners_23)); } inline CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 get_m_AfterUpdateListeners_23() const { return ___m_AfterUpdateListeners_23; } inline CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 * get_address_of_m_AfterUpdateListeners_23() { return &___m_AfterUpdateListeners_23; } inline void set_m_AfterUpdateListeners_23(CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 value) { ___m_AfterUpdateListeners_23 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_AfterUpdateListeners_23))->___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_AfterUpdateListeners_23))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_AfterUpdateListeners_23))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_AfterUpdateListeners_23))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_AfterUpdateListeners_23))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_AfterUpdateListeners_23))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_SettingsChangedListeners_24() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_SettingsChangedListeners_24)); } inline CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 get_m_SettingsChangedListeners_24() const { return ___m_SettingsChangedListeners_24; } inline CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 * get_address_of_m_SettingsChangedListeners_24() { return &___m_SettingsChangedListeners_24; } inline void set_m_SettingsChangedListeners_24(CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 value) { ___m_SettingsChangedListeners_24 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SettingsChangedListeners_24))->___m_Callbacks_1))->___firstValue_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SettingsChangedListeners_24))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SettingsChangedListeners_24))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SettingsChangedListeners_24))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SettingsChangedListeners_24))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SettingsChangedListeners_24))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } inline static int32_t get_offset_of_m_NativeBeforeUpdateHooked_25() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_NativeBeforeUpdateHooked_25)); } inline bool get_m_NativeBeforeUpdateHooked_25() const { return ___m_NativeBeforeUpdateHooked_25; } inline bool* get_address_of_m_NativeBeforeUpdateHooked_25() { return &___m_NativeBeforeUpdateHooked_25; } inline void set_m_NativeBeforeUpdateHooked_25(bool value) { ___m_NativeBeforeUpdateHooked_25 = value; } inline static int32_t get_offset_of_m_HaveDevicesWithStateCallbackReceivers_26() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_HaveDevicesWithStateCallbackReceivers_26)); } inline bool get_m_HaveDevicesWithStateCallbackReceivers_26() const { return ___m_HaveDevicesWithStateCallbackReceivers_26; } inline bool* get_address_of_m_HaveDevicesWithStateCallbackReceivers_26() { return &___m_HaveDevicesWithStateCallbackReceivers_26; } inline void set_m_HaveDevicesWithStateCallbackReceivers_26(bool value) { ___m_HaveDevicesWithStateCallbackReceivers_26 = value; } inline static int32_t get_offset_of_m_HasFocus_27() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_HasFocus_27)); } inline bool get_m_HasFocus_27() const { return ___m_HasFocus_27; } inline bool* get_address_of_m_HasFocus_27() { return &___m_HasFocus_27; } inline void set_m_HasFocus_27(bool value) { ___m_HasFocus_27 = value; } inline static int32_t get_offset_of_m_InputEventStream_28() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_InputEventStream_28)); } inline InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 get_m_InputEventStream_28() const { return ___m_InputEventStream_28; } inline InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * get_address_of_m_InputEventStream_28() { return &___m_InputEventStream_28; } inline void set_m_InputEventStream_28(InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 value) { ___m_InputEventStream_28 = value; } inline static int32_t get_offset_of_m_DeviceFindExecuteCommandDelegate_29() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_DeviceFindExecuteCommandDelegate_29)); } inline InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D * get_m_DeviceFindExecuteCommandDelegate_29() const { return ___m_DeviceFindExecuteCommandDelegate_29; } inline InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D ** get_address_of_m_DeviceFindExecuteCommandDelegate_29() { return &___m_DeviceFindExecuteCommandDelegate_29; } inline void set_m_DeviceFindExecuteCommandDelegate_29(InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D * value) { ___m_DeviceFindExecuteCommandDelegate_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DeviceFindExecuteCommandDelegate_29), (void*)value); } inline static int32_t get_offset_of_m_DeviceFindExecuteCommandDeviceId_30() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_DeviceFindExecuteCommandDeviceId_30)); } inline int32_t get_m_DeviceFindExecuteCommandDeviceId_30() const { return ___m_DeviceFindExecuteCommandDeviceId_30; } inline int32_t* get_address_of_m_DeviceFindExecuteCommandDeviceId_30() { return &___m_DeviceFindExecuteCommandDeviceId_30; } inline void set_m_DeviceFindExecuteCommandDeviceId_30(int32_t value) { ___m_DeviceFindExecuteCommandDeviceId_30 = value; } inline static int32_t get_offset_of_m_Runtime_31() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_Runtime_31)); } inline RuntimeObject* get_m_Runtime_31() const { return ___m_Runtime_31; } inline RuntimeObject** get_address_of_m_Runtime_31() { return &___m_Runtime_31; } inline void set_m_Runtime_31(RuntimeObject* value) { ___m_Runtime_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Runtime_31), (void*)value); } inline static int32_t get_offset_of_m_Metrics_32() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_Metrics_32)); } inline InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C get_m_Metrics_32() const { return ___m_Metrics_32; } inline InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * get_address_of_m_Metrics_32() { return &___m_Metrics_32; } inline void set_m_Metrics_32(InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C value) { ___m_Metrics_32 = value; } inline static int32_t get_offset_of_m_Settings_33() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_Settings_33)); } inline InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * get_m_Settings_33() const { return ___m_Settings_33; } inline InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 ** get_address_of_m_Settings_33() { return &___m_Settings_33; } inline void set_m_Settings_33(InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * value) { ___m_Settings_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Settings_33), (void*)value); } inline static int32_t get_offset_of_m_StateChangeMonitors_34() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_StateChangeMonitors_34)); } inline StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* get_m_StateChangeMonitors_34() const { return ___m_StateChangeMonitors_34; } inline StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE** get_address_of_m_StateChangeMonitors_34() { return &___m_StateChangeMonitors_34; } inline void set_m_StateChangeMonitors_34(StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* value) { ___m_StateChangeMonitors_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_StateChangeMonitors_34), (void*)value); } inline static int32_t get_offset_of_m_StateChangeMonitorTimeouts_35() { return static_cast(offsetof(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F, ___m_StateChangeMonitorTimeouts_35)); } inline InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A get_m_StateChangeMonitorTimeouts_35() const { return ___m_StateChangeMonitorTimeouts_35; } inline InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * get_address_of_m_StateChangeMonitorTimeouts_35() { return &___m_StateChangeMonitorTimeouts_35; } inline void set_m_StateChangeMonitorTimeouts_35(InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A value) { ___m_StateChangeMonitorTimeouts_35 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_StateChangeMonitorTimeouts_35))->___firstValue_1))->___control_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_StateChangeMonitorTimeouts_35))->___firstValue_1))->___monitor_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_StateChangeMonitorTimeouts_35))->___additionalValues_2), (void*)NULL); #endif } }; // UnityEngine.InputSystem.Pointer struct Pointer_t1E3BB2A6B6127C10002D78A2219A2F5083671FE5 : public InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 { public: // UnityEngine.InputSystem.Controls.Vector2Control UnityEngine.InputSystem.Pointer::k__BackingField Vector2Control_t271CA458D56BCA875642853132733D774B009A96 * ___U3CpositionU3Ek__BackingField_39; // UnityEngine.InputSystem.Controls.DeltaControl UnityEngine.InputSystem.Pointer::k__BackingField DeltaControl_t8A924CCBD9CC326D8375AD18A2AC1B62C45ECE10 * ___U3CdeltaU3Ek__BackingField_40; // UnityEngine.InputSystem.Controls.Vector2Control UnityEngine.InputSystem.Pointer::k__BackingField Vector2Control_t271CA458D56BCA875642853132733D774B009A96 * ___U3CradiusU3Ek__BackingField_41; // UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.Pointer::k__BackingField AxisControl_tA997FF52442F7B08C7E13B7028393B4117248680 * ___U3CpressureU3Ek__BackingField_42; // UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Pointer::k__BackingField ButtonControl_t3918D56D674854AF9DFEB8CCF130919AAD9FCA68 * ___U3CpressU3Ek__BackingField_43; public: inline static int32_t get_offset_of_U3CpositionU3Ek__BackingField_39() { return static_cast(offsetof(Pointer_t1E3BB2A6B6127C10002D78A2219A2F5083671FE5, ___U3CpositionU3Ek__BackingField_39)); } inline Vector2Control_t271CA458D56BCA875642853132733D774B009A96 * get_U3CpositionU3Ek__BackingField_39() const { return ___U3CpositionU3Ek__BackingField_39; } inline Vector2Control_t271CA458D56BCA875642853132733D774B009A96 ** get_address_of_U3CpositionU3Ek__BackingField_39() { return &___U3CpositionU3Ek__BackingField_39; } inline void set_U3CpositionU3Ek__BackingField_39(Vector2Control_t271CA458D56BCA875642853132733D774B009A96 * value) { ___U3CpositionU3Ek__BackingField_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CpositionU3Ek__BackingField_39), (void*)value); } inline static int32_t get_offset_of_U3CdeltaU3Ek__BackingField_40() { return static_cast(offsetof(Pointer_t1E3BB2A6B6127C10002D78A2219A2F5083671FE5, ___U3CdeltaU3Ek__BackingField_40)); } inline DeltaControl_t8A924CCBD9CC326D8375AD18A2AC1B62C45ECE10 * get_U3CdeltaU3Ek__BackingField_40() const { return ___U3CdeltaU3Ek__BackingField_40; } inline DeltaControl_t8A924CCBD9CC326D8375AD18A2AC1B62C45ECE10 ** get_address_of_U3CdeltaU3Ek__BackingField_40() { return &___U3CdeltaU3Ek__BackingField_40; } inline void set_U3CdeltaU3Ek__BackingField_40(DeltaControl_t8A924CCBD9CC326D8375AD18A2AC1B62C45ECE10 * value) { ___U3CdeltaU3Ek__BackingField_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CdeltaU3Ek__BackingField_40), (void*)value); } inline static int32_t get_offset_of_U3CradiusU3Ek__BackingField_41() { return static_cast(offsetof(Pointer_t1E3BB2A6B6127C10002D78A2219A2F5083671FE5, ___U3CradiusU3Ek__BackingField_41)); } inline Vector2Control_t271CA458D56BCA875642853132733D774B009A96 * get_U3CradiusU3Ek__BackingField_41() const { return ___U3CradiusU3Ek__BackingField_41; } inline Vector2Control_t271CA458D56BCA875642853132733D774B009A96 ** get_address_of_U3CradiusU3Ek__BackingField_41() { return &___U3CradiusU3Ek__BackingField_41; } inline void set_U3CradiusU3Ek__BackingField_41(Vector2Control_t271CA458D56BCA875642853132733D774B009A96 * value) { ___U3CradiusU3Ek__BackingField_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CradiusU3Ek__BackingField_41), (void*)value); } inline static int32_t get_offset_of_U3CpressureU3Ek__BackingField_42() { return static_cast(offsetof(Pointer_t1E3BB2A6B6127C10002D78A2219A2F5083671FE5, ___U3CpressureU3Ek__BackingField_42)); } inline AxisControl_tA997FF52442F7B08C7E13B7028393B4117248680 * get_U3CpressureU3Ek__BackingField_42() const { return ___U3CpressureU3Ek__BackingField_42; } inline AxisControl_tA997FF52442F7B08C7E13B7028393B4117248680 ** get_address_of_U3CpressureU3Ek__BackingField_42() { return &___U3CpressureU3Ek__BackingField_42; } inline void set_U3CpressureU3Ek__BackingField_42(AxisControl_tA997FF52442F7B08C7E13B7028393B4117248680 * value) { ___U3CpressureU3Ek__BackingField_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CpressureU3Ek__BackingField_42), (void*)value); } inline static int32_t get_offset_of_U3CpressU3Ek__BackingField_43() { return static_cast(offsetof(Pointer_t1E3BB2A6B6127C10002D78A2219A2F5083671FE5, ___U3CpressU3Ek__BackingField_43)); } inline ButtonControl_t3918D56D674854AF9DFEB8CCF130919AAD9FCA68 * get_U3CpressU3Ek__BackingField_43() const { return ___U3CpressU3Ek__BackingField_43; } inline ButtonControl_t3918D56D674854AF9DFEB8CCF130919AAD9FCA68 ** get_address_of_U3CpressU3Ek__BackingField_43() { return &___U3CpressU3Ek__BackingField_43; } inline void set_U3CpressU3Ek__BackingField_43(ButtonControl_t3918D56D674854AF9DFEB8CCF130919AAD9FCA68 * value) { ___U3CpressU3Ek__BackingField_43 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CpressU3Ek__BackingField_43), (void*)value); } }; // UnityEngine.InputSystem.Controls.ButtonControl struct ButtonControl_t3918D56D674854AF9DFEB8CCF130919AAD9FCA68 : public AxisControl_tA997FF52442F7B08C7E13B7028393B4117248680 { public: // System.Single UnityEngine.InputSystem.Controls.ButtonControl::pressPoint float ___pressPoint_33; public: inline static int32_t get_offset_of_pressPoint_33() { return static_cast(offsetof(ButtonControl_t3918D56D674854AF9DFEB8CCF130919AAD9FCA68, ___pressPoint_33)); } inline float get_pressPoint_33() const { return ___pressPoint_33; } inline float* get_address_of_pressPoint_33() { return &___pressPoint_33; } inline void set_pressPoint_33(float value) { ___pressPoint_33 = value; } }; // UnityEngine.InputSystem.Touchscreen struct Touchscreen_tE679C4B2C2D8C5979EAC5A2002603672A202E3EB : public Pointer_t1E3BB2A6B6127C10002D78A2219A2F5083671FE5 { public: // UnityEngine.InputSystem.Controls.TouchControl UnityEngine.InputSystem.Touchscreen::k__BackingField TouchControl_t6E5C91937E6811635891F0FE85B96BA3338E0EFD * ___U3CprimaryTouchU3Ek__BackingField_45; // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 UnityEngine.InputSystem.Touchscreen::k__BackingField ReadOnlyArray_1_t0DCCE2E9597891D2E289C44634892EF6129F71F9 ___U3CtouchesU3Ek__BackingField_46; public: inline static int32_t get_offset_of_U3CprimaryTouchU3Ek__BackingField_45() { return static_cast(offsetof(Touchscreen_tE679C4B2C2D8C5979EAC5A2002603672A202E3EB, ___U3CprimaryTouchU3Ek__BackingField_45)); } inline TouchControl_t6E5C91937E6811635891F0FE85B96BA3338E0EFD * get_U3CprimaryTouchU3Ek__BackingField_45() const { return ___U3CprimaryTouchU3Ek__BackingField_45; } inline TouchControl_t6E5C91937E6811635891F0FE85B96BA3338E0EFD ** get_address_of_U3CprimaryTouchU3Ek__BackingField_45() { return &___U3CprimaryTouchU3Ek__BackingField_45; } inline void set_U3CprimaryTouchU3Ek__BackingField_45(TouchControl_t6E5C91937E6811635891F0FE85B96BA3338E0EFD * value) { ___U3CprimaryTouchU3Ek__BackingField_45 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CprimaryTouchU3Ek__BackingField_45), (void*)value); } inline static int32_t get_offset_of_U3CtouchesU3Ek__BackingField_46() { return static_cast(offsetof(Touchscreen_tE679C4B2C2D8C5979EAC5A2002603672A202E3EB, ___U3CtouchesU3Ek__BackingField_46)); } inline ReadOnlyArray_1_t0DCCE2E9597891D2E289C44634892EF6129F71F9 get_U3CtouchesU3Ek__BackingField_46() const { return ___U3CtouchesU3Ek__BackingField_46; } inline ReadOnlyArray_1_t0DCCE2E9597891D2E289C44634892EF6129F71F9 * get_address_of_U3CtouchesU3Ek__BackingField_46() { return &___U3CtouchesU3Ek__BackingField_46; } inline void set_U3CtouchesU3Ek__BackingField_46(ReadOnlyArray_1_t0DCCE2E9597891D2E289C44634892EF6129F71F9 value) { ___U3CtouchesU3Ek__BackingField_46 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CtouchesU3Ek__BackingField_46))->___m_Array_0), (void*)NULL); } }; // System.Object // System.Object // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2> // System.Collections.Generic.Dictionary`2> // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.HashSet`1 // System.Collections.Generic.HashSet`1 // System.Collections.Generic.HashSet`1 // System.Collections.Generic.HashSet`1 // System.Collections.Generic.Dictionary`2/KeyCollection // System.Collections.Generic.Dictionary`2/KeyCollection // System.Collections.Generic.List`1 struct List_1_tD6947050802043C1EF83E27C7D278C8790D69D83_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_tD6947050802043C1EF83E27C7D278C8790D69D83_StaticFields, ____emptyArray_5)); } inline InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* get__emptyArray_5() const { return ____emptyArray_5; } inline InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_tAC9866130CCE9F688E2E8D1782F54217E5E3A32F_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray InputDeviceDescriptionU5BU5D_t42F2D0E6A909DFD21287F5A79032AB64986F8BF0* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_tAC9866130CCE9F688E2E8D1782F54217E5E3A32F_StaticFields, ____emptyArray_5)); } inline InputDeviceDescriptionU5BU5D_t42F2D0E6A909DFD21287F5A79032AB64986F8BF0* get__emptyArray_5() const { return ____emptyArray_5; } inline InputDeviceDescriptionU5BU5D_t42F2D0E6A909DFD21287F5A79032AB64986F8BF0** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(InputDeviceDescriptionU5BU5D_t42F2D0E6A909DFD21287F5A79032AB64986F8BF0* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields, ____emptyArray_5)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__emptyArray_5() const { return ____emptyArray_5; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 struct Il2CppArrayBounds; // System.Array struct Il2CppArrayBounds; // System.Array // System.Attribute // System.Attribute // System.IO.BinaryReader // System.IO.BinaryReader // System.IO.BinaryWriter struct BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F_StaticFields { public: // System.IO.BinaryWriter System.IO.BinaryWriter::Null BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * ___Null_0; public: inline static int32_t get_offset_of_Null_0() { return static_cast(offsetof(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F_StaticFields, ___Null_0)); } inline BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * get_Null_0() const { return ___Null_0; } inline BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F ** get_address_of_Null_0() { return &___Null_0; } inline void set_Null_0(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * value) { ___Null_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Null_0), (void*)value); } }; // System.IO.BinaryWriter // UnityEngine.InputSystem.InputExtensions // UnityEngine.InputSystem.InputExtensions // UnityEngine.InputSystem.InputFeatureNames // UnityEngine.InputSystem.InputFeatureNames // UnityEngine.InputSystem.LowLevel.InputRuntime struct InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_StaticFields { public: // UnityEngine.InputSystem.LowLevel.IInputRuntime UnityEngine.InputSystem.LowLevel.InputRuntime::s_Instance RuntimeObject* ___s_Instance_0; // System.Double UnityEngine.InputSystem.LowLevel.InputRuntime::s_CurrentTimeOffsetToRealtimeSinceStartup double ___s_CurrentTimeOffsetToRealtimeSinceStartup_1; public: inline static int32_t get_offset_of_s_Instance_0() { return static_cast(offsetof(InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_StaticFields, ___s_Instance_0)); } inline RuntimeObject* get_s_Instance_0() const { return ___s_Instance_0; } inline RuntimeObject** get_address_of_s_Instance_0() { return &___s_Instance_0; } inline void set_s_Instance_0(RuntimeObject* value) { ___s_Instance_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Instance_0), (void*)value); } inline static int32_t get_offset_of_s_CurrentTimeOffsetToRealtimeSinceStartup_1() { return static_cast(offsetof(InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_StaticFields, ___s_CurrentTimeOffsetToRealtimeSinceStartup_1)); } inline double get_s_CurrentTimeOffsetToRealtimeSinceStartup_1() const { return ___s_CurrentTimeOffsetToRealtimeSinceStartup_1; } inline double* get_address_of_s_CurrentTimeOffsetToRealtimeSinceStartup_1() { return &___s_CurrentTimeOffsetToRealtimeSinceStartup_1; } inline void set_s_CurrentTimeOffsetToRealtimeSinceStartup_1(double value) { ___s_CurrentTimeOffsetToRealtimeSinceStartup_1 = value; } }; // UnityEngine.InputSystem.LowLevel.InputRuntime // UnityEngine.InputSystem.InputSystem struct InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_StaticFields { public: // UnityEngine.InputSystem.InputManager UnityEngine.InputSystem.InputSystem::s_Manager InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * ___s_Manager_2; // UnityEngine.InputSystem.InputRemoting UnityEngine.InputSystem.InputSystem::s_Remote InputRemoting_t1E0E6A3FCECB6332362D470A443CE1B1F0E26E38 * ___s_Remote_3; public: inline static int32_t get_offset_of_s_Manager_2() { return static_cast(offsetof(InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_StaticFields, ___s_Manager_2)); } inline InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * get_s_Manager_2() const { return ___s_Manager_2; } inline InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F ** get_address_of_s_Manager_2() { return &___s_Manager_2; } inline void set_s_Manager_2(InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * value) { ___s_Manager_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Manager_2), (void*)value); } inline static int32_t get_offset_of_s_Remote_3() { return static_cast(offsetof(InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_StaticFields, ___s_Remote_3)); } inline InputRemoting_t1E0E6A3FCECB6332362D470A443CE1B1F0E26E38 * get_s_Remote_3() const { return ___s_Remote_3; } inline InputRemoting_t1E0E6A3FCECB6332362D470A443CE1B1F0E26E38 ** get_address_of_s_Remote_3() { return &___s_Remote_3; } inline void set_s_Remote_3(InputRemoting_t1E0E6A3FCECB6332362D470A443CE1B1F0E26E38 * value) { ___s_Remote_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Remote_3), (void*)value); } }; // UnityEngine.InputSystem.InputSystem // System.MarshalByRefObject // System.MarshalByRefObject // System.Reflection.MemberInfo // System.Reflection.MemberInfo // System.Diagnostics.Stopwatch struct Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_StaticFields { public: // System.Int64 System.Diagnostics.Stopwatch::Frequency int64_t ___Frequency_0; // System.Boolean System.Diagnostics.Stopwatch::IsHighResolution bool ___IsHighResolution_1; public: inline static int32_t get_offset_of_Frequency_0() { return static_cast(offsetof(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_StaticFields, ___Frequency_0)); } inline int64_t get_Frequency_0() const { return ___Frequency_0; } inline int64_t* get_address_of_Frequency_0() { return &___Frequency_0; } inline void set_Frequency_0(int64_t value) { ___Frequency_0 = value; } inline static int32_t get_offset_of_IsHighResolution_1() { return static_cast(offsetof(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_StaticFields, ___IsHighResolution_1)); } inline bool get_IsHighResolution_1() const { return ___IsHighResolution_1; } inline bool* get_address_of_IsHighResolution_1() { return &___IsHighResolution_1; } inline void set_IsHighResolution_1(bool value) { ___IsHighResolution_1 = value; } }; // System.Diagnostics.Stopwatch // System.String struct String_t_StaticFields { public: // System.String System.String::Empty String_t* ___Empty_5; public: inline static int32_t get_offset_of_Empty_5() { return static_cast(offsetof(String_t_StaticFields, ___Empty_5)); } inline String_t* get_Empty_5() const { return ___Empty_5; } inline String_t** get_address_of_Empty_5() { return &___Empty_5; } inline void set_Empty_5(String_t* value) { ___Empty_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value); } }; // System.String // System.ValueType // System.ValueType // UnityEngine.InputSystem.Layouts.InputDeviceMatcher/<>c struct U3CU3Ec_tE2728AA79E51BD5F4C35DDD7B9C1C562C2164BD8_StaticFields { public: // UnityEngine.InputSystem.Layouts.InputDeviceMatcher/<>c UnityEngine.InputSystem.Layouts.InputDeviceMatcher/<>c::<>9 U3CU3Ec_tE2728AA79E51BD5F4C35DDD7B9C1C562C2164BD8 * ___U3CU3E9_0; // System.Func`2 UnityEngine.InputSystem.Layouts.InputDeviceMatcher/<>c::<>9__11_0 Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A * ___U3CU3E9__11_0_1; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast(offsetof(U3CU3Ec_tE2728AA79E51BD5F4C35DDD7B9C1C562C2164BD8_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_tE2728AA79E51BD5F4C35DDD7B9C1C562C2164BD8 * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_tE2728AA79E51BD5F4C35DDD7B9C1C562C2164BD8 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_tE2728AA79E51BD5F4C35DDD7B9C1C562C2164BD8 * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__11_0_1() { return static_cast(offsetof(U3CU3Ec_tE2728AA79E51BD5F4C35DDD7B9C1C562C2164BD8_StaticFields, ___U3CU3E9__11_0_1)); } inline Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A * get_U3CU3E9__11_0_1() const { return ___U3CU3E9__11_0_1; } inline Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A ** get_address_of_U3CU3E9__11_0_1() { return &___U3CU3E9__11_0_1; } inline void set_U3CU3E9__11_0_1(Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A * value) { ___U3CU3E9__11_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__11_0_1), (void*)value); } }; // UnityEngine.InputSystem.Layouts.InputDeviceMatcher/<>c // UnityEngine.InputSystem.LowLevel.InputEventListener/DisposableObserver // UnityEngine.InputSystem.LowLevel.InputEventListener/DisposableObserver // UnityEngine.InputSystem.InputManager/<>c struct U3CU3Ec_tA14A9657912D2AB6AA361CE3720B2DFDC8F69CDF_StaticFields { public: // UnityEngine.InputSystem.InputManager/<>c UnityEngine.InputSystem.InputManager/<>c::<>9 U3CU3Ec_tA14A9657912D2AB6AA361CE3720B2DFDC8F69CDF * ___U3CU3E9_0; // System.Func`2 UnityEngine.InputSystem.InputManager/<>c::<>9__144_0 Func_2_t42D51CF507A4D7E5E1BB1ADA2AD1B58BD47C50C9 * ___U3CU3E9__144_0_1; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast(offsetof(U3CU3Ec_tA14A9657912D2AB6AA361CE3720B2DFDC8F69CDF_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_tA14A9657912D2AB6AA361CE3720B2DFDC8F69CDF * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_tA14A9657912D2AB6AA361CE3720B2DFDC8F69CDF ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_tA14A9657912D2AB6AA361CE3720B2DFDC8F69CDF * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__144_0_1() { return static_cast(offsetof(U3CU3Ec_tA14A9657912D2AB6AA361CE3720B2DFDC8F69CDF_StaticFields, ___U3CU3E9__144_0_1)); } inline Func_2_t42D51CF507A4D7E5E1BB1ADA2AD1B58BD47C50C9 * get_U3CU3E9__144_0_1() const { return ___U3CU3E9__144_0_1; } inline Func_2_t42D51CF507A4D7E5E1BB1ADA2AD1B58BD47C50C9 ** get_address_of_U3CU3E9__144_0_1() { return &___U3CU3E9__144_0_1; } inline void set_U3CU3E9__144_0_1(Func_2_t42D51CF507A4D7E5E1BB1ADA2AD1B58BD47C50C9 * value) { ___U3CU3E9__144_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__144_0_1), (void*)value); } }; // UnityEngine.InputSystem.InputManager/<>c // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1 // UnityEngine.InputSystem.Utilities.InlinedArray`1 // UnityEngine.InputSystem.Utilities.InlinedArray`1 // UnityEngine.InputSystem.Utilities.InlinedArray`1 // UnityEngine.InputSystem.Utilities.InlinedArray`1 // UnityEngine.InputSystem.Utilities.InlinedArray`1 // UnityEngine.InputSystem.Utilities.InlinedArray`1 // UnityEngine.InputSystem.Utilities.InlinedArray`1 // UnityEngine.InputSystem.Utilities.InlinedArray`1 // UnityEngine.InputSystem.Utilities.InlinedArray`1 // UnityEngine.InputSystem.Utilities.InlinedArray`1 // UnityEngine.InputSystem.Utilities.InlinedArray`1 // System.Collections.Generic.KeyValuePair`2 // System.Collections.Generic.KeyValuePair`2 // System.Collections.Generic.KeyValuePair`2 // System.Collections.Generic.KeyValuePair`2 // System.Nullable`1 // System.Nullable`1 // System.Nullable`1 // System.Nullable`1 // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 // System.Boolean struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value); } }; // System.Boolean // System.Byte // System.Byte // System.Char struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields { public: // System.Byte[] System.Char::categoryForLatin1 ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___categoryForLatin1_3; public: inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields, ___categoryForLatin1_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; } inline void set_categoryForLatin1_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___categoryForLatin1_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value); } }; // System.Char // System.ComponentModel.DisplayNameAttribute struct DisplayNameAttribute_t23E87B8B23DC5CF5E2A72B8039935029D0A53E85_StaticFields { public: // System.ComponentModel.DisplayNameAttribute System.ComponentModel.DisplayNameAttribute::Default DisplayNameAttribute_t23E87B8B23DC5CF5E2A72B8039935029D0A53E85 * ___Default_0; public: inline static int32_t get_offset_of_Default_0() { return static_cast(offsetof(DisplayNameAttribute_t23E87B8B23DC5CF5E2A72B8039935029D0A53E85_StaticFields, ___Default_0)); } inline DisplayNameAttribute_t23E87B8B23DC5CF5E2A72B8039935029D0A53E85 * get_Default_0() const { return ___Default_0; } inline DisplayNameAttribute_t23E87B8B23DC5CF5E2A72B8039935029D0A53E85 ** get_address_of_Default_0() { return &___Default_0; } inline void set_Default_0(DisplayNameAttribute_t23E87B8B23DC5CF5E2A72B8039935029D0A53E85 * value) { ___Default_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Default_0), (void*)value); } }; // System.ComponentModel.DisplayNameAttribute // System.Double struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_StaticFields { public: // System.Double System.Double::NegativeZero double ___NegativeZero_7; public: inline static int32_t get_offset_of_NegativeZero_7() { return static_cast(offsetof(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_StaticFields, ___NegativeZero_7)); } inline double get_NegativeZero_7() const { return ___NegativeZero_7; } inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; } inline void set_NegativeZero_7(double value) { ___NegativeZero_7 = value; } }; // System.Double // System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value); } }; // System.Enum // UnityEngine.InputSystem.Utilities.FourCC // UnityEngine.InputSystem.Utilities.FourCC // System.Runtime.InteropServices.GCHandle // System.Runtime.InteropServices.GCHandle // UnityEngine.InputSystem.Layouts.InputDeviceDescription // UnityEngine.InputSystem.Layouts.InputDeviceDescription // UnityEngine.InputSystem.LowLevel.InputEventListener struct InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917_StaticFields { public: // UnityEngine.InputSystem.LowLevel.InputEventListener/ObserverState UnityEngine.InputSystem.LowLevel.InputEventListener::s_ObserverState ObserverState_t25A763CEA3E3A65975BE34C371224BCAC14681A8 * ___s_ObserverState_0; public: inline static int32_t get_offset_of_s_ObserverState_0() { return static_cast(offsetof(InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917_StaticFields, ___s_ObserverState_0)); } inline ObserverState_t25A763CEA3E3A65975BE34C371224BCAC14681A8 * get_s_ObserverState_0() const { return ___s_ObserverState_0; } inline ObserverState_t25A763CEA3E3A65975BE34C371224BCAC14681A8 ** get_address_of_s_ObserverState_0() { return &___s_ObserverState_0; } inline void set_s_ObserverState_0(ObserverState_t25A763CEA3E3A65975BE34C371224BCAC14681A8 * value) { ___s_ObserverState_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_ObserverState_0), (void*)value); } }; // UnityEngine.InputSystem.LowLevel.InputEventListener // UnityEngine.InputSystem.LowLevel.InputEventPtr // UnityEngine.InputSystem.LowLevel.InputEventPtr // UnityEngine.InputSystem.LowLevel.InputMetrics // UnityEngine.InputSystem.LowLevel.InputMetrics // System.Int32 // System.Int32 // System.Int64 // System.Int64 // System.IntPtr struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; // System.IntPtr // UnityEngine.InputSystem.Utilities.InternedString // UnityEngine.InputSystem.Utilities.InternedString // UnityEngine.InputSystem.Utilities.JsonParser // UnityEngine.InputSystem.Utilities.JsonParser // System.Single // System.Single // System.IO.Stream struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_StaticFields { public: // System.IO.Stream System.IO.Stream::Null Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___Null_1; public: inline static int32_t get_offset_of_Null_1() { return static_cast(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_StaticFields, ___Null_1)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_Null_1() const { return ___Null_1; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_Null_1() { return &___Null_1; } inline void set_Null_1(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___Null_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Null_1), (void*)value); } }; // System.IO.Stream // UnityEngine.InputSystem.Utilities.Substring // UnityEngine.InputSystem.Utilities.Substring // UnityEngine.InputSystem.Utilities.TypeTable // UnityEngine.InputSystem.Utilities.TypeTable // System.UInt16 // System.UInt16 // System.UInt32 // System.UInt32 // System.UInt64 // System.UInt64 // System.Void // System.Void // UnityEngine.InputSystem.LowLevel.DeltaStateEvent/e__FixedBuffer // UnityEngine.InputSystem.LowLevel.DeltaStateEvent/e__FixedBuffer // UnityEngine.InputSystem.LowLevel.IMECompositionString/e__FixedBuffer // UnityEngine.InputSystem.LowLevel.IMECompositionString/e__FixedBuffer // UnityEngine.InputSystem.InputActionState/TriggerState // UnityEngine.InputSystem.InputActionState/TriggerState // UnityEngine.InputSystem.InputActionState/UnmanagedMemory // UnityEngine.InputSystem.InputActionState/UnmanagedMemory // UnityEngine.InputSystem.Layouts.InputControlLayout/Cache // UnityEngine.InputSystem.Layouts.InputControlLayout/Cache // UnityEngine.InputSystem.Layouts.InputControlLayout/Collection // UnityEngine.InputSystem.Layouts.InputControlLayout/Collection // UnityEngine.InputSystem.Layouts.InputDeviceBuilder/RefInstance // UnityEngine.InputSystem.Layouts.InputDeviceBuilder/RefInstance // UnityEngine.InputSystem.Layouts.InputDeviceDescription/DeviceDescriptionJson // UnityEngine.InputSystem.Layouts.InputDeviceDescription/DeviceDescriptionJson // UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator // UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator // UnityEngine.InputSystem.InputManager/StateChangeMonitorListener // UnityEngine.InputSystem.InputManager/StateChangeMonitorListener // UnityEngine.InputSystem.InputManager/StateChangeMonitorTimeout // UnityEngine.InputSystem.InputManager/StateChangeMonitorTimeout // UnityEngine.InputSystem.LowLevel.InputStateBuffers/DoubleBuffers // UnityEngine.InputSystem.LowLevel.InputStateBuffers/DoubleBuffers // UnityEngine.InputSystem.LowLevel.InputUpdate/UpdateStepCount // UnityEngine.InputSystem.LowLevel.InputUpdate/UpdateStepCount // UnityEngine.InputSystem.Utilities.MemoryHelpers/BitRegion // UnityEngine.InputSystem.Utilities.MemoryHelpers/BitRegion // UnityEngine.InputSystem.LowLevel.StateEvent/e__FixedBuffer // UnityEngine.InputSystem.LowLevel.StateEvent/e__FixedBuffer // UnityEngine.InputSystem.Layouts.InputControlLayout/Collection/PrecompiledLayout // UnityEngine.InputSystem.Layouts.InputControlLayout/Collection/PrecompiledLayout // UnityEngine.InputSystem.Utilities.CallbackArray`1> // UnityEngine.InputSystem.Utilities.CallbackArray`1> // UnityEngine.InputSystem.Utilities.CallbackArray`1> // UnityEngine.InputSystem.Utilities.CallbackArray`1> // UnityEngine.InputSystem.Utilities.CallbackArray`1> // UnityEngine.InputSystem.Utilities.CallbackArray`1> // UnityEngine.InputSystem.Utilities.CallbackArray`1> // UnityEngine.InputSystem.Utilities.CallbackArray`1> // UnityEngine.InputSystem.Utilities.CallbackArray`1> // UnityEngine.InputSystem.Utilities.CallbackArray`1> // UnityEngine.InputSystem.Utilities.CallbackArray`1> // UnityEngine.InputSystem.Utilities.CallbackArray`1> // UnityEngine.InputSystem.Utilities.CallbackArray`1> // UnityEngine.InputSystem.Utilities.CallbackArray`1> // UnityEngine.InputSystem.Utilities.CallbackArray`1> // UnityEngine.InputSystem.Utilities.CallbackArray`1> // UnityEngine.InputSystem.Utilities.CallbackArray`1> // UnityEngine.InputSystem.Utilities.CallbackArray`1> // UnityEngine.InputSystem.Utilities.CallbackArray`1> // UnityEngine.InputSystem.Utilities.CallbackArray`1> // UnityEngine.InputSystem.Utilities.CallbackArray`1> // UnityEngine.InputSystem.Utilities.CallbackArray`1> // UnityEngine.InputSystem.Utilities.CallbackArray`1 // UnityEngine.InputSystem.Utilities.CallbackArray`1 // UnityEngine.InputSystem.Utilities.CallbackArray`1 // UnityEngine.InputSystem.Utilities.CallbackArray`1 // UnityEngine.InputSystem.Utilities.CallbackArray`1 // UnityEngine.InputSystem.Utilities.CallbackArray`1 // UnityEngine.InputSystem.Utilities.CallbackArray`1 // UnityEngine.InputSystem.Utilities.CallbackArray`1 // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1> // UnityEngine.InputSystem.Utilities.InlinedArray`1 // UnityEngine.InputSystem.Utilities.InlinedArray`1 // UnityEngine.InputSystem.Utilities.InlinedArray`1 // UnityEngine.InputSystem.Utilities.InlinedArray`1 // UnityEngine.InputSystem.Utilities.InlinedArray`1 // UnityEngine.InputSystem.Utilities.InlinedArray`1 // System.Collections.Generic.KeyValuePair`2> // System.Collections.Generic.KeyValuePair`2> // System.Collections.Generic.KeyValuePair`2 // System.Collections.Generic.KeyValuePair`2 // System.Collections.Generic.KeyValuePair`2 // System.Collections.Generic.KeyValuePair`2 // System.Collections.Generic.KeyValuePair`2 // System.Collections.Generic.KeyValuePair`2 // Unity.Collections.Allocator // Unity.Collections.Allocator // System.Reflection.BindingFlags // System.Reflection.BindingFlags // System.Delegate // System.Delegate // UnityEngine.InputSystem.DynamicBitfield // UnityEngine.InputSystem.DynamicBitfield // System.Exception struct Exception_t_StaticFields { public: // System.Object System.Exception::s_EDILock RuntimeObject * ___s_EDILock_0; public: inline static int32_t get_offset_of_s_EDILock_0() { return static_cast(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); } inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; } inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; } inline void set_s_EDILock_0(RuntimeObject * value) { ___s_EDILock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value); } }; // System.Exception // System.IO.FileAccess // System.IO.FileAccess // UnityEngine.HideFlags // UnityEngine.HideFlags // UnityEngine.InputSystem.LowLevel.IMECompositionString // UnityEngine.InputSystem.LowLevel.IMECompositionString // UnityEngine.InputSystem.InputActionPhase // UnityEngine.InputSystem.InputActionPhase // UnityEngine.InputSystem.InputActionType // UnityEngine.InputSystem.InputActionType // UnityEngine.InputSystem.InputBindingComposite struct InputBindingComposite_tFCCB9AFDBA6503C51555C9C5904186D990D36565_StaticFields { public: // UnityEngine.InputSystem.Utilities.TypeTable UnityEngine.InputSystem.InputBindingComposite::s_Composites TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F ___s_Composites_0; public: inline static int32_t get_offset_of_s_Composites_0() { return static_cast(offsetof(InputBindingComposite_tFCCB9AFDBA6503C51555C9C5904186D990D36565_StaticFields, ___s_Composites_0)); } inline TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F get_s_Composites_0() const { return ___s_Composites_0; } inline TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F * get_address_of_s_Composites_0() { return &___s_Composites_0; } inline void set_s_Composites_0(TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F value) { ___s_Composites_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___s_Composites_0))->___table_0), (void*)NULL); } }; // UnityEngine.InputSystem.InputBindingComposite // UnityEngine.InputSystem.InputControlLayoutChange // UnityEngine.InputSystem.InputControlLayoutChange // UnityEngine.InputSystem.InputDeviceChange // UnityEngine.InputSystem.InputDeviceChange // UnityEngine.InputSystem.LowLevel.InputDeviceCommand // UnityEngine.InputSystem.LowLevel.InputDeviceCommand // UnityEngine.InputSystem.Layouts.InputDeviceMatcher struct InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_StaticFields { public: // UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputDeviceMatcher::kInterfaceKey InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___kInterfaceKey_1; // UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputDeviceMatcher::kDeviceClassKey InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___kDeviceClassKey_2; // UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputDeviceMatcher::kManufacturerKey InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___kManufacturerKey_3; // UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputDeviceMatcher::kProductKey InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___kProductKey_4; // UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputDeviceMatcher::kVersionKey InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___kVersionKey_5; public: inline static int32_t get_offset_of_kInterfaceKey_1() { return static_cast(offsetof(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_StaticFields, ___kInterfaceKey_1)); } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED get_kInterfaceKey_1() const { return ___kInterfaceKey_1; } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * get_address_of_kInterfaceKey_1() { return &___kInterfaceKey_1; } inline void set_kInterfaceKey_1(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED value) { ___kInterfaceKey_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___kInterfaceKey_1))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___kInterfaceKey_1))->___m_StringLowerCase_1), (void*)NULL); #endif } inline static int32_t get_offset_of_kDeviceClassKey_2() { return static_cast(offsetof(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_StaticFields, ___kDeviceClassKey_2)); } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED get_kDeviceClassKey_2() const { return ___kDeviceClassKey_2; } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * get_address_of_kDeviceClassKey_2() { return &___kDeviceClassKey_2; } inline void set_kDeviceClassKey_2(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED value) { ___kDeviceClassKey_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___kDeviceClassKey_2))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___kDeviceClassKey_2))->___m_StringLowerCase_1), (void*)NULL); #endif } inline static int32_t get_offset_of_kManufacturerKey_3() { return static_cast(offsetof(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_StaticFields, ___kManufacturerKey_3)); } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED get_kManufacturerKey_3() const { return ___kManufacturerKey_3; } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * get_address_of_kManufacturerKey_3() { return &___kManufacturerKey_3; } inline void set_kManufacturerKey_3(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED value) { ___kManufacturerKey_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___kManufacturerKey_3))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___kManufacturerKey_3))->___m_StringLowerCase_1), (void*)NULL); #endif } inline static int32_t get_offset_of_kProductKey_4() { return static_cast(offsetof(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_StaticFields, ___kProductKey_4)); } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED get_kProductKey_4() const { return ___kProductKey_4; } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * get_address_of_kProductKey_4() { return &___kProductKey_4; } inline void set_kProductKey_4(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED value) { ___kProductKey_4 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___kProductKey_4))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___kProductKey_4))->___m_StringLowerCase_1), (void*)NULL); #endif } inline static int32_t get_offset_of_kVersionKey_5() { return static_cast(offsetof(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_StaticFields, ___kVersionKey_5)); } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED get_kVersionKey_5() const { return ___kVersionKey_5; } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * get_address_of_kVersionKey_5() { return &___kVersionKey_5; } inline void set_kVersionKey_5(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED value) { ___kVersionKey_5 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___kVersionKey_5))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___kVersionKey_5))->___m_StringLowerCase_1), (void*)NULL); #endif } }; // UnityEngine.InputSystem.Layouts.InputDeviceMatcher // UnityEngine.InputSystem.InputInteraction struct InputInteraction_t7BAD5F994214A465B34D56FB86391F9181113F78_StaticFields { public: // UnityEngine.InputSystem.Utilities.TypeTable UnityEngine.InputSystem.InputInteraction::s_Interactions TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F ___s_Interactions_0; public: inline static int32_t get_offset_of_s_Interactions_0() { return static_cast(offsetof(InputInteraction_t7BAD5F994214A465B34D56FB86391F9181113F78_StaticFields, ___s_Interactions_0)); } inline TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F get_s_Interactions_0() const { return ___s_Interactions_0; } inline TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F * get_address_of_s_Interactions_0() { return &___s_Interactions_0; } inline void set_s_Interactions_0(TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F value) { ___s_Interactions_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___s_Interactions_0))->___table_0), (void*)NULL); } }; // UnityEngine.InputSystem.InputInteraction // UnityEngine.InputSystem.InputProcessor struct InputProcessor_t245C316DEE36AA1BC9558F838B3B7A0223813A1D_StaticFields { public: // UnityEngine.InputSystem.Utilities.TypeTable UnityEngine.InputSystem.InputProcessor::s_Processors TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F ___s_Processors_0; public: inline static int32_t get_offset_of_s_Processors_0() { return static_cast(offsetof(InputProcessor_t245C316DEE36AA1BC9558F838B3B7A0223813A1D_StaticFields, ___s_Processors_0)); } inline TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F get_s_Processors_0() const { return ___s_Processors_0; } inline TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F * get_address_of_s_Processors_0() { return &___s_Processors_0; } inline void set_s_Processors_0(TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F value) { ___s_Processors_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___s_Processors_0))->___table_0), (void*)NULL); } }; // UnityEngine.InputSystem.InputProcessor // UnityEngine.InputSystem.LowLevel.InputStateBlock struct InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B_StaticFields { public: // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatBit FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___FormatBit_2; // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatSBit FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___FormatSBit_4; // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatInt FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___FormatInt_6; // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatUInt FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___FormatUInt_8; // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatShort FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___FormatShort_10; // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatUShort FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___FormatUShort_12; // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatByte FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___FormatByte_14; // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatSByte FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___FormatSByte_16; // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatLong FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___FormatLong_18; // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatULong FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___FormatULong_20; // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatFloat FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___FormatFloat_22; // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatDouble FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___FormatDouble_24; // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatVector2 FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___FormatVector2_26; // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatVector3 FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___FormatVector3_27; // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatQuaternion FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___FormatQuaternion_28; // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatVector2Short FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___FormatVector2Short_29; // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatVector3Short FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___FormatVector3Short_30; // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatVector2Byte FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___FormatVector2Byte_31; // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatVector3Byte FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___FormatVector3Byte_32; public: inline static int32_t get_offset_of_FormatBit_2() { return static_cast(offsetof(InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B_StaticFields, ___FormatBit_2)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_FormatBit_2() const { return ___FormatBit_2; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_FormatBit_2() { return &___FormatBit_2; } inline void set_FormatBit_2(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___FormatBit_2 = value; } inline static int32_t get_offset_of_FormatSBit_4() { return static_cast(offsetof(InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B_StaticFields, ___FormatSBit_4)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_FormatSBit_4() const { return ___FormatSBit_4; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_FormatSBit_4() { return &___FormatSBit_4; } inline void set_FormatSBit_4(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___FormatSBit_4 = value; } inline static int32_t get_offset_of_FormatInt_6() { return static_cast(offsetof(InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B_StaticFields, ___FormatInt_6)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_FormatInt_6() const { return ___FormatInt_6; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_FormatInt_6() { return &___FormatInt_6; } inline void set_FormatInt_6(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___FormatInt_6 = value; } inline static int32_t get_offset_of_FormatUInt_8() { return static_cast(offsetof(InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B_StaticFields, ___FormatUInt_8)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_FormatUInt_8() const { return ___FormatUInt_8; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_FormatUInt_8() { return &___FormatUInt_8; } inline void set_FormatUInt_8(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___FormatUInt_8 = value; } inline static int32_t get_offset_of_FormatShort_10() { return static_cast(offsetof(InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B_StaticFields, ___FormatShort_10)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_FormatShort_10() const { return ___FormatShort_10; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_FormatShort_10() { return &___FormatShort_10; } inline void set_FormatShort_10(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___FormatShort_10 = value; } inline static int32_t get_offset_of_FormatUShort_12() { return static_cast(offsetof(InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B_StaticFields, ___FormatUShort_12)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_FormatUShort_12() const { return ___FormatUShort_12; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_FormatUShort_12() { return &___FormatUShort_12; } inline void set_FormatUShort_12(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___FormatUShort_12 = value; } inline static int32_t get_offset_of_FormatByte_14() { return static_cast(offsetof(InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B_StaticFields, ___FormatByte_14)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_FormatByte_14() const { return ___FormatByte_14; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_FormatByte_14() { return &___FormatByte_14; } inline void set_FormatByte_14(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___FormatByte_14 = value; } inline static int32_t get_offset_of_FormatSByte_16() { return static_cast(offsetof(InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B_StaticFields, ___FormatSByte_16)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_FormatSByte_16() const { return ___FormatSByte_16; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_FormatSByte_16() { return &___FormatSByte_16; } inline void set_FormatSByte_16(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___FormatSByte_16 = value; } inline static int32_t get_offset_of_FormatLong_18() { return static_cast(offsetof(InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B_StaticFields, ___FormatLong_18)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_FormatLong_18() const { return ___FormatLong_18; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_FormatLong_18() { return &___FormatLong_18; } inline void set_FormatLong_18(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___FormatLong_18 = value; } inline static int32_t get_offset_of_FormatULong_20() { return static_cast(offsetof(InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B_StaticFields, ___FormatULong_20)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_FormatULong_20() const { return ___FormatULong_20; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_FormatULong_20() { return &___FormatULong_20; } inline void set_FormatULong_20(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___FormatULong_20 = value; } inline static int32_t get_offset_of_FormatFloat_22() { return static_cast(offsetof(InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B_StaticFields, ___FormatFloat_22)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_FormatFloat_22() const { return ___FormatFloat_22; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_FormatFloat_22() { return &___FormatFloat_22; } inline void set_FormatFloat_22(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___FormatFloat_22 = value; } inline static int32_t get_offset_of_FormatDouble_24() { return static_cast(offsetof(InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B_StaticFields, ___FormatDouble_24)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_FormatDouble_24() const { return ___FormatDouble_24; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_FormatDouble_24() { return &___FormatDouble_24; } inline void set_FormatDouble_24(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___FormatDouble_24 = value; } inline static int32_t get_offset_of_FormatVector2_26() { return static_cast(offsetof(InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B_StaticFields, ___FormatVector2_26)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_FormatVector2_26() const { return ___FormatVector2_26; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_FormatVector2_26() { return &___FormatVector2_26; } inline void set_FormatVector2_26(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___FormatVector2_26 = value; } inline static int32_t get_offset_of_FormatVector3_27() { return static_cast(offsetof(InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B_StaticFields, ___FormatVector3_27)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_FormatVector3_27() const { return ___FormatVector3_27; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_FormatVector3_27() { return &___FormatVector3_27; } inline void set_FormatVector3_27(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___FormatVector3_27 = value; } inline static int32_t get_offset_of_FormatQuaternion_28() { return static_cast(offsetof(InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B_StaticFields, ___FormatQuaternion_28)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_FormatQuaternion_28() const { return ___FormatQuaternion_28; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_FormatQuaternion_28() { return &___FormatQuaternion_28; } inline void set_FormatQuaternion_28(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___FormatQuaternion_28 = value; } inline static int32_t get_offset_of_FormatVector2Short_29() { return static_cast(offsetof(InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B_StaticFields, ___FormatVector2Short_29)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_FormatVector2Short_29() const { return ___FormatVector2Short_29; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_FormatVector2Short_29() { return &___FormatVector2Short_29; } inline void set_FormatVector2Short_29(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___FormatVector2Short_29 = value; } inline static int32_t get_offset_of_FormatVector3Short_30() { return static_cast(offsetof(InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B_StaticFields, ___FormatVector3Short_30)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_FormatVector3Short_30() const { return ___FormatVector3Short_30; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_FormatVector3Short_30() { return &___FormatVector3Short_30; } inline void set_FormatVector3Short_30(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___FormatVector3Short_30 = value; } inline static int32_t get_offset_of_FormatVector2Byte_31() { return static_cast(offsetof(InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B_StaticFields, ___FormatVector2Byte_31)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_FormatVector2Byte_31() const { return ___FormatVector2Byte_31; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_FormatVector2Byte_31() { return &___FormatVector2Byte_31; } inline void set_FormatVector2Byte_31(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___FormatVector2Byte_31 = value; } inline static int32_t get_offset_of_FormatVector3Byte_32() { return static_cast(offsetof(InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B_StaticFields, ___FormatVector3Byte_32)); } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 get_FormatVector3Byte_32() const { return ___FormatVector3Byte_32; } inline FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * get_address_of_FormatVector3Byte_32() { return &___FormatVector3Byte_32; } inline void set_FormatVector3Byte_32(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 value) { ___FormatVector3Byte_32 = value; } }; // UnityEngine.InputSystem.LowLevel.InputStateBlock // UnityEngine.InputSystem.LowLevel.InputStateBuffers struct InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_StaticFields { public: // System.Void* UnityEngine.InputSystem.LowLevel.InputStateBuffers::s_DefaultStateBuffer void* ___s_DefaultStateBuffer_7; // System.Void* UnityEngine.InputSystem.LowLevel.InputStateBuffers::s_NoiseMaskBuffer void* ___s_NoiseMaskBuffer_8; // System.Void* UnityEngine.InputSystem.LowLevel.InputStateBuffers::s_ResetMaskBuffer void* ___s_ResetMaskBuffer_9; // UnityEngine.InputSystem.LowLevel.InputStateBuffers/DoubleBuffers UnityEngine.InputSystem.LowLevel.InputStateBuffers::s_CurrentBuffers DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B ___s_CurrentBuffers_10; public: inline static int32_t get_offset_of_s_DefaultStateBuffer_7() { return static_cast(offsetof(InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_StaticFields, ___s_DefaultStateBuffer_7)); } inline void* get_s_DefaultStateBuffer_7() const { return ___s_DefaultStateBuffer_7; } inline void** get_address_of_s_DefaultStateBuffer_7() { return &___s_DefaultStateBuffer_7; } inline void set_s_DefaultStateBuffer_7(void* value) { ___s_DefaultStateBuffer_7 = value; } inline static int32_t get_offset_of_s_NoiseMaskBuffer_8() { return static_cast(offsetof(InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_StaticFields, ___s_NoiseMaskBuffer_8)); } inline void* get_s_NoiseMaskBuffer_8() const { return ___s_NoiseMaskBuffer_8; } inline void** get_address_of_s_NoiseMaskBuffer_8() { return &___s_NoiseMaskBuffer_8; } inline void set_s_NoiseMaskBuffer_8(void* value) { ___s_NoiseMaskBuffer_8 = value; } inline static int32_t get_offset_of_s_ResetMaskBuffer_9() { return static_cast(offsetof(InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_StaticFields, ___s_ResetMaskBuffer_9)); } inline void* get_s_ResetMaskBuffer_9() const { return ___s_ResetMaskBuffer_9; } inline void** get_address_of_s_ResetMaskBuffer_9() { return &___s_ResetMaskBuffer_9; } inline void set_s_ResetMaskBuffer_9(void* value) { ___s_ResetMaskBuffer_9 = value; } inline static int32_t get_offset_of_s_CurrentBuffers_10() { return static_cast(offsetof(InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_StaticFields, ___s_CurrentBuffers_10)); } inline DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B get_s_CurrentBuffers_10() const { return ___s_CurrentBuffers_10; } inline DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B * get_address_of_s_CurrentBuffers_10() { return &___s_CurrentBuffers_10; } inline void set_s_CurrentBuffers_10(DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B value) { ___s_CurrentBuffers_10 = value; } }; // UnityEngine.InputSystem.LowLevel.InputStateBuffers // UnityEngine.InputSystem.LowLevel.InputUpdateType // UnityEngine.InputSystem.LowLevel.InputUpdateType // System.Int32Enum // System.Int32Enum // UnityEngine.InputSystem.Key // UnityEngine.InputSystem.Key // Unity.Collections.NativeArrayOptions // Unity.Collections.NativeArrayOptions // UnityEngineInternal.Input.NativeInputEventType // UnityEngineInternal.Input.NativeInputEventType // UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_StaticFields { public: // System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1; public: inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast(offsetof(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); } inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; } inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; } inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value) { ___OffsetOfInstanceIDInCPlusPlusObject_1 = value; } }; // UnityEngine.Object // System.Text.RegularExpressions.RegexOptions // System.Text.RegularExpressions.RegexOptions // UnityEngine.RuntimePlatform // UnityEngine.RuntimePlatform // System.RuntimeTypeHandle // System.RuntimeTypeHandle // System.StringComparison // System.StringComparison // System.TimeSpan struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields { public: // System.TimeSpan System.TimeSpan::Zero TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___Zero_0; // System.TimeSpan System.TimeSpan::MaxValue TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MaxValue_1; // System.TimeSpan System.TimeSpan::MinValue TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MinValue_2; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked bool ____legacyConfigChecked_4; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode bool ____legacyMode_5; public: inline static int32_t get_offset_of_Zero_0() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___Zero_0)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_Zero_0() const { return ___Zero_0; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_Zero_0() { return &___Zero_0; } inline void set_Zero_0(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___Zero_0 = value; } inline static int32_t get_offset_of_MaxValue_1() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MaxValue_1)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MaxValue_1() const { return ___MaxValue_1; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MaxValue_1() { return &___MaxValue_1; } inline void set_MaxValue_1(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___MaxValue_1 = value; } inline static int32_t get_offset_of_MinValue_2() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MinValue_2)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MinValue_2() const { return ___MinValue_2; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MinValue_2() { return &___MinValue_2; } inline void set_MinValue_2(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___MinValue_2 = value; } inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyConfigChecked_4)); } inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; } inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; } inline void set__legacyConfigChecked_4(bool value) { ____legacyConfigChecked_4 = value; } inline static int32_t get_offset_of__legacyMode_5() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyMode_5)); } inline bool get__legacyMode_5() const { return ____legacyMode_5; } inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; } inline void set__legacyMode_5(bool value) { ____legacyMode_5 = value; } }; // System.TimeSpan // UnityEngine.InputSystem.TouchPhase // UnityEngine.InputSystem.TouchPhase // System.TypeCode // System.TypeCode // UnityEngine.InputSystem.Controls.AxisControl/Clamp // UnityEngine.InputSystem.Controls.AxisControl/Clamp // UnityEngine.InputSystem.InputAction/ActionFlags // UnityEngine.InputSystem.InputAction/ActionFlags // UnityEngine.InputSystem.InputBinding/Flags // UnityEngine.InputSystem.InputBinding/Flags // UnityEngine.InputSystem.InputControl/ControlFlags // UnityEngine.InputSystem.InputControl/ControlFlags // UnityEngine.InputSystem.Layouts.InputControlLayout/Flags // UnityEngine.InputSystem.Layouts.InputControlLayout/Flags // UnityEngine.InputSystem.InputDevice/DeviceFlags // UnityEngine.InputSystem.InputDevice/DeviceFlags // UnityEngine.InputSystem.LowLevel.InputEventListener/ObserverState // UnityEngine.InputSystem.LowLevel.InputEventListener/ObserverState // UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo // UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo // UnityEngine.InputSystem.LowLevel.InputEventTrace/Enumerator // UnityEngine.InputSystem.LowLevel.InputEventTrace/Enumerator // UnityEngine.InputSystem.LowLevel.InputEventTrace/FileFlags // UnityEngine.InputSystem.LowLevel.InputEventTrace/FileFlags // UnityEngine.InputSystem.InputInteractionContext/Flags // UnityEngine.InputSystem.InputInteractionContext/Flags // UnityEngine.InputSystem.InputManager/AvailableDevice // UnityEngine.InputSystem.InputManager/AvailableDevice // UnityEngine.InputSystem.InputManager/DeviceDisableScope // UnityEngine.InputSystem.InputManager/DeviceDisableScope // UnityEngine.InputSystem.InputSettings/BackgroundBehavior // UnityEngine.InputSystem.InputSettings/BackgroundBehavior // UnityEngine.InputSystem.InputSettings/EditorInputBehaviorInPlayMode // UnityEngine.InputSystem.InputSettings/EditorInputBehaviorInPlayMode // UnityEngine.InputSystem.InputSettings/UpdateMode // UnityEngine.InputSystem.InputSettings/UpdateMode // UnityEngine.InputSystem.Utilities.JsonParser/JsonString // UnityEngine.InputSystem.Utilities.JsonParser/JsonString // UnityEngine.InputSystem.Utilities.JsonParser/JsonValueType // UnityEngine.InputSystem.Utilities.JsonParser/JsonValueType // System.Collections.Generic.Dictionary`2/Enumerator> // System.Collections.Generic.Dictionary`2/Enumerator> // System.Collections.Generic.Dictionary`2/Enumerator // System.Collections.Generic.Dictionary`2/Enumerator // System.Collections.Generic.Dictionary`2/Enumerator // System.Collections.Generic.Dictionary`2/Enumerator // System.Collections.Generic.Dictionary`2/Enumerator // System.Collections.Generic.Dictionary`2/Enumerator // Unity.Collections.NativeArray`1 // Unity.Collections.NativeArray`1 // UnityEngine.InputSystem.LowLevel.DisableDeviceCommand // UnityEngine.InputSystem.LowLevel.DisableDeviceCommand // UnityEngine.InputSystem.LowLevel.EnableDeviceCommand // UnityEngine.InputSystem.LowLevel.EnableDeviceCommand // System.IO.FileStream struct FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26_StaticFields { public: // System.Byte[] System.IO.FileStream::buf_recycle ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buf_recycle_5; // System.Object System.IO.FileStream::buf_recycle_lock RuntimeObject * ___buf_recycle_lock_6; public: inline static int32_t get_offset_of_buf_recycle_5() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26_StaticFields, ___buf_recycle_5)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_buf_recycle_5() const { return ___buf_recycle_5; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_buf_recycle_5() { return &___buf_recycle_5; } inline void set_buf_recycle_5(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___buf_recycle_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___buf_recycle_5), (void*)value); } inline static int32_t get_offset_of_buf_recycle_lock_6() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26_StaticFields, ___buf_recycle_lock_6)); } inline RuntimeObject * get_buf_recycle_lock_6() const { return ___buf_recycle_lock_6; } inline RuntimeObject ** get_address_of_buf_recycle_lock_6() { return &___buf_recycle_lock_6; } inline void set_buf_recycle_lock_6(RuntimeObject * value) { ___buf_recycle_lock_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___buf_recycle_lock_6), (void*)value); } }; // System.IO.FileStream // UnityEngine.InputSystem.InputBinding // UnityEngine.InputSystem.InputBinding // UnityEngine.InputSystem.Layouts.InputControlLayout struct InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_StaticFields { public: // UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputControlLayout::s_DefaultVariant InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___s_DefaultVariant_0; // UnityEngine.InputSystem.Layouts.InputControlLayout/Collection UnityEngine.InputSystem.Layouts.InputControlLayout::s_Layouts Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F ___s_Layouts_15; // UnityEngine.InputSystem.Layouts.InputControlLayout/Cache UnityEngine.InputSystem.Layouts.InputControlLayout::s_CacheInstance Cache_tCCC71FFB1DEF56FF815ED5B09BB764EDB00EE82E ___s_CacheInstance_16; // System.Int32 UnityEngine.InputSystem.Layouts.InputControlLayout::s_CacheInstanceRef int32_t ___s_CacheInstanceRef_17; public: inline static int32_t get_offset_of_s_DefaultVariant_0() { return static_cast(offsetof(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_StaticFields, ___s_DefaultVariant_0)); } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED get_s_DefaultVariant_0() const { return ___s_DefaultVariant_0; } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * get_address_of_s_DefaultVariant_0() { return &___s_DefaultVariant_0; } inline void set_s_DefaultVariant_0(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED value) { ___s_DefaultVariant_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___s_DefaultVariant_0))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___s_DefaultVariant_0))->___m_StringLowerCase_1), (void*)NULL); #endif } inline static int32_t get_offset_of_s_Layouts_15() { return static_cast(offsetof(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_StaticFields, ___s_Layouts_15)); } inline Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F get_s_Layouts_15() const { return ___s_Layouts_15; } inline Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * get_address_of_s_Layouts_15() { return &___s_Layouts_15; } inline void set_s_Layouts_15(Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F value) { ___s_Layouts_15 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___s_Layouts_15))->___layoutTypes_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___s_Layouts_15))->___layoutStrings_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___s_Layouts_15))->___layoutBuilders_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___s_Layouts_15))->___baseLayoutTable_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___s_Layouts_15))->___layoutOverrides_5), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___s_Layouts_15))->___layoutOverrideNames_6), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___s_Layouts_15))->___precompiledLayouts_7), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___s_Layouts_15))->___layoutMatchers_8), (void*)NULL); #endif } inline static int32_t get_offset_of_s_CacheInstance_16() { return static_cast(offsetof(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_StaticFields, ___s_CacheInstance_16)); } inline Cache_tCCC71FFB1DEF56FF815ED5B09BB764EDB00EE82E get_s_CacheInstance_16() const { return ___s_CacheInstance_16; } inline Cache_tCCC71FFB1DEF56FF815ED5B09BB764EDB00EE82E * get_address_of_s_CacheInstance_16() { return &___s_CacheInstance_16; } inline void set_s_CacheInstance_16(Cache_tCCC71FFB1DEF56FF815ED5B09BB764EDB00EE82E value) { ___s_CacheInstance_16 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___s_CacheInstance_16))->___table_0), (void*)NULL); } inline static int32_t get_offset_of_s_CacheInstanceRef_17() { return static_cast(offsetof(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_StaticFields, ___s_CacheInstanceRef_17)); } inline int32_t get_s_CacheInstanceRef_17() const { return ___s_CacheInstanceRef_17; } inline int32_t* get_address_of_s_CacheInstanceRef_17() { return &___s_CacheInstanceRef_17; } inline void set_s_CacheInstanceRef_17(int32_t value) { ___s_CacheInstanceRef_17 = value; } }; // UnityEngine.InputSystem.Layouts.InputControlLayout // UnityEngine.InputSystem.LowLevel.InputEventTrace struct InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_StaticFields { public: // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace::kFileVersion int32_t ___kFileVersion_17; public: inline static int32_t get_offset_of_kFileVersion_17() { return static_cast(offsetof(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_StaticFields, ___kFileVersion_17)); } inline int32_t get_kFileVersion_17() const { return ___kFileVersion_17; } inline int32_t* get_address_of_kFileVersion_17() { return &___kFileVersion_17; } inline void set_kFileVersion_17(int32_t value) { ___kFileVersion_17 = value; } }; // UnityEngine.InputSystem.LowLevel.InputEventTrace // UnityEngine.InputSystem.InputInteractionContext // UnityEngine.InputSystem.InputInteractionContext // UnityEngine.InputSystem.LowLevel.InputUpdate struct InputUpdate_t16159151984D134E806E18584FE12416F7A6DA57_StaticFields { public: // System.UInt32 UnityEngine.InputSystem.LowLevel.InputUpdate::s_UpdateStepCount uint32_t ___s_UpdateStepCount_0; // UnityEngine.InputSystem.LowLevel.InputUpdateType UnityEngine.InputSystem.LowLevel.InputUpdate::s_LatestUpdateType int32_t ___s_LatestUpdateType_1; // UnityEngine.InputSystem.LowLevel.InputUpdate/UpdateStepCount UnityEngine.InputSystem.LowLevel.InputUpdate::s_PlayerUpdateStepCount UpdateStepCount_tD390726C525CA5CE3A339A33E2984D65356A4780 ___s_PlayerUpdateStepCount_2; public: inline static int32_t get_offset_of_s_UpdateStepCount_0() { return static_cast(offsetof(InputUpdate_t16159151984D134E806E18584FE12416F7A6DA57_StaticFields, ___s_UpdateStepCount_0)); } inline uint32_t get_s_UpdateStepCount_0() const { return ___s_UpdateStepCount_0; } inline uint32_t* get_address_of_s_UpdateStepCount_0() { return &___s_UpdateStepCount_0; } inline void set_s_UpdateStepCount_0(uint32_t value) { ___s_UpdateStepCount_0 = value; } inline static int32_t get_offset_of_s_LatestUpdateType_1() { return static_cast(offsetof(InputUpdate_t16159151984D134E806E18584FE12416F7A6DA57_StaticFields, ___s_LatestUpdateType_1)); } inline int32_t get_s_LatestUpdateType_1() const { return ___s_LatestUpdateType_1; } inline int32_t* get_address_of_s_LatestUpdateType_1() { return &___s_LatestUpdateType_1; } inline void set_s_LatestUpdateType_1(int32_t value) { ___s_LatestUpdateType_1 = value; } inline static int32_t get_offset_of_s_PlayerUpdateStepCount_2() { return static_cast(offsetof(InputUpdate_t16159151984D134E806E18584FE12416F7A6DA57_StaticFields, ___s_PlayerUpdateStepCount_2)); } inline UpdateStepCount_tD390726C525CA5CE3A339A33E2984D65356A4780 get_s_PlayerUpdateStepCount_2() const { return ___s_PlayerUpdateStepCount_2; } inline UpdateStepCount_tD390726C525CA5CE3A339A33E2984D65356A4780 * get_address_of_s_PlayerUpdateStepCount_2() { return &___s_PlayerUpdateStepCount_2; } inline void set_s_PlayerUpdateStepCount_2(UpdateStepCount_tD390726C525CA5CE3A339A33E2984D65356A4780 value) { ___s_PlayerUpdateStepCount_2 = value; } }; // UnityEngine.InputSystem.LowLevel.InputUpdate // System.MulticastDelegate // System.MulticastDelegate // UnityEngineInternal.Input.NativeInputEvent // UnityEngineInternal.Input.NativeInputEvent // UnityEngine.InputSystem.Utilities.PrimitiveValue // UnityEngine.InputSystem.Utilities.PrimitiveValue // System.Text.RegularExpressions.Regex struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields { public: // System.TimeSpan System.Text.RegularExpressions.Regex::MaximumMatchTimeout TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MaximumMatchTimeout_3; // System.TimeSpan System.Text.RegularExpressions.Regex::InfiniteMatchTimeout TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___InfiniteMatchTimeout_4; // System.TimeSpan System.Text.RegularExpressions.Regex::FallbackDefaultMatchTimeout TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___FallbackDefaultMatchTimeout_6; // System.TimeSpan System.Text.RegularExpressions.Regex::DefaultMatchTimeout TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___DefaultMatchTimeout_7; // System.Collections.Generic.LinkedList`1 System.Text.RegularExpressions.Regex::livecode LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 * ___livecode_16; // System.Int32 System.Text.RegularExpressions.Regex::cacheSize int32_t ___cacheSize_17; public: inline static int32_t get_offset_of_MaximumMatchTimeout_3() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___MaximumMatchTimeout_3)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MaximumMatchTimeout_3() const { return ___MaximumMatchTimeout_3; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MaximumMatchTimeout_3() { return &___MaximumMatchTimeout_3; } inline void set_MaximumMatchTimeout_3(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___MaximumMatchTimeout_3 = value; } inline static int32_t get_offset_of_InfiniteMatchTimeout_4() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___InfiniteMatchTimeout_4)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_InfiniteMatchTimeout_4() const { return ___InfiniteMatchTimeout_4; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_InfiniteMatchTimeout_4() { return &___InfiniteMatchTimeout_4; } inline void set_InfiniteMatchTimeout_4(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___InfiniteMatchTimeout_4 = value; } inline static int32_t get_offset_of_FallbackDefaultMatchTimeout_6() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___FallbackDefaultMatchTimeout_6)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_FallbackDefaultMatchTimeout_6() const { return ___FallbackDefaultMatchTimeout_6; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_FallbackDefaultMatchTimeout_6() { return &___FallbackDefaultMatchTimeout_6; } inline void set_FallbackDefaultMatchTimeout_6(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___FallbackDefaultMatchTimeout_6 = value; } inline static int32_t get_offset_of_DefaultMatchTimeout_7() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___DefaultMatchTimeout_7)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_DefaultMatchTimeout_7() const { return ___DefaultMatchTimeout_7; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_DefaultMatchTimeout_7() { return &___DefaultMatchTimeout_7; } inline void set_DefaultMatchTimeout_7(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___DefaultMatchTimeout_7 = value; } inline static int32_t get_offset_of_livecode_16() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___livecode_16)); } inline LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 * get_livecode_16() const { return ___livecode_16; } inline LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 ** get_address_of_livecode_16() { return &___livecode_16; } inline void set_livecode_16(LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 * value) { ___livecode_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___livecode_16), (void*)value); } inline static int32_t get_offset_of_cacheSize_17() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___cacheSize_17)); } inline int32_t get_cacheSize_17() const { return ___cacheSize_17; } inline int32_t* get_address_of_cacheSize_17() { return &___cacheSize_17; } inline void set_cacheSize_17(int32_t value) { ___cacheSize_17 = value; } }; // System.Text.RegularExpressions.Regex // UnityEngine.ScriptableObject // UnityEngine.ScriptableObject // System.SystemException // System.SystemException // System.Type struct Type_t_StaticFields { public: // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2; // System.Object System.Type::Missing RuntimeObject * ___Missing_3; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_4; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5; // System.Reflection.Binder System.Type::defaultBinder Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___defaultBinder_6; public: inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; } inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterAttribute_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value); } inline static int32_t get_offset_of_FilterName_1() { return static_cast(offsetof(Type_t_StaticFields, ___FilterName_1)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; } inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value); } inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; } inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterNameIgnoreCase_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value); } inline static int32_t get_offset_of_Missing_3() { return static_cast(offsetof(Type_t_StaticFields, ___Missing_3)); } inline RuntimeObject * get_Missing_3() const { return ___Missing_3; } inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; } inline void set_Missing_3(RuntimeObject * value) { ___Missing_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value); } inline static int32_t get_offset_of_Delimiter_4() { return static_cast(offsetof(Type_t_StaticFields, ___Delimiter_4)); } inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; } inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; } inline void set_Delimiter_4(Il2CppChar value) { ___Delimiter_4 = value; } inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; } inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value) { ___EmptyTypes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value); } inline static int32_t get_offset_of_defaultBinder_6() { return static_cast(offsetof(Type_t_StaticFields, ___defaultBinder_6)); } inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; } inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; } inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value) { ___defaultBinder_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value); } }; // System.Type // UnityEngine.InputSystem.LowLevel.UseWindowsGamingInputCommand // UnityEngine.InputSystem.LowLevel.UseWindowsGamingInputCommand // UnityEngine.InputSystem.InputActionState/GlobalState // UnityEngine.InputSystem.InputActionState/GlobalState // UnityEngine.InputSystem.Layouts.InputDeviceMatcher/d__4 // UnityEngine.InputSystem.Layouts.InputDeviceMatcher/d__4 // UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController // UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController // UnityEngine.InputSystem.InputManager/StateChangeMonitorsForDevice // UnityEngine.InputSystem.InputManager/StateChangeMonitorsForDevice // UnityEngine.InputSystem.LowLevel.InputUpdate/SerializedState // UnityEngine.InputSystem.LowLevel.InputUpdate/SerializedState // UnityEngine.InputSystem.Utilities.JsonParser/JsonValue // UnityEngine.InputSystem.Utilities.JsonParser/JsonValue // System.Action`1 // System.Action`1 // System.Action`1 // System.Action`1 // System.Action`1 // System.Action`1 // System.Action`2 // System.Action`2 // System.Action`2 // System.Action`2 // System.Action`2 // System.Action`2 // System.Action`2 // System.Action`2 // System.Action`2 // System.Action`2 // System.Func`1 // System.Func`1 // System.Func`2 // System.Func`2 // System.Func`2 // System.Func`2 // System.Func`2 // System.Func`2 // System.Func`3 // System.Func`3 // System.Nullable`1 // System.Nullable`1 // System.Action // System.Action // System.ArgumentException // System.ArgumentException // System.AsyncCallback // System.AsyncCallback // System.IO.IOException // System.IO.IOException // UnityEngine.InputSystem.InputActionState struct InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9_StaticFields { public: // UnityEngine.InputSystem.InputActionState/GlobalState UnityEngine.InputSystem.InputActionState::s_GlobalState GlobalState_tF1D93500AFBAA25C7FCA48B5D89640B84C44D0AB ___s_GlobalState_14; public: inline static int32_t get_offset_of_s_GlobalState_14() { return static_cast(offsetof(InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9_StaticFields, ___s_GlobalState_14)); } inline GlobalState_tF1D93500AFBAA25C7FCA48B5D89640B84C44D0AB get_s_GlobalState_14() const { return ___s_GlobalState_14; } inline GlobalState_tF1D93500AFBAA25C7FCA48B5D89640B84C44D0AB * get_address_of_s_GlobalState_14() { return &___s_GlobalState_14; } inline void set_s_GlobalState_14(GlobalState_tF1D93500AFBAA25C7FCA48B5D89640B84C44D0AB value) { ___s_GlobalState_14 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___s_GlobalState_14))->___globalList_0))->___additionalValues_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___s_GlobalState_14))->___onActionChange_1))->___m_Callbacks_1))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___s_GlobalState_14))->___onActionChange_1))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___s_GlobalState_14))->___onActionChange_1))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___s_GlobalState_14))->___onActionChange_1))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___s_GlobalState_14))->___onActionChange_1))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___s_GlobalState_14))->___onActionChange_1))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___s_GlobalState_14))->___onActionControlsChanged_2))->___m_Callbacks_1))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___s_GlobalState_14))->___onActionControlsChanged_2))->___m_Callbacks_1))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___s_GlobalState_14))->___onActionControlsChanged_2))->___m_CallbacksToAdd_2))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___s_GlobalState_14))->___onActionControlsChanged_2))->___m_CallbacksToAdd_2))->___additionalValues_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___s_GlobalState_14))->___onActionControlsChanged_2))->___m_CallbacksToRemove_3))->___firstValue_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___s_GlobalState_14))->___onActionControlsChanged_2))->___m_CallbacksToRemove_3))->___additionalValues_2), (void*)NULL); #endif } }; // UnityEngine.InputSystem.InputActionState // UnityEngine.InputSystem.InputControl // UnityEngine.InputSystem.InputControl // UnityEngine.InputSystem.LowLevel.InputDeviceCommandDelegate // UnityEngine.InputSystem.LowLevel.InputDeviceCommandDelegate // UnityEngine.InputSystem.LowLevel.InputDeviceExecuteCommandDelegate // UnityEngine.InputSystem.LowLevel.InputDeviceExecuteCommandDelegate // UnityEngine.InputSystem.Layouts.InputDeviceFindControlLayoutDelegate // UnityEngine.InputSystem.Layouts.InputDeviceFindControlLayoutDelegate // UnityEngine.InputSystem.LowLevel.InputEvent // UnityEngine.InputSystem.LowLevel.InputEvent // UnityEngine.InputSystem.LowLevel.InputEventBuffer // UnityEngine.InputSystem.LowLevel.InputEventBuffer // UnityEngine.InputSystem.InputSettings // UnityEngine.InputSystem.InputSettings // System.InvalidOperationException // System.InvalidOperationException // System.NotImplementedException // System.NotImplementedException // System.NotSupportedException // System.NotSupportedException // UnityEngine.InputSystem.InputManager/d__75 // UnityEngine.InputSystem.InputManager/d__75 // UnityEngine.InputSystem.InputControl`1 // UnityEngine.InputSystem.InputControl`1 // System.ArgumentNullException // System.ArgumentNullException // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_StaticFields { public: // System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage String_t* ____rangeMessage_18; public: inline static int32_t get_offset_of__rangeMessage_18() { return static_cast(offsetof(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_StaticFields, ____rangeMessage_18)); } inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; } inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; } inline void set__rangeMessage_18(String_t* value) { ____rangeMessage_18 = value; Il2CppCodeGenWriteBarrier((void**)(&____rangeMessage_18), (void*)value); } }; // System.ArgumentOutOfRangeException // UnityEngine.InputSystem.LowLevel.DeltaStateEvent // UnityEngine.InputSystem.LowLevel.DeltaStateEvent // UnityEngine.InputSystem.LowLevel.DeviceResetEvent // UnityEngine.InputSystem.LowLevel.DeviceResetEvent // UnityEngine.InputSystem.LowLevel.IMECompositionEvent // UnityEngine.InputSystem.LowLevel.IMECompositionEvent // UnityEngine.InputSystem.InputAction // UnityEngine.InputSystem.InputAction // UnityEngine.InputSystem.InputDevice // UnityEngine.InputSystem.InputDevice // UnityEngine.InputSystem.LowLevel.InputEventStream // UnityEngine.InputSystem.LowLevel.InputEventStream // UnityEngine.InputSystem.LowLevel.InputUpdateDelegate // UnityEngine.InputSystem.LowLevel.InputUpdateDelegate // UnityEngine.InputSystem.LowLevel.StateEvent // UnityEngine.InputSystem.LowLevel.StateEvent // UnityEngine.InputSystem.LowLevel.TextEvent // UnityEngine.InputSystem.LowLevel.TextEvent // UnityEngine.InputSystem.Controls.AxisControl // UnityEngine.InputSystem.Controls.AxisControl // UnityEngine.InputSystem.InputManager // UnityEngine.InputSystem.InputManager // UnityEngine.InputSystem.Pointer struct Pointer_t1E3BB2A6B6127C10002D78A2219A2F5083671FE5_StaticFields { public: // UnityEngine.InputSystem.Pointer UnityEngine.InputSystem.Pointer::k__BackingField Pointer_t1E3BB2A6B6127C10002D78A2219A2F5083671FE5 * ___U3CcurrentU3Ek__BackingField_44; public: inline static int32_t get_offset_of_U3CcurrentU3Ek__BackingField_44() { return static_cast(offsetof(Pointer_t1E3BB2A6B6127C10002D78A2219A2F5083671FE5_StaticFields, ___U3CcurrentU3Ek__BackingField_44)); } inline Pointer_t1E3BB2A6B6127C10002D78A2219A2F5083671FE5 * get_U3CcurrentU3Ek__BackingField_44() const { return ___U3CcurrentU3Ek__BackingField_44; } inline Pointer_t1E3BB2A6B6127C10002D78A2219A2F5083671FE5 ** get_address_of_U3CcurrentU3Ek__BackingField_44() { return &___U3CcurrentU3Ek__BackingField_44; } inline void set_U3CcurrentU3Ek__BackingField_44(Pointer_t1E3BB2A6B6127C10002D78A2219A2F5083671FE5 * value) { ___U3CcurrentU3Ek__BackingField_44 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CcurrentU3Ek__BackingField_44), (void*)value); } }; // UnityEngine.InputSystem.Pointer // UnityEngine.InputSystem.Controls.ButtonControl struct ButtonControl_t3918D56D674854AF9DFEB8CCF130919AAD9FCA68_StaticFields { public: // System.Single UnityEngine.InputSystem.Controls.ButtonControl::s_GlobalDefaultButtonPressPoint float ___s_GlobalDefaultButtonPressPoint_34; // System.Single UnityEngine.InputSystem.Controls.ButtonControl::s_GlobalDefaultButtonReleaseThreshold float ___s_GlobalDefaultButtonReleaseThreshold_35; public: inline static int32_t get_offset_of_s_GlobalDefaultButtonPressPoint_34() { return static_cast(offsetof(ButtonControl_t3918D56D674854AF9DFEB8CCF130919AAD9FCA68_StaticFields, ___s_GlobalDefaultButtonPressPoint_34)); } inline float get_s_GlobalDefaultButtonPressPoint_34() const { return ___s_GlobalDefaultButtonPressPoint_34; } inline float* get_address_of_s_GlobalDefaultButtonPressPoint_34() { return &___s_GlobalDefaultButtonPressPoint_34; } inline void set_s_GlobalDefaultButtonPressPoint_34(float value) { ___s_GlobalDefaultButtonPressPoint_34 = value; } inline static int32_t get_offset_of_s_GlobalDefaultButtonReleaseThreshold_35() { return static_cast(offsetof(ButtonControl_t3918D56D674854AF9DFEB8CCF130919AAD9FCA68_StaticFields, ___s_GlobalDefaultButtonReleaseThreshold_35)); } inline float get_s_GlobalDefaultButtonReleaseThreshold_35() const { return ___s_GlobalDefaultButtonReleaseThreshold_35; } inline float* get_address_of_s_GlobalDefaultButtonReleaseThreshold_35() { return &___s_GlobalDefaultButtonReleaseThreshold_35; } inline void set_s_GlobalDefaultButtonReleaseThreshold_35(float value) { ___s_GlobalDefaultButtonReleaseThreshold_35 = value; } }; // UnityEngine.InputSystem.Controls.ButtonControl // UnityEngine.InputSystem.Touchscreen struct Touchscreen_tE679C4B2C2D8C5979EAC5A2002603672A202E3EB_StaticFields { public: // UnityEngine.InputSystem.Touchscreen UnityEngine.InputSystem.Touchscreen::k__BackingField Touchscreen_tE679C4B2C2D8C5979EAC5A2002603672A202E3EB * ___U3CcurrentU3Ek__BackingField_47; // System.Single UnityEngine.InputSystem.Touchscreen::s_TapTime float ___s_TapTime_48; // System.Single UnityEngine.InputSystem.Touchscreen::s_TapDelayTime float ___s_TapDelayTime_49; // System.Single UnityEngine.InputSystem.Touchscreen::s_TapRadiusSquared float ___s_TapRadiusSquared_50; public: inline static int32_t get_offset_of_U3CcurrentU3Ek__BackingField_47() { return static_cast(offsetof(Touchscreen_tE679C4B2C2D8C5979EAC5A2002603672A202E3EB_StaticFields, ___U3CcurrentU3Ek__BackingField_47)); } inline Touchscreen_tE679C4B2C2D8C5979EAC5A2002603672A202E3EB * get_U3CcurrentU3Ek__BackingField_47() const { return ___U3CcurrentU3Ek__BackingField_47; } inline Touchscreen_tE679C4B2C2D8C5979EAC5A2002603672A202E3EB ** get_address_of_U3CcurrentU3Ek__BackingField_47() { return &___U3CcurrentU3Ek__BackingField_47; } inline void set_U3CcurrentU3Ek__BackingField_47(Touchscreen_tE679C4B2C2D8C5979EAC5A2002603672A202E3EB * value) { ___U3CcurrentU3Ek__BackingField_47 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CcurrentU3Ek__BackingField_47), (void*)value); } inline static int32_t get_offset_of_s_TapTime_48() { return static_cast(offsetof(Touchscreen_tE679C4B2C2D8C5979EAC5A2002603672A202E3EB_StaticFields, ___s_TapTime_48)); } inline float get_s_TapTime_48() const { return ___s_TapTime_48; } inline float* get_address_of_s_TapTime_48() { return &___s_TapTime_48; } inline void set_s_TapTime_48(float value) { ___s_TapTime_48 = value; } inline static int32_t get_offset_of_s_TapDelayTime_49() { return static_cast(offsetof(Touchscreen_tE679C4B2C2D8C5979EAC5A2002603672A202E3EB_StaticFields, ___s_TapDelayTime_49)); } inline float get_s_TapDelayTime_49() const { return ___s_TapDelayTime_49; } inline float* get_address_of_s_TapDelayTime_49() { return &___s_TapDelayTime_49; } inline void set_s_TapDelayTime_49(float value) { ___s_TapDelayTime_49 = value; } inline static int32_t get_offset_of_s_TapRadiusSquared_50() { return static_cast(offsetof(Touchscreen_tE679C4B2C2D8C5979EAC5A2002603672A202E3EB_StaticFields, ___s_TapRadiusSquared_50)); } inline float get_s_TapRadiusSquared_50() const { return ___s_TapRadiusSquared_50; } inline float* get_address_of_s_TapRadiusSquared_50() { return &___s_TapRadiusSquared_50; } inline void set_s_TapRadiusSquared_50(float value) { ___s_TapRadiusSquared_50 = value; } }; // UnityEngine.InputSystem.Touchscreen #ifdef __clang__ #pragma clang diagnostic pop #endif // System.Delegate[] struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8 : public RuntimeArray { public: ALIGN_FIELD (8) Delegate_t * m_Items[1]; public: inline Delegate_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Delegate_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Delegate_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Delegate_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Delegate_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.String[] struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A : public RuntimeArray { public: ALIGN_FIELD (8) String_t* m_Items[1]; public: inline String_t* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline String_t** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, String_t* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Collections.Generic.KeyValuePair`2[] struct KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105 : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 m_Items[1]; public: inline KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___key_0))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___key_0))->___m_StringLowerCase_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL); #endif } inline KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___key_0))->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___key_0))->___m_StringLowerCase_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL); #endif } }; // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: inline RuntimeObject * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo[] struct DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81 : public RuntimeArray { public: ALIGN_FIELD (8) DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F m_Items[1]; public: inline DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Layout_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_FullLayoutJson_4), (void*)NULL); #endif } inline DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Layout_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_FullLayoutJson_4), (void*)NULL); #endif } }; // System.Byte[] struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726 : public RuntimeArray { public: ALIGN_FIELD (8) uint8_t m_Items[1]; public: inline uint8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint8_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value) { m_Items[index] = value; } }; // UnityEngine.InputSystem.InputDevice[] struct InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6 : public RuntimeArray { public: ALIGN_FIELD (8) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * m_Items[1]; public: inline InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // UnityEngine.InputSystem.Utilities.InternedString[] struct InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4 : public RuntimeArray { public: ALIGN_FIELD (8) InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED m_Items[1]; public: inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_StringLowerCase_1), (void*)NULL); #endif } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_StringOriginalCase_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_StringLowerCase_1), (void*)NULL); #endif } }; // UnityEngine.InputSystem.InputManager/AvailableDevice[] struct AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330 : public RuntimeArray { public: ALIGN_FIELD (8) AvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D m_Items[1]; public: inline AvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline AvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, AvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___description_0))->___m_InterfaceName_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___description_0))->___m_DeviceClass_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___description_0))->___m_Manufacturer_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___description_0))->___m_Product_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___description_0))->___m_Serial_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___description_0))->___m_Version_5), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___description_0))->___m_Capabilities_6), (void*)NULL); #endif } inline AvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline AvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, AvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___description_0))->___m_InterfaceName_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___description_0))->___m_DeviceClass_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___description_0))->___m_Manufacturer_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___description_0))->___m_Product_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___description_0))->___m_Serial_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___description_0))->___m_Version_5), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___description_0))->___m_Capabilities_6), (void*)NULL); #endif } }; // UnityEngine.InputSystem.InputManager/StateChangeMonitorsForDevice[] struct StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE : public RuntimeArray { public: ALIGN_FIELD (8) StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 m_Items[1]; public: inline StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___memoryRegions_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___listeners_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___signalled_2))->___array_0))->___additionalValues_2), (void*)NULL); #endif } inline StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___memoryRegions_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___listeners_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((&((m_Items + index)->___signalled_2))->___array_0))->___additionalValues_2), (void*)NULL); #endif } }; // UnityEngine.InputSystem.InputManager/StateChangeMonitorListener[] struct StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10 : public RuntimeArray { public: ALIGN_FIELD (8) StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757 m_Items[1]; public: inline StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___control_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___monitor_1), (void*)NULL); #endif } inline StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___control_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___monitor_1), (void*)NULL); #endif } }; // UnityEngine.InputSystem.Utilities.MemoryHelpers/BitRegion[] struct BitRegionU5BU5D_tF6D5F89A752F557BCBFDE82CA0F4C7CB0ABF364B : public RuntimeArray { public: ALIGN_FIELD (8) BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 m_Items[1]; public: inline BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 value) { m_Items[index] = value; } }; IL2CPP_EXTERN_C void InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshal_pinvoke(const InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58& unmarshaled, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshal_pinvoke_back(const InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshaled_pinvoke& marshaled, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58& unmarshaled); IL2CPP_EXTERN_C void InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshal_pinvoke_cleanup(InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshal_pinvoke(const InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA& unmarshaled, InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshal_pinvoke_back(const InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshaled_pinvoke& marshaled, InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA& unmarshaled); IL2CPP_EXTERN_C void InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshal_pinvoke_cleanup(InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshal_com(const InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA& unmarshaled, InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshaled_com& marshaled); IL2CPP_EXTERN_C void InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshal_com_back(const InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshaled_com& marshaled, InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA& unmarshaled); IL2CPP_EXTERN_C void InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshal_com_cleanup(InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshaled_com& marshaled); // System.Void Unity.Collections.NativeArray`1::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1__ctor_mED2AEAAEFBBE3F20D8E424582434019D3F94F9EF_gshared (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method); // System.Void* Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::GetUnsafePtr(Unity.Collections.NativeArray`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mE8961C891F379BB648D8CDB9F514FFB65A58EACF_gshared (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___nativeArray0, const RuntimeMethod* method); // !!0 UnityEngine.JsonUtility::FromJson(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413 JsonUtility_FromJson_TisDeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413_m5982849AE3F1FD56C0EDFDC01A4FB87D817D9C26_gshared (String_t* ___json0, const RuntimeMethod* method); // System.Void System.Func`2::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_m2025FBDB42EB2B4162FA2F3E59FFD25C2BC4A547_gshared (Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Boolean System.Linq.Enumerable::All(System.Collections.Generic.IEnumerable`1,System.Func`2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerable_All_TisChar_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_m1433F8CC63C937857531DD2FBB1D8FC8636A0D39_gshared (RuntimeObject* ___source0, Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A * ___predicate1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2::.ctor(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m8E414081CDF840B7B266F15373BE120B33CF8AA7_gshared (KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::Append>(TValue[]&,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArrayHelpers_Append_TisKeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521_m873B3C7D90D52301893F6EF2DC4A8389D1441A20_gshared (KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105** ___array0, KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 ___value1, const RuntimeMethod* method); // !0 System.Collections.Generic.KeyValuePair`2::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED KeyValuePair_2_get_Key_mFBEEBA1D831EB554874C88B7A45536B9AB7229A8_gshared_inline (KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 * __this, const RuntimeMethod* method); // !1 System.Collections.Generic.KeyValuePair`2::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m391CC747109CAE22FD143AF7520A2C133612D28D_gshared_inline (KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 * __this, const RuntimeMethod* method); // System.Boolean Unity.Collections.NativeArray`1::get_IsCreated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_gshared (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * __this, const RuntimeMethod* method); // System.Void* Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::GetUnsafeBufferPointerWithoutChecks(Unity.Collections.NativeArray`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8_gshared (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___nativeArray0, const RuntimeMethod* method); // Unity.Collections.NativeArray`1 Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray(System.Void*,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m5716D1B129F1FA995C8917D06C0FB2793750A78B_gshared (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method); // System.Void Unity.Collections.NativeArray`1::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_mD88EDF062EFB4B0E6C8F925B5A4E47E97E687342_gshared (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * __this, const RuntimeMethod* method); // System.Void Unity.Collections.NativeArray`1::CopyFrom(Unity.Collections.NativeArray`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_CopyFrom_m14EBE56AB030E8DB4B1FC018F936A1E062FD7870_gshared (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * __this, NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___array0, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::AppendWithCapacity(TValue,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InlinedArray_1_AppendWithCapacity_m0C86F87C50FF2F8AE32773D2827F85AEFA75B0B7_gshared (InlinedArray_1_tB0AAF680EA1CE867851DE37A96313A3779BF0BD2 * __this, RuntimeObject * ___value0, int32_t ___capacityIncrement1, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::IsA() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_IsA_TisStateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3_m91EF69757639C51EDFCFAFA88EE04CE0D6C1795E_gshared (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::IsA() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_IsA_TisDeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4_m52B5875F2EACBC85E22AF1807227E9A2C83FEC3E_gshared (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::op_Implicit(TValue[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_tB0C672A35D9507319B5BF448296839F3F3BAF078 ReadOnlyArray_1_op_Implicit_mA7B6FD4501EAC9196BB0A451EC4835363B7E5C70_gshared (DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81* ___array0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1::AddCallback(TDelegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackArray_1_AddCallback_m557746816FBD33431579BB7E030EDEE997973504_gshared (CallbackArray_1_t5755F06076AF5BB3BB9EC99F526C8E517DA0AAAF * __this, RuntimeObject * ___dlg0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1::RemoveCallback(TDelegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackArray_1_RemoveCallback_mAB8E31257637236DDE157A2FBFACF3A3BFFF446E_gshared (CallbackArray_1_t5755F06076AF5BB3BB9EC99F526C8E517DA0AAAF * __this, RuntimeObject * ___dlg0, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::LengthSafe(TValue[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArrayHelpers_LengthSafe_TisDeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F_m5289263AC46EB098266066A629B4B9F951B8A3F3_gshared (DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81* ___array0, const RuntimeMethod* method); // System.Void System.Action`2::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_mAE93C6CDD790585BD22A43655C8AB2396BC2573D_gshared (Action_2_tB9B1B9645C739483997CEFD136850320B3E81752 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Int32 Unity.Collections.LowLevel.Unsafe.UnsafeUtility::SizeOf() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisInputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234_mE54BCED9D284351B027281FCFFBD542BE9E13CF5_gshared (const RuntimeMethod* method); // !2 System.Func`3::Invoke(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Func_3_Invoke_mCC3720F71843B77A2898A7E73DE044210234B59D_gshared (Func_3_t8B57AF438305FCA0473816617742AD6EBB7305F0 * __this, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___arg10, RuntimeObject * ___arg21, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::Append(TValue[]&,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArrayHelpers_Append_TisDeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F_mEA1ABEEA1ADC1C5A21B8E4665D8E57A9E8FC6295_gshared (DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81** ___array0, DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F ___value1, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.CallbackArray`1::get_length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CallbackArray_1_get_length_mF3713D9A736D916981802210CF20A583258E1B08_gshared (CallbackArray_1_t5755F06076AF5BB3BB9EC99F526C8E517DA0AAAF * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.DelegateHelpers::InvokeCallbacksSafe(UnityEngine.InputSystem.Utilities.CallbackArray`1>&,TValue,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_mC4159FA60A399EFD819461CBD6CF31C2C9953FA7_gshared (CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008 * ___callbacks0, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___argument1, String_t* ___callbackName2, RuntimeObject * ___context3, const RuntimeMethod* method); // !!0 System.Reflection.CustomAttributeExtensions::GetCustomAttribute(System.Reflection.MemberInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CustomAttributeExtensions_GetCustomAttribute_TisRuntimeObject_mAEBC9EBACD573E5D085888BEE7B319CE80E372B5_gshared (MemberInfo_t * ___element0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::.ctor(TValue[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyArray_1__ctor_mDBA2D038A7B6AAC56DBAE76573D364B6ED244C74_gshared (ReadOnlyArray_1_t9584B0851320AB0F5BC8FF261C123F5994A081B7 * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::get_Count() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlyArray_1_get_Count_m23B4A29E81D59954DD014F2E62B43150D34C51BD_gshared_inline (ReadOnlyArray_1_t9584B0851320AB0F5BC8FF261C123F5994A081B7 * __this, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.Dictionary`2::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_mB06F38DF91518D4489B73DA32BAB9639F77BA0D3_gshared (Dictionary_2_t80D2D8B9C998CB48C246E0CF23198E0761CD3326 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::set_Item(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m1CAC94BEA959C206BC403D4C63ABAA6ACD2B08B6_gshared (Dictionary_2_t80D2D8B9C998CB48C246E0CF23198E0761CD3326 * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2/Enumerator System.Collections.Generic.Dictionary`2::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t8AA648C8DF370A9EB2CD75C4D86DADC954C99CC4 Dictionary_2_GetEnumerator_m0DB55805C37883D3243C718369463532FFD4E7B9_gshared (Dictionary_2_t80D2D8B9C998CB48C246E0CF23198E0761CD3326 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2 System.Collections.Generic.Dictionary`2/Enumerator::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 Enumerator_get_Current_mA498E0842C3786B22CC1BB11B09A85E3346E5C3C_gshared_inline (Enumerator_t8AA648C8DF370A9EB2CD75C4D86DADC954C99CC4 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD45CA15D1D7996292B052775BB7E4BF332D0ACAC_gshared (Enumerator_t8AA648C8DF370A9EB2CD75C4D86DADC954C99CC4 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m58D96E53BE567B742E73098EF7415688736EB757_gshared (Enumerator_t8AA648C8DF370A9EB2CD75C4D86DADC954C99CC4 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.InlinedArray`1::.ctor(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InlinedArray_1__ctor_m63D4B87260948C2A73C6DF32D7374DAEFFE5319C_gshared (InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___value0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.HashSet`1::Contains(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HashSet_1_Contains_mFC4294A6594B5C8BDC5FDD29E060C7A6E4B890FA_gshared (HashSet_1_t9DCF3402E30D433824DBE15EBB53B1DD79D671C1 * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___item0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.HashSet`1::Add(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HashSet_1_Add_m7C5B4590798DB969BBE29A457DBECB7082532BEC_gshared (HashSet_1_t9DCF3402E30D433824DBE15EBB53B1DD79D671C1 * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___item0, const RuntimeMethod* method); // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED InlinedArray_1_get_Item_m63A5AB84323894345D9D8A01807C53CEC0219D12_gshared (InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB * __this, int32_t ___index0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::TryGetValue(!0,!1&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mAAF5BE546E3C93E89247650C6F561AD0C73B69FE_gshared (Dictionary_2_t80D2D8B9C998CB48C246E0CF23198E0761CD3326 * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::Append(TValue[]&,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArrayHelpers_Append_TisInternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_mDC61B9BB789B775D8026681A13BFE1C9E378A5B1_gshared (InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4** ___array0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::set_Item(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m73D39E3B6AD90D8E65A792BD405FEDA2F922831A_gshared (Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540 * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::Remove(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m45E84D946995F17227E04DF2D32A7A01C5B0CA5A_gshared (Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.Dictionary`2::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_mF781BD47155E1FD53A8B5F590ECA083143D48CC5_gshared (Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE * __this, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyCollection_t957197774A5B992291BD30CAA0D5D9CCFA3DCAE9 * Dictionary_2_get_Keys_m7A818D2B12B3E3204B17DCDCD6A88434D77FA1E8_gshared (Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE * __this, const RuntimeMethod* method); // !!0[] System.Linq.Enumerable::ToArray(System.Collections.Generic.IEnumerable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* Enumerable_ToArray_TisInternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_mCBDD219E3CD8E6A836DED802188AB3D29C9EB9DA_gshared (RuntimeObject* ___source0, const RuntimeMethod* method); // !1 System.Collections.Generic.Dictionary`2::get_Item(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PrecompiledLayout_t87B15ED374C6DA9C0C0D9333A1BDAC4F40E548CB Dictionary_2_get_Item_m733F4D7CC7AA69207084F6670637C330C2629459_gshared (Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.DelegateHelpers::InvokeCallbacksSafe(UnityEngine.InputSystem.Utilities.CallbackArray`1>&,TValue1,TValue2,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelegateHelpers_InvokeCallbacksSafe_TisRuntimeObject_TisInt32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C_m04CA5EA9EA079CEADDF35C5A68BCABE5E8BD43BA_gshared (CallbackArray_1_tB8BC79D1436E00F1A99D64DB9801E06E1C750F4C * ___callbacks0, RuntimeObject * ___argument11, int32_t ___argument22, String_t* ___callbackName3, RuntimeObject * ___context4, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Add(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, RuntimeObject * ___item0, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1::get_Item(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1::get_Count() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // TValue UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReadOnlyArray_1_get_Item_m84136BE8993A7013D4900F0ACF7B4ECAD86456F6_gshared (ReadOnlyArray_1_t9584B0851320AB0F5BC8FF261C123F5994A081B7 * __this, int32_t ___index0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::TryGetValue(!0,!1&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mD3954C657979AD880C781BAC9CFBD461A9FF7A75_gshared (Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540 * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * ___value1, const RuntimeMethod* method); // TDevice UnityEngine.InputSystem.InputDevice::Build(System.String,System.String,UnityEngine.InputSystem.Layouts.InputDeviceDescription,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InputDevice_Build_TisRuntimeObject_m944D6E77F159CA01263AC3C3EAFB5F973EE49015_gshared (String_t* ___layoutName0, String_t* ___layoutVariants1, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___deviceDescription2, bool ___noPrecompiledLayouts3, const RuntimeMethod* method); // System.Int64 UnityEngine.InputSystem.LowLevel.InputRuntimeExtensions::DeviceCommand(UnityEngine.InputSystem.LowLevel.IInputRuntime,System.Int32,TCommand&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputRuntimeExtensions_DeviceCommand_TisEnableDeviceCommand_tB57B3D3EDA2CD18BF45CCDB5132C993C6FBFA613_m6DA0519E09D540313D30CAF703C46549C6C788FF_gshared (RuntimeObject* ___runtime0, int32_t ___deviceId1, EnableDeviceCommand_tB57B3D3EDA2CD18BF45CCDB5132C993C6FBFA613 * ___command2, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::Remove(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m3EF3E79BB5DC3FA364C801B415C253F94380C637_gshared (Dictionary_2_t80D2D8B9C998CB48C246E0CF23198E0761CD3326 * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::Remove(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m947D65A5DF070987EB824FD37FB2A9386DB8D3D3_gshared (Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540 * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1::LockForChanges() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackArray_1_LockForChanges_m16A98AA041A3624729077E7278CC38431B36AA99_gshared (CallbackArray_1_t5755F06076AF5BB3BB9EC99F526C8E517DA0AAAF * __this, const RuntimeMethod* method); // TDelegate UnityEngine.InputSystem.Utilities.CallbackArray`1::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CallbackArray_1_get_Item_m0C00A737D031A7D2E14B666DE1339E0482D2F4E0_gshared (CallbackArray_1_t5755F06076AF5BB3BB9EC99F526C8E517DA0AAAF * __this, int32_t ___index0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1::UnlockForChanges() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackArray_1_UnlockForChanges_m6CC0EF37F717E02D62818FDDB088C47B4085E90B_gshared (CallbackArray_1_t5755F06076AF5BB3BB9EC99F526C8E517DA0AAAF * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::get_Count() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlyArray_1_get_Count_mB7032E0F55BC9BAC395949F252CE4E2B00451700_gshared_inline (ReadOnlyArray_1_t606E37DB0F1B75FCB4C4A029A0F6C2B4AE7DED75 * __this, const RuntimeMethod* method); // TValue UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ReadOnlyArray_1_get_Item_mA008A6D96358A9EE19CCCE5C476367DDC58F0E51_gshared (ReadOnlyArray_1_t606E37DB0F1B75FCB4C4A029A0F6C2B4AE7DED75 * __this, int32_t ___index0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.Utilities.ReadOnlyArrayExtensions::Contains(UnityEngine.InputSystem.Utilities.ReadOnlyArray`1,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyArrayExtensions_Contains_TisInternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_m23E2471F1568258A2210D67111E1A3B892C238BF_gshared (ReadOnlyArray_1_t606E37DB0F1B75FCB4C4A029A0F6C2B4AE7DED75 ___array0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___value1, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.Utilities.ArrayHelpers::Contains(TValue[],TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ArrayHelpers_Contains_TisRuntimeObject_m0FA2B1E062E649226E51561B1A3F95A862BE6EDB_gshared (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___array0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::AppendWithCapacity(TValue[]&,System.Int32&,TValue,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArrayHelpers_AppendWithCapacity_TisRuntimeObject_mA6B8ADA966B939BEEB0726AA570EB844A82DF57D_gshared (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** ___array0, int32_t* ___count1, RuntimeObject * ___value2, int32_t ___capacityIncrement3, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::set_Item(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m71867F9FFBB49DE962FD0036368A0F6E87F30C90_gshared (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Int64 UnityEngine.InputSystem.LowLevel.InputRuntimeExtensions::DeviceCommand(UnityEngine.InputSystem.LowLevel.IInputRuntime,System.Int32,TCommand&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputRuntimeExtensions_DeviceCommand_TisDisableDeviceCommand_tB2F65EF65EBE67BF06541CD04C81BB31EE208FD5_m0E4A8423F3F6957D74340A32940213ED6937E649_gshared (RuntimeObject* ___runtime0, int32_t ___deviceId1, DisableDeviceCommand_tB2F65EF65EBE67BF06541CD04C81BB31EE208FD5 * ___command2, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::LengthSafe(TValue[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArrayHelpers_LengthSafe_TisStateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_mEF0C8691912F12B19C9BF503E38175BDAEA8A4AA_gshared (StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* ___array0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::EraseAtWithCapacity(TValue[],System.Int32&,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayHelpers_EraseAtWithCapacity_TisStateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_mFD30A7FB5FCDAC45EA4F3388F8AB79D9E295ED6F_gshared (StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* ___array0, int32_t* ___count1, int32_t ___index2, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::EraseAtWithCapacity(TValue[],System.Int32&,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayHelpers_EraseAtWithCapacity_TisRuntimeObject_m453548DEF5D8CA10274D9A007D08102B4ED37759_gshared (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___array0, int32_t* ___count1, int32_t ___index2, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::Remove(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_mAC77908EC28C242ACC8C3C4CDEA945E73B95CFA4_gshared (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * __this, int32_t ___key0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::EraseAtWithCapacity(TValue[],System.Int32&,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayHelpers_EraseAtWithCapacity_TisAvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D_mC10F77228033C2ECC47DEBAA7EF45C5861758982_gshared (AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330* ___array0, int32_t* ___count1, int32_t ___index2, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::Clear(TValue[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayHelpers_Clear_TisRuntimeObject_mEEB2434FA8ED3826BF374114B8C095622275B45E_gshared (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___array0, int32_t ___count1, const RuntimeMethod* method); // System.Boolean System.Nullable`1::get_HasValue() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m52F33C6963C9A76A14F54B4B2C30CEF580DB1EB7_gshared_inline (Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * __this, const RuntimeMethod* method); // !0 System.Nullable`1::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_get_Value_mC9A7615EA5EDA84F8B8055BE43CF91D74820C378_gshared (Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::TryGetValue(!0,!1&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m0A88BBB063127AFAD853506A433ACB07D7AAD67E_gshared (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * __this, int32_t ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Add(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m3BC6C2081F0B7141ADA19126352232251A342682_gshared (List_1_tAC9866130CCE9F688E2E8D1782F54217E5E3A32F * __this, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___item0, const RuntimeMethod* method); // System.Void System.Nullable`1::.ctor(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m402A94AC9070B345C95919DCFFFF627252B3E67A_gshared (Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * __this, bool ___value0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mE7F9D51201F5A72BF4995CA0F3F0E866DB21E638_gshared (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::RegisterPrecompiledLayout(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_RegisterPrecompiledLayout_TisRuntimeObject_m1FC0A97975FB3801CA6F125D56D165D316A54DBD_gshared (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, String_t* ___metadata0, const RuntimeMethod* method); // System.Void System.Action`2::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_mD005A0CCFFD77790ADB8E1E418161A6F27A30C64_gshared (Action_2_tDD9145FF6BEFC0F795374D3C54FE5138E8FDDC96 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Action`1::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m2A1B34C27CAE6ED7FD924E5F59C0A1ACBBF22C38_gshared (Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Func`2::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_m65EA70FC36AE05F395E036FE07698256E09C6339_gshared (Func_2_t8D00E17E9D1413C71B5B12D3538C754C4F141A2E * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Action`1::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m5A0949EFB73F1BDBEBE3CB814917A79FBF9B3DEA_gshared (Action_1_tF0FD284A49EB7135379250254D6B49FA84383C09 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Func`2::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_mA7F3C5A0612B84E910DE92E77BA95101FD68EEDB_gshared (Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.String UnityEngine.InputSystem.Utilities.StringHelpers::MakeUniqueName(System.String,System.Collections.Generic.IEnumerable`1,System.Func`2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringHelpers_MakeUniqueName_TisRuntimeObject_mA44FF9B27DF5C69D7847FA6C44439D1D5C2446EA_gshared (String_t* ___baseName0, RuntimeObject* ___existingSet1, Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82 * ___getNameFunc2, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::AppendWithCapacity(TValue[]&,System.Int32&,TValue,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArrayHelpers_AppendWithCapacity_TisAvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D_m19AA1ED8172E03B3B409D8B55E8961BB98EFAEF7_gshared (AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330** ___array0, int32_t* ___count1, AvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D ___value2, int32_t ___capacityIncrement3, const RuntimeMethod* method); // System.Int64 UnityEngine.InputSystem.InputManager::ExecuteGlobalCommand(TCommand&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputManager_ExecuteGlobalCommand_TisUseWindowsGamingInputCommand_tB66739BB4992AB11B421FE57CFEE81FBD534C6F3_m0496412738D388718F528CB840EA03460BEC3772_gshared (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, UseWindowsGamingInputCommand_tB66739BB4992AB11B421FE57CFEE81FBD534C6F3 * ___command0, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::IndexOfReference(TFirst[],TSecond,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArrayHelpers_IndexOfReference_TisRuntimeObject_TisRuntimeObject_m8D41D772CA3D5B95826F753107182C401BF7BF32_gshared (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___array0, RuntimeObject * ___value1, int32_t ___count2, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.DelegateHelpers::InvokeCallbacksSafe(UnityEngine.InputSystem.Utilities.CallbackArray`1>&,TValue1,TValue2,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_TisRuntimeObject_mD6B2DE174E67AE3521211FD1526D8F03459C4738_gshared (CallbackArray_1_tC1980B45EE54E16579200C8DC8E433807FD87864 * ___callbacks0, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___argument11, RuntimeObject * ___argument22, String_t* ___callbackName3, RuntimeObject * ___context4, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.DelegateHelpers::InvokeCallbacksSafe(UnityEngine.InputSystem.Utilities.CallbackArray`1>&,TValue1,TValue2,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelegateHelpers_InvokeCallbacksSafe_TisRuntimeObject_TisInputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_m99CCADCACEEE9400EBE66F41CD57E5640555AA33_gshared (CallbackArray_1_tB1610CE5579DCAF54D5DE046B298ED21644D9AF2 * ___callbacks0, RuntimeObject * ___argument11, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___argument22, String_t* ___callbackName3, RuntimeObject * ___context4, const RuntimeMethod* method); // System.Void System.Array::Resize(!!0[]&,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Resize_TisStateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_m40801FDD05A56FDAD4E49611617D191543C0DE2C_gshared (StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE** ___array0, int32_t ___newSize1, const RuntimeMethod* method); // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48_gshared (InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * __this, int32_t ___index0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.InlinedArray`1::set_Item(System.Int32,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InlinedArray_1_set_Item_m2B7EE5F97EEA88C36851609313B780BB25E8096A_gshared (InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * __this, int32_t ___index0, StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 ___value1, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::Append(TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InlinedArray_1_Append_m5669719E259F8A1D99F53BB7E6F255E35808764C_gshared (InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * __this, StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 ___value0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::EraseAtWithCapacity(TValue[],System.Int32&,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayHelpers_EraseAtWithCapacity_TisStateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757_m838ED52068AE104603FB0EDEF1C1CD8347FC4BCF_gshared (StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10* ___array0, int32_t* ___count1, int32_t ___index2, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::EraseAtWithCapacity(TValue[],System.Int32&,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayHelpers_EraseAtWithCapacity_TisBitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0_m60444B4131851A54E921C04FE9219E5413138EA3_gshared (BitRegionU5BU5D_tF6D5F89A752F557BCBFDE82CA0F4C7CB0ABF364B* ___array0, int32_t* ___count1, int32_t ___index2, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.InlinedArray`1::SetLength(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InlinedArray_1_SetLength_m1F4DEB2721EBC5B480DBA3C72058201689A8DF80_gshared (InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * __this, int32_t ___size0, const RuntimeMethod* method); // System.Int64 UnityEngine.InputSystem.LowLevel.InputRuntimeExtensions::DeviceCommand(UnityEngine.InputSystem.LowLevel.IInputRuntime,System.Int32,TCommand&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputRuntimeExtensions_DeviceCommand_TisInputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3_m17A9989BF690B87F556966B455409A987C18C71D_gshared (RuntimeObject* ___runtime0, int32_t ___deviceId1, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * ___command2, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.LowLevel.InputDeviceCommand::get_payloadSizeInBytes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputDeviceCommand_get_payloadSizeInBytes_mD69A6D5E2DA135FEF246B038AD581180A80A1629 (InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * __this, const RuntimeMethod* method); // System.Void* UnityEngine.InputSystem.LowLevel.InputDeviceCommand::get_payloadPtr() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* InputDeviceCommand_get_payloadPtr_mBA56A766857970E184D4A552F3A03670DE091E46 (InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputDeviceCommand::.ctor(UnityEngine.InputSystem.Utilities.FourCC,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDeviceCommand__ctor_m37D7C9AC95972F2F9075C62240B5D15119E40271 (InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * __this, FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___type0, int32_t ___sizeInBytes1, const RuntimeMethod* method); // System.Void Unity.Collections.NativeArray`1::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions) inline void NativeArray_1__ctor_mED2AEAAEFBBE3F20D8E424582434019D3F94F9EF (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method) { (( void (*) (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *, int32_t, int32_t, int32_t, const RuntimeMethod*))NativeArray_1__ctor_mED2AEAAEFBBE3F20D8E424582434019D3F94F9EF_gshared)(__this, ___length0, ___allocator1, ___options2, method); } // System.Void* Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::GetUnsafePtr(Unity.Collections.NativeArray`1) inline void* NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mE8961C891F379BB648D8CDB9F514FFB65A58EACF (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___nativeArray0, const RuntimeMethod* method) { return (( void* (*) (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 , const RuntimeMethod*))NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mE8961C891F379BB648D8CDB9F514FFB65A58EACF_gshared)(___nativeArray0, method); } // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputDeviceCommand::get_typeStatic() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 InputDeviceCommand_get_typeStatic_m2AE789263E7CD830201D3CB23C8071B087986B2F (InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * __this, const RuntimeMethod* method); // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::get_interfaceName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_interfaceName_mCEBA87B35556BD0D03EADDD724B08266120BE761_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Layouts.InputDeviceDescription::set_interfaceName(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputDeviceDescription_set_interfaceName_mABE1A9818925CBC790F664066FB1EBE4C834452C_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, String_t* ___value0, const RuntimeMethod* method); // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::get_deviceClass() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_deviceClass_m04BB88F15F817900CF7457A2E7FC65F5618AD1AF_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Layouts.InputDeviceDescription::set_deviceClass(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputDeviceDescription_set_deviceClass_m8C006A98A4CE08B4473C4D1D4F5291B452DE85A8_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, String_t* ___value0, const RuntimeMethod* method); // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::get_manufacturer() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_manufacturer_m42C503D82A264C3510752BD1E726D8ED3111E869_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Layouts.InputDeviceDescription::set_manufacturer(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputDeviceDescription_set_manufacturer_m7D0DEDFD9CF9F32A99A27CEB5316B85026150191_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, String_t* ___value0, const RuntimeMethod* method); // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::get_product() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_product_mEECD8A9018BF8C49B89256C912EC0AAEE90D4A82_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Layouts.InputDeviceDescription::set_product(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputDeviceDescription_set_product_m7BB0FC8611C3D4CCE2412F603A048A11C9838645_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, String_t* ___value0, const RuntimeMethod* method); // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::get_serial() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_serial_m259412E6F7627E1310535A55FB9BE03146C54A55_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Layouts.InputDeviceDescription::set_serial(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputDeviceDescription_set_serial_m751AB1FADCB10147BAD9DC499D18AD3E38ECC310_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, String_t* ___value0, const RuntimeMethod* method); // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::get_version() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_version_mF03973E700CF32DEDDF4374AF5596E618FC21D95_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Layouts.InputDeviceDescription::set_version(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputDeviceDescription_set_version_m3625E12F52EB64C19673E68D8B0D19211E460CD0_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, String_t* ___value0, const RuntimeMethod* method); // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::get_capabilities() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_capabilities_m3871219ECAC10766CBAB256E0612674368D5C362_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Layouts.InputDeviceDescription::set_capabilities(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputDeviceDescription_set_capabilities_m3A60E518C919C5554215297212C36B9C8AB940E1_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, String_t* ___value0, const RuntimeMethod* method); // System.Boolean System.String::IsNullOrEmpty(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3 (String_t* ___value0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.Layouts.InputDeviceDescription::get_empty() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDeviceDescription_get_empty_mD22F9DFAC45C892B0883899DF0D473B211A92EE7 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method); // System.String System.String::Concat(System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m27B9C3007C7DABFABCC3726B37A3BE08CB40C417 (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___values0, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mC41740F000A5A48F8D313FB4CEE0E35E207A2632 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m5D784E6CEEBE99ED8749AA4B9491D926273FD749 (String_t* ___str00, String_t* ___str11, String_t* ___str22, String_t* ___str33, const RuntimeMethod* method); // System.Int32 System.String::get_Length() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline (String_t* __this, const RuntimeMethod* method); // System.String System.String::Substring(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method); // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_ToString_m06A3F9AE316F1EC37EE5A477C0B10F1DF12D847A (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.Utilities.StringHelpers::InvariantEqualsIgnoreCase(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StringHelpers_InvariantEqualsIgnoreCase_m5EC37A57DBDE1C923086A621C55714E622DC7137 (String_t* ___left0, String_t* ___right1, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.Layouts.InputDeviceDescription::Equals(UnityEngine.InputSystem.Layouts.InputDeviceDescription) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDeviceDescription_Equals_m2E6BDE36535166C7A7000B79B7C0028400635111 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___other0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.Layouts.InputDeviceDescription::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDeviceDescription_Equals_m8B7715B0F0591127B08723B0231637BBCA4660A8 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Layouts.InputDeviceDescription::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputDeviceDescription_GetHashCode_m8770650ED6E3706DAAA412DE227ADABB80D757C8 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method); // System.String UnityEngine.JsonUtility::ToJson(System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonUtility_ToJson_m8A3321288D36CE4383BE7F22C4DACFAF1DEE9ABF (RuntimeObject * ___obj0, bool ___prettyPrint1, const RuntimeMethod* method); // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::ToJson() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_ToJson_mB8B7AC9C4375687397491C4E9DCC29496E08AF27 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method); // System.Void System.ArgumentNullException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97 (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * __this, String_t* ___paramName0, const RuntimeMethod* method); // !!0 UnityEngine.JsonUtility::FromJson(System.String) inline DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413 JsonUtility_FromJson_TisDeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413_m5982849AE3F1FD56C0EDFDC01A4FB87D817D9C26 (String_t* ___json0, const RuntimeMethod* method) { return (( DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413 (*) (String_t*, const RuntimeMethod*))JsonUtility_FromJson_TisDeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413_m5982849AE3F1FD56C0EDFDC01A4FB87D817D9C26_gshared)(___json0, method); } // System.Void UnityEngine.InputSystem.Utilities.JsonParser::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonParser__ctor_m3FCC88CC2257778CAFF2B3ECC7D27FA28403D290 (JsonParser_t4C34C450BC39EA738DBD7CDC56B48626355D272E * __this, String_t* ___json0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.Utilities.JsonParser::NavigateToProperty(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonParser_NavigateToProperty_m8F77E7815B27B81F6C59450D2FBD763AE7C2B6BD (JsonParser_t4C34C450BC39EA738DBD7CDC56B48626355D272E * __this, String_t* ___path0, const RuntimeMethod* method); // UnityEngine.InputSystem.Utilities.JsonParser/JsonValue UnityEngine.InputSystem.Utilities.JsonParser/JsonValue::op_Implicit(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonValue_t547F68925DBBEF3A29A4E14D26153A04872154DB JsonValue_op_Implicit_mADB04D57C501DD565381120589F70C8770C180A7 (String_t* ___str0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.Utilities.JsonParser::CurrentPropertyHasValueEqualTo(UnityEngine.InputSystem.Utilities.JsonParser/JsonValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonParser_CurrentPropertyHasValueEqualTo_m8E78B1BEFF4CC652C3D877B3E3829823C97E9A3D (JsonParser_t4C34C450BC39EA738DBD7CDC56B48626355D272E * __this, JsonValue_t547F68925DBBEF3A29A4E14D26153A04872154DB ___expectedValue0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.Layouts.InputDeviceMatcher::get_empty() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDeviceMatcher_get_empty_m3F46CDE753F731D060E5669A8A1CFEC59CC5D21F (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Layouts.InputDeviceMatcher/d__4::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3Cget_patternsU3Ed__4__ctor_m857A331802795E22A81249C5D371D76B322002AD (U3Cget_patternsU3Ed__4_t6191EF324445918A4E234231F0240556B56CA816 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method); // System.Collections.Generic.IEnumerable`1> UnityEngine.InputSystem.Layouts.InputDeviceMatcher::get_patterns() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputDeviceMatcher_get_patterns_m53E748473841C8F435EC8447FF52EC0CA586E3EF (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.Layouts.InputDeviceMatcher UnityEngine.InputSystem.Layouts.InputDeviceMatcher::With(UnityEngine.InputSystem.Utilities.InternedString,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 InputDeviceMatcher_With_mAFC3198DA4804664B1ADCB38065A33CE684DFAEA (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, RuntimeObject * ___value1, bool ___supportRegex2, const RuntimeMethod* method); // UnityEngine.InputSystem.Layouts.InputDeviceMatcher UnityEngine.InputSystem.Layouts.InputDeviceMatcher::WithInterface(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 InputDeviceMatcher_WithInterface_m67902BFA0C953194FCE049F1FA1784C494F5967B (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, String_t* ___pattern0, bool ___supportRegex1, const RuntimeMethod* method); // UnityEngine.InputSystem.Layouts.InputDeviceMatcher UnityEngine.InputSystem.Layouts.InputDeviceMatcher::WithDeviceClass(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 InputDeviceMatcher_WithDeviceClass_mFD3BB3A359C960E04407F5997ED330D8999F7E9C (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, String_t* ___pattern0, bool ___supportRegex1, const RuntimeMethod* method); // UnityEngine.InputSystem.Layouts.InputDeviceMatcher UnityEngine.InputSystem.Layouts.InputDeviceMatcher::WithManufacturer(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 InputDeviceMatcher_WithManufacturer_m160DD6B5020CF757C8CEF2C61525F66D981509BB (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, String_t* ___pattern0, bool ___supportRegex1, const RuntimeMethod* method); // UnityEngine.InputSystem.Layouts.InputDeviceMatcher UnityEngine.InputSystem.Layouts.InputDeviceMatcher::WithProduct(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 InputDeviceMatcher_WithProduct_mF03FC23FA705A82946CA53E6667CBCD46055420C (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, String_t* ___pattern0, bool ___supportRegex1, const RuntimeMethod* method); // UnityEngine.InputSystem.Layouts.InputDeviceMatcher UnityEngine.InputSystem.Layouts.InputDeviceMatcher::WithVersion(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 InputDeviceMatcher_WithVersion_m64968A69BE8C80ADF2C964AC32415D166620E48A (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, String_t* ___pattern0, bool ___supportRegex1, const RuntimeMethod* method); // System.Void System.Func`2::.ctor(System.Object,System.IntPtr) inline void Func_2__ctor_m2025FBDB42EB2B4162FA2F3E59FFD25C2BC4A547 (Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_m2025FBDB42EB2B4162FA2F3E59FFD25C2BC4A547_gshared)(__this, ___object0, ___method1, method); } // System.Boolean System.Linq.Enumerable::All(System.Collections.Generic.IEnumerable`1,System.Func`2) inline bool Enumerable_All_TisChar_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_m1433F8CC63C937857531DD2FBB1D8FC8636A0D39 (RuntimeObject* ___source0, Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A * ___predicate1, const RuntimeMethod* method) { return (( bool (*) (RuntimeObject*, Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A *, const RuntimeMethod*))Enumerable_All_TisChar_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_m1433F8CC63C937857531DD2FBB1D8FC8636A0D39_gshared)(___source0, ___predicate1, method); } // System.Boolean System.Double::TryParse(System.String,System.Double&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_TryParse_m08AC1636E130EC17A72B03D3E21093AE670AD01A (String_t* ___s0, double* ___result1, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.Regex::.ctor(System.String,System.Text.RegularExpressions.RegexOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex__ctor_m5BA9C047FEB3C93AD388668FA855CB1A63FB62A4 (Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * __this, String_t* ___pattern0, int32_t ___options1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2::.ctor(!0,!1) inline void KeyValuePair_2__ctor_m8E414081CDF840B7B266F15373BE120B33CF8AA7 (KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 *, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED , RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m8E414081CDF840B7B266F15373BE120B33CF8AA7_gshared)(__this, ___key0, ___value1, method); } // System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::Append>(TValue[]&,TValue) inline int32_t ArrayHelpers_Append_TisKeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521_m873B3C7D90D52301893F6EF2DC4A8389D1441A20 (KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105** ___array0, KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 ___value1, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105**, KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 , const RuntimeMethod*))ArrayHelpers_Append_TisKeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521_m873B3C7D90D52301893F6EF2DC4A8389D1441A20_gshared)(___array0, ___value1, method); } // !0 System.Collections.Generic.KeyValuePair`2::get_Key() inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED KeyValuePair_2_get_Key_mFBEEBA1D831EB554874C88B7A45536B9AB7229A8_inline (KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 * __this, const RuntimeMethod* method) { return (( InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED (*) (KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 *, const RuntimeMethod*))KeyValuePair_2_get_Key_mFBEEBA1D831EB554874C88B7A45536B9AB7229A8_gshared_inline)(__this, method); } // !1 System.Collections.Generic.KeyValuePair`2::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_m391CC747109CAE22FD143AF7520A2C133612D28D_inline (KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m391CC747109CAE22FD143AF7520A2C133612D28D_gshared_inline)(__this, method); } // System.Boolean UnityEngine.InputSystem.Utilities.InternedString::op_Equality(UnityEngine.InputSystem.Utilities.InternedString,UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternedString_op_Equality_m0D791451F3BDC84D2EBA0F98EA847F781D1F4FA0 (InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___a0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___b1, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.Layouts.InputDeviceMatcher::MatchSingleProperty(System.Object,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDeviceMatcher_MatchSingleProperty_m002C705E908A31333E0CEBF8F8BEBB108482F3B3 (RuntimeObject * ___pattern0, String_t* ___value1, const RuntimeMethod* method); // System.String UnityEngine.InputSystem.Utilities.InternedString::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InternedString_ToString_m1C5D47E8AB1F840D23F79E06D6F27BF6AAFD1D39 (InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Layouts.InputDeviceMatcher::GetNumPropertiesIn(UnityEngine.InputSystem.Layouts.InputDeviceDescription) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputDeviceMatcher_GetNumPropertiesIn_m64E3F5A3F616048F387BC93B2E1D0662127953D5 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___description0, const RuntimeMethod* method); // System.Single UnityEngine.InputSystem.Layouts.InputDeviceMatcher::MatchPercentage(UnityEngine.InputSystem.Layouts.InputDeviceDescription) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float InputDeviceMatcher_MatchPercentage_m68081E99E1CCD963DEB980EB439BECAB338A62FB (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___deviceDescription0, const RuntimeMethod* method); // System.Int32 System.String::Compare(System.String,System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_Compare_m573A1F97B15F82C9AC7DC0BB1B381EEDCD2759CD (String_t* ___strA0, String_t* ___strB1, int32_t ___comparisonType2, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.Regex::IsMatch(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_IsMatch_m872C1D85AC5BF891AC3C3FC789BBC4E2393FB859 (Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * __this, String_t* ___input0, const RuntimeMethod* method); // System.String System.String::Format(System.String,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m8464C6DD7299114954DA87FC39FCD129F3E2ACA2 (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, const RuntimeMethod* method); // System.String UnityEngine.InputSystem.Layouts.InputDeviceMatcher::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputDeviceMatcher_ToString_mBE3962AE750FB77A267874F06C7E2D11380F682E (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.Utilities.InternedString::op_Inequality(UnityEngine.InputSystem.Utilities.InternedString,UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternedString_op_Inequality_mFCB6E922167245A53F016079F13B8A0E6FBC1D98 (InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___a0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___b1, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.Layouts.InputDeviceMatcher::Equals(UnityEngine.InputSystem.Layouts.InputDeviceMatcher) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDeviceMatcher_Equals_m7A5021DE365960F7B3D71EBCDD5B86616D17B265 (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 ___other0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.Layouts.InputDeviceMatcher::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDeviceMatcher_Equals_mB0D180AAA89A06F15C11A1AE48AD9D9C60F122A1 (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.Layouts.InputDeviceMatcher::op_Equality(UnityEngine.InputSystem.Layouts.InputDeviceMatcher,UnityEngine.InputSystem.Layouts.InputDeviceMatcher) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDeviceMatcher_op_Equality_mD30E8E62792C252415D21EB68E0267E481A155D3 (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 ___left0, InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 ___right1, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Layouts.InputDeviceMatcher::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputDeviceMatcher_GetHashCode_m53D52AF1599ADACD9275497105EEA4ABF935958F (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.InternedString::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternedString__ctor_mE81A2A4EA05081A96717682ACF38746482E3CF62 (InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * __this, String_t* ___text0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.FourCC::.ctor(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FourCC__ctor_m95DEC137F55FF2E882FA66486D5937072FA2888E_inline (FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * __this, int32_t ___code0, const RuntimeMethod* method); // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEvent::get_type() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 InputEvent_get_type_mF27E6FB5A23D3E5AA01386213E9E5248CDC27993 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.FourCC::op_Implicit(UnityEngine.InputSystem.Utilities.FourCC) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t FourCC_op_Implicit_m31DD5572C70000C1AA4A97915EB6A7C165C53DFA_inline (FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___fourCC0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_type(UnityEngine.InputSystem.Utilities.FourCC) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_type_mA59021B1AC85CEA52E1DB983D42FB3E01F6D8233 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___value0, const RuntimeMethod* method); // System.UInt32 UnityEngine.InputSystem.LowLevel.InputEvent::get_sizeInBytes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEvent_get_sizeInBytes_mFF08EC52AAEB650D04AFFFA2CDCEDECBC6DB0B59 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, const RuntimeMethod* method); // System.String System.UInt16::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt16_ToString_mCD21CDBE273387A21683B6C00EF5EBEEFF7A8F6D (uint16_t* __this, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_sizeInBytes(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_sizeInBytes_m9352C705F40BF3648701BFCAAF3C202C8462EA99 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, uint32_t ___value0, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.LowLevel.InputEvent::get_eventId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEvent_get_eventId_m4F06A9EDDDED1926D8A9F4FA4C77AC26F4F7163B (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_eventId(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_eventId_m14193345A631832F1933EC51A08F622E432B7385 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, int32_t ___value0, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.LowLevel.InputEvent::get_deviceId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEvent_get_deviceId_mC5FAD8D65885CC6B1312EB516AA58917FD69BE1F (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_deviceId(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_deviceId_m7B19E7F9572351E200808B688AD1D3BD192D966C (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, int32_t ___value0, const RuntimeMethod* method); // System.Double UnityEngine.InputSystem.LowLevel.InputEvent::get_time() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputEvent_get_time_m49DD96331359ADA906F4CA867991D58F1278CE02 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_time(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_time_m026DE5343264E144044FB92A15264BDCDF79B962 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, double ___value0, const RuntimeMethod* method); // System.Double UnityEngine.InputSystem.LowLevel.InputEvent::get_internalTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputEvent_get_internalTime_mCBF9589869296BDD0EE4093C6F3B2B359BA25BB6 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_internalTime(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_internalTime_mFA42266AFBEC1496D72489EAD34D459D32DA751A (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, double ___value0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEvent::.ctor(UnityEngine.InputSystem.Utilities.FourCC,System.Int32,System.Int32,System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent__ctor_mAA991FC4DC45EBDC8E3931FE011918B60EF31E52 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___type0, int32_t ___sizeInBytes1, int32_t ___deviceId2, double ___time3, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.LowLevel.InputEvent::get_handled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEvent_get_handled_m99F98A3B1E3678E4EFD0B6893916F315A027E151 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_handled(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_handled_m4B9B0F6A38E59907F18BFC1AB1CC2CB41C6A9FE1 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, bool ___value0, const RuntimeMethod* method); // System.String System.String::Format(System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m2CDD2A21AF2BCE3CE07D634645F9A61B4CB7D9B3 (String_t* ___format0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args1, const RuntimeMethod* method); // System.String UnityEngine.InputSystem.LowLevel.InputEvent::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputEvent_ToString_m1FC17A5176EAB237A89AB58EC35F690BD0838FE3 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, const RuntimeMethod* method); // System.UInt32 UnityEngine.InputSystem.Utilities.NumberHelpers::AlignToMultipleOf(System.UInt32,System.UInt32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t NumberHelpers_AlignToMultipleOf_mAC36042E2A9F764DF404617DB262C5FB611212E7_inline (uint32_t ___number0, uint32_t ___alignment1, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventBuffer::Contains(UnityEngine.InputSystem.LowLevel.InputEvent*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventBuffer_Contains_m3864E58540B137C12FF34860C5B863A9C2DA8BE1 (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventPtr::.ctor(UnityEngine.InputSystem.LowLevel.InputEvent*) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputEventPtr__ctor_m9EBF5134C7CC18F85542C146674EAE1BF7F29110_inline (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr0, const RuntimeMethod* method); // System.Int64 UnityEngine.InputSystem.LowLevel.InputEventBuffer::get_sizeInBytes() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t InputEventBuffer_get_sizeInBytes_m026FE298C8E6BD5A6354CF22445743E108EBB338_inline (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method); // System.Void System.InvalidOperationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * __this, String_t* ___message0, const RuntimeMethod* method); // System.Int32 Unity.Collections.LowLevel.Unsafe.UnsafeUtility::MemCmp(System.Void*,System.Void*,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnsafeUtility_MemCmp_m93F78B937CB38E084CDC1DE811753E6D0F3841C1 (void* ___ptr10, void* ___ptr21, int64_t ___size2, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventBuffer::get_eventCount() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputEventBuffer_get_eventCount_m50712505E0393BA3A20563E64DAA7A6D75854E3F_inline (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method); // System.Boolean Unity.Collections.NativeArray`1::get_IsCreated() inline bool NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * __this, const RuntimeMethod* method) { return (( bool (*) (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *, const RuntimeMethod*))NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_gshared)(__this, method); } // System.Int64 UnityEngine.InputSystem.LowLevel.InputEventBuffer::get_capacityInBytes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputEventBuffer_get_capacityInBytes_mCB4AF5BB207035D9FAF526A7861CA72B246B9C26 (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1 UnityEngine.InputSystem.LowLevel.InputEventBuffer::get_data() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 InputEventBuffer_get_data_m5E230CE9CC093445705ED34CDA93AF7527AF945B_inline (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method); // System.Void* Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::GetUnsafeBufferPointerWithoutChecks(Unity.Collections.NativeArray`1) inline void* NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8 (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___nativeArray0, const RuntimeMethod* method) { return (( void* (*) (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 , const RuntimeMethod*))NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8_gshared)(___nativeArray0, method); } // UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.InputEventPtr::op_Implicit(UnityEngine.InputSystem.LowLevel.InputEvent*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 InputEventPtr_op_Implicit_m929BCCB27CE3B2C2BD9B2C43E49FDCB1F2933AB5 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr0, const RuntimeMethod* method); // UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.InputEventBuffer::get_bufferPtr() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 InputEventBuffer_get_bufferPtr_mBDF4C8B45E48FB47151E8934BC2236E66BB5745E (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method); // Unity.Collections.NativeArray`1 Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray(System.Void*,System.Int32,Unity.Collections.Allocator) inline NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m5716D1B129F1FA995C8917D06C0FB2793750A78B (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method) { return (( NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 (*) (void*, int32_t, int32_t, const RuntimeMethod*))NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m5716D1B129F1FA995C8917D06C0FB2793750A78B_gshared)(___dataPointer0, ___length1, ___allocator2, method); } // System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer::.ctor(UnityEngine.InputSystem.LowLevel.InputEvent*,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer__ctor_mD809489C60E9A3C3CE02EAD34FF604C7C6D73348 (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr0, int32_t ___eventCount1, int32_t ___sizeInBytes2, int32_t ___capacityInBytes3, const RuntimeMethod* method); // System.Void System.ArgumentOutOfRangeException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer::.ctor(Unity.Collections.NativeArray`1,System.Int32,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer__ctor_mE4713C79D8E11BFC1FD1E4F696F35C9E05EA5187 (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___buffer0, int32_t ___eventCount1, int32_t ___sizeInBytes2, bool ___transferNativeArrayOwnership3, const RuntimeMethod* method); // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventBuffer::AllocateEvent(System.Int32,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEventBuffer_AllocateEvent_m6B00F1F2E19EC9A1DA3F76CE0DBC5F1A825C1FAE (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, int32_t ___sizeInBytes0, int32_t ___capacityIncrementInBytes1, int32_t ___allocator2, const RuntimeMethod* method); // System.Void Unity.Collections.LowLevel.Unsafe.UnsafeUtility::MemCpy(System.Void*,System.Void*,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeUtility_MemCpy_mA8E186A63FE9CE463F95E5C5FF1C5F1B4E84F90E (void* ___destination0, void* ___source1, int64_t ___size2, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer::AppendEvent(UnityEngine.InputSystem.LowLevel.InputEvent*,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer_AppendEvent_mB2227FAC7CF7C32E2FF8ED9925AEC7EBB0BE853A (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr0, int32_t ___capacityIncrementInBytes1, int32_t ___allocator2, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.NumberHelpers::AlignToMultipleOf(System.Int32,System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t NumberHelpers_AlignToMultipleOf_mA69DF1D1D4E850C2DFF4D3FE946ED65D9C4615DD_inline (int32_t ___number0, int32_t ___alignment1, const RuntimeMethod* method); // System.Int64 UnityEngine.InputSystem.Utilities.NumberHelpers::AlignToMultipleOf(System.Int64,System.Int64) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t NumberHelpers_AlignToMultipleOf_mCF19A2B038F76E002BF488B659ED1A54778E0645_inline (int64_t ___number0, int64_t ___alignment1, const RuntimeMethod* method); // System.Void System.NotImplementedException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotImplementedException__ctor_m8A9AA4499614A5BC57DD21713D0720630C130AEB (NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void Unity.Collections.NativeArray`1::Dispose() inline void NativeArray_1_Dispose_mD88EDF062EFB4B0E6C8F925B5A4E47E97E687342 (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * __this, const RuntimeMethod* method) { (( void (*) (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *, const RuntimeMethod*))NativeArray_1_Dispose_mD88EDF062EFB4B0E6C8F925B5A4E47E97E687342_gshared)(__this, method); } // System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer_Reset_m35B27C04062C1C9C0B61207995552DC7DE57037C (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEvent::GetNextInMemory(UnityEngine.InputSystem.LowLevel.InputEvent*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEvent_GetNextInMemory_m482607ACC1E6EAA665FE89A2FD8B6448FD4701BD (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___currentPtr0, const RuntimeMethod* method); // System.Void Unity.Collections.LowLevel.Unsafe.UnsafeUtility::MemMove(System.Void*,System.Void*,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeUtility_MemMove_m6C12AB5CCB2F11C9448F5F02ECD33F9E2E809395 (void* ___destination0, void* ___source1, int64_t ___size2, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer::AdvanceToNextEvent(UnityEngine.InputSystem.LowLevel.InputEvent*&,UnityEngine.InputSystem.LowLevel.InputEvent*&,System.Int32&,System.Int32&,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer_AdvanceToNextEvent_m6BE416396F5A67F25CAB5BC34875E968ED894087 (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** ___currentReadPos0, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** ___currentWritePos1, int32_t* ___numEventsRetainedInBuffer2, int32_t* ___numRemainingEvents3, bool ___leaveEventInBuffer4, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::.ctor(UnityEngine.InputSystem.LowLevel.InputEventBuffer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mF2B9238CD99A84FC6EC1199461832FC9BC4077F3 (Enumerator_tD8A07122686F8093CC59FC43AE479C73D2B32313 * __this, InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA ___buffer0, const RuntimeMethod* method); // System.Collections.Generic.IEnumerator`1 UnityEngine.InputSystem.LowLevel.InputEventBuffer::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventBuffer_GetEnumerator_m0C449DB54FA0569AC9103F2A790D41D9EF5A6D63 (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method); // System.Collections.IEnumerator UnityEngine.InputSystem.LowLevel.InputEventBuffer::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventBuffer_System_Collections_IEnumerable_GetEnumerator_m7FD839859C71BA604A5EDE6BA9530260F6B9E842 (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer_Dispose_mE775668BD216C49FC5BA6F8DCED3600CFF7A6C66 (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method); // System.Void Unity.Collections.NativeArray`1::CopyFrom(Unity.Collections.NativeArray`1) inline void NativeArray_1_CopyFrom_m14EBE56AB030E8DB4B1FC018F936A1E062FD7870 (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * __this, NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___array0, const RuntimeMethod* method) { (( void (*) (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *, NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 , const RuntimeMethod*))NativeArray_1_CopyFrom_m14EBE56AB030E8DB4B1FC018F936A1E062FD7870_gshared)(__this, ___array0, method); } // UnityEngine.InputSystem.LowLevel.InputEventBuffer UnityEngine.InputSystem.LowLevel.InputEventBuffer::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA InputEventBuffer_Clone_mBF9DE5266B0A168D4FA53E8B722AF0E50A5C5D7F (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method); // System.Object UnityEngine.InputSystem.LowLevel.InputEventBuffer::System.ICloneable.Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InputEventBuffer_System_ICloneable_Clone_m92DD332780FE975B1AB1F88F51F32785D3906DEE (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method); // System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_m588C16057E70F436C528A800D32546E987CAF1BD (RuntimeObject * ___obj0, bool* ___lockTaken1, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::add_onEvent(System.Action`2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_add_onEvent_mB129956D2C9545F5693CD26AB5A6E206752F3B1B (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * ___value0, const RuntimeMethod* method); // System.Void System.Threading.Monitor::Exit(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m62365CE1CF6AD0E7396CEEB926F7B0C3FA8CABA1 (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::remove_onEvent(System.Action`2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_remove_onEvent_m15293542B21C67863F4A0AD7FD510E6946BC39EE (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * ___value0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventListener/ObserverState::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObserverState__ctor_mA92E04561FF3EA8C8379C6AB99AFDD485677827E (ObserverState_t25A763CEA3E3A65975BE34C371224BCAC14681A8 * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1>::AppendWithCapacity(TValue,System.Int32) inline int32_t InlinedArray_1_AppendWithCapacity_mB4EC1324E421F4F6478549E7CE106DBE8B9FC3E7 (InlinedArray_1_t13A70E27E7343557A3762B3A0536C9EC58637950 * __this, RuntimeObject* ___value0, int32_t ___capacityIncrement1, const RuntimeMethod* method) { return (( int32_t (*) (InlinedArray_1_t13A70E27E7343557A3762B3A0536C9EC58637950 *, RuntimeObject*, int32_t, const RuntimeMethod*))InlinedArray_1_AppendWithCapacity_m0C86F87C50FF2F8AE32773D2827F85AEFA75B0B7_gshared)(__this, ___value0, ___capacityIncrement1, method); } // System.Void UnityEngine.InputSystem.LowLevel.InputEventListener/DisposableObserver::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DisposableObserver__ctor_m14361AE51E787BAC329B9F3EBE5A848AB06E7FD1 (DisposableObserver_t3EA358A188D2946104E227EC7510A1247577761E * __this, const RuntimeMethod* method); // System.IDisposable UnityEngine.InputSystem.LowLevel.InputEventListener::Subscribe(System.IObserver`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventListener_Subscribe_mD8081FB49E99DAF2FE5921B2B899F24A9E275A26 (InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917 * __this, RuntimeObject* ___observer0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::get_valid() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_get_valid_m89FC8685702EDBBB434A0576EED219CA4BF0630C (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::get_handled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_get_handled_m7D3DE6A9CC2CB8101B36FA35CFC5D1B1DBFB02E9 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventPtr::set_handled(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_handled_mDBBEF41220F96FEAD529994EE8615A3F23640A2A (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, bool ___value0, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventPtr::get_id() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventPtr_get_id_mF1FFF080C017FDE5A482DF76116129D427B9EEC8 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventPtr::set_id(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_id_mEEEAB75867CF17917ED10E499188C92389CEF1AC (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, int32_t ___value0, const RuntimeMethod* method); // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEventPtr::get_type() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 InputEventPtr_get_type_mC6EF58B6562D5B232170DC64DC0F1A99FE996BD2 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method); // System.UInt32 UnityEngine.InputSystem.LowLevel.InputEventPtr::get_sizeInBytes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEventPtr_get_sizeInBytes_m4607C53C6A41A6BE5238609D7C1E4A2C169D5712 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventPtr::get_deviceId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventPtr_get_deviceId_m1FECADA1BAB8F96780A21A5B374C96D9FC2A9109 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventPtr::set_deviceId(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_deviceId_m6B7CD11430FABB07A8DD7A04C184CDE870B41F34 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, int32_t ___value0, const RuntimeMethod* method); // System.Double UnityEngine.InputSystem.LowLevel.InputEventPtr::get_time() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputEventPtr_get_time_m18E988668C6CE181A0054541214F371A53387F89 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventPtr::set_time(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_time_m6A4F813044110C164AC571CADE60ED7623A98710 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, double ___value0, const RuntimeMethod* method); // System.Double UnityEngine.InputSystem.LowLevel.InputEventPtr::get_internalTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputEventPtr_get_internalTime_m2EB7E0D18A1C720BCCC17363F5FEA88DD482A067 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventPtr::set_internalTime(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_internalTime_mD17903386D19A7B1232C00AD60E5C37C9C9CC53D (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, double ___value0, const RuntimeMethod* method); // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventPtr::get_data() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEventPtr_get_data_m23324B1E4068E48168D6D06CEF9CC061D1E2D694_inline (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.Utilities.FourCC::op_Implicit(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 FourCC_op_Implicit_m1EF35613D75316DA0F135114B72093EBB3D04356 (int32_t ___i0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.Utilities.FourCC::op_Equality(UnityEngine.InputSystem.Utilities.FourCC,UnityEngine.InputSystem.Utilities.FourCC) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FourCC_op_Equality_mF8F9867D06AB0FE50CBB895EE0A1F5CEA211CF7C (FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___left0, FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___right1, const RuntimeMethod* method); // UnityEngine.InputSystem.LowLevel.StateEvent* UnityEngine.InputSystem.LowLevel.StateEvent::FromUnchecked(UnityEngine.InputSystem.LowLevel.InputEventPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 * StateEvent_FromUnchecked_mBA1C200CACC998DEA3063B300C6B93EAF7E71DD1 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___ptr0, const RuntimeMethod* method); // UnityEngine.InputSystem.LowLevel.DeltaStateEvent* UnityEngine.InputSystem.LowLevel.DeltaStateEvent::FromUnchecked(UnityEngine.InputSystem.LowLevel.InputEventPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4 * DeltaStateEvent_FromUnchecked_m12565448560ACE283BD588A131E71A6E85F74F3C (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___ptr0, const RuntimeMethod* method); // System.String UnityEngine.InputSystem.LowLevel.InputEventPtr::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputEventPtr_ToString_mCAF5502A72B493AB20F889565AEA45814B8F05FF (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEventPtr::get_stateFormat() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 InputEventPtr_get_stateFormat_m7E15CDB67CA516425CED0D1CA7799EC65D2FD889 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::IsA() inline bool InputEventPtr_IsA_TisStateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3_m91EF69757639C51EDFCFAFA88EE04CE0D6C1795E (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method) { return (( bool (*) (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *, const RuntimeMethod*))InputEventPtr_IsA_TisStateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3_m91EF69757639C51EDFCFAFA88EE04CE0D6C1795E_gshared)(__this, method); } // UnityEngine.InputSystem.LowLevel.StateEvent* UnityEngine.InputSystem.LowLevel.StateEvent::From(UnityEngine.InputSystem.LowLevel.InputEventPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 * StateEvent_From_m65D0068AF13678DC33ED0A4B2B83B352417D8FE3 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___ptr0, const RuntimeMethod* method); // System.UInt32 UnityEngine.InputSystem.LowLevel.StateEvent::get_stateSizeInBytes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t StateEvent_get_stateSizeInBytes_mF7D46CB26D7C0793ED3C699357F315102093EE65 (StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::IsA() inline bool InputEventPtr_IsA_TisDeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4_m52B5875F2EACBC85E22AF1807227E9A2C83FEC3E (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method) { return (( bool (*) (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *, const RuntimeMethod*))InputEventPtr_IsA_TisDeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4_m52B5875F2EACBC85E22AF1807227E9A2C83FEC3E_gshared)(__this, method); } // UnityEngine.InputSystem.LowLevel.DeltaStateEvent* UnityEngine.InputSystem.LowLevel.DeltaStateEvent::From(UnityEngine.InputSystem.LowLevel.InputEventPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4 * DeltaStateEvent_From_mDC9F1D5AE9419F8193F22CD34C8B6E26DF466F5D (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___ptr0, const RuntimeMethod* method); // System.UInt32 UnityEngine.InputSystem.LowLevel.DeltaStateEvent::get_deltaStateSizeInBytes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t DeltaStateEvent_get_deltaStateSizeInBytes_m9BED7AD9113828078EFB6E9271AC74055964782E (DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4 * __this, const RuntimeMethod* method); // System.UInt32 UnityEngine.InputSystem.LowLevel.InputEventPtr::get_stateSizeInBytes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEventPtr_get_stateSizeInBytes_m686622EC45E20A90321F176DC7F54B9EE9E89383 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method); // System.UInt32 UnityEngine.InputSystem.LowLevel.InputEventPtr::get_stateOffset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEventPtr_get_stateOffset_mD9A4DE9CBDA45CABC3D351B14C6C4F1945E5D454 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.InputEventPtr::Next() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 InputEventPtr_Next_m580A3672177EA9ECAE635D02199927FCE695314A (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventPtr::op_Implicit(UnityEngine.InputSystem.LowLevel.InputEventPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEventPtr_op_Implicit_m25CA03BF945CB766E6C8A09310269C70F9D0C948 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___eventPtr0, const RuntimeMethod* method); // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventPtr::ToPointer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEventPtr_ToPointer_m77A71EEA1470411DE1C2B75013E4A6CDC7B52DCE (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.LowLevel.InputEvent::Equals(UnityEngine.InputSystem.LowLevel.InputEvent*,UnityEngine.InputSystem.LowLevel.InputEvent*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEvent_Equals_mA337199C1F606CDF6718583BC23AA44338A95F59 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___first0, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___second1, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::Equals(UnityEngine.InputSystem.LowLevel.InputEventPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_Equals_m53A0B79ABDAAE8948582372DF97D0979645B3981 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___other0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_Equals_m1ABB7FA63E0C439A2C71E6429BBBE6C8A7F64D69 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventPtr::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventPtr_GetHashCode_mC1E252431B9F88707B6F406C51168F5305C2A63A (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventStream::get_isOpen() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool InputEventStream_get_isOpen_m6813A58E116448D4957B213FA9FD7DAA57D7B8D4_inline (InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventStream::get_remainingEventCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventStream_get_remainingEventCount_m98087A7B74629FA5F8AB30407DB696ECE81E6FF8 (InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventStream::get_numEventsRetainedInBuffer() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputEventStream_get_numEventsRetainedInBuffer_m183F6D823B00E4613353548D7D202D4610EC15F2_inline (InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventStream::get_currentEventPtr() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEventStream_get_currentEventPtr_mF9ED21A01A006896DAC0BE4C2D42A36B21D4EEA9 (InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * __this, const RuntimeMethod* method); // System.UInt32 UnityEngine.InputSystem.LowLevel.InputEventStream::get_numBytesRetainedInBuffer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEventStream_get_numBytesRetainedInBuffer_m5E61D211BE3193A40CE467314BB9A4CB1045AEB7 (InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventStream::.ctor(UnityEngine.InputSystem.LowLevel.InputEventBuffer&,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventStream__ctor_mD3D449973BC57E65CE6DE268E1C039309B77551B (InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * __this, InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * ___eventBuffer0, int32_t ___maxAppendedEvents1, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventStream::Close(UnityEngine.InputSystem.LowLevel.InputEventBuffer&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventStream_Close_m65AFA3054D6B4D2BA6E59C7734482052BD9D3FAE (InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * __this, InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * ___eventBuffer0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventStream::CleanUpAfterException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventStream_CleanUpAfterException_mD1220F4B41B9B5A6829DBE71367EBA7A21311CD2 (InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * __this, const RuntimeMethod* method); // System.String System.String::Format(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m5A16F3ABC59A3E9804E0CB2636849CCD74CEC994 (String_t* ___format0, RuntimeObject * ___arg01, const RuntimeMethod* method); // System.Void UnityEngine.Debug::LogError(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogError_m5952BCE5DC0EF798B31FA983B9CE42A5A1F82DE1 (RuntimeObject * ___message0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventStream::Write(UnityEngine.InputSystem.LowLevel.InputEvent*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventStream_Write_mE21DBB2F56BCAD00DC2D2BE5939FCE874206C109 (InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * __this, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr0, const RuntimeMethod* method); // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventStream::Advance(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEventStream_Advance_mA16875BDE0A84FFD19DB0062B34DA4058350565C (InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * __this, bool ___leaveEventInBuffer0, const RuntimeMethod* method); // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventStream::Peek() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEventStream_Peek_mDD6536C4D3F1493B36020E3BE841F30A95236A16 (InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.FourCC::.ctor(System.Char,System.Char,System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FourCC__ctor_mEF52BABF36FD0F6E63A5CD7C1520AEFDAC9FCC14 (FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * __this, Il2CppChar ___a0, Il2CppChar ___b1, Il2CppChar ___c2, Il2CppChar ___d3, const RuntimeMethod* method); // System.Void System.Action::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action__ctor_m07BE5EE8A629FBBA52AE6356D57A0D371BE2574B (Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputSystem::add_onBeforeUpdate(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_add_onBeforeUpdate_mB645C0A7F83346EE7D7ABC85F89BEAEF702FCDDD (Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___value0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputSystem::remove_onBeforeUpdate(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_remove_onBeforeUpdate_m90DF65A6301BBAE1D0FC4689D412598155AF6DBE (Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___value0, const RuntimeMethod* method); // System.Byte* UnityEngine.InputSystem.LowLevel.InputEventTrace::get_m_EventBuffer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::op_Implicit(TValue[]) inline ReadOnlyArray_1_tB0C672A35D9507319B5BF448296839F3F3BAF078 ReadOnlyArray_1_op_Implicit_mA7B6FD4501EAC9196BB0A451EC4835363B7E5C70 (DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81* ___array0, const RuntimeMethod* method) { return (( ReadOnlyArray_1_tB0C672A35D9507319B5BF448296839F3F3BAF078 (*) (DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81*, const RuntimeMethod*))ReadOnlyArray_1_op_Implicit_mA7B6FD4501EAC9196BB0A451EC4835363B7E5C70_gshared)(___array0, method); } // System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1>::AddCallback(TDelegate) inline void CallbackArray_1_AddCallback_m18089655DC703FDDC127E3DAD49DF62E10D369E6 (CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008 * __this, Action_1_t231F2AF856D3317D1380298224A60D02F9F43072 * ___dlg0, const RuntimeMethod* method) { (( void (*) (CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008 *, Action_1_t231F2AF856D3317D1380298224A60D02F9F43072 *, const RuntimeMethod*))CallbackArray_1_AddCallback_m557746816FBD33431579BB7E030EDEE997973504_gshared)(__this, ___dlg0, method); } // System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1>::RemoveCallback(TDelegate) inline void CallbackArray_1_RemoveCallback_m9E56B372129F9C558893BD6A2CE2139EF23C9F71 (CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008 * __this, Action_1_t231F2AF856D3317D1380298224A60D02F9F43072 * ___dlg0, const RuntimeMethod* method) { (( void (*) (CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008 *, Action_1_t231F2AF856D3317D1380298224A60D02F9F43072 *, const RuntimeMethod*))CallbackArray_1_RemoveCallback_mAB8E31257637236DDE157A2FBFACF3A3BFFF446E_gshared)(__this, ___dlg0, method); } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::.ctor(System.Int64,System.Boolean,System.Int64,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace__ctor_mE55684093A028B8CF27A782B4427C952718BF6D9 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, int64_t ___bufferSizeInBytes0, bool ___growBuffer1, int64_t ___maxBufferSizeInBytes2, int64_t ___growIncrementSizeInBytes3, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.InputDevice::get_deviceId() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputDevice_get_deviceId_mDDE1531F7B9A1E03B17094C7AC37E58177E4AA0D_inline (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // System.Void System.Object::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405 (RuntimeObject * __this, const RuntimeMethod* method); // System.IO.FileStream System.IO.File::OpenWrite(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 * File_OpenWrite_m2A4F40A23C3BB7E97563E93D7C7A6D1C10C266C9 (String_t* ___path0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::WriteTo(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_WriteTo_m972A3D422439BDAC6ED445DCEB2422C05111D73F (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, const RuntimeMethod* method); // System.Void System.IO.BinaryWriter::.ctor(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter__ctor_mC6F89939E04734FBEEA375D7E0FF9C042E4AB71A (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___output0, const RuntimeMethod* method); // UnityEngine.InputSystem.InputSettings UnityEngine.InputSystem.InputSystem::get_settings() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * InputSystem_get_settings_mA42EFB90BC81DD4A8E7C5B069395915157571ED8 (const RuntimeMethod* method); // UnityEngine.InputSystem.InputSettings/UpdateMode UnityEngine.InputSystem.InputSettings::get_updateMode() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputSettings_get_updateMode_m139C9F1C6191E7C6209426D23BEE5C5816AC7280_inline (InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEventTrace::get_kFileFormat() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 InputEventTrace_get_kFileFormat_mB181CCDEF3644A0EA1F4A8EC41CD203D3631B20F (const RuntimeMethod* method); // UnityEngine.RuntimePlatform UnityEngine.Application::get_platform() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Application_get_platform_mAD6C941E38459EFF017EC446E2E5EFB7CDD36EE4 (const RuntimeMethod* method); // System.Collections.Generic.IEnumerator`1 UnityEngine.InputSystem.LowLevel.InputEventTrace::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventTrace_GetEnumerator_m40F307BD45D94C5ADFFD90C048A13215B85828AD (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::LengthSafe(TValue[]) inline int32_t ArrayHelpers_LengthSafe_TisDeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F_m5289263AC46EB098266066A629B4B9F951B8A3F3 (DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81* ___array0, const RuntimeMethod* method) { return (( int32_t (*) (DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81*, const RuntimeMethod*))ArrayHelpers_LengthSafe_TisDeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F_m5289263AC46EB098266066A629B4B9F951B8A3F3_gshared)(___array0, method); } // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::get_deviceId() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DeviceInfo_get_deviceId_m4CA1031F6F24EFD5C78EB7B05EAEDAB926FEC3B0_inline (DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * __this, const RuntimeMethod* method); // System.String UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::get_layout() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* DeviceInfo_get_layout_m3109AA525FB0E7DE59C7ADF62E85D35D8FC5A76F_inline (DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::get_stateFormat() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 DeviceInfo_get_stateFormat_m1B94E3D7F14F239074C2D0208F79BFEB7FBFC6BA_inline (DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::get_stateSizeInBytes() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DeviceInfo_get_stateSizeInBytes_mD3FB033842B290EF701D2CC5E5553B07D0223B9B_inline (DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * __this, const RuntimeMethod* method); // System.IO.FileStream System.IO.File::OpenRead(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 * File_OpenRead_m8911FD2375633548F8443CD2F0C9C3E4819474DA (String_t* ___path0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::ReadFrom(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_ReadFrom_m98E4BABCB5F0BA8E173D7FB11DCDF1DFD4FC81DD (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, const RuntimeMethod* method); // System.Void System.IO.BinaryReader::.ctor(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryReader__ctor_m8D2F966D44EF5BD30D54D94653A831EFDB9C6A60 (BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___input0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.Utilities.FourCC::op_Inequality(UnityEngine.InputSystem.Utilities.FourCC,UnityEngine.InputSystem.Utilities.FourCC) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FourCC_op_Inequality_m1E781CB491ABFCA16991EF6F695C559068406232 (FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___left0, FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___right1, const RuntimeMethod* method); // System.Void System.IO.IOException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOException__ctor_m208E01C02FF2C1D6C5AA661A5816C744804E1690 (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void* Unity.Collections.LowLevel.Unsafe.UnsafeUtility::Malloc(System.Int64,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* UnsafeUtility_Malloc_m540451750CEC21D0DEEE8C42ED25AE9B623E2BAE (int64_t ___size0, int32_t ___alignment1, int32_t ___allocator2, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::set_deviceId(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DeviceInfo_set_deviceId_mFE9C7FEFFBEE3349620D5143B15A30E2D5B08534_inline (DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::set_layout(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DeviceInfo_set_layout_m0262E41ECF890B2E0C124864F9E0D13929FCC8CF_inline (DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * __this, String_t* ___value0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::set_stateFormat(UnityEngine.InputSystem.Utilities.FourCC) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DeviceInfo_set_stateFormat_m5D4E48D9F02EF684A946AD61A8F214D87D9FF82C_inline (DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * __this, FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___value0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::set_stateSizeInBytes(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DeviceInfo_set_stateSizeInBytes_m467A04204331C39AF96CF6E4753FFAB4460F6470_inline (DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::set_m_EventBuffer(System.Byte*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_m_EventBuffer_m9B6305E95ECC12E9B5B811D6B1883891A807BFF0 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, uint8_t* ___value0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::set_m_EventBufferHead(System.Byte*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_m_EventBufferHead_mF322FFA85D9962A39F70E91855F5BD4FAEC15785 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, uint8_t* ___value0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::set_m_EventBufferTail(System.Byte*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_m_EventBufferTail_m34E44F7D85F4EA4DF45B7EAB71F0DCDBB262E166 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, uint8_t* ___value0, const RuntimeMethod* method); // System.Void Unity.Collections.LowLevel.Unsafe.UnsafeUtility::Free(System.Void*,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeUtility_Free_mBC2D8A194E2E34662D81ACF759610790010D5919 (void* ___memory0, int32_t ___allocator1, const RuntimeMethod* method); // UnityEngine.InputSystem.LowLevel.InputEventTrace UnityEngine.InputSystem.LowLevel.InputEventTrace::LoadFrom(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * InputEventTrace_LoadFrom_mB8838D6D2BF8A339DEC85246CE2245287F4CC168 (Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::Disable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Disable_m3C8166D6F372D60045EFCB9DC04AF52F4A1FF037 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::.ctor(UnityEngine.InputSystem.LowLevel.InputEventTrace) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReplayController__ctor_m23CB549473F4B85310768E37052CC41DC7A812B9 (ReplayController_tB89A6FAB335193E670D3B2A1E84BB7F291060755 * __this, InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * ___trace0, const RuntimeMethod* method); // System.Byte* UnityEngine.InputSystem.LowLevel.InputEventTrace::get_m_EventBufferHead() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* InputEventTrace_get_m_EventBufferHead_mD3AC2D3ACFAE376865E0D059DE7D9EA4EEA9BCF1 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace::GetNextEvent(UnityEngine.InputSystem.LowLevel.InputEventPtr&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventTrace_GetNextEvent_m19B0892B193ABDCF8A612272DE61465A6F154486 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * ___current0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::Allocate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Allocate_mBD5C6DFBFB0B993CF2DE8E17E9814EC92F6F3870 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.LowLevel.InputEventListener UnityEngine.InputSystem.InputSystem::get_onEvent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917 InputSystem_get_onEvent_mF1EA5D60636767DD6D97E5AC8DC6D690DD2718A2 (const RuntimeMethod* method); // System.Void System.Action`2::.ctor(System.Object,System.IntPtr) inline void Action_2__ctor_mF7AE7ABE5C6078672A1B4C97C6E3848615D4975A (Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_2__ctor_mAE93C6CDD790585BD22A43655C8AB2396BC2573D_gshared)(__this, ___object0, ___method1, method); } // UnityEngine.InputSystem.LowLevel.InputEventListener UnityEngine.InputSystem.LowLevel.InputEventListener::op_Addition(UnityEngine.InputSystem.LowLevel.InputEventListener,System.Action`2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917 InputEventListener_op_Addition_mD4685D253039B44ABCDD361AB4AED2AA5B513D64 (InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917 ____0, Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * ___callback1, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputSystem::set_onEvent(UnityEngine.InputSystem.LowLevel.InputEventListener) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_set_onEvent_mE6C546B07A2063545F4DB75A494F585BEFBF748C (InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917 ___value0, const RuntimeMethod* method); // UnityEngine.InputSystem.LowLevel.InputEventListener UnityEngine.InputSystem.LowLevel.InputEventListener::op_Subtraction(UnityEngine.InputSystem.LowLevel.InputEventListener,System.Action`2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917 InputEventListener_op_Subtraction_m9032C4F204EECE5CC6D80A9B01F7DB796C78A576 (InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917 ____0, Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * ___callback1, const RuntimeMethod* method); // System.Byte* UnityEngine.InputSystem.LowLevel.InputEventTrace::get_m_EventBufferTail() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* InputEventTrace_get_m_EventBufferTail_mED3E2B59BEC1AE315F588F422E823F64DCFC902E (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace/Enumerator::.ctor(UnityEngine.InputSystem.LowLevel.InputEventTrace) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mA4CC38C3AE2CF34DBA64167932DE9504C31D50C6 (Enumerator_tDC926D70FAEB628CE95D05C8FF1E24E55664B143 * __this, InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * ___trace0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::Release() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Release_m79726FE97FCEEE215EA71E8F71BC449D509CD289 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Clear_m8953FD572984DB1C1E4832919F5B7F36B3D8E0B1 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEventTrace::get_FrameMarkerEvent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 InputEventTrace_get_FrameMarkerEvent_mB1E248E76A888DA729C0F590C17E662A73B2C508 (const RuntimeMethod* method); // System.Int32 Unity.Collections.LowLevel.Unsafe.UnsafeUtility::SizeOf() inline int32_t UnsafeUtility_SizeOf_TisInputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234_mE54BCED9D284351B027281FCFFBD542BE9E13CF5 (const RuntimeMethod* method) { return (( int32_t (*) (const RuntimeMethod*))UnsafeUtility_SizeOf_TisInputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234_mE54BCED9D284351B027281FCFFBD542BE9E13CF5_gshared)(method); } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::OnInputEvent(UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_OnInputEvent_mCDB9904A4569F0FA8BD1745CD27B2F4336D2689B (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___inputEvent0, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device1, const RuntimeMethod* method); // !2 System.Func`3::Invoke(!0,!1) inline bool Func_3_Invoke_mDD7806C9546FB2E40EFFD6A636FDD7E992DA46E9 (Func_3_tD99A6009701E72566BE785B8109E9B5773975D91 * __this, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___arg10, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___arg21, const RuntimeMethod* method) { return (( bool (*) (Func_3_tD99A6009701E72566BE785B8109E9B5773975D91 *, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 , InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *, const RuntimeMethod*))Func_3_Invoke_mCC3720F71843B77A2898A7E73DE044210234B59D_gshared)(__this, ___arg10, ___arg21, method); } // System.Int64 System.Math::Max(System.Int64,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Math_Max_m38AA1B2C96A160A0AB5B9615570EFA26ED7BD9ED (int64_t ___val10, int64_t ___val21, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace::Resize(System.Int64,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventTrace_Resize_m084E07494718A6C19A797EE9D4DE338C3C805DFE (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, int64_t ___newBufferSize0, int64_t ___newMaxBufferSize1, const RuntimeMethod* method); // System.Void Unity.Collections.LowLevel.Unsafe.UnsafeUtility::MemClear(System.Void*,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeUtility_MemClear_m0915615269E0140AB23F0073BF02086A51AFCABF (void* ___destination0, int64_t ___size1, const RuntimeMethod* method); // System.String UnityEngine.InputSystem.InputControl::get_layout() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputControl_get_layout_m6A38EE2D15A5FCFDEE94B4056DD1565E17378454 (InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.LowLevel.InputStateBlock UnityEngine.InputSystem.InputControl::get_stateBlock() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B InputControl_get_stateBlock_m0ECA3324A1A42DDE5085EAE0A82D7C0447143252_inline (InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::get_format() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 InputStateBlock_get_format_m99B8AE2CD603AC198E543FA369ACEADB725E2689_inline (InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * __this, const RuntimeMethod* method); // System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBlock::get_alignedSizeInBytes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputStateBlock_get_alignedSizeInBytes_m0A9650F80120683F6336427F2A8C9639109738D8 (InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::IsGeneratedLayout(UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Collection_IsGeneratedLayout_m7E7FC91B386F1FB499E7C94A316B8C9B03FFF032 (Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___layout0, const RuntimeMethod* method); // UnityEngine.InputSystem.Layouts.InputControlLayout UnityEngine.InputSystem.InputSystem::LoadLayout(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741 * InputSystem_LoadLayout_mAC61787605E3C0F8ACA3300B7A56117567D04A25 (String_t* ___name0, const RuntimeMethod* method); // System.String UnityEngine.InputSystem.Layouts.InputControlLayout::ToJson() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputControlLayout_ToJson_mC9EF60D7EBC7BABC09452B624F499184BDBACFE3 (InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741 * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::Append(TValue[]&,TValue) inline int32_t ArrayHelpers_Append_TisDeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F_mEA1ABEEA1ADC1C5A21B8E4665D8E57A9E8FC6295 (DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81** ___array0, DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F ___value1, const RuntimeMethod* method) { return (( int32_t (*) (DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81**, DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F , const RuntimeMethod*))ArrayHelpers_Append_TisDeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F_mEA1ABEEA1ADC1C5A21B8E4665D8E57A9E8FC6295_gshared)(___array0, ___value1, method); } // System.Int32 UnityEngine.InputSystem.Utilities.CallbackArray`1>::get_length() inline int32_t CallbackArray_1_get_length_mF8F5F570FA6C35E69784FBB53071EF27BB29A7B4 (CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008 * __this, const RuntimeMethod* method) { return (( int32_t (*) (CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008 *, const RuntimeMethod*))CallbackArray_1_get_length_mF3713D9A736D916981802210CF20A583258E1B08_gshared)(__this, method); } // System.Void UnityEngine.InputSystem.Utilities.DelegateHelpers::InvokeCallbacksSafe(UnityEngine.InputSystem.Utilities.CallbackArray`1>&,TValue,System.String,System.Object) inline void DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_mC4159FA60A399EFD819461CBD6CF31C2C9953FA7 (CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008 * ___callbacks0, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___argument1, String_t* ___callbackName2, RuntimeObject * ___context3, const RuntimeMethod* method) { (( void (*) (CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008 *, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 , String_t*, RuntimeObject *, const RuntimeMethod*))DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_mC4159FA60A399EFD819461CBD6CF31C2C9953FA7_gshared)(___callbacks0, ___argument1, ___callbackName2, ___context3, method); } // System.Boolean System.Type::op_Equality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method); // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F (RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ___handle0, const RuntimeMethod* method); // System.Type UnityEngine.InputSystem.Utilities.TypeHelpers::GetGenericTypeArgumentFromHierarchy(System.Type,System.Type,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeHelpers_GetGenericTypeArgumentFromHierarchy_mAC39DFBA374535C9D576EF7278163E933E2598C8 (Type_t * ___type0, Type_t * ___genericTypeDefinition1, int32_t ___argumentIndex2, const RuntimeMethod* method); // System.Type UnityEngine.InputSystem.Utilities.TypeTable::LookupTypeRegistration(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeTable_LookupTypeRegistration_mE847426243DD211C994CF5EACC7F05E038D32A13 (TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F * __this, String_t* ___name0, const RuntimeMethod* method); // System.String UnityEngine.InputSystem.InputInteraction::GetDisplayName(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputInteraction_GetDisplayName_m5DFBB4B834A04D4FE2FBBFCEE5FCFC1E8CD588C8 (Type_t * ___interactionType0, const RuntimeMethod* method); // !!0 System.Reflection.CustomAttributeExtensions::GetCustomAttribute(System.Reflection.MemberInfo) inline DisplayNameAttribute_t23E87B8B23DC5CF5E2A72B8039935029D0A53E85 * CustomAttributeExtensions_GetCustomAttribute_TisDisplayNameAttribute_t23E87B8B23DC5CF5E2A72B8039935029D0A53E85_m38F082239F94AE4A752E5121D74E024688EC7897 (MemberInfo_t * ___element0, const RuntimeMethod* method) { return (( DisplayNameAttribute_t23E87B8B23DC5CF5E2A72B8039935029D0A53E85 * (*) (MemberInfo_t *, const RuntimeMethod*))CustomAttributeExtensions_GetCustomAttribute_TisRuntimeObject_mAEBC9EBACD573E5D085888BEE7B319CE80E372B5_gshared)(___element0, method); } // System.Boolean System.String::EndsWith(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_EndsWith_m9A6011FDF8EBFFD3BCB51FE5BE58BE265116DCBE (String_t* __this, String_t* ___value0, const RuntimeMethod* method); // UnityEngine.InputSystem.InputAction UnityEngine.InputSystem.InputActionState::GetActionOrNull(UnityEngine.InputSystem.InputActionState/TriggerState&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B * InputActionState_GetActionOrNull_m70412C552F339718FDB8F5390D6DE2A0223B30AA (InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9 * __this, TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * ___trigger0, const RuntimeMethod* method); // UnityEngine.InputSystem.InputAction UnityEngine.InputSystem.InputInteractionContext::get_action() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B * InputInteractionContext_get_action_mC4E7224112117A13F2067204A367CE6B9D2CB592 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.InputControl UnityEngine.InputSystem.InputActionState::GetControl(UnityEngine.InputSystem.InputActionState/TriggerState&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * InputActionState_GetControl_m940C0F82A1BAF42C7F44F9F3E62B29243FCFDC33 (InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9 * __this, TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * ___trigger0, const RuntimeMethod* method); // UnityEngine.InputSystem.InputControl UnityEngine.InputSystem.InputInteractionContext::get_control() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * InputInteractionContext_get_control_m76A5676F1E0EC90CC5092ECB59DE1C446E0E4FA0 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.InputActionPhase UnityEngine.InputSystem.InputActionState/TriggerState::get_phase() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TriggerState_get_phase_m8BC034C0171DFBEFFE326B22BED602AB414D8CB8_inline (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.InputActionPhase UnityEngine.InputSystem.InputInteractionContext::get_phase() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputInteractionContext_get_phase_m1D1F933DC688D76CA3BFD84B5D69F8675A1B4641 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method); // System.Double UnityEngine.InputSystem.InputActionState/TriggerState::get_time() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double TriggerState_get_time_mEF5F8E6EA1177F885A7F1EE8FBEF374EFB43660C_inline (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * __this, const RuntimeMethod* method); // System.Double UnityEngine.InputSystem.InputInteractionContext::get_time() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputInteractionContext_get_time_m3F56EF59500DB7157D98B9FCAAFA87144C6462C5 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method); // System.Double UnityEngine.InputSystem.InputActionState/TriggerState::get_startTime() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double TriggerState_get_startTime_m465D962E69624146FD140452618312328005299A_inline (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * __this, const RuntimeMethod* method); // System.Double UnityEngine.InputSystem.InputInteractionContext::get_startTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputInteractionContext_get_startTime_mBD5679426EE582E198DEAD23B3FF8754CE5BDCA9 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputInteractionContext::get_timerHasExpired() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputInteractionContext_get_timerHasExpired_mDE56578A71907B074611261FFE6923D8DEF9BE5C (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputInteractionContext::set_timerHasExpired(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputInteractionContext_set_timerHasExpired_mD5484310F467F8D60331499A8ECD7840EDCB70F4 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, bool ___value0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputInteractionContext::get_isWaiting() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputInteractionContext_get_isWaiting_m31D8A710BB4F41311CC31E384915855CA35191C7 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputInteractionContext::get_isStarted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputInteractionContext_get_isStarted_m9E92E3E55705698AC76C9993032E312DD55BD6A6 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method); // System.Single UnityEngine.InputSystem.InputActionState/TriggerState::get_magnitude() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float TriggerState_get_magnitude_m173021159A016BD6FAF4DE2E83AD1E1BD19EA40B_inline (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * __this, const RuntimeMethod* method); // System.Single UnityEngine.InputSystem.InputInteractionContext::ComputeMagnitude() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float InputInteractionContext_ComputeMagnitude_m538830F588A35F39EEEA91642599C40404B7051F (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputActionState::IsActuated(UnityEngine.InputSystem.InputActionState/TriggerState&,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputActionState_IsActuated_m4B3CC59FD6606C069A6C10AEE88DF8D426CE622E (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * ___trigger0, float ___threshold1, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputInteractionContext::ControlIsActuated(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputInteractionContext_ControlIsActuated_mDCF2AA5CA798067D94B97506A59DA2D3C9D30C19 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, float ___threshold0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputActionState/TriggerState::set_startTime(System.Double) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TriggerState_set_startTime_mED223305B4E6A406E1E7612531C10B783C665D85_inline (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * __this, double ___value0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputActionState::ChangePhaseOfInteraction(UnityEngine.InputSystem.InputActionPhase,UnityEngine.InputSystem.InputActionState/TriggerState&,UnityEngine.InputSystem.InputActionPhase,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputActionState_ChangePhaseOfInteraction_m76B79D5FBD6FD3D231B5C1ADCDF6CC9E535B0B06 (InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9 * __this, int32_t ___newPhase0, TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * ___trigger1, int32_t ___phaseAfterPerformed2, bool ___processNextInteractionOnCancel3, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputInteractionContext::Started() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputInteractionContext_Started_m23C1C4057523A978181856534E62F72A581A2503 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputInteractionContext::Performed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputInteractionContext_Performed_m5ACE9C85B4E009C8FB825EFD389B47393CEA953D (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputInteractionContext::PerformedAndStayStarted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputInteractionContext_PerformedAndStayStarted_m4D7A3827DE07AE0C3D9A272AAFFCACABEBB74899 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputInteractionContext::PerformedAndStayPerformed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputInteractionContext_PerformedAndStayPerformed_m7F6E9A7FFC70F7FF9AAC627A301B63BC9ACA5CC0 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputInteractionContext::Canceled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputInteractionContext_Canceled_m540CC348F474B1BEE12982ED2872EF050E52EBFA (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputInteractionContext::Waiting() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputInteractionContext_Waiting_m9F11707093CAC9C6F2A8ADE6C8B48631FCA0E0F9 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputActionState::StartTimeout(System.Single,UnityEngine.InputSystem.InputActionState/TriggerState&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputActionState_StartTimeout_mF48803007A5CF95BB23A7370CE888BCF665B6504 (InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9 * __this, float ___seconds0, TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * ___trigger1, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputInteractionContext::SetTimeout(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputInteractionContext_SetTimeout_m2141731FADDC6FF74277B85667CE6164DE84FC9F (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, float ___seconds0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputActionState::SetTotalTimeoutCompletionTime(System.Single,UnityEngine.InputSystem.InputActionState/TriggerState&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputActionState_SetTotalTimeoutCompletionTime_m1873C227899784774E0ADD698C8E5AAB38953C38 (InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9 * __this, float ___seconds0, TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * ___trigger1, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputInteractionContext::SetTotalTimeoutCompletionTime(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputInteractionContext_SetTotalTimeoutCompletionTime_mE59B7013EFC7F13855BBCD1170CC4C1401E719DD (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, float ___seconds0, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.InputActionState/TriggerState::get_mapIndex() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TriggerState_get_mapIndex_m51582ABC29AFC6629760C66F15289E86CFCC3680_inline (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.InputInteractionContext::get_mapIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputInteractionContext_get_mapIndex_m59657570E27E3D1A0B35E85C2F906D8398F2A1FD (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.InputActionState/TriggerState::get_controlIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TriggerState_get_controlIndex_m960A306864E08240EEFEEDE399279D9B60C53BC4 (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.InputInteractionContext::get_controlIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputInteractionContext_get_controlIndex_m4569A1177C64A190CE9A451930BBE3AF5C99BEDD (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.InputActionState/TriggerState::get_bindingIndex() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TriggerState_get_bindingIndex_m0AC6E41222022188B9528FC31FBC0B519BF7F7DF_inline (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.InputInteractionContext::get_bindingIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputInteractionContext_get_bindingIndex_mD82E5BB42B069317235E01121FF7F30F07BC11FC (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.InputActionState/TriggerState::get_interactionIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TriggerState_get_interactionIndex_m901FE8EF223E7846033D0F2A9406A9026967A1F2 (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.InputInteractionContext::get_interactionIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputInteractionContext_get_interactionIndex_m902505E51063CDE0D36417356E73FF889E52DEBC (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::.ctor(TValue[],System.Int32,System.Int32) inline void ReadOnlyArray_1__ctor_m84C983212B6C53DA9A17DF1F5863FD5CE667512B (ReadOnlyArray_1_tACB506541C5CC2CCA16D8065F5F949D9874C78D0 * __this, InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) { (( void (*) (ReadOnlyArray_1_tACB506541C5CC2CCA16D8065F5F949D9874C78D0 *, InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6*, int32_t, int32_t, const RuntimeMethod*))ReadOnlyArray_1__ctor_mDBA2D038A7B6AAC56DBAE76573D364B6ED244C74_gshared)(__this, ___array0, ___index1, ___length2, method); } // System.Void UnityEngine.InputSystem.LowLevel.InputMetrics::set_currentNumDevices(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_currentNumDevices_m1B672B2ACDFBB65FFE05FAC1E37CD8126BD39DC7_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputMetrics::set_currentStateSizeInBytes(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_currentStateSizeInBytes_m129BFD4C4FBD76F7DAF2EDDEF78FD48AED3AC570_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputMetrics::set_currentControlCount(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_currentControlCount_mF8260E222D6516E2493634792CF117824E4B8BD1_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, int32_t ___value0, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::get_currentControlCount() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_currentControlCount_mFEC27CAEB3AFB76FDDA8AAE6B4CA64466E01D42B_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 UnityEngine.InputSystem.InputDevice::get_allControls() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 InputDevice_get_allControls_mD986E92DCF42FBA62A009692D7B7E51CDC55175B (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::get_Count() inline int32_t ReadOnlyArray_1_get_Count_mC17382AC83BBF147C47E7A21A628F51F082E92DA_inline (ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 * __this, const RuntimeMethod* method) { return (( int32_t (*) (ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 *, const RuntimeMethod*))ReadOnlyArray_1_get_Count_m23B4A29E81D59954DD014F2E62B43150D34C51BD_gshared_inline)(__this, method); } // System.Int32 System.Collections.Generic.Dictionary`2::get_Count() inline int32_t Dictionary_2_get_Count_mF4598BAD5B89302527B0069BA4CCD0D3B2F861BB (Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * __this, const RuntimeMethod* method) { return (( int32_t (*) (Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E *, const RuntimeMethod*))Dictionary_2_get_Count_mB06F38DF91518D4489B73DA32BAB9639F77BA0D3_gshared)(__this, method); } // System.Void UnityEngine.InputSystem.LowLevel.InputMetrics::set_currentLayoutCount(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_currentLayoutCount_m8E5458C009A176278C0ED815AE64A584D9CBE9D3_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, int32_t ___value0, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::get_currentLayoutCount() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_currentLayoutCount_m24F5B56B4382F3DE3770351A840445FF4FC38D56_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.Dictionary`2::get_Count() inline int32_t Dictionary_2_get_Count_mA9155B19D6D6E40D2515488C8F2F175D430E69EB (Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E * __this, const RuntimeMethod* method) { return (( int32_t (*) (Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E *, const RuntimeMethod*))Dictionary_2_get_Count_mB06F38DF91518D4489B73DA32BAB9639F77BA0D3_gshared)(__this, method); } // System.Int32 System.Collections.Generic.Dictionary`2>::get_Count() inline int32_t Dictionary_2_get_Count_m85BE442214F4831E0502D55336A19E9C7AC3F539 (Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9 *, const RuntimeMethod*))Dictionary_2_get_Count_mB06F38DF91518D4489B73DA32BAB9639F77BA0D3_gshared)(__this, method); } // System.Int32 System.Collections.Generic.Dictionary`2::get_Count() inline int32_t Dictionary_2_get_Count_m09523E819BC1EA0131392AA4FC555E91CB7E4560 (Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86 *, const RuntimeMethod*))Dictionary_2_get_Count_mB06F38DF91518D4489B73DA32BAB9639F77BA0D3_gshared)(__this, method); } // System.Boolean UnityEngine.Object::op_Equality(UnityEngine.Object,UnityEngine.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___x0, Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___y1, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::ApplySettings() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_ApplySettings_mEF00E3EDCFEE9C9311B3016A22F478DC1A56E446 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::ReallocateStateBuffers() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_ReallocateStateBuffers_m310B7B6983270356571E856412C65B3233B21DF9 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.LowLevel.InputUpdateType UnityEngine.InputSystem.LowLevel.InputUpdate::GetUpdateTypeForPlayer(UnityEngine.InputSystem.LowLevel.InputUpdateType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputUpdate_GetUpdateTypeForPlayer_mDF9AE0C41704130242EDA73BFC0B9281ED9C63C7 (int32_t ___mask0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1>::AddCallback(TDelegate) inline void CallbackArray_1_AddCallback_mA5367FB0F077BD5B2AD9147F13B8883326E86330 (CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 * __this, Action_2_tA58D913EBCC7FD3E95DEC877EDB4363CD3051DF4 * ___dlg0, const RuntimeMethod* method) { (( void (*) (CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 *, Action_2_tA58D913EBCC7FD3E95DEC877EDB4363CD3051DF4 *, const RuntimeMethod*))CallbackArray_1_AddCallback_m557746816FBD33431579BB7E030EDEE997973504_gshared)(__this, ___dlg0, method); } // System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1>::RemoveCallback(TDelegate) inline void CallbackArray_1_RemoveCallback_mD70C611C79F427A2F62DF541DC0EACDA46388134 (CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 * __this, Action_2_tA58D913EBCC7FD3E95DEC877EDB4363CD3051DF4 * ___dlg0, const RuntimeMethod* method) { (( void (*) (CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 *, Action_2_tA58D913EBCC7FD3E95DEC877EDB4363CD3051DF4 *, const RuntimeMethod*))CallbackArray_1_RemoveCallback_mAB8E31257637236DDE157A2FBFACF3A3BFFF446E_gshared)(__this, ___dlg0, method); } // System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1>::AddCallback(TDelegate) inline void CallbackArray_1_AddCallback_mF7F3622B138F94DD7CB1238C738AFF2060F8AC33 (CallbackArray_1_t6B54B12C76958BFFEC586C4B69F70560884AEF34 * __this, Action_2_t22339AC0C02B10DD3C743D557C52738BA901E74A * ___dlg0, const RuntimeMethod* method) { (( void (*) (CallbackArray_1_t6B54B12C76958BFFEC586C4B69F70560884AEF34 *, Action_2_t22339AC0C02B10DD3C743D557C52738BA901E74A *, const RuntimeMethod*))CallbackArray_1_AddCallback_m557746816FBD33431579BB7E030EDEE997973504_gshared)(__this, ___dlg0, method); } // System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1>::RemoveCallback(TDelegate) inline void CallbackArray_1_RemoveCallback_m550840A29A7A0367D7965D0D54734D0FEE0EC847 (CallbackArray_1_t6B54B12C76958BFFEC586C4B69F70560884AEF34 * __this, Action_2_t22339AC0C02B10DD3C743D557C52738BA901E74A * ___dlg0, const RuntimeMethod* method) { (( void (*) (CallbackArray_1_t6B54B12C76958BFFEC586C4B69F70560884AEF34 *, Action_2_t22339AC0C02B10DD3C743D557C52738BA901E74A *, const RuntimeMethod*))CallbackArray_1_RemoveCallback_mAB8E31257637236DDE157A2FBFACF3A3BFFF446E_gshared)(__this, ___dlg0, method); } // System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1::AddCallback(TDelegate) inline void CallbackArray_1_AddCallback_mF83FAF15CD78DB17DC6FE61825B4FAE6BE135E85 (CallbackArray_1_t157FF6A379E3716A8F98AD7AA44984A6C7908C87 * __this, InputDeviceCommandDelegate_t967EA90378916CA01FF68A0403468313659A1718 * ___dlg0, const RuntimeMethod* method) { (( void (*) (CallbackArray_1_t157FF6A379E3716A8F98AD7AA44984A6C7908C87 *, InputDeviceCommandDelegate_t967EA90378916CA01FF68A0403468313659A1718 *, const RuntimeMethod*))CallbackArray_1_AddCallback_m557746816FBD33431579BB7E030EDEE997973504_gshared)(__this, ___dlg0, method); } // System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1::RemoveCallback(TDelegate) inline void CallbackArray_1_RemoveCallback_mD0BF954F5AADB28D01B088F583317C4D6D6D360A (CallbackArray_1_t157FF6A379E3716A8F98AD7AA44984A6C7908C87 * __this, InputDeviceCommandDelegate_t967EA90378916CA01FF68A0403468313659A1718 * ___dlg0, const RuntimeMethod* method) { (( void (*) (CallbackArray_1_t157FF6A379E3716A8F98AD7AA44984A6C7908C87 *, InputDeviceCommandDelegate_t967EA90378916CA01FF68A0403468313659A1718 *, const RuntimeMethod*))CallbackArray_1_RemoveCallback_mAB8E31257637236DDE157A2FBFACF3A3BFFF446E_gshared)(__this, ___dlg0, method); } // System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1::AddCallback(TDelegate) inline void CallbackArray_1_AddCallback_m679CA6D57CD8B3766421FCB0C861E30A586B431B (CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 * __this, InputDeviceFindControlLayoutDelegate_tE30412E20D6F6870BF090C6D6C4CA9B4CFD0978F * ___dlg0, const RuntimeMethod* method) { (( void (*) (CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 *, InputDeviceFindControlLayoutDelegate_tE30412E20D6F6870BF090C6D6C4CA9B4CFD0978F *, const RuntimeMethod*))CallbackArray_1_AddCallback_m557746816FBD33431579BB7E030EDEE997973504_gshared)(__this, ___dlg0, method); } // System.Void UnityEngine.InputSystem.InputManager::AddAvailableDevicesThatAreNowRecognized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_AddAvailableDevicesThatAreNowRecognized_mAB791BABE33F529FBF87F6A90A42C521EC005527 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1::RemoveCallback(TDelegate) inline void CallbackArray_1_RemoveCallback_mF6514B59F0ECDD6E36C68FC802A62DF7B7330111 (CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 * __this, InputDeviceFindControlLayoutDelegate_tE30412E20D6F6870BF090C6D6C4CA9B4CFD0978F * ___dlg0, const RuntimeMethod* method) { (( void (*) (CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 *, InputDeviceFindControlLayoutDelegate_tE30412E20D6F6870BF090C6D6C4CA9B4CFD0978F *, const RuntimeMethod*))CallbackArray_1_RemoveCallback_mAB8E31257637236DDE157A2FBFACF3A3BFFF446E_gshared)(__this, ___dlg0, method); } // System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1>::AddCallback(TDelegate) inline void CallbackArray_1_AddCallback_mBE67876CE84EC9F3B9969C1A922B65E194F7435C (CallbackArray_1_t506D5A43E1BA50974832B6281CE0E05C835BD3A9 * __this, Action_2_tB596892BAE11233D1410B282A3EE7610732B50EC * ___dlg0, const RuntimeMethod* method) { (( void (*) (CallbackArray_1_t506D5A43E1BA50974832B6281CE0E05C835BD3A9 *, Action_2_tB596892BAE11233D1410B282A3EE7610732B50EC *, const RuntimeMethod*))CallbackArray_1_AddCallback_m557746816FBD33431579BB7E030EDEE997973504_gshared)(__this, ___dlg0, method); } // System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1>::RemoveCallback(TDelegate) inline void CallbackArray_1_RemoveCallback_m2EFA10D662D6322C2043176CC67A1FAAFD0FFE96 (CallbackArray_1_t506D5A43E1BA50974832B6281CE0E05C835BD3A9 * __this, Action_2_tB596892BAE11233D1410B282A3EE7610732B50EC * ___dlg0, const RuntimeMethod* method) { (( void (*) (CallbackArray_1_t506D5A43E1BA50974832B6281CE0E05C835BD3A9 *, Action_2_tB596892BAE11233D1410B282A3EE7610732B50EC *, const RuntimeMethod*))CallbackArray_1_RemoveCallback_mAB8E31257637236DDE157A2FBFACF3A3BFFF446E_gshared)(__this, ___dlg0, method); } // System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1>::AddCallback(TDelegate) inline void CallbackArray_1_AddCallback_m073015304540182F1EFC66AA8332D29A93CF4800 (CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61 * __this, Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * ___dlg0, const RuntimeMethod* method) { (( void (*) (CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61 *, Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C *, const RuntimeMethod*))CallbackArray_1_AddCallback_m557746816FBD33431579BB7E030EDEE997973504_gshared)(__this, ___dlg0, method); } // System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1>::RemoveCallback(TDelegate) inline void CallbackArray_1_RemoveCallback_m7054BE818AEED2BED3AE923DDB9C2ECDDB716828 (CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61 * __this, Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * ___dlg0, const RuntimeMethod* method) { (( void (*) (CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61 *, Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C *, const RuntimeMethod*))CallbackArray_1_RemoveCallback_mAB8E31257637236DDE157A2FBFACF3A3BFFF446E_gshared)(__this, ___dlg0, method); } // System.Void UnityEngine.InputSystem.InputManager::InstallBeforeUpdateHookIfNecessary() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_InstallBeforeUpdateHookIfNecessary_m0B1B1F9F035537BD5D337CA60EBB9F8CCDBDC58B (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1::AddCallback(TDelegate) inline void CallbackArray_1_AddCallback_m5E6986916999BAB90D19DE8305D82D3242A7D35F (CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___dlg0, const RuntimeMethod* method) { (( void (*) (CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 *, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 *, const RuntimeMethod*))CallbackArray_1_AddCallback_m557746816FBD33431579BB7E030EDEE997973504_gshared)(__this, ___dlg0, method); } // System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1::RemoveCallback(TDelegate) inline void CallbackArray_1_RemoveCallback_m45535C6F1E56C3F2813992B3601727B83D59C236 (CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___dlg0, const RuntimeMethod* method) { (( void (*) (CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 *, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 *, const RuntimeMethod*))CallbackArray_1_RemoveCallback_mAB8E31257637236DDE157A2FBFACF3A3BFFF446E_gshared)(__this, ___dlg0, method); } // System.Boolean UnityEngine.InputSystem.InputManager::get_gameShouldGetInputRegardlessOfFocus() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_get_gameShouldGetInputRegardlessOfFocus_m9BAF190125233D8BF2A835A94CB9FB8E29CFF44E (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.InputSettings/BackgroundBehavior UnityEngine.InputSystem.InputSettings::get_backgroundBehavior() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputSettings_get_backgroundBehavior_mFCF311E589790630CAC71ACD0E13F8D6472B3EBE_inline (InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::HasLayout(UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Collection_HasLayout_m93C27EDE028A85DDB26705F50A335D76BD330328 (Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___name0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::set_Item(!0,!1) inline void Dictionary_2_set_Item_m36FC21CAEA6BB79ED3EBCB0B184C8775EC42350C (Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, Type_t * ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E *, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED , Type_t *, const RuntimeMethod*))Dictionary_2_set_Item_m1CAC94BEA959C206BC403D4C63ABAA6ACD2B08B6_gshared)(__this, ___key0, ___value1, method); } // System.Collections.Generic.Dictionary`2/Enumerator System.Collections.Generic.Dictionary`2::GetEnumerator() inline Enumerator_tBC97DB5B6B5870EB975D595B3E8450E430C0A0E5 Dictionary_2_GetEnumerator_mFCD21F083C4657C41DC227C4BECBDE2E1A08D8FF (Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * __this, const RuntimeMethod* method) { return (( Enumerator_tBC97DB5B6B5870EB975D595B3E8450E430C0A0E5 (*) (Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E *, const RuntimeMethod*))Dictionary_2_GetEnumerator_m0DB55805C37883D3243C718369463532FFD4E7B9_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2 System.Collections.Generic.Dictionary`2/Enumerator::get_Current() inline KeyValuePair_2_t32554390D3DCC815F632A9813367A1A9E6C4C324 Enumerator_get_Current_m1A471B3DEBCB5644EDC2B24E5BEB00751AA45C04_inline (Enumerator_tBC97DB5B6B5870EB975D595B3E8450E430C0A0E5 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t32554390D3DCC815F632A9813367A1A9E6C4C324 (*) (Enumerator_tBC97DB5B6B5870EB975D595B3E8450E430C0A0E5 *, const RuntimeMethod*))Enumerator_get_Current_mA498E0842C3786B22CC1BB11B09A85E3346E5C3C_gshared_inline)(__this, method); } // !1 System.Collections.Generic.KeyValuePair`2::get_Value() inline Type_t * KeyValuePair_2_get_Value_mCEED82C56D42D498CFB45BD1B49E3CE764CB5E3A_inline (KeyValuePair_2_t32554390D3DCC815F632A9813367A1A9E6C4C324 * __this, const RuntimeMethod* method) { return (( Type_t * (*) (KeyValuePair_2_t32554390D3DCC815F632A9813367A1A9E6C4C324 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m391CC747109CAE22FD143AF7520A2C133612D28D_gshared_inline)(__this, method); } // !0 System.Collections.Generic.KeyValuePair`2::get_Key() inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED KeyValuePair_2_get_Key_m946C35D5CBBDBCEACDC283CAE3461389B582062A_inline (KeyValuePair_2_t32554390D3DCC815F632A9813367A1A9E6C4C324 * __this, const RuntimeMethod* method) { return (( InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED (*) (KeyValuePair_2_t32554390D3DCC815F632A9813367A1A9E6C4C324 *, const RuntimeMethod*))KeyValuePair_2_get_Key_mFBEEBA1D831EB554874C88B7A45536B9AB7229A8_gshared_inline)(__this, method); } // System.String UnityEngine.InputSystem.Utilities.InternedString::op_Implicit(UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InternedString_op_Implicit_m5C5E28D59A0F856D52E38C0C147176E4B306D6BD (InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___str0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator::MoveNext() inline bool Enumerator_MoveNext_m6C8D1BCFFFE78F9231E17672D0A07E0238E5A5D0 (Enumerator_tBC97DB5B6B5870EB975D595B3E8450E430C0A0E5 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tBC97DB5B6B5870EB975D595B3E8450E430C0A0E5 *, const RuntimeMethod*))Enumerator_MoveNext_mD45CA15D1D7996292B052775BB7E4BF332D0ACAC_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator::Dispose() inline void Enumerator_Dispose_m29804C5A2B763A4DFE276D5589D6ECF0A1732AD2 (Enumerator_tBC97DB5B6B5870EB975D595B3E8450E430C0A0E5 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tBC97DB5B6B5870EB975D595B3E8450E430C0A0E5 *, const RuntimeMethod*))Enumerator_Dispose_m58D96E53BE567B742E73098EF7415688736EB757_gshared)(__this, method); } // System.Boolean System.Type::op_Inequality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m519B1E8F2F1E2101ADF863401FCAE38210395368 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.InlinedArray`1::.ctor(TValue) inline void InlinedArray_1__ctor_m63D4B87260948C2A73C6DF32D7374DAEFFE5319C (InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___value0, const RuntimeMethod* method) { (( void (*) (InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB *, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED , const RuntimeMethod*))InlinedArray_1__ctor_m63D4B87260948C2A73C6DF32D7374DAEFFE5319C_gshared)(__this, ___value0, method); } // System.Void UnityEngine.InputSystem.InputManager::PerformLayoutPostRegistration(UnityEngine.InputSystem.Utilities.InternedString,UnityEngine.InputSystem.Utilities.InlinedArray`1,System.Boolean,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_PerformLayoutPostRegistration_m65C9103D91E7AA542B7CDF20655703368E10A420 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___layoutName0, InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB ___baseLayouts1, bool ___isReplacement2, bool ___isKnownToBeDeviceLayout3, bool ___isOverride4, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Layouts.InputControlLayout::ParseHeaderFieldsFromJson(System.String,UnityEngine.InputSystem.Utilities.InternedString&,UnityEngine.InputSystem.Utilities.InlinedArray`1&,UnityEngine.InputSystem.Layouts.InputDeviceMatcher&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputControlLayout_ParseHeaderFieldsFromJson_m562BCA6B0FC99EC60C90D0585B4F375FF84ACBE9 (String_t* ___json0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * ___name1, InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB * ___baseLayouts2, InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * ___deviceMatcher3, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.Utilities.InternedString::IsEmpty() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternedString_IsEmpty_mDC1F123EBDF899AB57EDDCFFC3F67DA84A2CC2AD (InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.HashSet`1::Contains(!0) inline bool HashSet_1_Contains_mFC4294A6594B5C8BDC5FDD29E060C7A6E4B890FA (HashSet_1_t9DCF3402E30D433824DBE15EBB53B1DD79D671C1 * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___item0, const RuntimeMethod* method) { return (( bool (*) (HashSet_1_t9DCF3402E30D433824DBE15EBB53B1DD79D671C1 *, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED , const RuntimeMethod*))HashSet_1_Contains_mFC4294A6594B5C8BDC5FDD29E060C7A6E4B890FA_gshared)(__this, ___item0, method); } // System.Void System.ArgumentException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::set_Item(!0,!1) inline void Dictionary_2_set_Item_m089162FB86506487C8CCBD2563C742EA0A4909EF (Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, String_t* ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E *, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED , String_t*, const RuntimeMethod*))Dictionary_2_set_Item_m1CAC94BEA959C206BC403D4C63ABAA6ACD2B08B6_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.HashSet`1::Add(!0) inline bool HashSet_1_Add_m7C5B4590798DB969BBE29A457DBECB7082532BEC (HashSet_1_t9DCF3402E30D433824DBE15EBB53B1DD79D671C1 * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___item0, const RuntimeMethod* method) { return (( bool (*) (HashSet_1_t9DCF3402E30D433824DBE15EBB53B1DD79D671C1 *, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED , const RuntimeMethod*))HashSet_1_Add_m7C5B4590798DB969BBE29A457DBECB7082532BEC_gshared)(__this, ___item0, method); } // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::get_Item(System.Int32) inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED InlinedArray_1_get_Item_m63A5AB84323894345D9D8A01807C53CEC0219D12 (InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB * __this, int32_t ___index0, const RuntimeMethod* method) { return (( InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED (*) (InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB *, int32_t, const RuntimeMethod*))InlinedArray_1_get_Item_m63A5AB84323894345D9D8A01807C53CEC0219D12_gshared)(__this, ___index0, method); } // System.Boolean System.Collections.Generic.Dictionary`2::TryGetValue(!0,!1&) inline bool Dictionary_2_TryGetValue_m930A5E2C4019CD67A6C8556684F8E489C0D59DF9 (Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86 * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86 *, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED , InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4**, const RuntimeMethod*))Dictionary_2_TryGetValue_mAAF5BE546E3C93E89247650C6F561AD0C73B69FE_gshared)(__this, ___key0, ___value1, method); } // System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::Append(TValue[]&,TValue) inline int32_t ArrayHelpers_Append_TisInternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_mDC61B9BB789B775D8026681A13BFE1C9E378A5B1 (InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4** ___array0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___value1, const RuntimeMethod* method) { return (( int32_t (*) (InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4**, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED , const RuntimeMethod*))ArrayHelpers_Append_TisInternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_mDC61B9BB789B775D8026681A13BFE1C9E378A5B1_gshared)(___array0, ___value1, method); } // System.Void System.Collections.Generic.Dictionary`2::set_Item(!0,!1) inline void Dictionary_2_set_Item_m38B16DF45DC4401DFA674E9F58F165319C3D48E4 (Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86 * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86 *, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED , InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4*, const RuntimeMethod*))Dictionary_2_set_Item_m1CAC94BEA959C206BC403D4C63ABAA6ACD2B08B6_gshared)(__this, ___key0, ___value1, method); } // System.Void UnityEngine.InputSystem.InputManager::RegisterControlLayoutMatcher(System.String,UnityEngine.InputSystem.Layouts.InputDeviceMatcher) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_RegisterControlLayoutMatcher_m2D32C93B9C897BD6E23A0A9E512A0BAADACD9B90 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, String_t* ___layoutName0, InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 ___matcher1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2>::set_Item(!0,!1) inline void Dictionary_2_set_Item_m0E7A22E243CB7ECC894D7884FE721B35F7C9C067 (Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9 * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, Func_1_t87F4D899EDDDA25407AC884A9A61F602E32A21FA * ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9 *, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED , Func_1_t87F4D899EDDDA25407AC884A9A61F602E32A21FA *, const RuntimeMethod*))Dictionary_2_set_Item_m1CAC94BEA959C206BC403D4C63ABAA6ACD2B08B6_gshared)(__this, ___key0, ___value1, method); } // System.Void UnityEngine.InputSystem.Layouts.InputControlLayout/Cache::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cache_Clear_m6410DF9E00C5A373BABD352C25C33FB80854B3B1 (Cache_tCCC71FFB1DEF56FF815ED5B09BB764EDB00EE82E * __this, const RuntimeMethod* method); // System.Void System.NotSupportedException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90 (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::set_Item(!0,!1) inline void Dictionary_2_set_Item_m73D39E3B6AD90D8E65A792BD405FEDA2F922831A (Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540 * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540 *, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED , InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED , const RuntimeMethod*))Dictionary_2_set_Item_m73D39E3B6AD90D8E65A792BD405FEDA2F922831A_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2::Remove(!0) inline bool Dictionary_2_Remove_m45E84D946995F17227E04DF2D32A7A01C5B0CA5A (Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE *, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED , const RuntimeMethod*))Dictionary_2_Remove_m45E84D946995F17227E04DF2D32A7A01C5B0CA5A_gshared)(__this, ___key0, method); } // System.Int32 System.Collections.Generic.Dictionary`2::get_Count() inline int32_t Dictionary_2_get_Count_mF781BD47155E1FD53A8B5F590ECA083143D48CC5 (Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE * __this, const RuntimeMethod* method) { return (( int32_t (*) (Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE *, const RuntimeMethod*))Dictionary_2_get_Count_mF781BD47155E1FD53A8B5F590ECA083143D48CC5_gshared)(__this, method); } // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::get_Keys() inline KeyCollection_t957197774A5B992291BD30CAA0D5D9CCFA3DCAE9 * Dictionary_2_get_Keys_m7A818D2B12B3E3204B17DCDCD6A88434D77FA1E8 (Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE * __this, const RuntimeMethod* method) { return (( KeyCollection_t957197774A5B992291BD30CAA0D5D9CCFA3DCAE9 * (*) (Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE *, const RuntimeMethod*))Dictionary_2_get_Keys_m7A818D2B12B3E3204B17DCDCD6A88434D77FA1E8_gshared)(__this, method); } // !!0[] System.Linq.Enumerable::ToArray(System.Collections.Generic.IEnumerable`1) inline InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* Enumerable_ToArray_TisInternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_mCBDD219E3CD8E6A836DED802188AB3D29C9EB9DA (RuntimeObject* ___source0, const RuntimeMethod* method) { return (( InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_ToArray_TisInternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_mCBDD219E3CD8E6A836DED802188AB3D29C9EB9DA_gshared)(___source0, method); } // !1 System.Collections.Generic.Dictionary`2::get_Item(!0) inline PrecompiledLayout_t87B15ED374C6DA9C0C0D9333A1BDAC4F40E548CB Dictionary_2_get_Item_m733F4D7CC7AA69207084F6670637C330C2629459 (Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, const RuntimeMethod* method) { return (( PrecompiledLayout_t87B15ED374C6DA9C0C0D9333A1BDAC4F40E548CB (*) (Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE *, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED , const RuntimeMethod*))Dictionary_2_get_Item_m733F4D7CC7AA69207084F6670637C330C2629459_gshared)(__this, ___key0, method); } // System.Boolean UnityEngine.InputSystem.Utilities.StringHelpers::CharacterSeparatedListsHaveAtLeastOneCommonElement(System.String,System.String,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StringHelpers_CharacterSeparatedListsHaveAtLeastOneCommonElement_mB6291B57AF545D35A0463D6CF8B70A58684D9057 (String_t* ___firstList0, String_t* ___secondList1, Il2CppChar ___separator2, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::RecreateDevicesUsingLayout(UnityEngine.InputSystem.Utilities.InternedString,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_RecreateDevicesUsingLayout_m5E5B4E9D5228BA6B17F49AECB68B8030211E685F (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___layout0, bool ___isKnownToBeDeviceLayout1, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.DelegateHelpers::InvokeCallbacksSafe(UnityEngine.InputSystem.Utilities.CallbackArray`1>&,TValue1,TValue2,System.String,System.Object) inline void DelegateHelpers_InvokeCallbacksSafe_TisString_t_TisInputControlLayoutChange_tE5631ED390D3B861F06F45893369D3E67C90291A_m503B6ED6A7016E0FA0849F986757218D724D001A (CallbackArray_1_t506D5A43E1BA50974832B6281CE0E05C835BD3A9 * ___callbacks0, String_t* ___argument11, int32_t ___argument22, String_t* ___callbackName3, RuntimeObject * ___context4, const RuntimeMethod* method) { (( void (*) (CallbackArray_1_t506D5A43E1BA50974832B6281CE0E05C835BD3A9 *, String_t*, int32_t, String_t*, RuntimeObject *, const RuntimeMethod*))DelegateHelpers_InvokeCallbacksSafe_TisRuntimeObject_TisInt32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C_m04CA5EA9EA079CEADDF35C5A68BCABE5E8BD43BA_gshared)(___callbacks0, ___argument11, ___argument22, ___callbackName3, ___context4, method); } // System.Boolean UnityEngine.InputSystem.InputManager::IsControlUsingLayout(UnityEngine.InputSystem.InputControl,UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_IsControlUsingLayout_mEB5197615C51BC5C9F2663DF04228CD61C3CBDC4 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * ___control0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___layout1, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputManager::IsControlOrChildUsingLayoutRecursive(UnityEngine.InputSystem.InputControl,UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_IsControlOrChildUsingLayoutRecursive_m7E722729D9FCA899B15A237F46657892D7D8D44E (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * ___control0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___layout1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_mBCF1F1F20B1F9F3EB04E94A0B05FB9AD544CC66E (List_1_tD6947050802043C1EF83E27C7D278C8790D69D83 * __this, const RuntimeMethod* method) { (( void (*) (List_1_tD6947050802043C1EF83E27C7D278C8790D69D83 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1::Add(!0) inline void List_1_Add_m0F8FEDDD5B5FDD9CF2D36743082DFAF1D90BF1A6 (List_1_tD6947050802043C1EF83E27C7D278C8790D69D83 * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tD6947050802043C1EF83E27C7D278C8790D69D83 *, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *, const RuntimeMethod*))List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared)(__this, ___item0, method); } // UnityEngine.InputSystem.Layouts.InputDeviceBuilder/RefInstance UnityEngine.InputSystem.Layouts.InputDeviceBuilder::Ref() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RefInstance_t644EB29D353013AE02C53F47A026FFEEBA232E6F InputDeviceBuilder_Ref_m922869C2A486DD2106ACAED966AC768B0B8DE837 (const RuntimeMethod* method); // !0 System.Collections.Generic.List`1::get_Item(System.Int32) inline InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * List_1_get_Item_mB382A8E60BA27DF8C55823C4273C825A432EA956_inline (List_1_tD6947050802043C1EF83E27C7D278C8790D69D83 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * (*) (List_1_tD6947050802043C1EF83E27C7D278C8790D69D83 *, int32_t, const RuntimeMethod*))List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline)(__this, ___index0, method); } // System.Void UnityEngine.InputSystem.InputManager::RecreateDevice(UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_RecreateDevice_m872A5709870E0FB7D8B517D9A6822ED6D0B0E7B6 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___oldDevice0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___newLayout1, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1::get_Count() inline int32_t List_1_get_Count_m9B020E4038F641C1B06E0BEB2915A1F69BA1DF22_inline (List_1_tD6947050802043C1EF83E27C7D278C8790D69D83 * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_tD6947050802043C1EF83E27C7D278C8790D69D83 *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method); } // System.Void UnityEngine.InputSystem.Layouts.InputDeviceBuilder/RefInstance::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RefInstance_Dispose_m78EC838639BF9D789D41763BE97E01B2AE557A4F (RefInstance_t644EB29D353013AE02C53F47A026FFEEBA232E6F * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 UnityEngine.InputSystem.InputControl::get_children() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 InputControl_get_children_mE498FA37DACEC312AA60A7A5A7F6CF146EFC5A9A (InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * __this, const RuntimeMethod* method); // TValue UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::get_Item(System.Int32) inline InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * ReadOnlyArray_1_get_Item_m8E38E64671229D35FA708BF0B650FE3F846189FC (ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * (*) (ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 *, int32_t, const RuntimeMethod*))ReadOnlyArray_1_get_Item_m84136BE8993A7013D4900F0ACF7B4ECAD86456F6_gshared)(__this, ___index0, method); } // System.Boolean UnityEngine.InputSystem.Utilities.InternedString::op_Equality(System.String,UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternedString_op_Equality_mE3E3FDA44003AE8A7A81647CBFB85C03945AD6F4 (String_t* ___a0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___b1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::TryGetValue(!0,!1&) inline bool Dictionary_2_TryGetValue_mD3954C657979AD880C781BAC9CFBD461A9FF7A75 (Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540 * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540 *, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED , InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *, const RuntimeMethod*))Dictionary_2_TryGetValue_mD3954C657979AD880C781BAC9CFBD461A9FF7A75_gshared)(__this, ___key0, ___value1, method); } // System.Void UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::AddMatcher(UnityEngine.InputSystem.Utilities.InternedString,UnityEngine.InputSystem.Layouts.InputDeviceMatcher) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Collection_AddMatcher_mD9CF93319D4D18F1DEEE2D06999D31D33BF46CA4 (Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___layout0, InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 ___matcher1, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::RecreateDevicesUsingLayoutWithInferiorMatch(UnityEngine.InputSystem.Layouts.InputDeviceMatcher) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_RecreateDevicesUsingLayoutWithInferiorMatch_m117677AE70656729DE16FBE06476DADBDB3482D9 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 ___deviceMatcher0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::AddAvailableDevicesMatchingDescription(UnityEngine.InputSystem.Layouts.InputDeviceMatcher,UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_AddAvailableDevicesMatchingDescription_m656E5E99F204E27447801478E4234975750E61A2 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 ___matcher0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___layout1, const RuntimeMethod* method); // UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::TryFindLayoutForType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED Collection_TryFindLayoutForType_mC84D3FC044E2F243F888F3335424CCCA07072AC9 (Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * __this, Type_t * ___layoutType0, const RuntimeMethod* method); // UnityEngine.InputSystem.Layouts.InputDeviceDescription UnityEngine.InputSystem.InputDevice::get_description() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 InputDevice_get_description_m3F54BB4D6E85ADD8CDBB2906821A9D828CAC8305_inline (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.InputManager::TryFindMatchingControlLayout(UnityEngine.InputSystem.Layouts.InputDeviceDescription&,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED InputManager_TryFindMatchingControlLayout_mF1C449D35DF64AD63A3A8D45080DA7F592B38945 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * ___deviceDescription0, int32_t ___deviceId1, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::RemoveDevice(UnityEngine.InputSystem.InputDevice,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_RemoveDevice_m078BD5E7310B7B57E282ECDD0972A6641F66C2C0 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, bool ___keepOnListOfAvailableDevices1, const RuntimeMethod* method); // TDevice UnityEngine.InputSystem.InputDevice::Build(System.String,System.String,UnityEngine.InputSystem.Layouts.InputDeviceDescription,System.Boolean) inline InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * InputDevice_Build_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_m40E08FFE91FCD1BF977448865B23798106F79A40 (String_t* ___layoutName0, String_t* ___layoutVariants1, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___deviceDescription2, bool ___noPrecompiledLayouts3, const RuntimeMethod* method) { return (( InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * (*) (String_t*, String_t*, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 , bool, const RuntimeMethod*))InputDevice_Build_TisRuntimeObject_m944D6E77F159CA01263AC3C3EAFB5F973EE49015_gshared)(___layoutName0, ___layoutVariants1, ___deviceDescription2, ___noPrecompiledLayouts3, method); } // System.Boolean UnityEngine.InputSystem.InputDevice::get_native() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_get_native_m480C408308E3B4FAB47D7551025D405E250C0F78 (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputDevice::get_remote() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_get_remote_mC1C2A5CB87863CFD667C57ECA5D5847A93101832 (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputDevice::get_enabled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_get_enabled_m9804D43CD889D2D99E778707FE7BC00F4B54C70E (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::AddDevice(UnityEngine.InputSystem.InputDevice) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_AddDevice_m46C38DC839860EE2EB54FFD22557FBCB6249CCD8 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, const RuntimeMethod* method); // UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputManager::TryGetDeviceById(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * InputManager_TryGetDeviceById_m04896C1A02E97E7B7322C28FDC002823CDB6167B (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, int32_t ___id0, const RuntimeMethod* method); // UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputManager::AddDevice(UnityEngine.InputSystem.Utilities.InternedString,System.Int32,System.String,UnityEngine.InputSystem.Layouts.InputDeviceDescription,UnityEngine.InputSystem.InputDevice/DeviceFlags,UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * InputManager_AddDevice_m10EE44C62BCA48C746ED6EC0E16FB6FFF6ED0328 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___layout0, int32_t ___deviceId1, String_t* ___deviceName2, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___deviceDescription3, int32_t ___deviceFlags4, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___variants5, const RuntimeMethod* method); // System.String System.String::Format(System.String,System.Object,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mD0D523A440845BA7F58E68187E029DC9AB821CED (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, RuntimeObject * ___arg23, const RuntimeMethod* method); // System.Void UnityEngine.Debug::LogException(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogException_m418B8879895C54AF03169B53DAA24EE9067E3DC7 (Exception_t * ___exception0, const RuntimeMethod* method); // UnityEngine.InputSystem.LowLevel.EnableDeviceCommand UnityEngine.InputSystem.LowLevel.EnableDeviceCommand::Create() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EnableDeviceCommand_tB57B3D3EDA2CD18BF45CCDB5132C993C6FBFA613 EnableDeviceCommand_Create_m8A9E610496B41B0E9209C6A3D29C9AC956AB3206 (const RuntimeMethod* method); // System.Int64 UnityEngine.InputSystem.LowLevel.InputRuntimeExtensions::DeviceCommand(UnityEngine.InputSystem.LowLevel.IInputRuntime,System.Int32,TCommand&) inline int64_t InputRuntimeExtensions_DeviceCommand_TisEnableDeviceCommand_tB57B3D3EDA2CD18BF45CCDB5132C993C6FBFA613_m6DA0519E09D540313D30CAF703C46549C6C788FF (RuntimeObject* ___runtime0, int32_t ___deviceId1, EnableDeviceCommand_tB57B3D3EDA2CD18BF45CCDB5132C993C6FBFA613 * ___command2, const RuntimeMethod* method) { return (( int64_t (*) (RuntimeObject*, int32_t, EnableDeviceCommand_tB57B3D3EDA2CD18BF45CCDB5132C993C6FBFA613 *, const RuntimeMethod*))InputRuntimeExtensions_DeviceCommand_TisEnableDeviceCommand_tB57B3D3EDA2CD18BF45CCDB5132C993C6FBFA613_m6DA0519E09D540313D30CAF703C46549C6C788FF_gshared)(___runtime0, ___deviceId1, ___command2, method); } // System.Boolean System.Collections.Generic.Dictionary`2::Remove(!0) inline bool Dictionary_2_Remove_mBDE1B0F245A6B9191F016A1F381917EB331C9F9B (Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E *, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED , const RuntimeMethod*))Dictionary_2_Remove_m3EF3E79BB5DC3FA364C801B415C253F94380C637_gshared)(__this, ___key0, method); } // System.Boolean System.Collections.Generic.Dictionary`2::Remove(!0) inline bool Dictionary_2_Remove_mCB615177BD1FE54FDAF26B44BC9A59954F6C4257 (Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E *, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED , const RuntimeMethod*))Dictionary_2_Remove_m3EF3E79BB5DC3FA364C801B415C253F94380C637_gshared)(__this, ___key0, method); } // System.Boolean System.Collections.Generic.Dictionary`2>::Remove(!0) inline bool Dictionary_2_Remove_m53A76BB8418223DACDB6F8F02A0B2EFE29B7F732 (Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9 * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9 *, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED , const RuntimeMethod*))Dictionary_2_Remove_m3EF3E79BB5DC3FA364C801B415C253F94380C637_gshared)(__this, ___key0, method); } // System.Boolean System.Collections.Generic.Dictionary`2::Remove(!0) inline bool Dictionary_2_Remove_m947D65A5DF070987EB824FD37FB2A9386DB8D3D3 (Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540 * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540 *, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED , const RuntimeMethod*))Dictionary_2_Remove_m947D65A5DF070987EB824FD37FB2A9386DB8D3D3_gshared)(__this, ___key0, method); } // UnityEngine.InputSystem.Layouts.InputControlLayout UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::TryLoadLayout(UnityEngine.InputSystem.Utilities.InternedString,System.Collections.Generic.Dictionary`2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741 * Collection_TryLoadLayout_m541F8A3B3636CEAF527E49926F71365C179E09B1 (Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___name0, Dictionary_2_t5CDE7C1F4CCF20D97AD81FE47A410DD3383EFB65 * ___table1, const RuntimeMethod* method); // UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::TryFindMatchingLayout(UnityEngine.InputSystem.Layouts.InputDeviceDescription) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED Collection_TryFindMatchingLayout_m2B4AA3663CB2A2306B172426C02F9C8C42B09AC3 (Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * __this, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___deviceDescription0, const RuntimeMethod* method); // System.Type UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::GetControlTypeForLayout(UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Collection_GetControlTypeForLayout_mBBADAF614756399C63F958B83124F2DC7E98AC5C (Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___layoutName0, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.CallbackArray`1::get_length() inline int32_t CallbackArray_1_get_length_mEC75AEA8B81974DD2F978C30B46B7C3935C25E6F (CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 * __this, const RuntimeMethod* method) { return (( int32_t (*) (CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 *, const RuntimeMethod*))CallbackArray_1_get_length_mF3713D9A736D916981802210CF20A583258E1B08_gshared)(__this, method); } // System.Void UnityEngine.InputSystem.LowLevel.InputDeviceExecuteCommandDelegate::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDeviceExecuteCommandDelegate__ctor_m5810591B3A01F4C5C0F075DC1971FA0C1101E86F (InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1::LockForChanges() inline void CallbackArray_1_LockForChanges_m34F8D18AD56D842C0F334D4BEFAC48F76C292B20 (CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 * __this, const RuntimeMethod* method) { (( void (*) (CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 *, const RuntimeMethod*))CallbackArray_1_LockForChanges_m16A98AA041A3624729077E7278CC38431B36AA99_gshared)(__this, method); } // TDelegate UnityEngine.InputSystem.Utilities.CallbackArray`1::get_Item(System.Int32) inline InputDeviceFindControlLayoutDelegate_tE30412E20D6F6870BF090C6D6C4CA9B4CFD0978F * CallbackArray_1_get_Item_m495347129AF9025FE046E4DEABC0D841FD5D4CE9 (CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( InputDeviceFindControlLayoutDelegate_tE30412E20D6F6870BF090C6D6C4CA9B4CFD0978F * (*) (CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 *, int32_t, const RuntimeMethod*))CallbackArray_1_get_Item_m0C00A737D031A7D2E14B666DE1339E0482D2F4E0_gshared)(__this, ___index0, method); } // System.String UnityEngine.InputSystem.Layouts.InputDeviceFindControlLayoutDelegate::Invoke(UnityEngine.InputSystem.Layouts.InputDeviceDescription&,System.String,UnityEngine.InputSystem.LowLevel.InputDeviceExecuteCommandDelegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputDeviceFindControlLayoutDelegate_Invoke_mB36B7B8A0168707534771FBADBF2EE3E0E9C80FE (InputDeviceFindControlLayoutDelegate_tE30412E20D6F6870BF090C6D6C4CA9B4CFD0978F * __this, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * ___description0, String_t* ___matchedLayout1, InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D * ___executeDeviceCommand2, const RuntimeMethod* method); // System.Type System.Exception::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Exception_GetType_mC5B8B5C944B326B751282AB0E8C25A7F85457D9F (Exception_t * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.CallbackArray`1::UnlockForChanges() inline void CallbackArray_1_UnlockForChanges_mE6D18559C032E4643DB6FEC235577360EC6EC1CD (CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 * __this, const RuntimeMethod* method) { (( void (*) (CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 *, const RuntimeMethod*))CallbackArray_1_UnlockForChanges_m6CC0EF37F717E02D62818FDDB088C47B4085E90B_gshared)(__this, method); } // System.Void UnityEngine.InputSystem.InputManager::RegisterControlLayout(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, String_t* ___name0, Type_t * ___type1, const RuntimeMethod* method); // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 UnityEngine.InputSystem.InputSettings::get_supportedDevices() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_t1395593458B5F4A22EB99780AA86DA049C3EACEF InputSettings_get_supportedDevices_m99C6795D226E5619AEBD11AA9DB414B7DF3A8EF5 (InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::get_Count() inline int32_t ReadOnlyArray_1_get_Count_m27C66CAC40DF36D4D4322096DE84D39BE2753D33_inline (ReadOnlyArray_1_t1395593458B5F4A22EB99780AA86DA049C3EACEF * __this, const RuntimeMethod* method) { return (( int32_t (*) (ReadOnlyArray_1_t1395593458B5F4A22EB99780AA86DA049C3EACEF *, const RuntimeMethod*))ReadOnlyArray_1_get_Count_m23B4A29E81D59954DD014F2E62B43150D34C51BD_gshared_inline)(__this, method); } // TValue UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::get_Item(System.Int32) inline String_t* ReadOnlyArray_1_get_Item_mDD866694F03820E5166C4386797E9389D1C20277 (ReadOnlyArray_1_t1395593458B5F4A22EB99780AA86DA049C3EACEF * __this, int32_t ___index0, const RuntimeMethod* method) { return (( String_t* (*) (ReadOnlyArray_1_t1395593458B5F4A22EB99780AA86DA049C3EACEF *, int32_t, const RuntimeMethod*))ReadOnlyArray_1_get_Item_m84136BE8993A7013D4900F0ACF7B4ECAD86456F6_gshared)(__this, ___index0, method); } // System.Boolean UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::IsBasedOn(UnityEngine.InputSystem.Utilities.InternedString,UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Collection_IsBasedOn_m1098F3B9E5E29E134EB147B5A5FB2572485D15CA (Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___parentLayout0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___childLayout1, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager/d__75::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CListControlLayoutsU3Ed__75__ctor_mDC69315E5A0F2C13794E015121649C30F16CA211 (U3CListControlLayoutsU3Ed__75_tA3D7E50B5429656CACEB609171EC221DD2A94B89 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method); // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 UnityEngine.InputSystem.InputControl::get_usages() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_t606E37DB0F1B75FCB4C4A029A0F6C2B4AE7DED75 InputControl_get_usages_m81E30400E8947C9B5EC6A9B4892BFA8C712B11FE (InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::get_Count() inline int32_t ReadOnlyArray_1_get_Count_mB7032E0F55BC9BAC395949F252CE4E2B00451700_inline (ReadOnlyArray_1_t606E37DB0F1B75FCB4C4A029A0F6C2B4AE7DED75 * __this, const RuntimeMethod* method) { return (( int32_t (*) (ReadOnlyArray_1_t606E37DB0F1B75FCB4C4A029A0F6C2B4AE7DED75 *, const RuntimeMethod*))ReadOnlyArray_1_get_Count_mB7032E0F55BC9BAC395949F252CE4E2B00451700_gshared_inline)(__this, method); } // TValue UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::get_Item(System.Int32) inline InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ReadOnlyArray_1_get_Item_mA008A6D96358A9EE19CCCE5C476367DDC58F0E51 (ReadOnlyArray_1_t606E37DB0F1B75FCB4C4A029A0F6C2B4AE7DED75 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED (*) (ReadOnlyArray_1_t606E37DB0F1B75FCB4C4A029A0F6C2B4AE7DED75 *, int32_t, const RuntimeMethod*))ReadOnlyArray_1_get_Item_mA008A6D96358A9EE19CCCE5C476367DDC58F0E51_gshared)(__this, ___index0, method); } // System.Void UnityEngine.InputSystem.InputDevice::ClearDeviceUsages() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDevice_ClearDeviceUsages_m5542D6506AC9250AAE4EF7C2C8D2251BBF438B9F (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputDevice::AddDeviceUsage(UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDevice_AddDeviceUsage_m4B3B4CF64903EDCCED4D669B4148C3D7EEF188E8 (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___usage0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::NotifyUsageChanged(UnityEngine.InputSystem.InputDevice) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_NotifyUsageChanged_m7D2BF8FA70610D5D5EC17FC2136C47E3799702EA (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.Utilities.ReadOnlyArrayExtensions::Contains(UnityEngine.InputSystem.Utilities.ReadOnlyArray`1,TValue) inline bool ReadOnlyArrayExtensions_Contains_TisInternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_m23E2471F1568258A2210D67111E1A3B892C238BF (ReadOnlyArray_1_t606E37DB0F1B75FCB4C4A029A0F6C2B4AE7DED75 ___array0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___value1, const RuntimeMethod* method) { return (( bool (*) (ReadOnlyArray_1_t606E37DB0F1B75FCB4C4A029A0F6C2B4AE7DED75 , InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED , const RuntimeMethod*))ReadOnlyArrayExtensions_Contains_TisInternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_m23E2471F1568258A2210D67111E1A3B892C238BF_gshared)(___array0, ___value1, method); } // System.Void UnityEngine.InputSystem.InputDevice::RemoveDeviceUsage(UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDevice_RemoveDeviceUsage_mFD13B5EB1A60252A88055DCFD1AC662B08816E8E (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___usage0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputActionState::OnDeviceChange(UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.InputDeviceChange) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputActionState_OnDeviceChange_mE3D72775E04B0D3BE4F7545C51E12185CCAEFF52 (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, int32_t ___change1, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.DelegateHelpers::InvokeCallbacksSafe(UnityEngine.InputSystem.Utilities.CallbackArray`1>&,TValue1,TValue2,System.String,System.Object) inline void DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38 (CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 * ___callbacks0, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___argument11, int32_t ___argument22, String_t* ___callbackName3, RuntimeObject * ___context4, const RuntimeMethod* method) { (( void (*) (CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 *, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *, int32_t, String_t*, RuntimeObject *, const RuntimeMethod*))DelegateHelpers_InvokeCallbacksSafe_TisRuntimeObject_TisInt32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C_m04CA5EA9EA079CEADDF35C5A68BCABE5E8BD43BA_gshared)(___callbacks0, ___argument11, ___argument22, ___callbackName3, ___context4, method); } // UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.InputManager::FindOrRegisterDeviceLayoutForType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED InputManager_FindOrRegisterDeviceLayoutForType_m835054747AC47CD4D0D7EB2410A83F947DD2C4BD (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Type_t * ___type0, const RuntimeMethod* method); // UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputManager::AddDevice(System.String,System.String,UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * InputManager_AddDevice_m09F00AD0628BC61DDBA992D0977A018DA68250E6 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, String_t* ___layout0, String_t* ___name1, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___variants2, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.Utilities.ArrayHelpers::Contains(TValue[],TValue) inline bool ArrayHelpers_Contains_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mEB17A6E059375C43F892D29500A44FE019B2255E (InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* ___array0, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___value1, const RuntimeMethod* method) { return (( bool (*) (InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6*, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *, const RuntimeMethod*))ArrayHelpers_Contains_TisRuntimeObject_m0FA2B1E062E649226E51561B1A3F95A862BE6EDB_gshared)(___array0, ___value1, method); } // System.Void UnityEngine.InputSystem.InputManager::MakeDeviceNameUnique(UnityEngine.InputSystem.InputDevice) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_MakeDeviceNameUnique_m6C64F024E906990155FDEA3DC2617A2B6A59B4B4 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::AssignUniqueDeviceId(UnityEngine.InputSystem.InputDevice) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_AssignUniqueDeviceId_m6641DFB9A3E87C471FB9EAF8EAA487A618E5880D (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::AppendWithCapacity(TValue[]&,System.Int32&,TValue,System.Int32) inline int32_t ArrayHelpers_AppendWithCapacity_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mBAC377FA55F45B5A5F427BC00EFF2A1FB1C9F988 (InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6** ___array0, int32_t* ___count1, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___value2, int32_t ___capacityIncrement3, const RuntimeMethod* method) { return (( int32_t (*) (InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6**, int32_t*, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *, int32_t, const RuntimeMethod*))ArrayHelpers_AppendWithCapacity_TisRuntimeObject_mA6B8ADA966B939BEEB0726AA570EB844A82DF57D_gshared)(___array0, ___count1, ___value2, ___capacityIncrement3, method); } // System.Void System.Collections.Generic.Dictionary`2::set_Item(!0,!1) inline void Dictionary_2_set_Item_m2C27879AD01AA06188580EA811864D14A84C98E8 (Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7 * __this, int32_t ___key0, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7 *, int32_t, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *, const RuntimeMethod*))Dictionary_2_set_Item_m71867F9FFBB49DE962FD0036368A0F6E87F30C90_gshared)(__this, ___key0, ___value1, method); } // System.Void UnityEngine.InputSystem.LowLevel.InputStateBlock::set_byteOffset(System.UInt32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputStateBlock_set_byteOffset_mBDAEEE9085F06375925C28F921FC87ECA31C60DF_inline (InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * __this, uint32_t ___value0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::InitializeDeviceState(UnityEngine.InputSystem.InputDevice) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_InitializeDeviceState_m5593C7FC3E2789C0C5EEB3794A4D0C7A9F19F8BF (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::get_maxNumDevices() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_maxNumDevices_mF480045465CDFC91FE23301300057D4B5F7716FF_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.Mathf::Max(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Mathf_Max_mDE96ED504F75C9C7985CC49B099CF308AC52BF48 (int32_t ___a0, int32_t ___b1, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputMetrics::set_maxNumDevices(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_maxNumDevices_mD43CF4C39E736DB590117851167CD81BF09F048A_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, int32_t ___value0, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::get_maxStateSizeInBytes() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_maxStateSizeInBytes_mCC4CE8BDB98FAFCF687AD7B7E47E78626CF61FC9_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputMetrics::set_maxStateSizeInBytes(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_maxStateSizeInBytes_m511A5A5BDD32D4D805D3414051A607BE712335E2_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, int32_t ___value0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputManager::get_gameHasFocus() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_get_gameHasFocus_m5165C51969FCD9AC566668067F2FF38740130D18 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputDevice::QueryEnabledStateFromRuntime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_QueryEnabledStateFromRuntime_mC1EE103B877C82AB7A413F2694875CC66508B4AC (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputManager::ShouldRunDeviceInBackground(UnityEngine.InputSystem.InputDevice) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_ShouldRunDeviceInBackground_mCA4D4FB2236C2895EF2D70BB6DAA863A233D13C7 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::EnableOrDisableDevice(UnityEngine.InputSystem.InputDevice,System.Boolean,UnityEngine.InputSystem.InputManager/DeviceDisableScope) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_EnableOrDisableDevice_m2A34CA6F0F721537E62BC5CDF32C051CA3FEC183 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, bool ___enable1, int32_t ___scope2, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::add_onBeforeUpdate(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_add_onBeforeUpdate_m502B9A8DAA2F06E61843275F351A72D289D461FF (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___value0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputDevice::set_hasEventMerger(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDevice_set_hasEventMerger_m847E74F1E47AA361E3CC2AD15A87A2D60513DB42 (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, bool ___value0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputDevice::set_hasEventPreProcessor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDevice_set_hasEventPreProcessor_m35AFC9BD219CF73F8284D2E63CA07B43F030806E (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, bool ___value0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputDevice::get_updateBeforeRender() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_get_updateBeforeRender_m8B0830820DF38D0D8682EA88EBC3A8094340DBE8 (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.LowLevel.InputUpdateType UnityEngine.InputSystem.InputManager::get_updateMask() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputManager_get_updateMask_mF3D4D0E3E4AC121A3DECFD25A8BAFB7EC25FB312_inline (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::set_updateMask(UnityEngine.InputSystem.LowLevel.InputUpdateType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_set_updateMask_m84A72CF7C05D03B1A10E960F36FA562B3EF22032 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputDevice::NotifyAdded() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDevice_NotifyAdded_m8A786359B5B811B1EB48991489EB9C349FCAD94A (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputDevice::RequestSync() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_RequestSync_mFE6A5CFDE65109D527ED21DB498E6826A296C4BB (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputManager::AddDevice(UnityEngine.InputSystem.Layouts.InputDeviceDescription,System.Boolean,System.String,System.Int32,UnityEngine.InputSystem.InputDevice/DeviceFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * InputManager_AddDevice_mB7C1C7D58C39D5C9D80FBBF47AACA3CC6451E235 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___description0, bool ___throwIfNoLayoutFound1, String_t* ___deviceName2, int32_t ___deviceId3, int32_t ___deviceFlags4, const RuntimeMethod* method); // UnityEngine.InputSystem.LowLevel.DisableDeviceCommand UnityEngine.InputSystem.LowLevel.DisableDeviceCommand::Create() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DisableDeviceCommand_tB2F65EF65EBE67BF06541CD04C81BB31EE208FD5 DisableDeviceCommand_Create_m8B26D925D5598017AA0A3D1EA319554A1C409923 (const RuntimeMethod* method); // System.Int64 UnityEngine.InputSystem.LowLevel.InputRuntimeExtensions::DeviceCommand(UnityEngine.InputSystem.LowLevel.IInputRuntime,System.Int32,TCommand&) inline int64_t InputRuntimeExtensions_DeviceCommand_TisDisableDeviceCommand_tB2F65EF65EBE67BF06541CD04C81BB31EE208FD5_m0E4A8423F3F6957D74340A32940213ED6937E649 (RuntimeObject* ___runtime0, int32_t ___deviceId1, DisableDeviceCommand_tB2F65EF65EBE67BF06541CD04C81BB31EE208FD5 * ___command2, const RuntimeMethod* method) { return (( int64_t (*) (RuntimeObject*, int32_t, DisableDeviceCommand_tB2F65EF65EBE67BF06541CD04C81BB31EE208FD5 *, const RuntimeMethod*))InputRuntimeExtensions_DeviceCommand_TisDisableDeviceCommand_tB2F65EF65EBE67BF06541CD04C81BB31EE208FD5_m0E4A8423F3F6957D74340A32940213ED6937E649_gshared)(___runtime0, ___deviceId1, ___command2, method); } // System.Void UnityEngine.InputSystem.InputManager::RemoveStateChangeMonitors(UnityEngine.InputSystem.InputDevice) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_RemoveStateChangeMonitors_m5CB5F66F6D3DB0F07272C6491A008707101D7A39 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::LengthSafe(TValue[]) inline int32_t ArrayHelpers_LengthSafe_TisStateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_mEF0C8691912F12B19C9BF503E38175BDAEA8A4AA (StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* ___array0, const RuntimeMethod* method) { return (( int32_t (*) (StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE*, const RuntimeMethod*))ArrayHelpers_LengthSafe_TisStateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_mEF0C8691912F12B19C9BF503E38175BDAEA8A4AA_gshared)(___array0, method); } // System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::EraseAtWithCapacity(TValue[],System.Int32&,System.Int32) inline void ArrayHelpers_EraseAtWithCapacity_TisStateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_mFD30A7FB5FCDAC45EA4F3388F8AB79D9E295ED6F (StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* ___array0, int32_t* ___count1, int32_t ___index2, const RuntimeMethod* method) { (( void (*) (StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE*, int32_t*, int32_t, const RuntimeMethod*))ArrayHelpers_EraseAtWithCapacity_TisStateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_mFD30A7FB5FCDAC45EA4F3388F8AB79D9E295ED6F_gshared)(___array0, ___count1, ___index2, method); } // System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::EraseAtWithCapacity(TValue[],System.Int32&,System.Int32) inline void ArrayHelpers_EraseAtWithCapacity_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mEA807EF2CA95E277837869AA2396028B41A8CCA6 (InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* ___array0, int32_t* ___count1, int32_t ___index2, const RuntimeMethod* method) { (( void (*) (InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6*, int32_t*, int32_t, const RuntimeMethod*))ArrayHelpers_EraseAtWithCapacity_TisRuntimeObject_m453548DEF5D8CA10274D9A007D08102B4ED37759_gshared)(___array0, ___count1, ___index2, method); } // System.Boolean System.Collections.Generic.Dictionary`2::Remove(!0) inline bool Dictionary_2_Remove_m662F1788161601D187CECE948C789559880E36DD (Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7 * __this, int32_t ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7 *, int32_t, const RuntimeMethod*))Dictionary_2_Remove_mAC77908EC28C242ACC8C3C4CDEA945E73B95CFA4_gshared)(__this, ___key0, method); } // System.Void UnityEngine.InputSystem.LowLevel.InputStateBuffers::FreeAll() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputStateBuffers_FreeAll_m6E5BFFDB30EEFE25ACCDF9D299C1C3516D8AEDB4 (InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::EraseAtWithCapacity(TValue[],System.Int32&,System.Int32) inline void ArrayHelpers_EraseAtWithCapacity_TisAvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D_mC10F77228033C2ECC47DEBAA7EF45C5861758982 (AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330* ___array0, int32_t* ___count1, int32_t ___index2, const RuntimeMethod* method) { (( void (*) (AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330*, int32_t*, int32_t, const RuntimeMethod*))ArrayHelpers_EraseAtWithCapacity_TisAvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D_mC10F77228033C2ECC47DEBAA7EF45C5861758982_gshared)(___array0, ___count1, ___index2, method); } // System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBlock::get_byteOffset() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t InputStateBlock_get_byteOffset_m68EF162227DEB77FFCA5C46605780C3387ADC019_inline (InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputControl::BakeOffsetIntoStateBlockRecursive(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputControl_BakeOffsetIntoStateBlockRecursive_m711ADB2CA8BBDE69B11B4FE52B0C08B3B6D95FE2 (InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * __this, uint32_t ___offset0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::remove_onBeforeUpdate(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_remove_onBeforeUpdate_m5CE346EC8D9BCE18CF10EDEB11448BDB667A8691 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___value0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputDevice::NotifyRemoved() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDevice_NotifyRemoved_mB46C1B6528A3314DC4D98E54423BDB490CD04E0B (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // System.Type System.Object::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B (RuntimeObject * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputSystem::GetDevice(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * InputSystem_GetDevice_m402ADC9477F1B49993FACC4C62069507B4D86C4B (Type_t * ___type0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::Clear(TValue[],System.Int32) inline void ArrayHelpers_Clear_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mD823D23E104DD81E4D1C18113F4A97131F52FAA3 (InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* ___array0, int32_t ___count1, const RuntimeMethod* method) { (( void (*) (InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6*, int32_t, const RuntimeMethod*))ArrayHelpers_Clear_TisRuntimeObject_mEEB2434FA8ED3826BF374114B8C095622275B45E_gshared)(___array0, ___count1, method); } // System.Boolean UnityEngine.InputSystem.InputDevice::get_added() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_get_added_m6228E4D9FD11390012BA1693DE2EC3ECF55AD255 (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputDevice::get_hasDontResetControls() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_get_hasDontResetControls_m6639662CF6D0DCD07762BD7C4C95AE52C43E2275 (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // System.Void* UnityEngine.InputSystem.InputControl::get_defaultStatePtr() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void* InputControl_get_defaultStatePtr_m37116C9D7D2F799DC929E931364954D8895854C1_inline (InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * __this, const RuntimeMethod* method); // System.Void* UnityEngine.InputSystem.LowLevel.StateEvent::get_state() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* StateEvent_get_state_mFAD2786AB2A030B34EA4B23A0111289F67B16B2B (StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 * __this, const RuntimeMethod* method); // System.Void* UnityEngine.InputSystem.InputControl::get_currentStatePtr() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* InputControl_get_currentStatePtr_m069609EF2EEE5BD33A09A697690CE09FB618F693 (InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.MemoryHelpers::MemCpyMasked(System.Void*,System.Void*,System.Int32,System.Void*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryHelpers_MemCpyMasked_m9B4280A0A3E45D9B2AA4F8C6A85A9354119C3FBA (void* ___destination0, void* ___source1, int32_t ___numBytes2, void* ___mask3, const RuntimeMethod* method); // UnityEngine.InputSystem.LowLevel.InputUpdateType UnityEngine.InputSystem.InputManager::get_defaultUpdateType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputManager_get_defaultUpdateType_m42567EB68373890616C0D95CCE3F40098CE731BE (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputManager::UpdateState(UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.LowLevel.InputUpdateType,System.Void*,System.UInt32,System.UInt32,System.Double,UnityEngine.InputSystem.LowLevel.InputEventPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_UpdateState_mFE9F65AD171FE4A2C9CCFC0138D888AC1BC43021 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, int32_t ___updateType1, void* ___statePtr2, uint32_t ___stateOffsetInDevice3, uint32_t ___stateSize4, double ___internalTime5, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___eventPtr6, const RuntimeMethod* method); // System.Boolean System.Nullable`1::get_HasValue() inline bool Nullable_1_get_HasValue_m52F33C6963C9A76A14F54B4B2C30CEF580DB1EB7_inline (Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * __this, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 *, const RuntimeMethod*))Nullable_1_get_HasValue_m52F33C6963C9A76A14F54B4B2C30CEF580DB1EB7_gshared_inline)(__this, method); } // !0 System.Nullable`1::get_Value() inline bool Nullable_1_get_Value_mC9A7615EA5EDA84F8B8055BE43CF91D74820C378 (Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * __this, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 *, const RuntimeMethod*))Nullable_1_get_Value_mC9A7615EA5EDA84F8B8055BE43CF91D74820C378_gshared)(__this, method); } // System.Boolean UnityEngine.InputSystem.InputDevice::RequestReset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_RequestReset_mE1773E09FED3E0849059426264897AB8BC091F8D (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // System.String System.String::ToLower() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToLower_m7875A49FE166D0A68F3F6B6E70C0C056EBEFD31D (String_t* __this, const RuntimeMethod* method); // System.String UnityEngine.InputSystem.Utilities.InternedString::ToLower() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InternedString_ToLower_m3A1313A6EC45A43C5627D661669E434CA519F3E0_inline (InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * __this, const RuntimeMethod* method); // System.Boolean System.String::op_Equality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputManager::TryGetDevice(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * InputManager_TryGetDevice_m25BCD84E40F77E410BA6965DDC9294B61BE8E757 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, String_t* ___nameOrLayout0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::TryGetValue(!0,!1&) inline bool Dictionary_2_TryGetValue_m4C7810EB420DB7FC0BC4DB22BDE91569085096F2 (Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7 * __this, int32_t ___key0, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 ** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7 *, int32_t, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 **, const RuntimeMethod*))Dictionary_2_TryGetValue_m0A88BBB063127AFAD853506A433ACB07D7AAD67E_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.List`1::Add(!0) inline void List_1_Add_m3BC6C2081F0B7141ADA19126352232251A342682 (List_1_tAC9866130CCE9F688E2E8D1782F54217E5E3A32F * __this, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tAC9866130CCE9F688E2E8D1782F54217E5E3A32F *, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 , const RuntimeMethod*))List_1_Add_m3BC6C2081F0B7141ADA19126352232251A342682_gshared)(__this, ___item0, method); } // System.Void UnityEngine.InputSystem.InputDevice::set_disabledWhileInBackground(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDevice_set_disabledWhileInBackground_mDDEA05B48B000CC0FDF299D1351EAAF85DB9E6C4 (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, bool ___value0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputDevice::get_disabledInFrontend() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_get_disabledInFrontend_mC033F07E789663FEA0A2F1EFF647676444C088EB (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputDevice::get_disabledInRuntime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_get_disabledInRuntime_m0C48E5186775F12FE5FD995DEF5012EB8FC6A34B (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputDevice::ExecuteEnableCommand() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_ExecuteEnableCommand_m0327C2A773CFC5F7136CEABA65F4E6A7BC08B979 (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputDevice::set_disabledInRuntime(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDevice_set_disabledInRuntime_mBDDF48CA5E3D065CDB07AA229B22CE6BF57ADA52 (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, bool ___value0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::ResetDevice(UnityEngine.InputSystem.InputDevice,System.Boolean,System.Nullable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_ResetDevice_m161F0EA740DED1C72CB96E573E86C13656C990D2 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, bool ___alsoResetDontResetControls1, Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___issueResetCommand2, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputDevice::set_disabledInFrontend(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDevice_set_disabledInFrontend_m08F06A6271017BC472335FC456D730677DC4B97D (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, bool ___value0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputDevice::ExecuteDisableCommand() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_ExecuteDisableCommand_m90C167B490FF4D0282A0D5955459932AA1510BFE (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputDevice::get_disabledWhileInBackground() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_get_disabledWhileInBackground_mC5A011EACEBCF0E40DD4F82ED364FF5D10D9E8BB (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // System.Void System.Nullable`1::.ctor(!0) inline void Nullable_1__ctor_m402A94AC9070B345C95919DCFFFF627252B3E67A (Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * __this, bool ___value0, const RuntimeMethod* method) { (( void (*) (Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 *, bool, const RuntimeMethod*))Nullable_1__ctor_m402A94AC9070B345C95919DCFFFF627252B3E67A_gshared)(__this, ___value0, method); } // System.Void UnityEngine.InputSystem.InputManager::QueueEvent(UnityEngine.InputSystem.LowLevel.InputEvent*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_QueueEvent_m28C7A2B99010D148EB518DEDE7821B1B697D0ECD (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::Update(UnityEngine.InputSystem.LowLevel.InputUpdateType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_Update_m0229B60808D13C87D95CE604719BE9EE675288C4 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, int32_t ___updateType0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::InitializeData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_InitializeData_m825A76EEEB51EE056BE7D28E1DC0DDB8EB71530D (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::InstallRuntime(UnityEngine.InputSystem.LowLevel.IInputRuntime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_InstallRuntime_m697DFE86190C9F51B60F5BE6114E54B11B399A67 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, RuntimeObject* ___runtime0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::InstallGlobals() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_InstallGlobals_m84915F68FAFED587CE408DA1C6F0C3B03C7F8274 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::UninstallGlobals() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_UninstallGlobals_m54D03B977F407830C8E42CFEA4B7652DA0A27FEE (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.Object::op_Inequality(UnityEngine.Object,UnityEngine.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Inequality_mDCB4E958808E725D0612CCABF340B284085F03D6 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___x0, Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___y1, const RuntimeMethod* method); // UnityEngine.HideFlags UnityEngine.Object::get_hideFlags() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Object_get_hideFlags_m0F6495E1FB440A08314B7D74CCA99C897FAC05D1 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * __this, const RuntimeMethod* method); // System.Void UnityEngine.Object::DestroyImmediate(UnityEngine.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_DestroyImmediate_m7E408D4287F169F714A91F4D823A0BEF6090C11F (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___obj0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::Allocate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Collection_Allocate_m09BF924CD889635F12F4DC54170F4B99DC5B4B14 (Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.TypeTable::Initialize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeTable_Initialize_mF7F937AB7B20B92A8D4D3EDE1352405CA19986EC (TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::.ctor() inline void Dictionary_2__ctor_m1D3F721E49992BDAC658A4A4B6327AD0627AB926 (Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7 *, const RuntimeMethod*))Dictionary_2__ctor_mE7F9D51201F5A72BF4995CA0F3F0E866DB21E638_gshared)(__this, method); } // System.Boolean UnityEngine.Application::get_isFocused() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Application_get_isFocused_m88A0B2DCBCD89F750E13748AA10F13469EED3C63 (const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::RegisterPrecompiledLayout(System.String) inline void InputManager_RegisterPrecompiledLayout_TisFastKeyboard_t641334EB58D7348C955C8DC003C1EBD56911142E_m52E01A0E2F4B92EF460D48AE86D026C8AD9312B0 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, String_t* ___metadata0, const RuntimeMethod* method) { (( void (*) (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F *, String_t*, const RuntimeMethod*))InputManager_RegisterPrecompiledLayout_TisRuntimeObject_m1FC0A97975FB3801CA6F125D56D165D316A54DBD_gshared)(__this, ___metadata0, method); } // System.Void UnityEngine.InputSystem.InputManager::RegisterPrecompiledLayout(System.String) inline void InputManager_RegisterPrecompiledLayout_TisFastTouchscreen_tFDFEADAF2C3D76D13928E26557351A13CC36B98A_m82C8FC812A50331DB9675612427EDFAAA31387DF (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, String_t* ___metadata0, const RuntimeMethod* method) { (( void (*) (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F *, String_t*, const RuntimeMethod*))InputManager_RegisterPrecompiledLayout_TisRuntimeObject_m1FC0A97975FB3801CA6F125D56D165D316A54DBD_gshared)(__this, ___metadata0, method); } // System.Void UnityEngine.InputSystem.InputManager::RegisterPrecompiledLayout(System.String) inline void InputManager_RegisterPrecompiledLayout_TisFastMouse_t4C65EF9E0660D75C177F0FF96CE76E59AE55E9A9_m30AA9938F471C3721E9FEC922C386A5413C4A415 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, String_t* ___metadata0, const RuntimeMethod* method) { (( void (*) (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F *, String_t*, const RuntimeMethod*))InputManager_RegisterPrecompiledLayout_TisRuntimeObject_m1FC0A97975FB3801CA6F125D56D165D316A54DBD_gshared)(__this, ___metadata0, method); } // UnityEngine.InputSystem.Utilities.TypeTable UnityEngine.InputSystem.InputManager::get_processors() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F InputManager_get_processors_mE2E7DCBCB385B48AFA5B8EF95B35504E6BBD872E_inline (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.TypeTable::AddTypeRegistration(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D (TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F * __this, String_t* ___name0, Type_t * ___type1, const RuntimeMethod* method); // UnityEngine.InputSystem.Utilities.TypeTable UnityEngine.InputSystem.InputManager::get_interactions() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F InputManager_get_interactions_m82239AA93F8937149018A1CC8114BCAB00E27FA1_inline (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.Utilities.TypeTable UnityEngine.InputSystem.InputManager::get_composites() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F InputManager_get_composites_m8CE950CB9C8AA8AA8C69F17363908C87196CD6A5_inline (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputUpdateDelegate::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputUpdateDelegate__ctor_m08C0C4A723120B14487860648FE077C3F153552A (InputUpdateDelegate_t3193D229360F70BB8E2781DED27A71B0F5355045 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Action`2::.ctor(System.Object,System.IntPtr) inline void Action_2__ctor_m3BA2B0E7AD3290E3BFECFA10EEA81D930348CA2E (Action_2_t0359A210F354A728FCD80F275D8CF192D61A98C5 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_2_t0359A210F354A728FCD80F275D8CF192D61A98C5 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_2__ctor_mD005A0CCFFD77790ADB8E1E418161A6F27A30C64_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Action`1::.ctor(System.Object,System.IntPtr) inline void Action_1__ctor_m2A1B34C27CAE6ED7FD924E5F59C0A1ACBBF22C38 (Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_1__ctor_m2A1B34C27CAE6ED7FD924E5F59C0A1ACBBF22C38_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Func`2::.ctor(System.Object,System.IntPtr) inline void Func_2__ctor_mCB10D8F827AFE67BF877C43772FFD19C1394670D (Func_2_t22C5BAC876F4C9C77BF9B2631852275B10FE99EC * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_2_t22C5BAC876F4C9C77BF9B2631852275B10FE99EC *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_m65EA70FC36AE05F395E036FE07698256E09C6339_gshared)(__this, ___object0, ___method1, method); } // System.Single UnityEngine.InputSystem.InputManager::get_pollingFrequency() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float InputManager_get_pollingFrequency_m428EF9D329371C89836EAFDD89E8D0C707DE7B56_inline (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.CallbackArray`1::get_length() inline int32_t CallbackArray_1_get_length_mAE3E679A0CB92BF0748894D87E5D67CBE6AC7EE5 (CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 * __this, const RuntimeMethod* method) { return (( int32_t (*) (CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 *, const RuntimeMethod*))CallbackArray_1_get_length_mF3713D9A736D916981802210CF20A583258E1B08_gshared)(__this, method); } // System.Void System.Action`1::.ctor(System.Object,System.IntPtr) inline void Action_1__ctor_mE5AFF6D7BDD05183BBAB61367AE0B922B690C57D (Action_1_tC6AEC56D51A701342DD5D9DEEE77C063945AE4DC * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_1_tC6AEC56D51A701342DD5D9DEEE77C063945AE4DC *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_1__ctor_m5A0949EFB73F1BDBEBE3CB814917A79FBF9B3DEA_gshared)(__this, ___object0, ___method1, method); } // System.Void UnityEngine.InputSystem.LowLevel.InputUpdate::Restore(UnityEngine.InputSystem.LowLevel.InputUpdate/SerializedState) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputUpdate_Restore_mAE2F78797358457C5B68CAA8651ED6168707D979 (SerializedState_t542737D41B915A28FA67E1A2C7EA7CCA67660462 ___state0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputStateBuffers::SwitchTo(UnityEngine.InputSystem.LowLevel.InputStateBuffers,UnityEngine.InputSystem.LowLevel.InputUpdateType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputStateBuffers_SwitchTo_m4AD65E34033B2D3146474212969EF700225308BD (InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA ___buffers0, int32_t ___update1, const RuntimeMethod* method); // System.String UnityEngine.InputSystem.InputControl::get_name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputControl_get_name_mE259B1306F7E4F865D127B30939A70E9492EAFB2 (InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * __this, const RuntimeMethod* method); // System.Void System.Func`2::.ctor(System.Object,System.IntPtr) inline void Func_2__ctor_mE1B7BCFCE36D43D67ADADD1A4A4B97AFF84D98B0 (Func_2_t42D51CF507A4D7E5E1BB1ADA2AD1B58BD47C50C9 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_2_t42D51CF507A4D7E5E1BB1ADA2AD1B58BD47C50C9 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_mA7F3C5A0612B84E910DE92E77BA95101FD68EEDB_gshared)(__this, ___object0, ___method1, method); } // System.String UnityEngine.InputSystem.Utilities.StringHelpers::MakeUniqueName(System.String,System.Collections.Generic.IEnumerable`1,System.Func`2) inline String_t* StringHelpers_MakeUniqueName_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_m617C4E4C073330FC6103C06516F73E10211F6A26 (String_t* ___baseName0, RuntimeObject* ___existingSet1, Func_2_t42D51CF507A4D7E5E1BB1ADA2AD1B58BD47C50C9 * ___getNameFunc2, const RuntimeMethod* method) { return (( String_t* (*) (String_t*, RuntimeObject*, Func_2_t42D51CF507A4D7E5E1BB1ADA2AD1B58BD47C50C9 *, const RuntimeMethod*))StringHelpers_MakeUniqueName_TisRuntimeObject_mA44FF9B27DF5C69D7847FA6C44439D1D5C2446EA_gshared)(___baseName0, ___existingSet1, ___getNameFunc2, method); } // System.Boolean System.String::op_Inequality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m45BEBD9C59D474454BD0F4AB6C9A8A2D05D40DBE (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::ResetControlPathsRecursive(UnityEngine.InputSystem.InputControl) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_ResetControlPathsRecursive_mB0D97F7DA65A28C278C647EB98C809D79B1CA931 (InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * ___control0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputStateBuffers::AllocateAll(UnityEngine.InputSystem.InputDevice[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputStateBuffers_AllocateAll_m2E229FA20DCFB8C44339ABE09E3F1074E00D974A (InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA * __this, InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* ___devices0, int32_t ___deviceCount1, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputStateBuffers::MigrateAll(UnityEngine.InputSystem.InputDevice[],System.Int32,UnityEngine.InputSystem.LowLevel.InputStateBuffers) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputStateBuffers_MigrateAll_mEE6B5CC18F08C213C690C26933E9CF4088F87E58 (InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA * __this, InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* ___devices0, int32_t ___deviceCount1, InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA ___oldBuffers2, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputDevice::get_hasControlsWithDefaultState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_get_hasControlsWithDefaultState_m3F44707B9901B62B7331EF24E2A4FF67EE6C0010 (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputControl::get_hasDefaultState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputControl_get_hasDefaultState_m71C8065BD0541051571EA9230AB8EF135F1FC2A7 (InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputStateBlock::Write(System.Void*,UnityEngine.InputSystem.Utilities.PrimitiveValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputStateBlock_Write_m6C42F8AF86218D59BB5C76A02E2C268333567782 (InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * __this, void* ___statePtr0, PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8 ___value1, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.LowLevel.InputStateBuffers/DoubleBuffers::get_valid() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DoubleBuffers_get_valid_mF2401B428799FCD5A18603DBF14A6D405B31218B (DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B * __this, const RuntimeMethod* method); // System.Void* UnityEngine.InputSystem.LowLevel.InputStateBuffers/DoubleBuffers::GetFrontBuffer(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* DoubleBuffers_GetFrontBuffer_m2B03B9E7BC47E041D8BF7D78756B5A95FCDF4A4C (DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B * __this, int32_t ___deviceIndex0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputStateBlock::CopyToFrom(System.Void*,System.Void*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputStateBlock_CopyToFrom_m1EFC7C9A4CEB2287D0D06EBEF9023C41CC8D765C (InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * __this, void* ___toStatePtr0, void* ___fromStatePtr1, const RuntimeMethod* method); // System.Void* UnityEngine.InputSystem.LowLevel.InputStateBuffers/DoubleBuffers::GetBackBuffer(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* DoubleBuffers_GetBackBuffer_m8BA8EF0C2764AF5DF6C62175CA7A079DE2D55293 (DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B * __this, int32_t ___deviceIndex0, const RuntimeMethod* method); // System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBlock::get_sizeInBits() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t InputStateBlock_get_sizeInBits_mFA7DECC1FDC31AB8E7E9E773B096FEE1844FE21D_inline (InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.MemoryHelpers::SetBitsInBuffer(System.Void*,System.Int32,System.Int32,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryHelpers_SetBitsInBuffer_m3821CA0CC6CD492743F4E79B85C26FE04ED757B8 (void* ___buffer0, int32_t ___byteOffset1, int32_t ___bitOffset2, int32_t ___sizeInBits3, bool ___value4, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputControl::get_usesStateFromOtherControl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputControl_get_usesStateFromOtherControl_mF8BB494214A289DCD94A6230422AE344DEE875F8 (InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputControl::get_noisy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputControl_get_noisy_m75E27EA55EB0C920F1BA11F11427BAF3CF6FC840 (InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputControl::get_dontReset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputControl_get_dontReset_m0722B71B9454D082AE46C399A5556FCFD2CF25E8 (InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * __this, const RuntimeMethod* method); // System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBlock::get_bitOffset() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t InputStateBlock_get_bitOffset_m27E4210E69D0E10CC6FFBFEF43BBF3E7ED8C02FC_inline (InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::RestoreDevicesAfterDomainReloadIfNecessary() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_RestoreDevicesAfterDomainReloadIfNecessary_m4C49191682691090DBC76DD6CEEA02E32D9E11C5 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputManager::TryMatchDisconnectedDevice(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * InputManager_TryMatchDisconnectedDevice_m6DDB31F20494BCB00C062FDBDFB2C2AEA7EA14F3 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, String_t* ___deviceDescriptor0, const RuntimeMethod* method); // UnityEngine.InputSystem.Layouts.InputDeviceDescription UnityEngine.InputSystem.Layouts.InputDeviceDescription::FromJson(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 InputDeviceDescription_FromJson_m016A57DA58C9B7EB31C9269AF99604778E8BC011 (String_t* ___json0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputManager::IsDeviceLayoutMarkedAsSupportedInSettings(UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_IsDeviceLayoutMarkedAsSupportedInSettings_mAC05AE1CC0DFEED3750D6090EFE9D24E0C5C9E98 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___layoutName0, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::AppendWithCapacity(TValue[]&,System.Int32&,TValue,System.Int32) inline int32_t ArrayHelpers_AppendWithCapacity_TisAvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D_m19AA1ED8172E03B3B409D8B55E8961BB98EFAEF7 (AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330** ___array0, int32_t* ___count1, AvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D ___value2, int32_t ___capacityIncrement3, const RuntimeMethod* method) { return (( int32_t (*) (AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330**, int32_t*, AvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D , int32_t, const RuntimeMethod*))ArrayHelpers_AppendWithCapacity_TisAvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D_m19AA1ED8172E03B3B409D8B55E8961BB98EFAEF7_gshared)(___array0, ___count1, ___value2, ___capacityIncrement3, method); } // System.Boolean UnityEngine.InputSystem.Layouts.InputDeviceDescription::ComparePropertyToDeviceDescriptor(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDeviceDescription_ComparePropertyToDeviceDescriptor_mCDE56F9A2EC603ED7D7E0F83B2F12FA44A995369 (String_t* ___propertyName0, String_t* ___propertyValue1, String_t* ___deviceDescriptor2, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputUpdate::OnBeforeUpdate(UnityEngine.InputSystem.LowLevel.InputUpdateType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputUpdate_OnBeforeUpdate_m8F106BA43D60159535340823FE1F41750161F62A (int32_t ___type0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputDevice::get_hasStateCallbacks() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_get_hasStateCallbacks_mD2180C045B5F2BC58EBCC491C2FE8AD0993582C8 (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.DelegateHelpers::InvokeCallbacksSafe(UnityEngine.InputSystem.Utilities.CallbackArray`1&,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelegateHelpers_InvokeCallbacksSafe_m1009DD029A41FCAE8AA28E604ECA57A3E865A02B (CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 * ___callbacks0, String_t* ___callbackName1, RuntimeObject * ___context2, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputSettings::set_updateMode(UnityEngine.InputSystem.InputSettings/UpdateMode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSettings_set_updateMode_mD3E0AD8963A8A27559B526702EC0398664434C0B (InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * __this, int32_t ___value0, const RuntimeMethod* method); // UnityEngine.InputSystem.InputSettings UnityEngine.InputSystem.InputManager::get_settings() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * InputManager_get_settings_m274A9304D86B1B1E9BAAC775A9B34E0BFA502E2C_inline (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputSettings::IsFeatureEnabled(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputSettings_IsFeatureEnabled_m25FC11D26B557BBB2A82093D5573F58CBC63C89B (InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * __this, String_t* ___featureName0, const RuntimeMethod* method); // UnityEngine.InputSystem.LowLevel.UseWindowsGamingInputCommand UnityEngine.InputSystem.LowLevel.UseWindowsGamingInputCommand::Create(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UseWindowsGamingInputCommand_tB66739BB4992AB11B421FE57CFEE81FBD534C6F3 UseWindowsGamingInputCommand_Create_m0486E0D1CB6ACF143D61DBFD1CAA2520310C224C (bool ___enable0, const RuntimeMethod* method); // System.Int64 UnityEngine.InputSystem.InputManager::ExecuteGlobalCommand(TCommand&) inline int64_t InputManager_ExecuteGlobalCommand_TisUseWindowsGamingInputCommand_tB66739BB4992AB11B421FE57CFEE81FBD534C6F3_m0496412738D388718F528CB840EA03460BEC3772 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, UseWindowsGamingInputCommand_tB66739BB4992AB11B421FE57CFEE81FBD534C6F3 * ___command0, const RuntimeMethod* method) { return (( int64_t (*) (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F *, UseWindowsGamingInputCommand_tB66739BB4992AB11B421FE57CFEE81FBD534C6F3 *, const RuntimeMethod*))InputManager_ExecuteGlobalCommand_TisUseWindowsGamingInputCommand_tB66739BB4992AB11B421FE57CFEE81FBD534C6F3_m0496412738D388718F528CB840EA03460BEC3772_gshared)(__this, ___command0, method); } // System.Single UnityEngine.InputSystem.InputSettings::get_defaultTapTime() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float InputSettings_get_defaultTapTime_mEF8E28ABA67B76EF4EBD0DEE624DFF1BA9C6C319_inline (InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * __this, const RuntimeMethod* method); // System.Single UnityEngine.InputSystem.InputSettings::get_multiTapDelayTime() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float InputSettings_get_multiTapDelayTime_mA93C3E2265EA91C6007417E443A396F12EA91694_inline (InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * __this, const RuntimeMethod* method); // System.Single UnityEngine.InputSystem.InputSettings::get_tapRadius() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float InputSettings_get_tapRadius_m3273C17196793FA7182F29FE3FB101F5D8A58992_inline (InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * __this, const RuntimeMethod* method); // System.Single UnityEngine.InputSystem.InputSettings::get_defaultButtonPressPoint() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float InputSettings_get_defaultButtonPressPoint_m340ACA5AD7B0079097AF1DFEBDD90825B5FA73ED_inline (InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * __this, const RuntimeMethod* method); // System.Single UnityEngine.Mathf::Clamp(System.Single,System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Mathf_Clamp_m5EA831B060853D4246B8394A30599A0021F80AFF (float ___value0, float ___min1, float ___max2, const RuntimeMethod* method); // System.Single UnityEngine.InputSystem.InputSettings::get_buttonReleaseThreshold() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float InputSettings_get_buttonReleaseThreshold_m741CF35E58112957F384E0AFBFC5158A5DA90C25_inline (InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * __this, const RuntimeMethod* method); // UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputManager::AddDevice(UnityEngine.InputSystem.Layouts.InputDeviceDescription,UnityEngine.InputSystem.Utilities.InternedString,System.String,System.Int32,UnityEngine.InputSystem.InputDevice/DeviceFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * InputManager_AddDevice_m67FE410A737FDE88F169F11CCEF61782EFF3571C (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___description0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___layout1, String_t* ___deviceName2, int32_t ___deviceId3, int32_t ___deviceFlags4, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputDevice::get_canRunInBackground() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_get_canRunInBackground_m472778EA0CF42AD6B5C860497C8B2258124206F3 (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.ArrayHelpers::IndexOfReference(TFirst[],TSecond,System.Int32) inline int32_t ArrayHelpers_IndexOfReference_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mCCA425F6C5EA7C4E5AEF49F806341C46978F9CA2 (InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* ___array0, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___value1, int32_t ___count2, const RuntimeMethod* method) { return (( int32_t (*) (InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6*, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *, int32_t, const RuntimeMethod*))ArrayHelpers_IndexOfReference_TisRuntimeObject_TisRuntimeObject_m8D41D772CA3D5B95826F753107182C401BF7BF32_gshared)(___array0, ___value1, ___count2, method); } // System.Void UnityEngine.InputSystem.InputManager::WarnAboutDevicesFailingToRecreateAfterDomainReload() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_WarnAboutDevicesFailingToRecreateAfterDomainReload_mB48EB7803F4E3D3EAA5F7FAB7558D1033B093141 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::get_totalUpdateCount() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_totalUpdateCount_m57DD154A08FC7CC50F7331CD376995A58FF462C2_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputMetrics::set_totalUpdateCount(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_totalUpdateCount_mEB3B729F1E6BD3F371F5F67C8B65463D5B0915E2_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputUpdate::OnUpdate(UnityEngine.InputSystem.LowLevel.InputUpdateType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputUpdate_OnUpdate_mE5556175DCA11499F896EA28AFB7BA9337058547 (int32_t ___type0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.LowLevel.InputUpdate::IsPlayerUpdate(UnityEngine.InputSystem.LowLevel.InputUpdateType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputUpdate_IsPlayerUpdate_mC6BDF634589D7B3BF6BFB12976CC99ABFF5E3863 (int32_t ___updateType0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputManager::get_gameIsPlaying() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_get_gameIsPlaying_m4AE69424001E9ADED2D016DF59681FD61366D6B9 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::ProcessStateChangeMonitorTimeouts() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_ProcessStateChangeMonitorTimeouts_m8CD0C1E82C9C5A59E1E342230385D9F8E319E9BD (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::InvokeAfterUpdateCallback(UnityEngine.InputSystem.LowLevel.InputUpdateType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_InvokeAfterUpdateCallback_mD02DD377093C4FCCBC9CDB5E7BFE9CB3F415F1CF (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, int32_t ___updateType0, const RuntimeMethod* method); // System.Int64 System.Diagnostics.Stopwatch::GetTimestamp() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Stopwatch_GetTimestamp_m8BDD632ACE5FF704F108290DC1864032B9B1C0BF (const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.InputSettings::get_maxQueuedEventsPerUpdate() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputSettings_get_maxQueuedEventsPerUpdate_m1809C68BE71CC41E4E3C5E7511C1B632ECC1D091_inline (InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.InputSettings::get_maxEventBytesPerUpdate() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputSettings_get_maxEventBytesPerUpdate_m782AAA75751C64FFEBA1DF47C2C3E4E7DF86A32A_inline (InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputSettings::get_disableRedundantEventsMerging() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool InputSettings_get_disableRedundantEventsMerging_m19AEF4E360CB24B411567AD8880658928D64F163_inline (InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputDevice::get_hasEventMerger() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_get_hasEventMerger_m0C9A4328373BF1F6A455706342612DEDFEB8733A (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputDevice::get_hasEventPreProcessor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_get_hasEventPreProcessor_mC90B9C717FCB8C5EEC7E5231DE4D392B7FC97C57 (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.CallbackArray`1>::get_length() inline int32_t CallbackArray_1_get_length_m2CA6CE1FE05335C5BE0166DCC53702AE29D777B0 (CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61 * __this, const RuntimeMethod* method) { return (( int32_t (*) (CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61 *, const RuntimeMethod*))CallbackArray_1_get_length_mF3713D9A736D916981802210CF20A583258E1B08_gshared)(__this, method); } // System.Void UnityEngine.InputSystem.Utilities.DelegateHelpers::InvokeCallbacksSafe(UnityEngine.InputSystem.Utilities.CallbackArray`1>&,TValue1,TValue2,System.String,System.Object) inline void DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mC01A4D7C2B35FAFB761DC1BC8038862ED354ABAA (CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61 * ___callbacks0, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___argument11, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___argument22, String_t* ___callbackName3, RuntimeObject * ___context4, const RuntimeMethod* method) { (( void (*) (CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61 *, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 , InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *, String_t*, RuntimeObject *, const RuntimeMethod*))DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_TisRuntimeObject_mD6B2DE174E67AE3521211FD1526D8F03459C4738_gshared)(___callbacks0, ___argument11, ___argument22, ___callbackName3, ___context4, method); } // System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::get_totalEventCount() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_totalEventCount_m84FE5F18390914A41DC10EDDBA0017A7FE78000C_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputMetrics::set_totalEventCount(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_totalEventCount_m9911E60B15700D08F77FC1259D55C1B65C7742D5_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, int32_t ___value0, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::get_totalEventBytes() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_totalEventBytes_m181F7572666B1D2B3481B629EE1C4B4022F3F85B_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputMetrics::set_totalEventBytes(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_totalEventBytes_m3F8A9CBF8ECB085179264B1B265E8D1C4F1A76C0_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, int32_t ___value0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputManager::UpdateState(UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.LowLevel.InputEvent*,UnityEngine.InputSystem.LowLevel.InputUpdateType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_UpdateState_m0A40E0F97F8D5504A9201BC1C5163C953DDD3AE0 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr1, int32_t ___updateType2, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputDevice::NotifyConfigurationChanged() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDevice_NotifyConfigurationChanged_m58330FD298D3EFEB6E3C789512D8A9B97017AC18 (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method); // System.Double UnityEngine.InputSystem.LowLevel.InputMetrics::get_totalEventProcessingTime() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double InputMetrics_get_totalEventProcessingTime_mF0D791E7FA5C9E6B9035099D85265CBE4133D470_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputMetrics::set_totalEventProcessingTime(System.Double) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_totalEventProcessingTime_mC98A9F88F07A8AFF23501A02DD0B44363312DC01_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, double ___value0, const RuntimeMethod* method); // System.Double UnityEngine.InputSystem.LowLevel.InputMetrics::get_totalEventLagTime() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double InputMetrics_get_totalEventLagTime_m9E7430166E1DF3BD681A8FEE1EE37B79F46798BE_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputMetrics::set_totalEventLagTime(System.Double) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_totalEventLagTime_m2F5659F8A6413F9C2E5F80D3824DE8FEDF5FBBE4_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, double ___value0, const RuntimeMethod* method); // System.Void* UnityEngine.InputSystem.LowLevel.DeltaStateEvent::get_deltaState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* DeltaStateEvent_get_deltaState_m57A2F01023052672A37EA8188AD16511008F5B9A (DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4 * __this, const RuntimeMethod* method); // System.Void* UnityEngine.InputSystem.LowLevel.InputStateBuffers::GetFrontBufferForDevice(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* InputStateBuffers_GetFrontBufferForDevice_m4386695914C24C31BF87EA999554E078830366AC (int32_t ___deviceIndex0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::SortStateChangeMonitorsIfNecessary(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_SortStateChangeMonitorsIfNecessary_m46F78AFEFB7AD3F42826F874C9C52136051BBCE9 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, int32_t ___deviceIndex0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputManager::ProcessStateChangeMonitors(System.Int32,System.Void*,System.Void*,System.UInt32,System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_ProcessStateChangeMonitors_m5D81AAAFD73F87FB4EF9C63B4751501D77E826EF (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, int32_t ___deviceIndex0, void* ___newStateFromEvent1, void* ___oldStateOfDevice2, uint32_t ___newStateSizeInBytes3, uint32_t ___newStateOffsetInBytes4, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.Utilities.MemoryHelpers::MemCmpBitRegion(System.Void*,System.Void*,System.UInt32,System.UInt32,System.Void*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MemoryHelpers_MemCmpBitRegion_m7CE0F9702BDDC872ABA853E622F8406E40885FC7 (void* ___ptr10, void* ___ptr21, uint32_t ___bitOffset2, uint32_t ___bitCount3, void* ___mask4, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.InputManager::FlipBuffersForDeviceIfNecessary(UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.LowLevel.InputUpdateType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_FlipBuffersForDeviceIfNecessary_mC92073895168D73EDEAD7B67108CEF7C05124361 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, int32_t ___updateType1, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager::WriteStateChange(UnityEngine.InputSystem.LowLevel.InputStateBuffers/DoubleBuffers,System.Int32,UnityEngine.InputSystem.LowLevel.InputStateBlock&,System.UInt32,System.Void*,System.UInt32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_WriteStateChange_mBD7733DFE695A0689CEE5FB38B0E0EF510F54624 (DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B ___buffers0, int32_t ___deviceIndex1, InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * ___deviceStateBlock2, uint32_t ___stateOffsetInDevice3, void* ___statePtr4, uint32_t ___stateSizeInBytes5, bool ___flippedBuffers6, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.DelegateHelpers::InvokeCallbacksSafe(UnityEngine.InputSystem.Utilities.CallbackArray`1>&,TValue1,TValue2,System.String,System.Object) inline void DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_m3BE9B3BBF28E8038B80439AD4804A555884EA3B4 (CallbackArray_1_t6B54B12C76958BFFEC586C4B69F70560884AEF34 * ___callbacks0, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___argument11, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___argument22, String_t* ___callbackName3, RuntimeObject * ___context4, const RuntimeMethod* method) { (( void (*) (CallbackArray_1_t6B54B12C76958BFFEC586C4B69F70560884AEF34 *, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 , String_t*, RuntimeObject *, const RuntimeMethod*))DelegateHelpers_InvokeCallbacksSafe_TisRuntimeObject_TisInputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_m99CCADCACEEE9400EBE66F41CD57E5640555AA33_gshared)(___callbacks0, ___argument11, ___argument22, ___callbackName3, ___context4, method); } // System.Void UnityEngine.InputSystem.InputManager::FireStateChangeNotifications(System.Int32,System.Double,UnityEngine.InputSystem.LowLevel.InputEvent*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_FireStateChangeNotifications_m9D195BC719E2E6EE573881342C4A5D80B9E7BA0E (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, int32_t ___deviceIndex0, double ___internalTime1, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr2, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.LowLevel.InputStateBuffers/DoubleBuffers::SwapBuffers(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DoubleBuffers_SwapBuffers_m70368F37B6F7AF933958F38140F61CE3B087ACC8 (DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B * __this, int32_t ___deviceIndex0, const RuntimeMethod* method); // UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputControl::get_device() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * InputControl_get_device_m7B8D4A5F3C7C11E4FE7239692961C434C7CCF9E1_inline (InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * __this, const RuntimeMethod* method); // System.Void System.Array::Resize(!!0[]&,System.Int32) inline void Array_Resize_TisStateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_m40801FDD05A56FDAD4E49611617D191543C0DE2C (StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE** ___array0, int32_t ___newSize1, const RuntimeMethod* method) { (( void (*) (StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE**, int32_t, const RuntimeMethod*))Array_Resize_TisStateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_m40801FDD05A56FDAD4E49611617D191543C0DE2C_gshared)(___array0, ___newSize1, method); } // System.Boolean UnityEngine.InputSystem.InputManager::get_isProcessingEvents() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_get_isProcessingEvents_m0727B15A9FAAF427636B7706ABFA1E239D3F37CA (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager/StateChangeMonitorsForDevice::CompactArrays() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateChangeMonitorsForDevice_CompactArrays_m9238D71F1A5BE3658ECD622DB30763BE5B349BD3 (StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager/StateChangeMonitorsForDevice::Add(UnityEngine.InputSystem.InputControl,UnityEngine.InputSystem.LowLevel.IInputStateChangeMonitor,System.Int64,System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateChangeMonitorsForDevice_Add_m9D45C6F02E6F7866FE3D14E13E4195A540A18407 (StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 * __this, InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * ___control0, RuntimeObject* ___monitor1, int64_t ___monitorIndex2, uint32_t ___groupIndex3, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.InputManager/StateChangeMonitorsForDevice::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateChangeMonitorsForDevice_Clear_m3192750DFA8EAF1A24FCEE908A7311FBFADD1FDC (StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 * __this, const RuntimeMethod* method); // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::get_Item(System.Int32) inline StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48 (InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * __this, int32_t ___index0, const RuntimeMethod* method) { return (( StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 (*) (InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A *, int32_t, const RuntimeMethod*))InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48_gshared)(__this, ___index0, method); } // System.Void UnityEngine.InputSystem.Utilities.InlinedArray`1::set_Item(System.Int32,TValue) inline void InlinedArray_1_set_Item_m2B7EE5F97EEA88C36851609313B780BB25E8096A (InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * __this, int32_t ___index0, StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 ___value1, const RuntimeMethod* method) { (( void (*) (InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A *, int32_t, StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 , const RuntimeMethod*))InlinedArray_1_set_Item_m2B7EE5F97EEA88C36851609313B780BB25E8096A_gshared)(__this, ___index0, ___value1, method); } // System.Void UnityEngine.InputSystem.InputManager/StateChangeMonitorsForDevice::Remove(UnityEngine.InputSystem.LowLevel.IInputStateChangeMonitor,System.Int64,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateChangeMonitorsForDevice_Remove_m3CD95DE78EED351C1AFA5BFE80CFBDF7E2F0EB0E (StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 * __this, RuntimeObject* ___monitor0, int64_t ___monitorIndex1, bool ___deferRemoval2, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::Append(TValue) inline int32_t InlinedArray_1_Append_m5669719E259F8A1D99F53BB7E6F255E35808764C (InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * __this, StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 ___value0, const RuntimeMethod* method) { return (( int32_t (*) (InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A *, StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 , const RuntimeMethod*))InlinedArray_1_Append_m5669719E259F8A1D99F53BB7E6F255E35808764C_gshared)(__this, ___value0, method); } // System.Void UnityEngine.InputSystem.InputManager/StateChangeMonitorsForDevice::SortMonitorsByIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StateChangeMonitorsForDevice_SortMonitorsByIndex_m7AD3D30577573248756DD42964806EB45FC4FB08 (StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.DynamicBitfield::SetBit(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DynamicBitfield_SetBit_m1ABA9E44DEDE71266B8FD2115719B0875E73FD43 (DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 * __this, int32_t ___bitIndex0, const RuntimeMethod* method); // System.Int32 System.Math::Min(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Min_m6411ABA96F53F6B588FD9F2F72FB5FDAC1C1BC9B (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method); // System.Int32 UnityEngine.InputSystem.InputManager/StateChangeMonitorsForDevice::get_count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StateChangeMonitorsForDevice_get_count_m75707256D415522C63E8BD941E93217DC3288690 (StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 * __this, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.MemoryHelpers/BitRegion::.ctor(System.UInt32,System.UInt32,System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitRegion__ctor_mD9AC60CD6F70ED3D7D1EB7BEE978C4390A6D5F57 (BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 * __this, uint32_t ___byteOffset0, uint32_t ___bitOffset1, uint32_t ___sizeInBits2, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::EraseAtWithCapacity(TValue[],System.Int32&,System.Int32) inline void ArrayHelpers_EraseAtWithCapacity_TisStateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757_m838ED52068AE104603FB0EDEF1C1CD8347FC4BCF (StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10* ___array0, int32_t* ___count1, int32_t ___index2, const RuntimeMethod* method) { (( void (*) (StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10*, int32_t*, int32_t, const RuntimeMethod*))ArrayHelpers_EraseAtWithCapacity_TisStateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757_m838ED52068AE104603FB0EDEF1C1CD8347FC4BCF_gshared)(___array0, ___count1, ___index2, method); } // System.Void UnityEngine.InputSystem.Utilities.ArrayHelpers::EraseAtWithCapacity(TValue[],System.Int32&,System.Int32) inline void ArrayHelpers_EraseAtWithCapacity_TisBitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0_m60444B4131851A54E921C04FE9219E5413138EA3 (BitRegionU5BU5D_tF6D5F89A752F557BCBFDE82CA0F4C7CB0ABF364B* ___array0, int32_t* ___count1, int32_t ___index2, const RuntimeMethod* method) { (( void (*) (BitRegionU5BU5D_tF6D5F89A752F557BCBFDE82CA0F4C7CB0ABF364B*, int32_t*, int32_t, const RuntimeMethod*))ArrayHelpers_EraseAtWithCapacity_TisBitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0_m60444B4131851A54E921C04FE9219E5413138EA3_gshared)(___array0, ___count1, ___index2, method); } // System.Void UnityEngine.InputSystem.DynamicBitfield::SetLength(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DynamicBitfield_SetLength_m2D8C624DA69C1A4113CF406685A345D42BD27C13 (DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 * __this, int32_t ___newLength0, const RuntimeMethod* method); // UnityEngine.InputSystem.Utilities.MemoryHelpers/BitRegion UnityEngine.InputSystem.Utilities.MemoryHelpers/BitRegion::Overlap(UnityEngine.InputSystem.Utilities.MemoryHelpers/BitRegion) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 BitRegion_Overlap_mFA7E45CBA53B12C8534600D1CEF31DFB1BB7092C (BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 * __this, BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 ___other0, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.Utilities.MemoryHelpers/BitRegion::get_isEmpty() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BitRegion_get_isEmpty_m608F597221B7276C51BFDEABF41AD2CFA8537913 (BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.Utilities.MemoryHelpers::Compare(System.Void*,System.Void*,UnityEngine.InputSystem.Utilities.MemoryHelpers/BitRegion) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MemoryHelpers_Compare_mAFCD2F3CDF9C3EDAF7B843E18C3A34D35685C211 (void* ___ptr10, void* ___ptr21, BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 ___region2, const RuntimeMethod* method); // System.Boolean UnityEngine.InputSystem.DynamicBitfield::TestBit(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DynamicBitfield_TestBit_m8D87EC2C781F91072A9605C75859F602DBDC26E8 (DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 * __this, int32_t ___bitIndex0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.DynamicBitfield::ClearBit(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DynamicBitfield_ClearBit_mF0B853AE22B6A0E34F49AE7EB7692D8A79DBD39C (DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 * __this, int32_t ___bitIndex0, const RuntimeMethod* method); // System.Void UnityEngine.InputSystem.Utilities.InlinedArray`1::SetLength(System.Int32) inline void InlinedArray_1_SetLength_m1F4DEB2721EBC5B480DBA3C72058201689A8DF80 (InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * __this, int32_t ___size0, const RuntimeMethod* method) { (( void (*) (InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A *, int32_t, const RuntimeMethod*))InlinedArray_1_SetLength_m1F4DEB2721EBC5B480DBA3C72058201689A8DF80_gshared)(__this, ___size0, method); } // System.Int64 UnityEngine.InputSystem.LowLevel.InputRuntimeExtensions::DeviceCommand(UnityEngine.InputSystem.LowLevel.IInputRuntime,System.Int32,TCommand&) inline int64_t InputRuntimeExtensions_DeviceCommand_TisInputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3_m17A9989BF690B87F556966B455409A987C18C71D (RuntimeObject* ___runtime0, int32_t ___deviceId1, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * ___command2, const RuntimeMethod* method) { return (( int64_t (*) (RuntimeObject*, int32_t, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 *, const RuntimeMethod*))InputRuntimeExtensions_DeviceCommand_TisInputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3_m17A9989BF690B87F556966B455409A987C18C71D_gshared)(___runtime0, ___deviceId1, ___command2, method); } // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_mBCBF2D9FD1B5F0D8D8595B15B7460889D60C8070 (const RuntimeMethod* method); #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 UnityEngine.InputSystem.LowLevel.InputDeviceCommand::get_payloadSizeInBytes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputDeviceCommand_get_payloadSizeInBytes_mD69A6D5E2DA135FEF246B038AD581180A80A1629 (InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * __this, const RuntimeMethod* method) { { // public int payloadSizeInBytes => sizeInBytes - kBaseCommandSize; int32_t L_0 = __this->get_sizeInBytes_5(); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)8)); } } IL2CPP_EXTERN_C int32_t InputDeviceCommand_get_payloadSizeInBytes_mD69A6D5E2DA135FEF246B038AD581180A80A1629_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = InputDeviceCommand_get_payloadSizeInBytes_mD69A6D5E2DA135FEF246B038AD581180A80A1629(_thisAdjusted, method); return _returnValue; } // System.Void* UnityEngine.InputSystem.LowLevel.InputDeviceCommand::get_payloadPtr() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* InputDeviceCommand_get_payloadPtr_mBA56A766857970E184D4A552F3A03670DE091E46 (InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * __this, const RuntimeMethod* method) { void* V_0 = NULL; InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * V_1 = NULL; { // { V_1 = (InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 *)__this; // fixed(void* thisPtr = &this) InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * L_0 = V_1; V_0 = (void*)((uintptr_t)L_0); // return ((byte*)thisPtr) + kBaseCommandSize; void* L_1 = V_0; return (void*)(((void*)il2cpp_codegen_add((intptr_t)L_1, (int32_t)8))); } } IL2CPP_EXTERN_C void* InputDeviceCommand_get_payloadPtr_mBA56A766857970E184D4A552F3A03670DE091E46_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * _thisAdjusted = reinterpret_cast(__this + _offset); void* _returnValue; _returnValue = InputDeviceCommand_get_payloadPtr_mBA56A766857970E184D4A552F3A03670DE091E46(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.LowLevel.InputDeviceCommand::.ctor(UnityEngine.InputSystem.Utilities.FourCC,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDeviceCommand__ctor_m37D7C9AC95972F2F9075C62240B5D15119E40271 (InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * __this, FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___type0, int32_t ___sizeInBytes1, const RuntimeMethod* method) { { // this.type = type; FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_0 = ___type0; __this->set_type_4(L_0); // this.sizeInBytes = sizeInBytes; int32_t L_1 = ___sizeInBytes1; __this->set_sizeInBytes_5(L_1); // } return; } } IL2CPP_EXTERN_C void InputDeviceCommand__ctor_m37D7C9AC95972F2F9075C62240B5D15119E40271_AdjustorThunk (RuntimeObject * __this, FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___type0, int32_t ___sizeInBytes1, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * _thisAdjusted = reinterpret_cast(__this + _offset); InputDeviceCommand__ctor_m37D7C9AC95972F2F9075C62240B5D15119E40271(_thisAdjusted, ___type0, ___sizeInBytes1, method); } // Unity.Collections.NativeArray`1 UnityEngine.InputSystem.LowLevel.InputDeviceCommand::AllocateNative(UnityEngine.InputSystem.Utilities.FourCC,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 InputDeviceCommand_AllocateNative_mD5281D995FFF17C0E876E4FB36BF9A3784184ABF (FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___type0, int32_t ___payloadSize1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mE8961C891F379BB648D8CDB9F514FFB65A58EACF_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_mED2AEAAEFBBE3F20D8E424582434019D3F94F9EF_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * V_1 = NULL; { // var sizeInBytes = payloadSize + kBaseCommandSize; int32_t L_0 = ___payloadSize1; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)8)); // var buffer = new NativeArray(sizeInBytes, Allocator.Temp); int32_t L_1 = V_0; NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_2; memset((&L_2), 0, sizeof(L_2)); NativeArray_1__ctor_mED2AEAAEFBBE3F20D8E424582434019D3F94F9EF((&L_2), L_1, 2, 1, /*hidden argument*/NativeArray_1__ctor_mED2AEAAEFBBE3F20D8E424582434019D3F94F9EF_RuntimeMethod_var); // var commandPtr = (InputDeviceCommand*)NativeArrayUnsafeUtility.GetUnsafePtr(buffer); NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_3 = L_2; void* L_4; L_4 = NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mE8961C891F379BB648D8CDB9F514FFB65A58EACF(L_3, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mE8961C891F379BB648D8CDB9F514FFB65A58EACF_RuntimeMethod_var); V_1 = (InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 *)L_4; // commandPtr->type = type; InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * L_5 = V_1; FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_6 = ___type0; NullCheck(L_5); L_5->set_type_4(L_6); // commandPtr->sizeInBytes = sizeInBytes; InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * L_7 = V_1; int32_t L_8 = V_0; NullCheck(L_7); L_7->set_sizeInBytes_5(L_8); // return buffer; return L_3; } } // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputDeviceCommand::get_typeStatic() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 InputDeviceCommand_get_typeStatic_m2AE789263E7CD830201D3CB23C8071B087986B2F (InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * __this, const RuntimeMethod* method) { FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 V_0; memset((&V_0), 0, sizeof(V_0)); { // get { return new FourCC(); } il2cpp_codegen_initobj((&V_0), sizeof(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 )); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_0 = V_0; return L_0; } } IL2CPP_EXTERN_C FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 InputDeviceCommand_get_typeStatic_m2AE789263E7CD830201D3CB23C8071B087986B2F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * _thisAdjusted = reinterpret_cast(__this + _offset); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 _returnValue; _returnValue = InputDeviceCommand_get_typeStatic_m2AE789263E7CD830201D3CB23C8071B087986B2F(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void UnityEngine.InputSystem.LowLevel.InputDeviceCommandDelegate::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDeviceCommandDelegate__ctor_m272079C415DC37A601270C184E45C72DB781DC8D (InputDeviceCommandDelegate_t967EA90378916CA01FF68A0403468313659A1718 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { if (___object0 == NULL && !MethodIsStatic((RuntimeMethod*)___method1)) { il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); } __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Nullable`1 UnityEngine.InputSystem.LowLevel.InputDeviceCommandDelegate::Invoke(UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.LowLevel.InputDeviceCommand*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t340361C8134256120F5769AC5A3F743DB6C11D1F InputDeviceCommandDelegate_Invoke_mC1F08D33A1E901A2F666170842BD24D602EBE661 (InputDeviceCommandDelegate_t967EA90378916CA01FF68A0403468313659A1718 * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * ___command1, const RuntimeMethod* method) { Nullable_1_t340361C8134256120F5769AC5A3F743DB6C11D1F result; memset((&result), 0, sizeof(result)); DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 2) { // open typedef Nullable_1_t340361C8134256120F5769AC5A3F743DB6C11D1F (*FunctionPointerType) (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___device0, ___command1, targetMethod); } else { // closed typedef Nullable_1_t340361C8134256120F5769AC5A3F743DB6C11D1F (*FunctionPointerType) (void*, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___device0, ___command1, targetMethod); } } else if (___parameterCount != 2) { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< Nullable_1_t340361C8134256120F5769AC5A3F743DB6C11D1F , InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * >::Invoke(targetMethod, ___device0, ___command1); else result = GenericVirtFuncInvoker1< Nullable_1_t340361C8134256120F5769AC5A3F743DB6C11D1F , InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * >::Invoke(targetMethod, ___device0, ___command1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< Nullable_1_t340361C8134256120F5769AC5A3F743DB6C11D1F , InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___device0, ___command1); else result = VirtFuncInvoker1< Nullable_1_t340361C8134256120F5769AC5A3F743DB6C11D1F , InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___device0, ___command1); } } else { typedef Nullable_1_t340361C8134256120F5769AC5A3F743DB6C11D1F (*FunctionPointerType) (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___device0, ___command1, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker2< Nullable_1_t340361C8134256120F5769AC5A3F743DB6C11D1F , InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * >::Invoke(targetMethod, targetThis, ___device0, ___command1); else result = GenericVirtFuncInvoker2< Nullable_1_t340361C8134256120F5769AC5A3F743DB6C11D1F , InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * >::Invoke(targetMethod, targetThis, ___device0, ___command1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker2< Nullable_1_t340361C8134256120F5769AC5A3F743DB6C11D1F , InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___device0, ___command1); else result = VirtFuncInvoker2< Nullable_1_t340361C8134256120F5769AC5A3F743DB6C11D1F , InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___device0, ___command1); } } else { if (___parameterCount == 1) { typedef Nullable_1_t340361C8134256120F5769AC5A3F743DB6C11D1F (*FunctionPointerType) (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___device0, ___command1, targetMethod); } else { typedef Nullable_1_t340361C8134256120F5769AC5A3F743DB6C11D1F (*FunctionPointerType) (void*, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___device0, ___command1, targetMethod); } } } } return result; } // System.IAsyncResult UnityEngine.InputSystem.LowLevel.InputDeviceCommandDelegate::BeginInvoke(UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.LowLevel.InputDeviceCommand*,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputDeviceCommandDelegate_BeginInvoke_m5C483E4F7845B28A6F9E26EB577F63717D5DF1F4 (InputDeviceCommandDelegate_t967EA90378916CA01FF68A0403468313659A1718 * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * ___command1, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { void *__d_args[3] = {0}; __d_args[0] = ___device0; __d_args[1] = ___command1; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);; } // System.Nullable`1 UnityEngine.InputSystem.LowLevel.InputDeviceCommandDelegate::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t340361C8134256120F5769AC5A3F743DB6C11D1F InputDeviceCommandDelegate_EndInvoke_m1DD0F493BE4F6F3AB0C384DCB1C24EAC921C99A3 (InputDeviceCommandDelegate_t967EA90378916CA01FF68A0403468313659A1718 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(Nullable_1_t340361C8134256120F5769AC5A3F743DB6C11D1F *)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: UnityEngine.InputSystem.Layouts.InputDeviceDescription IL2CPP_EXTERN_C void InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshal_pinvoke(const InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58& unmarshaled, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshaled_pinvoke& marshaled) { marshaled.___m_InterfaceName_0 = il2cpp_codegen_marshal_string(unmarshaled.get_m_InterfaceName_0()); marshaled.___m_DeviceClass_1 = il2cpp_codegen_marshal_string(unmarshaled.get_m_DeviceClass_1()); marshaled.___m_Manufacturer_2 = il2cpp_codegen_marshal_string(unmarshaled.get_m_Manufacturer_2()); marshaled.___m_Product_3 = il2cpp_codegen_marshal_string(unmarshaled.get_m_Product_3()); marshaled.___m_Serial_4 = il2cpp_codegen_marshal_string(unmarshaled.get_m_Serial_4()); marshaled.___m_Version_5 = il2cpp_codegen_marshal_string(unmarshaled.get_m_Version_5()); marshaled.___m_Capabilities_6 = il2cpp_codegen_marshal_string(unmarshaled.get_m_Capabilities_6()); } IL2CPP_EXTERN_C void InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshal_pinvoke_back(const InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshaled_pinvoke& marshaled, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58& unmarshaled) { unmarshaled.set_m_InterfaceName_0(il2cpp_codegen_marshal_string_result(marshaled.___m_InterfaceName_0)); unmarshaled.set_m_DeviceClass_1(il2cpp_codegen_marshal_string_result(marshaled.___m_DeviceClass_1)); unmarshaled.set_m_Manufacturer_2(il2cpp_codegen_marshal_string_result(marshaled.___m_Manufacturer_2)); unmarshaled.set_m_Product_3(il2cpp_codegen_marshal_string_result(marshaled.___m_Product_3)); unmarshaled.set_m_Serial_4(il2cpp_codegen_marshal_string_result(marshaled.___m_Serial_4)); unmarshaled.set_m_Version_5(il2cpp_codegen_marshal_string_result(marshaled.___m_Version_5)); unmarshaled.set_m_Capabilities_6(il2cpp_codegen_marshal_string_result(marshaled.___m_Capabilities_6)); } // Conversion method for clean up from marshalling of: UnityEngine.InputSystem.Layouts.InputDeviceDescription IL2CPP_EXTERN_C void InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshal_pinvoke_cleanup(InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshaled_pinvoke& marshaled) { il2cpp_codegen_marshal_free(marshaled.___m_InterfaceName_0); marshaled.___m_InterfaceName_0 = NULL; il2cpp_codegen_marshal_free(marshaled.___m_DeviceClass_1); marshaled.___m_DeviceClass_1 = NULL; il2cpp_codegen_marshal_free(marshaled.___m_Manufacturer_2); marshaled.___m_Manufacturer_2 = NULL; il2cpp_codegen_marshal_free(marshaled.___m_Product_3); marshaled.___m_Product_3 = NULL; il2cpp_codegen_marshal_free(marshaled.___m_Serial_4); marshaled.___m_Serial_4 = NULL; il2cpp_codegen_marshal_free(marshaled.___m_Version_5); marshaled.___m_Version_5 = NULL; il2cpp_codegen_marshal_free(marshaled.___m_Capabilities_6); marshaled.___m_Capabilities_6 = NULL; } // Conversion methods for marshalling of: UnityEngine.InputSystem.Layouts.InputDeviceDescription IL2CPP_EXTERN_C void InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshal_com(const InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58& unmarshaled, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshaled_com& marshaled) { marshaled.___m_InterfaceName_0 = il2cpp_codegen_marshal_bstring(unmarshaled.get_m_InterfaceName_0()); marshaled.___m_DeviceClass_1 = il2cpp_codegen_marshal_bstring(unmarshaled.get_m_DeviceClass_1()); marshaled.___m_Manufacturer_2 = il2cpp_codegen_marshal_bstring(unmarshaled.get_m_Manufacturer_2()); marshaled.___m_Product_3 = il2cpp_codegen_marshal_bstring(unmarshaled.get_m_Product_3()); marshaled.___m_Serial_4 = il2cpp_codegen_marshal_bstring(unmarshaled.get_m_Serial_4()); marshaled.___m_Version_5 = il2cpp_codegen_marshal_bstring(unmarshaled.get_m_Version_5()); marshaled.___m_Capabilities_6 = il2cpp_codegen_marshal_bstring(unmarshaled.get_m_Capabilities_6()); } IL2CPP_EXTERN_C void InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshal_com_back(const InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshaled_com& marshaled, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58& unmarshaled) { unmarshaled.set_m_InterfaceName_0(il2cpp_codegen_marshal_bstring_result(marshaled.___m_InterfaceName_0)); unmarshaled.set_m_DeviceClass_1(il2cpp_codegen_marshal_bstring_result(marshaled.___m_DeviceClass_1)); unmarshaled.set_m_Manufacturer_2(il2cpp_codegen_marshal_bstring_result(marshaled.___m_Manufacturer_2)); unmarshaled.set_m_Product_3(il2cpp_codegen_marshal_bstring_result(marshaled.___m_Product_3)); unmarshaled.set_m_Serial_4(il2cpp_codegen_marshal_bstring_result(marshaled.___m_Serial_4)); unmarshaled.set_m_Version_5(il2cpp_codegen_marshal_bstring_result(marshaled.___m_Version_5)); unmarshaled.set_m_Capabilities_6(il2cpp_codegen_marshal_bstring_result(marshaled.___m_Capabilities_6)); } // Conversion method for clean up from marshalling of: UnityEngine.InputSystem.Layouts.InputDeviceDescription IL2CPP_EXTERN_C void InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshal_com_cleanup(InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshaled_com& marshaled) { il2cpp_codegen_marshal_free_bstring(marshaled.___m_InterfaceName_0); marshaled.___m_InterfaceName_0 = NULL; il2cpp_codegen_marshal_free_bstring(marshaled.___m_DeviceClass_1); marshaled.___m_DeviceClass_1 = NULL; il2cpp_codegen_marshal_free_bstring(marshaled.___m_Manufacturer_2); marshaled.___m_Manufacturer_2 = NULL; il2cpp_codegen_marshal_free_bstring(marshaled.___m_Product_3); marshaled.___m_Product_3 = NULL; il2cpp_codegen_marshal_free_bstring(marshaled.___m_Serial_4); marshaled.___m_Serial_4 = NULL; il2cpp_codegen_marshal_free_bstring(marshaled.___m_Version_5); marshaled.___m_Version_5 = NULL; il2cpp_codegen_marshal_free_bstring(marshaled.___m_Capabilities_6); marshaled.___m_Capabilities_6 = NULL; } // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::get_interfaceName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_interfaceName_mCEBA87B35556BD0D03EADDD724B08266120BE761 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method) { { // get => m_InterfaceName; String_t* L_0 = __this->get_m_InterfaceName_0(); return L_0; } } IL2CPP_EXTERN_C String_t* InputDeviceDescription_get_interfaceName_mCEBA87B35556BD0D03EADDD724B08266120BE761_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = InputDeviceDescription_get_interfaceName_mCEBA87B35556BD0D03EADDD724B08266120BE761_inline(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.Layouts.InputDeviceDescription::set_interfaceName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDeviceDescription_set_interfaceName_mABE1A9818925CBC790F664066FB1EBE4C834452C (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, String_t* ___value0, const RuntimeMethod* method) { { // set => m_InterfaceName = value; String_t* L_0 = ___value0; __this->set_m_InterfaceName_0(L_0); return; } } IL2CPP_EXTERN_C void InputDeviceDescription_set_interfaceName_mABE1A9818925CBC790F664066FB1EBE4C834452C_AdjustorThunk (RuntimeObject * __this, String_t* ___value0, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * _thisAdjusted = reinterpret_cast(__this + _offset); InputDeviceDescription_set_interfaceName_mABE1A9818925CBC790F664066FB1EBE4C834452C_inline(_thisAdjusted, ___value0, method); } // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::get_deviceClass() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_deviceClass_m04BB88F15F817900CF7457A2E7FC65F5618AD1AF (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method) { { // get => m_DeviceClass; String_t* L_0 = __this->get_m_DeviceClass_1(); return L_0; } } IL2CPP_EXTERN_C String_t* InputDeviceDescription_get_deviceClass_m04BB88F15F817900CF7457A2E7FC65F5618AD1AF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = InputDeviceDescription_get_deviceClass_m04BB88F15F817900CF7457A2E7FC65F5618AD1AF_inline(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.Layouts.InputDeviceDescription::set_deviceClass(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDeviceDescription_set_deviceClass_m8C006A98A4CE08B4473C4D1D4F5291B452DE85A8 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, String_t* ___value0, const RuntimeMethod* method) { { // set => m_DeviceClass = value; String_t* L_0 = ___value0; __this->set_m_DeviceClass_1(L_0); return; } } IL2CPP_EXTERN_C void InputDeviceDescription_set_deviceClass_m8C006A98A4CE08B4473C4D1D4F5291B452DE85A8_AdjustorThunk (RuntimeObject * __this, String_t* ___value0, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * _thisAdjusted = reinterpret_cast(__this + _offset); InputDeviceDescription_set_deviceClass_m8C006A98A4CE08B4473C4D1D4F5291B452DE85A8_inline(_thisAdjusted, ___value0, method); } // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::get_manufacturer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_manufacturer_m42C503D82A264C3510752BD1E726D8ED3111E869 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method) { { // get => m_Manufacturer; String_t* L_0 = __this->get_m_Manufacturer_2(); return L_0; } } IL2CPP_EXTERN_C String_t* InputDeviceDescription_get_manufacturer_m42C503D82A264C3510752BD1E726D8ED3111E869_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = InputDeviceDescription_get_manufacturer_m42C503D82A264C3510752BD1E726D8ED3111E869_inline(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.Layouts.InputDeviceDescription::set_manufacturer(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDeviceDescription_set_manufacturer_m7D0DEDFD9CF9F32A99A27CEB5316B85026150191 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, String_t* ___value0, const RuntimeMethod* method) { { // set => m_Manufacturer = value; String_t* L_0 = ___value0; __this->set_m_Manufacturer_2(L_0); return; } } IL2CPP_EXTERN_C void InputDeviceDescription_set_manufacturer_m7D0DEDFD9CF9F32A99A27CEB5316B85026150191_AdjustorThunk (RuntimeObject * __this, String_t* ___value0, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * _thisAdjusted = reinterpret_cast(__this + _offset); InputDeviceDescription_set_manufacturer_m7D0DEDFD9CF9F32A99A27CEB5316B85026150191_inline(_thisAdjusted, ___value0, method); } // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::get_product() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_product_mEECD8A9018BF8C49B89256C912EC0AAEE90D4A82 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method) { { // get => m_Product; String_t* L_0 = __this->get_m_Product_3(); return L_0; } } IL2CPP_EXTERN_C String_t* InputDeviceDescription_get_product_mEECD8A9018BF8C49B89256C912EC0AAEE90D4A82_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = InputDeviceDescription_get_product_mEECD8A9018BF8C49B89256C912EC0AAEE90D4A82_inline(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.Layouts.InputDeviceDescription::set_product(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDeviceDescription_set_product_m7BB0FC8611C3D4CCE2412F603A048A11C9838645 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, String_t* ___value0, const RuntimeMethod* method) { { // set => m_Product = value; String_t* L_0 = ___value0; __this->set_m_Product_3(L_0); return; } } IL2CPP_EXTERN_C void InputDeviceDescription_set_product_m7BB0FC8611C3D4CCE2412F603A048A11C9838645_AdjustorThunk (RuntimeObject * __this, String_t* ___value0, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * _thisAdjusted = reinterpret_cast(__this + _offset); InputDeviceDescription_set_product_m7BB0FC8611C3D4CCE2412F603A048A11C9838645_inline(_thisAdjusted, ___value0, method); } // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::get_serial() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_serial_m259412E6F7627E1310535A55FB9BE03146C54A55 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method) { { // get => m_Serial; String_t* L_0 = __this->get_m_Serial_4(); return L_0; } } IL2CPP_EXTERN_C String_t* InputDeviceDescription_get_serial_m259412E6F7627E1310535A55FB9BE03146C54A55_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = InputDeviceDescription_get_serial_m259412E6F7627E1310535A55FB9BE03146C54A55_inline(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.Layouts.InputDeviceDescription::set_serial(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDeviceDescription_set_serial_m751AB1FADCB10147BAD9DC499D18AD3E38ECC310 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, String_t* ___value0, const RuntimeMethod* method) { { // set => m_Serial = value; String_t* L_0 = ___value0; __this->set_m_Serial_4(L_0); return; } } IL2CPP_EXTERN_C void InputDeviceDescription_set_serial_m751AB1FADCB10147BAD9DC499D18AD3E38ECC310_AdjustorThunk (RuntimeObject * __this, String_t* ___value0, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * _thisAdjusted = reinterpret_cast(__this + _offset); InputDeviceDescription_set_serial_m751AB1FADCB10147BAD9DC499D18AD3E38ECC310_inline(_thisAdjusted, ___value0, method); } // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::get_version() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_version_mF03973E700CF32DEDDF4374AF5596E618FC21D95 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method) { { // get => m_Version; String_t* L_0 = __this->get_m_Version_5(); return L_0; } } IL2CPP_EXTERN_C String_t* InputDeviceDescription_get_version_mF03973E700CF32DEDDF4374AF5596E618FC21D95_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = InputDeviceDescription_get_version_mF03973E700CF32DEDDF4374AF5596E618FC21D95_inline(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.Layouts.InputDeviceDescription::set_version(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDeviceDescription_set_version_m3625E12F52EB64C19673E68D8B0D19211E460CD0 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, String_t* ___value0, const RuntimeMethod* method) { { // set => m_Version = value; String_t* L_0 = ___value0; __this->set_m_Version_5(L_0); return; } } IL2CPP_EXTERN_C void InputDeviceDescription_set_version_m3625E12F52EB64C19673E68D8B0D19211E460CD0_AdjustorThunk (RuntimeObject * __this, String_t* ___value0, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * _thisAdjusted = reinterpret_cast(__this + _offset); InputDeviceDescription_set_version_m3625E12F52EB64C19673E68D8B0D19211E460CD0_inline(_thisAdjusted, ___value0, method); } // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::get_capabilities() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_capabilities_m3871219ECAC10766CBAB256E0612674368D5C362 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method) { { // get => m_Capabilities; String_t* L_0 = __this->get_m_Capabilities_6(); return L_0; } } IL2CPP_EXTERN_C String_t* InputDeviceDescription_get_capabilities_m3871219ECAC10766CBAB256E0612674368D5C362_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = InputDeviceDescription_get_capabilities_m3871219ECAC10766CBAB256E0612674368D5C362_inline(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.Layouts.InputDeviceDescription::set_capabilities(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDeviceDescription_set_capabilities_m3A60E518C919C5554215297212C36B9C8AB940E1 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, String_t* ___value0, const RuntimeMethod* method) { { // set => m_Capabilities = value; String_t* L_0 = ___value0; __this->set_m_Capabilities_6(L_0); return; } } IL2CPP_EXTERN_C void InputDeviceDescription_set_capabilities_m3A60E518C919C5554215297212C36B9C8AB940E1_AdjustorThunk (RuntimeObject * __this, String_t* ___value0, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * _thisAdjusted = reinterpret_cast(__this + _offset); InputDeviceDescription_set_capabilities_m3A60E518C919C5554215297212C36B9C8AB940E1_inline(_thisAdjusted, ___value0, method); } // System.Boolean UnityEngine.InputSystem.Layouts.InputDeviceDescription::get_empty() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDeviceDescription_get_empty_mD22F9DFAC45C892B0883899DF0D473B211A92EE7 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method) { { // string.IsNullOrEmpty(m_InterfaceName) && // string.IsNullOrEmpty(m_DeviceClass) && // string.IsNullOrEmpty(m_Manufacturer) && // string.IsNullOrEmpty(m_Product) && // string.IsNullOrEmpty(m_Serial) && // string.IsNullOrEmpty(m_Version) && // string.IsNullOrEmpty(m_Capabilities); String_t* L_0 = __this->get_m_InterfaceName_0(); bool L_1; L_1 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_005a; } } { String_t* L_2 = __this->get_m_DeviceClass_1(); bool L_3; L_3 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_005a; } } { String_t* L_4 = __this->get_m_Manufacturer_2(); bool L_5; L_5 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_005a; } } { String_t* L_6 = __this->get_m_Product_3(); bool L_7; L_7 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_6, /*hidden argument*/NULL); if (!L_7) { goto IL_005a; } } { String_t* L_8 = __this->get_m_Serial_4(); bool L_9; L_9 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_005a; } } { String_t* L_10 = __this->get_m_Version_5(); bool L_11; L_11 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_005a; } } { String_t* L_12 = __this->get_m_Capabilities_6(); bool L_13; L_13 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_12, /*hidden argument*/NULL); return L_13; } IL_005a: { return (bool)0; } } IL2CPP_EXTERN_C bool InputDeviceDescription_get_empty_mD22F9DFAC45C892B0883899DF0D473B211A92EE7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = InputDeviceDescription_get_empty_mD22F9DFAC45C892B0883899DF0D473B211A92EE7(_thisAdjusted, method); return _returnValue; } // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_ToString_m06A3F9AE316F1EC37EE5A477C0B10F1DF12D847A (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral594BBDBAD17AA79E90710FF87EE03589BF514A08); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD99605E29810F93D7DAE4EFBB764C41AF4E80D32); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFFEF3DBE279EE1F92E1E2E46F45BC18EBBF55A1A); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; bool V_2 = false; String_t* V_3 = NULL; { // var haveProduct = !string.IsNullOrEmpty(product); String_t* L_0; L_0 = InputDeviceDescription_get_product_mEECD8A9018BF8C49B89256C912EC0AAEE90D4A82_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); bool L_1; L_1 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_0, /*hidden argument*/NULL); V_0 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0); // var haveManufacturer = !string.IsNullOrEmpty(manufacturer); String_t* L_2; L_2 = InputDeviceDescription_get_manufacturer_m42C503D82A264C3510752BD1E726D8ED3111E869_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); bool L_3; L_3 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_2, /*hidden argument*/NULL); V_1 = (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0); // var haveInterface = !string.IsNullOrEmpty(interfaceName); String_t* L_4; L_4 = InputDeviceDescription_get_interfaceName_mCEBA87B35556BD0D03EADDD724B08266120BE761_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); bool L_5; L_5 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_4, /*hidden argument*/NULL); V_2 = (bool)((((int32_t)L_5) == ((int32_t)0))? 1 : 0); // if (haveProduct && haveManufacturer) bool L_6 = V_0; bool L_7 = V_1; if (!((int32_t)((int32_t)L_6&(int32_t)L_7))) { goto IL_008b; } } { // if (haveInterface) bool L_8 = V_2; if (!L_8) { goto IL_0074; } } { // return $"{manufacturer} {product} ({interfaceName})"; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)6); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_10 = L_9; String_t* L_11; L_11 = InputDeviceDescription_get_manufacturer_m42C503D82A264C3510752BD1E726D8ED3111E869_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); NullCheck(L_10); ArrayElementTypeCheck (L_10, L_11); (L_10)->SetAt(static_cast(0), (String_t*)L_11); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_12 = L_10; NullCheck(L_12); ArrayElementTypeCheck (L_12, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745); (L_12)->SetAt(static_cast(1), (String_t*)_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_13 = L_12; String_t* L_14; L_14 = InputDeviceDescription_get_product_mEECD8A9018BF8C49B89256C912EC0AAEE90D4A82_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); NullCheck(L_13); ArrayElementTypeCheck (L_13, L_14); (L_13)->SetAt(static_cast(2), (String_t*)L_14); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15 = L_13; NullCheck(L_15); ArrayElementTypeCheck (L_15, _stringLiteralD99605E29810F93D7DAE4EFBB764C41AF4E80D32); (L_15)->SetAt(static_cast(3), (String_t*)_stringLiteralD99605E29810F93D7DAE4EFBB764C41AF4E80D32); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_16 = L_15; String_t* L_17; L_17 = InputDeviceDescription_get_interfaceName_mCEBA87B35556BD0D03EADDD724B08266120BE761_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); NullCheck(L_16); ArrayElementTypeCheck (L_16, L_17); (L_16)->SetAt(static_cast(4), (String_t*)L_17); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_18 = L_16; NullCheck(L_18); ArrayElementTypeCheck (L_18, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); (L_18)->SetAt(static_cast(5), (String_t*)_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); String_t* L_19; L_19 = String_Concat_m27B9C3007C7DABFABCC3726B37A3BE08CB40C417(L_18, /*hidden argument*/NULL); return L_19; } IL_0074: { // return $"{manufacturer} {product}"; String_t* L_20; L_20 = InputDeviceDescription_get_manufacturer_m42C503D82A264C3510752BD1E726D8ED3111E869_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); String_t* L_21; L_21 = InputDeviceDescription_get_product_mEECD8A9018BF8C49B89256C912EC0AAEE90D4A82_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); String_t* L_22; L_22 = String_Concat_mC41740F000A5A48F8D313FB4CEE0E35E207A2632(L_20, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, L_21, /*hidden argument*/NULL); return L_22; } IL_008b: { // if (haveProduct) bool L_23 = V_0; if (!L_23) { goto IL_00b4; } } { // if (haveInterface) bool L_24 = V_2; if (!L_24) { goto IL_00ad; } } { // return $"{product} ({interfaceName})"; String_t* L_25; L_25 = InputDeviceDescription_get_product_mEECD8A9018BF8C49B89256C912EC0AAEE90D4A82_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); String_t* L_26; L_26 = InputDeviceDescription_get_interfaceName_mCEBA87B35556BD0D03EADDD724B08266120BE761_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); String_t* L_27; L_27 = String_Concat_m5D784E6CEEBE99ED8749AA4B9491D926273FD749(L_25, _stringLiteralD99605E29810F93D7DAE4EFBB764C41AF4E80D32, L_26, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D, /*hidden argument*/NULL); return L_27; } IL_00ad: { // return product; String_t* L_28; L_28 = InputDeviceDescription_get_product_mEECD8A9018BF8C49B89256C912EC0AAEE90D4A82_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); return L_28; } IL_00b4: { // if (!string.IsNullOrEmpty(deviceClass)) String_t* L_29; L_29 = InputDeviceDescription_get_deviceClass_m04BB88F15F817900CF7457A2E7FC65F5618AD1AF_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); bool L_30; L_30 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_29, /*hidden argument*/NULL); if (L_30) { goto IL_00e7; } } { // if (haveInterface) bool L_31 = V_2; if (!L_31) { goto IL_00e0; } } { // return $"{deviceClass} ({interfaceName})"; String_t* L_32; L_32 = InputDeviceDescription_get_deviceClass_m04BB88F15F817900CF7457A2E7FC65F5618AD1AF_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); String_t* L_33; L_33 = InputDeviceDescription_get_interfaceName_mCEBA87B35556BD0D03EADDD724B08266120BE761_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); String_t* L_34; L_34 = String_Concat_m5D784E6CEEBE99ED8749AA4B9491D926273FD749(L_32, _stringLiteralD99605E29810F93D7DAE4EFBB764C41AF4E80D32, L_33, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D, /*hidden argument*/NULL); return L_34; } IL_00e0: { // return deviceClass; String_t* L_35; L_35 = InputDeviceDescription_get_deviceClass_m04BB88F15F817900CF7457A2E7FC65F5618AD1AF_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); return L_35; } IL_00e7: { // if (!string.IsNullOrEmpty(capabilities)) String_t* L_36; L_36 = InputDeviceDescription_get_capabilities_m3871219ECAC10766CBAB256E0612674368D5C362_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); bool L_37; L_37 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_36, /*hidden argument*/NULL); if (L_37) { goto IL_013a; } } { // var caps = capabilities; String_t* L_38; L_38 = InputDeviceDescription_get_capabilities_m3871219ECAC10766CBAB256E0612674368D5C362_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); V_3 = L_38; // if (capabilities.Length > kMaxCapabilitiesLength) String_t* L_39; L_39 = InputDeviceDescription_get_capabilities_m3871219ECAC10766CBAB256E0612674368D5C362_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); NullCheck(L_39); int32_t L_40; L_40 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_39, /*hidden argument*/NULL); if ((((int32_t)L_40) <= ((int32_t)((int32_t)40)))) { goto IL_011e; } } { // caps = caps.Substring(0, kMaxCapabilitiesLength) + "..."; String_t* L_41 = V_3; NullCheck(L_41); String_t* L_42; L_42 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_41, 0, ((int32_t)40), /*hidden argument*/NULL); String_t* L_43; L_43 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(L_42, _stringLiteralFFEF3DBE279EE1F92E1E2E46F45BC18EBBF55A1A, /*hidden argument*/NULL); V_3 = L_43; } IL_011e: { // if (haveInterface) bool L_44 = V_2; if (!L_44) { goto IL_0138; } } { // return $"{caps} ({interfaceName})"; String_t* L_45 = V_3; String_t* L_46; L_46 = InputDeviceDescription_get_interfaceName_mCEBA87B35556BD0D03EADDD724B08266120BE761_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); String_t* L_47; L_47 = String_Concat_m5D784E6CEEBE99ED8749AA4B9491D926273FD749(L_45, _stringLiteralD99605E29810F93D7DAE4EFBB764C41AF4E80D32, L_46, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D, /*hidden argument*/NULL); return L_47; } IL_0138: { // return caps; String_t* L_48 = V_3; return L_48; } IL_013a: { // if (haveInterface) bool L_49 = V_2; if (!L_49) { goto IL_0144; } } { // return interfaceName; String_t* L_50; L_50 = InputDeviceDescription_get_interfaceName_mCEBA87B35556BD0D03EADDD724B08266120BE761_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); return L_50; } IL_0144: { // return ""; return _stringLiteral594BBDBAD17AA79E90710FF87EE03589BF514A08; } } IL2CPP_EXTERN_C String_t* InputDeviceDescription_ToString_m06A3F9AE316F1EC37EE5A477C0B10F1DF12D847A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = InputDeviceDescription_ToString_m06A3F9AE316F1EC37EE5A477C0B10F1DF12D847A(_thisAdjusted, method); return _returnValue; } // System.Boolean UnityEngine.InputSystem.Layouts.InputDeviceDescription::Equals(UnityEngine.InputSystem.Layouts.InputDeviceDescription) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDeviceDescription_Equals_m2E6BDE36535166C7A7000B79B7C0028400635111 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___other0, const RuntimeMethod* method) { { // return m_InterfaceName.InvariantEqualsIgnoreCase(other.m_InterfaceName) && // m_DeviceClass.InvariantEqualsIgnoreCase(other.m_DeviceClass) && // m_Manufacturer.InvariantEqualsIgnoreCase(other.m_Manufacturer) && // m_Product.InvariantEqualsIgnoreCase(other.m_Product) && // m_Serial.InvariantEqualsIgnoreCase(other.m_Serial) && // m_Version.InvariantEqualsIgnoreCase(other.m_Version) && // ////REVIEW: this would ideally compare JSON contents not just the raw string // m_Capabilities.InvariantEqualsIgnoreCase(other.m_Capabilities); String_t* L_0 = __this->get_m_InterfaceName_0(); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_1 = ___other0; String_t* L_2 = L_1.get_m_InterfaceName_0(); bool L_3; L_3 = StringHelpers_InvariantEqualsIgnoreCase_m5EC37A57DBDE1C923086A621C55714E622DC7137(L_0, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0084; } } { String_t* L_4 = __this->get_m_DeviceClass_1(); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_5 = ___other0; String_t* L_6 = L_5.get_m_DeviceClass_1(); bool L_7; L_7 = StringHelpers_InvariantEqualsIgnoreCase_m5EC37A57DBDE1C923086A621C55714E622DC7137(L_4, L_6, /*hidden argument*/NULL); if (!L_7) { goto IL_0084; } } { String_t* L_8 = __this->get_m_Manufacturer_2(); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_9 = ___other0; String_t* L_10 = L_9.get_m_Manufacturer_2(); bool L_11; L_11 = StringHelpers_InvariantEqualsIgnoreCase_m5EC37A57DBDE1C923086A621C55714E622DC7137(L_8, L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_0084; } } { String_t* L_12 = __this->get_m_Product_3(); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_13 = ___other0; String_t* L_14 = L_13.get_m_Product_3(); bool L_15; L_15 = StringHelpers_InvariantEqualsIgnoreCase_m5EC37A57DBDE1C923086A621C55714E622DC7137(L_12, L_14, /*hidden argument*/NULL); if (!L_15) { goto IL_0084; } } { String_t* L_16 = __this->get_m_Serial_4(); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_17 = ___other0; String_t* L_18 = L_17.get_m_Serial_4(); bool L_19; L_19 = StringHelpers_InvariantEqualsIgnoreCase_m5EC37A57DBDE1C923086A621C55714E622DC7137(L_16, L_18, /*hidden argument*/NULL); if (!L_19) { goto IL_0084; } } { String_t* L_20 = __this->get_m_Version_5(); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_21 = ___other0; String_t* L_22 = L_21.get_m_Version_5(); bool L_23; L_23 = StringHelpers_InvariantEqualsIgnoreCase_m5EC37A57DBDE1C923086A621C55714E622DC7137(L_20, L_22, /*hidden argument*/NULL); if (!L_23) { goto IL_0084; } } { String_t* L_24 = __this->get_m_Capabilities_6(); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_25 = ___other0; String_t* L_26 = L_25.get_m_Capabilities_6(); bool L_27; L_27 = StringHelpers_InvariantEqualsIgnoreCase_m5EC37A57DBDE1C923086A621C55714E622DC7137(L_24, L_26, /*hidden argument*/NULL); return L_27; } IL_0084: { return (bool)0; } } IL2CPP_EXTERN_C bool InputDeviceDescription_Equals_m2E6BDE36535166C7A7000B79B7C0028400635111_AdjustorThunk (RuntimeObject * __this, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___other0, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = InputDeviceDescription_Equals_m2E6BDE36535166C7A7000B79B7C0028400635111(_thisAdjusted, ___other0, method); return _returnValue; } // System.Boolean UnityEngine.InputSystem.Layouts.InputDeviceDescription::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDeviceDescription_Equals_m8B7715B0F0591127B08723B0231637BBCA4660A8 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 V_0; memset((&V_0), 0, sizeof(V_0)); { // if (ReferenceEquals(null, obj)) RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_0005; } } { // return false; return (bool)0; } IL_0005: { // return obj is InputDeviceDescription description && Equals(description); RuntimeObject * L_1 = ___obj0; if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_il2cpp_TypeInfo_var))) { goto IL_001c; } } { RuntimeObject * L_2 = ___obj0; V_0 = ((*(InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)UnBox(L_2, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_il2cpp_TypeInfo_var)))); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_3 = V_0; bool L_4; L_4 = InputDeviceDescription_Equals_m2E6BDE36535166C7A7000B79B7C0028400635111((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, L_3, /*hidden argument*/NULL); return L_4; } IL_001c: { return (bool)0; } } IL2CPP_EXTERN_C bool InputDeviceDescription_Equals_m8B7715B0F0591127B08723B0231637BBCA4660A8_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = InputDeviceDescription_Equals_m8B7715B0F0591127B08723B0231637BBCA4660A8(_thisAdjusted, ___obj0, method); return _returnValue; } // System.Int32 UnityEngine.InputSystem.Layouts.InputDeviceDescription::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputDeviceDescription_GetHashCode_m8770650ED6E3706DAAA412DE227ADABB80D757C8 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method) { int32_t G_B3_0 = 0; int32_t G_B5_0 = 0; int32_t G_B4_0 = 0; int32_t G_B6_0 = 0; int32_t G_B6_1 = 0; int32_t G_B8_0 = 0; int32_t G_B7_0 = 0; int32_t G_B9_0 = 0; int32_t G_B9_1 = 0; int32_t G_B11_0 = 0; int32_t G_B10_0 = 0; int32_t G_B12_0 = 0; int32_t G_B12_1 = 0; int32_t G_B14_0 = 0; int32_t G_B13_0 = 0; int32_t G_B15_0 = 0; int32_t G_B15_1 = 0; int32_t G_B17_0 = 0; int32_t G_B16_0 = 0; int32_t G_B18_0 = 0; int32_t G_B18_1 = 0; int32_t G_B20_0 = 0; int32_t G_B19_0 = 0; int32_t G_B21_0 = 0; int32_t G_B21_1 = 0; { // var hashCode = m_InterfaceName != null ? m_InterfaceName.GetHashCode() : 0; String_t* L_0 = __this->get_m_InterfaceName_0(); if (L_0) { goto IL_000b; } } { G_B3_0 = 0; goto IL_0016; } IL_000b: { String_t* L_1 = __this->get_m_InterfaceName_0(); NullCheck(L_1); int32_t L_2; L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_1); G_B3_0 = L_2; } IL_0016: { // hashCode = (hashCode * 397) ^ (m_DeviceClass != null ? m_DeviceClass.GetHashCode() : 0); String_t* L_3 = __this->get_m_DeviceClass_1(); G_B4_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)G_B3_0, (int32_t)((int32_t)397))); if (L_3) { G_B5_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)G_B3_0, (int32_t)((int32_t)397))); goto IL_0027; } } { G_B6_0 = 0; G_B6_1 = G_B4_0; goto IL_0032; } IL_0027: { String_t* L_4 = __this->get_m_DeviceClass_1(); NullCheck(L_4); int32_t L_5; L_5 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_4); G_B6_0 = L_5; G_B6_1 = G_B5_0; } IL_0032: { // hashCode = (hashCode * 397) ^ (m_Manufacturer != null ? m_Manufacturer.GetHashCode() : 0); String_t* L_6 = __this->get_m_Manufacturer_2(); G_B7_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)G_B6_1^(int32_t)G_B6_0)), (int32_t)((int32_t)397))); if (L_6) { G_B8_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)G_B6_1^(int32_t)G_B6_0)), (int32_t)((int32_t)397))); goto IL_0044; } } { G_B9_0 = 0; G_B9_1 = G_B7_0; goto IL_004f; } IL_0044: { String_t* L_7 = __this->get_m_Manufacturer_2(); NullCheck(L_7); int32_t L_8; L_8 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_7); G_B9_0 = L_8; G_B9_1 = G_B8_0; } IL_004f: { // hashCode = (hashCode * 397) ^ (m_Product != null ? m_Product.GetHashCode() : 0); String_t* L_9 = __this->get_m_Product_3(); G_B10_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)G_B9_1^(int32_t)G_B9_0)), (int32_t)((int32_t)397))); if (L_9) { G_B11_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)G_B9_1^(int32_t)G_B9_0)), (int32_t)((int32_t)397))); goto IL_0061; } } { G_B12_0 = 0; G_B12_1 = G_B10_0; goto IL_006c; } IL_0061: { String_t* L_10 = __this->get_m_Product_3(); NullCheck(L_10); int32_t L_11; L_11 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_10); G_B12_0 = L_11; G_B12_1 = G_B11_0; } IL_006c: { // hashCode = (hashCode * 397) ^ (m_Serial != null ? m_Serial.GetHashCode() : 0); String_t* L_12 = __this->get_m_Serial_4(); G_B13_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)G_B12_1^(int32_t)G_B12_0)), (int32_t)((int32_t)397))); if (L_12) { G_B14_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)G_B12_1^(int32_t)G_B12_0)), (int32_t)((int32_t)397))); goto IL_007e; } } { G_B15_0 = 0; G_B15_1 = G_B13_0; goto IL_0089; } IL_007e: { String_t* L_13 = __this->get_m_Serial_4(); NullCheck(L_13); int32_t L_14; L_14 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_13); G_B15_0 = L_14; G_B15_1 = G_B14_0; } IL_0089: { // hashCode = (hashCode * 397) ^ (m_Version != null ? m_Version.GetHashCode() : 0); String_t* L_15 = __this->get_m_Version_5(); G_B16_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)G_B15_1^(int32_t)G_B15_0)), (int32_t)((int32_t)397))); if (L_15) { G_B17_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)G_B15_1^(int32_t)G_B15_0)), (int32_t)((int32_t)397))); goto IL_009b; } } { G_B18_0 = 0; G_B18_1 = G_B16_0; goto IL_00a6; } IL_009b: { String_t* L_16 = __this->get_m_Version_5(); NullCheck(L_16); int32_t L_17; L_17 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_16); G_B18_0 = L_17; G_B18_1 = G_B17_0; } IL_00a6: { // hashCode = (hashCode * 397) ^ (m_Capabilities != null ? m_Capabilities.GetHashCode() : 0); String_t* L_18 = __this->get_m_Capabilities_6(); G_B19_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)G_B18_1^(int32_t)G_B18_0)), (int32_t)((int32_t)397))); if (L_18) { G_B20_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)G_B18_1^(int32_t)G_B18_0)), (int32_t)((int32_t)397))); goto IL_00b8; } } { G_B21_0 = 0; G_B21_1 = G_B19_0; goto IL_00c3; } IL_00b8: { String_t* L_19 = __this->get_m_Capabilities_6(); NullCheck(L_19); int32_t L_20; L_20 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_19); G_B21_0 = L_20; G_B21_1 = G_B20_0; } IL_00c3: { // return hashCode; return ((int32_t)((int32_t)G_B21_1^(int32_t)G_B21_0)); } } IL2CPP_EXTERN_C int32_t InputDeviceDescription_GetHashCode_m8770650ED6E3706DAAA412DE227ADABB80D757C8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = InputDeviceDescription_GetHashCode_m8770650ED6E3706DAAA412DE227ADABB80D757C8(_thisAdjusted, method); return _returnValue; } // System.Boolean UnityEngine.InputSystem.Layouts.InputDeviceDescription::op_Equality(UnityEngine.InputSystem.Layouts.InputDeviceDescription,UnityEngine.InputSystem.Layouts.InputDeviceDescription) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDeviceDescription_op_Equality_m201A2E8B1DEB1D66E7EE015ECE6F7CC52843C716 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___left0, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___right1, const RuntimeMethod* method) { { // return left.Equals(right); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_0 = ___right1; bool L_1; L_1 = InputDeviceDescription_Equals_m2E6BDE36535166C7A7000B79B7C0028400635111((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___left0), L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean UnityEngine.InputSystem.Layouts.InputDeviceDescription::op_Inequality(UnityEngine.InputSystem.Layouts.InputDeviceDescription,UnityEngine.InputSystem.Layouts.InputDeviceDescription) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDeviceDescription_op_Inequality_m8EDA58436922639EEA147E6D8FE19A9F66AC5284 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___left0, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___right1, const RuntimeMethod* method) { { // return !left.Equals(right); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_0 = ___right1; bool L_1; L_1 = InputDeviceDescription_Equals_m2E6BDE36535166C7A7000B79B7C0028400635111((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___left0), L_0, /*hidden argument*/NULL); return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0); } } // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::ToJson() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_ToJson_mB8B7AC9C4375687397491C4E9DCC29496E08AF27 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413 V_0; memset((&V_0), 0, sizeof(V_0)); { // var data = new DeviceDescriptionJson // { // @interface = interfaceName, // type = deviceClass, // product = product, // manufacturer = manufacturer, // serial = serial, // version = version, // capabilities = capabilities // }; il2cpp_codegen_initobj((&V_0), sizeof(DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413 )); String_t* L_0; L_0 = InputDeviceDescription_get_interfaceName_mCEBA87B35556BD0D03EADDD724B08266120BE761_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); (&V_0)->set_interface_0(L_0); String_t* L_1; L_1 = InputDeviceDescription_get_deviceClass_m04BB88F15F817900CF7457A2E7FC65F5618AD1AF_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); (&V_0)->set_type_1(L_1); String_t* L_2; L_2 = InputDeviceDescription_get_product_mEECD8A9018BF8C49B89256C912EC0AAEE90D4A82_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); (&V_0)->set_product_2(L_2); String_t* L_3; L_3 = InputDeviceDescription_get_manufacturer_m42C503D82A264C3510752BD1E726D8ED3111E869_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); (&V_0)->set_manufacturer_5(L_3); String_t* L_4; L_4 = InputDeviceDescription_get_serial_m259412E6F7627E1310535A55FB9BE03146C54A55_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); (&V_0)->set_serial_3(L_4); String_t* L_5; L_5 = InputDeviceDescription_get_version_mF03973E700CF32DEDDF4374AF5596E618FC21D95_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); (&V_0)->set_version_4(L_5); String_t* L_6; L_6 = InputDeviceDescription_get_capabilities_m3871219ECAC10766CBAB256E0612674368D5C362_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)__this, /*hidden argument*/NULL); (&V_0)->set_capabilities_6(L_6); DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413 L_7 = V_0; // return JsonUtility.ToJson(data, true); DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413 L_8 = L_7; RuntimeObject * L_9 = Box(DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413_il2cpp_TypeInfo_var, &L_8); String_t* L_10; L_10 = JsonUtility_ToJson_m8A3321288D36CE4383BE7F22C4DACFAF1DEE9ABF(L_9, (bool)1, /*hidden argument*/NULL); return L_10; } } IL2CPP_EXTERN_C String_t* InputDeviceDescription_ToJson_mB8B7AC9C4375687397491C4E9DCC29496E08AF27_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = InputDeviceDescription_ToJson_mB8B7AC9C4375687397491C4E9DCC29496E08AF27(_thisAdjusted, method); return _returnValue; } // UnityEngine.InputSystem.Layouts.InputDeviceDescription UnityEngine.InputSystem.Layouts.InputDeviceDescription::FromJson(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 InputDeviceDescription_FromJson_m016A57DA58C9B7EB31C9269AF99604778E8BC011 (String_t* ___json0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonUtility_FromJson_TisDeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413_m5982849AE3F1FD56C0EDFDC01A4FB87D817D9C26_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413 V_0; memset((&V_0), 0, sizeof(V_0)); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 V_1; memset((&V_1), 0, sizeof(V_1)); { // if (json == null) String_t* L_0 = ___json0; if (L_0) { goto IL_000e; } } { // throw new ArgumentNullException(nameof(json)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral43187C90BBB5DFB063A95733C9BD65ECD25A2E84)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputDeviceDescription_FromJson_m016A57DA58C9B7EB31C9269AF99604778E8BC011_RuntimeMethod_var))); } IL_000e: { // var data = JsonUtility.FromJson(json); String_t* L_2 = ___json0; DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413 L_3; L_3 = JsonUtility_FromJson_TisDeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413_m5982849AE3F1FD56C0EDFDC01A4FB87D817D9C26(L_2, /*hidden argument*/JsonUtility_FromJson_TisDeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413_m5982849AE3F1FD56C0EDFDC01A4FB87D817D9C26_RuntimeMethod_var); V_0 = L_3; // return new InputDeviceDescription // { // interfaceName = data.@interface, // deviceClass = data.type, // product = data.product, // manufacturer = data.manufacturer, // serial = data.serial, // version = data.version, // capabilities = data.capabilities // }; il2cpp_codegen_initobj((&V_1), sizeof(InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 )); DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413 L_4 = V_0; String_t* L_5 = L_4.get_interface_0(); InputDeviceDescription_set_interfaceName_mABE1A9818925CBC790F664066FB1EBE4C834452C_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&V_1), L_5, /*hidden argument*/NULL); DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413 L_6 = V_0; String_t* L_7 = L_6.get_type_1(); InputDeviceDescription_set_deviceClass_m8C006A98A4CE08B4473C4D1D4F5291B452DE85A8_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&V_1), L_7, /*hidden argument*/NULL); DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413 L_8 = V_0; String_t* L_9 = L_8.get_product_2(); InputDeviceDescription_set_product_m7BB0FC8611C3D4CCE2412F603A048A11C9838645_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&V_1), L_9, /*hidden argument*/NULL); DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413 L_10 = V_0; String_t* L_11 = L_10.get_manufacturer_5(); InputDeviceDescription_set_manufacturer_m7D0DEDFD9CF9F32A99A27CEB5316B85026150191_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&V_1), L_11, /*hidden argument*/NULL); DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413 L_12 = V_0; String_t* L_13 = L_12.get_serial_3(); InputDeviceDescription_set_serial_m751AB1FADCB10147BAD9DC499D18AD3E38ECC310_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&V_1), L_13, /*hidden argument*/NULL); DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413 L_14 = V_0; String_t* L_15 = L_14.get_version_4(); InputDeviceDescription_set_version_m3625E12F52EB64C19673E68D8B0D19211E460CD0_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&V_1), L_15, /*hidden argument*/NULL); DeviceDescriptionJson_t7DA80B75B45E09CC9BD008180A65184477184413 L_16 = V_0; String_t* L_17 = L_16.get_capabilities_6(); InputDeviceDescription_set_capabilities_m3A60E518C919C5554215297212C36B9C8AB940E1_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&V_1), L_17, /*hidden argument*/NULL); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_18 = V_1; return L_18; } } // System.Boolean UnityEngine.InputSystem.Layouts.InputDeviceDescription::ComparePropertyToDeviceDescriptor(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDeviceDescription_ComparePropertyToDeviceDescriptor_mCDE56F9A2EC603ED7D7E0F83B2F12FA44A995369 (String_t* ___propertyName0, String_t* ___propertyValue1, String_t* ___deviceDescriptor2, const RuntimeMethod* method) { JsonParser_t4C34C450BC39EA738DBD7CDC56B48626355D272E V_0; memset((&V_0), 0, sizeof(V_0)); { // var json = new JsonParser(deviceDescriptor); String_t* L_0 = ___deviceDescriptor2; JsonParser__ctor_m3FCC88CC2257778CAFF2B3ECC7D27FA28403D290((JsonParser_t4C34C450BC39EA738DBD7CDC56B48626355D272E *)(&V_0), L_0, /*hidden argument*/NULL); // if (!json.NavigateToProperty(propertyName)) String_t* L_1 = ___propertyName0; bool L_2; L_2 = JsonParser_NavigateToProperty_m8F77E7815B27B81F6C59450D2FBD763AE7C2B6BD((JsonParser_t4C34C450BC39EA738DBD7CDC56B48626355D272E *)(&V_0), L_1, /*hidden argument*/NULL); if (L_2) { goto IL_001e; } } { // if (string.IsNullOrEmpty(propertyValue)) String_t* L_3 = ___propertyValue1; bool L_4; L_4 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_001c; } } { // return true; return (bool)1; } IL_001c: { // return false; return (bool)0; } IL_001e: { // return json.CurrentPropertyHasValueEqualTo(propertyValue); String_t* L_5 = ___propertyValue1; JsonValue_t547F68925DBBEF3A29A4E14D26153A04872154DB L_6; L_6 = JsonValue_op_Implicit_mADB04D57C501DD565381120589F70C8770C180A7(L_5, /*hidden argument*/NULL); bool L_7; L_7 = JsonParser_CurrentPropertyHasValueEqualTo_m8E78B1BEFF4CC652C3D877B3E3829823C97E9A3D((JsonParser_t4C34C450BC39EA738DBD7CDC56B48626355D272E *)(&V_0), L_6, /*hidden argument*/NULL); return L_7; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif IL2CPP_EXTERN_C int64_t DelegatePInvokeWrapper_InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D (InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D * __this, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * ___command0, const RuntimeMethod* method) { typedef int64_t (DEFAULT_CALL *PInvokeFunc)(InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 *); PInvokeFunc il2cppPInvokeFunc = reinterpret_cast(((RuntimeDelegate*)__this)->method->nativeFunction); // Native function invocation int64_t returnValue = il2cppPInvokeFunc(___command0); return returnValue; } // System.Void UnityEngine.InputSystem.LowLevel.InputDeviceExecuteCommandDelegate::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDeviceExecuteCommandDelegate__ctor_m5810591B3A01F4C5C0F075DC1971FA0C1101E86F (InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { if (___object0 == NULL && !MethodIsStatic((RuntimeMethod*)___method1)) { il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); } __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Int64 UnityEngine.InputSystem.LowLevel.InputDeviceExecuteCommandDelegate::Invoke(UnityEngine.InputSystem.LowLevel.InputDeviceCommand&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputDeviceExecuteCommandDelegate_Invoke_m32F9DB3F9313ABEE3B544388E475362C26C105CA (InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D * __this, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * ___command0, const RuntimeMethod* method) { int64_t result = 0; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef int64_t (*FunctionPointerType) (InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___command0, targetMethod); } else { // closed typedef int64_t (*FunctionPointerType) (void*, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___command0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< int64_t, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * >::Invoke(targetMethod, targetThis, ___command0); else result = GenericVirtFuncInvoker1< int64_t, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * >::Invoke(targetMethod, targetThis, ___command0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< int64_t, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___command0); else result = VirtFuncInvoker1< int64_t, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___command0); } } else { if (___parameterCount == 0) { typedef int64_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast(___command0) - 1), targetMethod); } else { typedef int64_t (*FunctionPointerType) (void*, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___command0, targetMethod); } } } } return result; } // System.IAsyncResult UnityEngine.InputSystem.LowLevel.InputDeviceExecuteCommandDelegate::BeginInvoke(UnityEngine.InputSystem.LowLevel.InputDeviceCommand&,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputDeviceExecuteCommandDelegate_BeginInvoke_m2202C190F45766C5C0C379697D43B9E4F4DD596F (InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D * __this, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * ___command0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3_il2cpp_TypeInfo_var, &*___command0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Int64 UnityEngine.InputSystem.LowLevel.InputDeviceExecuteCommandDelegate::EndInvoke(UnityEngine.InputSystem.LowLevel.InputDeviceCommand&,System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputDeviceExecuteCommandDelegate_EndInvoke_m032FB6987675B37F1163D909EDCA41A360178151 (InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D * __this, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * ___command0, RuntimeObject* ___result1, const RuntimeMethod* method) { void* ___out_args[] = { ___command0, }; RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result1, ___out_args); return *(int64_t*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif IL2CPP_EXTERN_C String_t* DelegatePInvokeWrapper_InputDeviceFindControlLayoutDelegate_tE30412E20D6F6870BF090C6D6C4CA9B4CFD0978F (InputDeviceFindControlLayoutDelegate_tE30412E20D6F6870BF090C6D6C4CA9B4CFD0978F * __this, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * ___description0, String_t* ___matchedLayout1, InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D * ___executeDeviceCommand2, const RuntimeMethod* method) { typedef char* (DEFAULT_CALL *PInvokeFunc)(InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshaled_pinvoke*, char*, Il2CppMethodPointer); PInvokeFunc il2cppPInvokeFunc = reinterpret_cast(((RuntimeDelegate*)__this)->method->nativeFunction); // Marshaling of parameter '___description0' to native representation InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshaled_pinvoke* ____description0_marshaled = NULL; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshaled_pinvoke ____description0_marshaled_dereferenced = {}; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshal_pinvoke(*___description0, ____description0_marshaled_dereferenced); ____description0_marshaled = &____description0_marshaled_dereferenced; // Marshaling of parameter '___matchedLayout1' to native representation char* ____matchedLayout1_marshaled = NULL; ____matchedLayout1_marshaled = il2cpp_codegen_marshal_string(___matchedLayout1); // Marshaling of parameter '___executeDeviceCommand2' to native representation Il2CppMethodPointer ____executeDeviceCommand2_marshaled = NULL; ____executeDeviceCommand2_marshaled = il2cpp_codegen_marshal_delegate(reinterpret_cast(___executeDeviceCommand2)); // Native function invocation char* returnValue = il2cppPInvokeFunc(____description0_marshaled, ____matchedLayout1_marshaled, ____executeDeviceCommand2_marshaled); // Marshaling of return value back from native representation String_t* _returnValue_unmarshaled = NULL; _returnValue_unmarshaled = il2cpp_codegen_marshal_string_result(returnValue); // Marshaling cleanup of return value native representation il2cpp_codegen_marshal_free(returnValue); returnValue = NULL; // Marshaling of parameter '___description0' back from native representation InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 _____description0_marshaled_unmarshaled_dereferenced; memset((&_____description0_marshaled_unmarshaled_dereferenced), 0, sizeof(_____description0_marshaled_unmarshaled_dereferenced)); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshal_pinvoke_back(*____description0_marshaled, _____description0_marshaled_unmarshaled_dereferenced); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_marshal_pinvoke_cleanup(*____description0_marshaled); *___description0 = _____description0_marshaled_unmarshaled_dereferenced; Il2CppCodeGenWriteBarrier((void**)&((___description0)->___m_InterfaceName_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((___description0)->___m_DeviceClass_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((___description0)->___m_Manufacturer_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((___description0)->___m_Product_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((___description0)->___m_Serial_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((___description0)->___m_Version_5), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((___description0)->___m_Capabilities_6), (void*)NULL); #endif // Marshaling cleanup of parameter '___matchedLayout1' native representation il2cpp_codegen_marshal_free(____matchedLayout1_marshaled); ____matchedLayout1_marshaled = NULL; return _returnValue_unmarshaled; } // System.Void UnityEngine.InputSystem.Layouts.InputDeviceFindControlLayoutDelegate::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDeviceFindControlLayoutDelegate__ctor_m819880F6D75381E5761D2056CBA173DE14815948 (InputDeviceFindControlLayoutDelegate_tE30412E20D6F6870BF090C6D6C4CA9B4CFD0978F * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { if (___object0 == NULL && !MethodIsStatic((RuntimeMethod*)___method1)) { il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); } __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.String UnityEngine.InputSystem.Layouts.InputDeviceFindControlLayoutDelegate::Invoke(UnityEngine.InputSystem.Layouts.InputDeviceDescription&,System.String,UnityEngine.InputSystem.LowLevel.InputDeviceExecuteCommandDelegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputDeviceFindControlLayoutDelegate_Invoke_mB36B7B8A0168707534771FBADBF2EE3E0E9C80FE (InputDeviceFindControlLayoutDelegate_tE30412E20D6F6870BF090C6D6C4CA9B4CFD0978F * __this, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * ___description0, String_t* ___matchedLayout1, InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D * ___executeDeviceCommand2, const RuntimeMethod* method) { String_t* result = NULL; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 3) { // open typedef String_t* (*FunctionPointerType) (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *, String_t*, InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___description0, ___matchedLayout1, ___executeDeviceCommand2, targetMethod); } else { // closed typedef String_t* (*FunctionPointerType) (void*, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *, String_t*, InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___description0, ___matchedLayout1, ___executeDeviceCommand2, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker3< String_t*, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *, String_t*, InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D * >::Invoke(targetMethod, targetThis, ___description0, ___matchedLayout1, ___executeDeviceCommand2); else result = GenericVirtFuncInvoker3< String_t*, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *, String_t*, InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D * >::Invoke(targetMethod, targetThis, ___description0, ___matchedLayout1, ___executeDeviceCommand2); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker3< String_t*, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *, String_t*, InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___description0, ___matchedLayout1, ___executeDeviceCommand2); else result = VirtFuncInvoker3< String_t*, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *, String_t*, InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___description0, ___matchedLayout1, ___executeDeviceCommand2); } } else { if (___parameterCount == 2) { typedef String_t* (*FunctionPointerType) (RuntimeObject*, String_t*, InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast(___description0) - 1), ___matchedLayout1, ___executeDeviceCommand2, targetMethod); } else { typedef String_t* (*FunctionPointerType) (void*, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *, String_t*, InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___description0, ___matchedLayout1, ___executeDeviceCommand2, targetMethod); } } } } return result; } // System.IAsyncResult UnityEngine.InputSystem.Layouts.InputDeviceFindControlLayoutDelegate::BeginInvoke(UnityEngine.InputSystem.Layouts.InputDeviceDescription&,System.String,UnityEngine.InputSystem.LowLevel.InputDeviceExecuteCommandDelegate,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputDeviceFindControlLayoutDelegate_BeginInvoke_mB52FF53B5F1C8712B333E07A95886F9B512BC634 (InputDeviceFindControlLayoutDelegate_tE30412E20D6F6870BF090C6D6C4CA9B4CFD0978F * __this, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * ___description0, String_t* ___matchedLayout1, InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D * ___executeDeviceCommand2, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback3, RuntimeObject * ___object4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[4] = {0}; __d_args[0] = Box(InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_il2cpp_TypeInfo_var, &*___description0); __d_args[1] = ___matchedLayout1; __d_args[2] = ___executeDeviceCommand2; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback3, (RuntimeObject*)___object4);; } // System.String UnityEngine.InputSystem.Layouts.InputDeviceFindControlLayoutDelegate::EndInvoke(UnityEngine.InputSystem.Layouts.InputDeviceDescription&,System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputDeviceFindControlLayoutDelegate_EndInvoke_mF36F596422A461F7F2927306B85102004498D5BF (InputDeviceFindControlLayoutDelegate_tE30412E20D6F6870BF090C6D6C4CA9B4CFD0978F * __this, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * ___description0, RuntimeObject* ___result1, const RuntimeMethod* method) { void* ___out_args[] = { ___description0, }; RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result1, ___out_args); return (String_t*)__result;; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: UnityEngine.InputSystem.Layouts.InputDeviceMatcher IL2CPP_EXTERN_C void InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_marshal_pinvoke(const InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57& unmarshaled, InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_marshaled_pinvoke& marshaled) { Exception_t* ___m_Patterns_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Patterns' of type 'InputDeviceMatcher'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Patterns_0Exception, NULL); } IL2CPP_EXTERN_C void InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_marshal_pinvoke_back(const InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_marshaled_pinvoke& marshaled, InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57& unmarshaled) { Exception_t* ___m_Patterns_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Patterns' of type 'InputDeviceMatcher'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Patterns_0Exception, NULL); } // Conversion method for clean up from marshalling of: UnityEngine.InputSystem.Layouts.InputDeviceMatcher IL2CPP_EXTERN_C void InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_marshal_pinvoke_cleanup(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: UnityEngine.InputSystem.Layouts.InputDeviceMatcher IL2CPP_EXTERN_C void InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_marshal_com(const InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57& unmarshaled, InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_marshaled_com& marshaled) { Exception_t* ___m_Patterns_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Patterns' of type 'InputDeviceMatcher'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Patterns_0Exception, NULL); } IL2CPP_EXTERN_C void InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_marshal_com_back(const InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_marshaled_com& marshaled, InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57& unmarshaled) { Exception_t* ___m_Patterns_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Patterns' of type 'InputDeviceMatcher'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Patterns_0Exception, NULL); } // Conversion method for clean up from marshalling of: UnityEngine.InputSystem.Layouts.InputDeviceMatcher IL2CPP_EXTERN_C void InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_marshal_com_cleanup(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_marshaled_com& marshaled) { } // System.Boolean UnityEngine.InputSystem.Layouts.InputDeviceMatcher::get_empty() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDeviceMatcher_get_empty_m3F46CDE753F731D060E5669A8A1CFEC59CC5D21F (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, const RuntimeMethod* method) { { // public bool empty => m_Patterns == null; KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105* L_0 = __this->get_m_Patterns_0(); return (bool)((((RuntimeObject*)(KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105*)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); } } IL2CPP_EXTERN_C bool InputDeviceMatcher_get_empty_m3F46CDE753F731D060E5669A8A1CFEC59CC5D21F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = InputDeviceMatcher_get_empty_m3F46CDE753F731D060E5669A8A1CFEC59CC5D21F(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.IEnumerable`1> UnityEngine.InputSystem.Layouts.InputDeviceMatcher::get_patterns() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputDeviceMatcher_get_patterns_m53E748473841C8F435EC8447FF52EC0CA586E3EF (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3Cget_patternsU3Ed__4_t6191EF324445918A4E234231F0240556B56CA816_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { U3Cget_patternsU3Ed__4_t6191EF324445918A4E234231F0240556B56CA816 * L_0 = (U3Cget_patternsU3Ed__4_t6191EF324445918A4E234231F0240556B56CA816 *)il2cpp_codegen_object_new(U3Cget_patternsU3Ed__4_t6191EF324445918A4E234231F0240556B56CA816_il2cpp_TypeInfo_var); U3Cget_patternsU3Ed__4__ctor_m857A331802795E22A81249C5D371D76B322002AD(L_0, ((int32_t)-2), /*hidden argument*/NULL); U3Cget_patternsU3Ed__4_t6191EF324445918A4E234231F0240556B56CA816 * L_1 = L_0; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_2 = (*(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 *)__this); NullCheck(L_1); L_1->set_U3CU3E3__U3CU3E4__this_4(L_2); return L_1; } } IL2CPP_EXTERN_C RuntimeObject* InputDeviceMatcher_get_patterns_m53E748473841C8F435EC8447FF52EC0CA586E3EF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * _thisAdjusted = reinterpret_cast(__this + _offset); RuntimeObject* _returnValue; _returnValue = InputDeviceMatcher_get_patterns_m53E748473841C8F435EC8447FF52EC0CA586E3EF(_thisAdjusted, method); return _returnValue; } // UnityEngine.InputSystem.Layouts.InputDeviceMatcher UnityEngine.InputSystem.Layouts.InputDeviceMatcher::WithInterface(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 InputDeviceMatcher_WithInterface_m67902BFA0C953194FCE049F1FA1784C494F5967B (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, String_t* ___pattern0, bool ___supportRegex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return With(kInterfaceKey, pattern, supportRegex); IL2CPP_RUNTIME_CLASS_INIT(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_0 = ((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_StaticFields*)il2cpp_codegen_static_fields_for(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var))->get_kInterfaceKey_1(); String_t* L_1 = ___pattern0; bool L_2 = ___supportRegex1; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_3; L_3 = InputDeviceMatcher_With_mAFC3198DA4804664B1ADCB38065A33CE684DFAEA((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 *)__this, L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } IL2CPP_EXTERN_C InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 InputDeviceMatcher_WithInterface_m67902BFA0C953194FCE049F1FA1784C494F5967B_AdjustorThunk (RuntimeObject * __this, String_t* ___pattern0, bool ___supportRegex1, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * _thisAdjusted = reinterpret_cast(__this + _offset); InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 _returnValue; _returnValue = InputDeviceMatcher_WithInterface_m67902BFA0C953194FCE049F1FA1784C494F5967B(_thisAdjusted, ___pattern0, ___supportRegex1, method); return _returnValue; } // UnityEngine.InputSystem.Layouts.InputDeviceMatcher UnityEngine.InputSystem.Layouts.InputDeviceMatcher::WithDeviceClass(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 InputDeviceMatcher_WithDeviceClass_mFD3BB3A359C960E04407F5997ED330D8999F7E9C (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, String_t* ___pattern0, bool ___supportRegex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return With(kDeviceClassKey, pattern, supportRegex); IL2CPP_RUNTIME_CLASS_INIT(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_0 = ((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_StaticFields*)il2cpp_codegen_static_fields_for(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var))->get_kDeviceClassKey_2(); String_t* L_1 = ___pattern0; bool L_2 = ___supportRegex1; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_3; L_3 = InputDeviceMatcher_With_mAFC3198DA4804664B1ADCB38065A33CE684DFAEA((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 *)__this, L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } IL2CPP_EXTERN_C InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 InputDeviceMatcher_WithDeviceClass_mFD3BB3A359C960E04407F5997ED330D8999F7E9C_AdjustorThunk (RuntimeObject * __this, String_t* ___pattern0, bool ___supportRegex1, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * _thisAdjusted = reinterpret_cast(__this + _offset); InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 _returnValue; _returnValue = InputDeviceMatcher_WithDeviceClass_mFD3BB3A359C960E04407F5997ED330D8999F7E9C(_thisAdjusted, ___pattern0, ___supportRegex1, method); return _returnValue; } // UnityEngine.InputSystem.Layouts.InputDeviceMatcher UnityEngine.InputSystem.Layouts.InputDeviceMatcher::WithManufacturer(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 InputDeviceMatcher_WithManufacturer_m160DD6B5020CF757C8CEF2C61525F66D981509BB (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, String_t* ___pattern0, bool ___supportRegex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return With(kManufacturerKey, pattern, supportRegex); IL2CPP_RUNTIME_CLASS_INIT(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_0 = ((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_StaticFields*)il2cpp_codegen_static_fields_for(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var))->get_kManufacturerKey_3(); String_t* L_1 = ___pattern0; bool L_2 = ___supportRegex1; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_3; L_3 = InputDeviceMatcher_With_mAFC3198DA4804664B1ADCB38065A33CE684DFAEA((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 *)__this, L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } IL2CPP_EXTERN_C InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 InputDeviceMatcher_WithManufacturer_m160DD6B5020CF757C8CEF2C61525F66D981509BB_AdjustorThunk (RuntimeObject * __this, String_t* ___pattern0, bool ___supportRegex1, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * _thisAdjusted = reinterpret_cast(__this + _offset); InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 _returnValue; _returnValue = InputDeviceMatcher_WithManufacturer_m160DD6B5020CF757C8CEF2C61525F66D981509BB(_thisAdjusted, ___pattern0, ___supportRegex1, method); return _returnValue; } // UnityEngine.InputSystem.Layouts.InputDeviceMatcher UnityEngine.InputSystem.Layouts.InputDeviceMatcher::WithProduct(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 InputDeviceMatcher_WithProduct_mF03FC23FA705A82946CA53E6667CBCD46055420C (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, String_t* ___pattern0, bool ___supportRegex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return With(kProductKey, pattern, supportRegex); IL2CPP_RUNTIME_CLASS_INIT(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_0 = ((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_StaticFields*)il2cpp_codegen_static_fields_for(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var))->get_kProductKey_4(); String_t* L_1 = ___pattern0; bool L_2 = ___supportRegex1; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_3; L_3 = InputDeviceMatcher_With_mAFC3198DA4804664B1ADCB38065A33CE684DFAEA((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 *)__this, L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } IL2CPP_EXTERN_C InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 InputDeviceMatcher_WithProduct_mF03FC23FA705A82946CA53E6667CBCD46055420C_AdjustorThunk (RuntimeObject * __this, String_t* ___pattern0, bool ___supportRegex1, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * _thisAdjusted = reinterpret_cast(__this + _offset); InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 _returnValue; _returnValue = InputDeviceMatcher_WithProduct_mF03FC23FA705A82946CA53E6667CBCD46055420C(_thisAdjusted, ___pattern0, ___supportRegex1, method); return _returnValue; } // UnityEngine.InputSystem.Layouts.InputDeviceMatcher UnityEngine.InputSystem.Layouts.InputDeviceMatcher::WithVersion(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 InputDeviceMatcher_WithVersion_m64968A69BE8C80ADF2C964AC32415D166620E48A (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, String_t* ___pattern0, bool ___supportRegex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return With(kVersionKey, pattern, supportRegex); IL2CPP_RUNTIME_CLASS_INIT(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_0 = ((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_StaticFields*)il2cpp_codegen_static_fields_for(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var))->get_kVersionKey_5(); String_t* L_1 = ___pattern0; bool L_2 = ___supportRegex1; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_3; L_3 = InputDeviceMatcher_With_mAFC3198DA4804664B1ADCB38065A33CE684DFAEA((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 *)__this, L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } IL2CPP_EXTERN_C InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 InputDeviceMatcher_WithVersion_m64968A69BE8C80ADF2C964AC32415D166620E48A_AdjustorThunk (RuntimeObject * __this, String_t* ___pattern0, bool ___supportRegex1, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * _thisAdjusted = reinterpret_cast(__this + _offset); InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 _returnValue; _returnValue = InputDeviceMatcher_WithVersion_m64968A69BE8C80ADF2C964AC32415D166620E48A(_thisAdjusted, ___pattern0, ___supportRegex1, method); return _returnValue; } // UnityEngine.InputSystem.Layouts.InputDeviceMatcher UnityEngine.InputSystem.Layouts.InputDeviceMatcher::With(UnityEngine.InputSystem.Utilities.InternedString,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 InputDeviceMatcher_With_mAFC3198DA4804664B1ADCB38065A33CE684DFAEA (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, RuntimeObject * ___value1, bool ___supportRegex2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_Append_TisKeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521_m873B3C7D90D52301893F6EF2DC4A8389D1441A20_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_All_TisChar_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_m1433F8CC63C937857531DD2FBB1D8FC8636A0D39_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2__ctor_m2025FBDB42EB2B4162FA2F3E59FFD25C2BC4A547_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2__ctor_m8E414081CDF840B7B266F15373BE120B33CF8AA7_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CWithU3Eb__11_0_mDBC3A4E19F1F178427BBDB33F3E7A4C7012D2206_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tE2728AA79E51BD5F4C35DDD7B9C1C562C2164BD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 V_1; memset((&V_1), 0, sizeof(V_1)); double V_2 = 0.0; Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A * G_B4_0 = NULL; String_t* G_B4_1 = NULL; Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A * G_B3_0 = NULL; String_t* G_B3_1 = NULL; int32_t G_B7_0 = 0; { // if (supportRegex && value is string str) bool L_0 = ___supportRegex2; if (!L_0) { goto IL_004d; } } { RuntimeObject * L_1 = ___value1; V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var)); String_t* L_2 = V_0; if (!L_2) { goto IL_004d; } } { // var mayBeRegex = !str.All(ch => char.IsLetterOrDigit(ch) || char.IsWhiteSpace(ch)) && // !double.TryParse(str, out var _); // Avoid '.' in floats forcing the value to be a regex. String_t* L_3 = V_0; IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tE2728AA79E51BD5F4C35DDD7B9C1C562C2164BD8_il2cpp_TypeInfo_var); Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A * L_4 = ((U3CU3Ec_tE2728AA79E51BD5F4C35DDD7B9C1C562C2164BD8_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tE2728AA79E51BD5F4C35DDD7B9C1C562C2164BD8_il2cpp_TypeInfo_var))->get_U3CU3E9__11_0_1(); Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A * L_5 = L_4; G_B3_0 = L_5; G_B3_1 = L_3; if (L_5) { G_B4_0 = L_5; G_B4_1 = L_3; goto IL_002d; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tE2728AA79E51BD5F4C35DDD7B9C1C562C2164BD8_il2cpp_TypeInfo_var); U3CU3Ec_tE2728AA79E51BD5F4C35DDD7B9C1C562C2164BD8 * L_6 = ((U3CU3Ec_tE2728AA79E51BD5F4C35DDD7B9C1C562C2164BD8_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tE2728AA79E51BD5F4C35DDD7B9C1C562C2164BD8_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A * L_7 = (Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A *)il2cpp_codegen_object_new(Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A_il2cpp_TypeInfo_var); Func_2__ctor_m2025FBDB42EB2B4162FA2F3E59FFD25C2BC4A547(L_7, L_6, (intptr_t)((intptr_t)U3CU3Ec_U3CWithU3Eb__11_0_mDBC3A4E19F1F178427BBDB33F3E7A4C7012D2206_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m2025FBDB42EB2B4162FA2F3E59FFD25C2BC4A547_RuntimeMethod_var); Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A * L_8 = L_7; ((U3CU3Ec_tE2728AA79E51BD5F4C35DDD7B9C1C562C2164BD8_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tE2728AA79E51BD5F4C35DDD7B9C1C562C2164BD8_il2cpp_TypeInfo_var))->set_U3CU3E9__11_0_1(L_8); G_B4_0 = L_8; G_B4_1 = G_B3_1; } IL_002d: { bool L_9; L_9 = Enumerable_All_TisChar_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_m1433F8CC63C937857531DD2FBB1D8FC8636A0D39(G_B4_1, G_B4_0, /*hidden argument*/Enumerable_All_TisChar_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_m1433F8CC63C937857531DD2FBB1D8FC8636A0D39_RuntimeMethod_var); if (L_9) { goto IL_0041; } } { String_t* L_10 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var); bool L_11; L_11 = Double_TryParse_m08AC1636E130EC17A72B03D3E21093AE670AD01A(L_10, (double*)(&V_2), /*hidden argument*/NULL); G_B7_0 = ((((int32_t)L_11) == ((int32_t)0))? 1 : 0); goto IL_0042; } IL_0041: { G_B7_0 = 0; } IL_0042: { // if (mayBeRegex) if (!G_B7_0) { goto IL_004d; } } { // value = new Regex(str, RegexOptions.IgnoreCase); String_t* L_12 = V_0; Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_13 = (Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F *)il2cpp_codegen_object_new(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var); Regex__ctor_m5BA9C047FEB3C93AD388668FA855CB1A63FB62A4(L_13, L_12, 1, /*hidden argument*/NULL); ___value1 = L_13; } IL_004d: { // var result = this; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_14 = (*(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 *)__this); V_1 = L_14; // ArrayHelpers.Append(ref result.m_Patterns, new KeyValuePair(key, value)); KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105** L_15 = (&V_1)->get_address_of_m_Patterns_0(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_16 = ___key0; RuntimeObject * L_17 = ___value1; KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 L_18; memset((&L_18), 0, sizeof(L_18)); KeyValuePair_2__ctor_m8E414081CDF840B7B266F15373BE120B33CF8AA7((&L_18), L_16, L_17, /*hidden argument*/KeyValuePair_2__ctor_m8E414081CDF840B7B266F15373BE120B33CF8AA7_RuntimeMethod_var); int32_t L_19; L_19 = ArrayHelpers_Append_TisKeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521_m873B3C7D90D52301893F6EF2DC4A8389D1441A20((KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105**)L_15, L_18, /*hidden argument*/ArrayHelpers_Append_TisKeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521_m873B3C7D90D52301893F6EF2DC4A8389D1441A20_RuntimeMethod_var); // return result; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_20 = V_1; return L_20; } } IL2CPP_EXTERN_C InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 InputDeviceMatcher_With_mAFC3198DA4804664B1ADCB38065A33CE684DFAEA_AdjustorThunk (RuntimeObject * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___key0, RuntimeObject * ___value1, bool ___supportRegex2, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * _thisAdjusted = reinterpret_cast(__this + _offset); InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 _returnValue; _returnValue = InputDeviceMatcher_With_mAFC3198DA4804664B1ADCB38065A33CE684DFAEA(_thisAdjusted, ___key0, ___value1, ___supportRegex2, method); return _returnValue; } // System.Single UnityEngine.InputSystem.Layouts.InputDeviceMatcher::MatchPercentage(UnityEngine.InputSystem.Layouts.InputDeviceDescription) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float InputDeviceMatcher_MatchPercentage_m68081E99E1CCD963DEB980EB439BECAB338A62FB (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___deviceDescription0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_mFBEEBA1D831EB554874C88B7A45536B9AB7229A8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_m391CC747109CAE22FD143AF7520A2C133612D28D_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; float V_2 = 0.0f; int32_t V_3 = 0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_4; memset((&V_4), 0, sizeof(V_4)); RuntimeObject * V_5 = NULL; JsonParser_t4C34C450BC39EA738DBD7CDC56B48626355D272E V_6; memset((&V_6), 0, sizeof(V_6)); JsonValue_t547F68925DBBEF3A29A4E14D26153A04872154DB V_7; memset((&V_7), 0, sizeof(V_7)); { // if (empty) bool L_0; L_0 = InputDeviceMatcher_get_empty_m3F46CDE753F731D060E5669A8A1CFEC59CC5D21F((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 *)__this, /*hidden argument*/NULL); if (!L_0) { goto IL_000e; } } { // return 0; return (0.0f); } IL_000e: { // var numPatterns = m_Patterns.Length; KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105* L_1 = __this->get_m_Patterns_0(); NullCheck(L_1); V_0 = ((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))); // for (var i = 0; i < numPatterns; ++i) V_3 = 0; goto IL_01b0; } IL_001e: { // var key = m_Patterns[i].Key; KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105* L_2 = __this->get_m_Patterns_0(); int32_t L_3 = V_3; NullCheck(L_2); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_4; L_4 = KeyValuePair_2_get_Key_mFBEEBA1D831EB554874C88B7A45536B9AB7229A8_inline((KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 *)((L_2)->GetAddressAt(static_cast(L_3))), /*hidden argument*/KeyValuePair_2_get_Key_mFBEEBA1D831EB554874C88B7A45536B9AB7229A8_RuntimeMethod_var); V_4 = L_4; // var pattern = m_Patterns[i].Value; KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105* L_5 = __this->get_m_Patterns_0(); int32_t L_6 = V_3; NullCheck(L_5); RuntimeObject * L_7; L_7 = KeyValuePair_2_get_Value_m391CC747109CAE22FD143AF7520A2C133612D28D_inline((KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 *)((L_5)->GetAddressAt(static_cast(L_6))), /*hidden argument*/KeyValuePair_2_get_Value_m391CC747109CAE22FD143AF7520A2C133612D28D_RuntimeMethod_var); V_5 = L_7; // if (key == kInterfaceKey) InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_8 = V_4; IL2CPP_RUNTIME_CLASS_INIT(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_9 = ((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_StaticFields*)il2cpp_codegen_static_fields_for(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var))->get_kInterfaceKey_1(); bool L_10; L_10 = InternedString_op_Equality_m0D791451F3BDC84D2EBA0F98EA847F781D1F4FA0(L_8, L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0079; } } { // if (string.IsNullOrEmpty(deviceDescription.interfaceName) // || !MatchSingleProperty(pattern, deviceDescription.interfaceName)) String_t* L_11; L_11 = InputDeviceDescription_get_interfaceName_mCEBA87B35556BD0D03EADDD724B08266120BE761_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___deviceDescription0), /*hidden argument*/NULL); bool L_12; L_12 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_11, /*hidden argument*/NULL); if (L_12) { goto IL_0073; } } { RuntimeObject * L_13 = V_5; String_t* L_14; L_14 = InputDeviceDescription_get_interfaceName_mCEBA87B35556BD0D03EADDD724B08266120BE761_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___deviceDescription0), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); bool L_15; L_15 = InputDeviceMatcher_MatchSingleProperty_m002C705E908A31333E0CEBF8F8BEBB108482F3B3(L_13, L_14, /*hidden argument*/NULL); if (L_15) { goto IL_01ac; } } IL_0073: { // return 0; return (0.0f); } IL_0079: { // else if (key == kDeviceClassKey) InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_16 = V_4; IL2CPP_RUNTIME_CLASS_INIT(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_17 = ((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_StaticFields*)il2cpp_codegen_static_fields_for(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var))->get_kDeviceClassKey_2(); bool L_18; L_18 = InternedString_op_Equality_m0D791451F3BDC84D2EBA0F98EA847F781D1F4FA0(L_16, L_17, /*hidden argument*/NULL); if (!L_18) { goto IL_00ae; } } { // if (string.IsNullOrEmpty(deviceDescription.deviceClass) // || !MatchSingleProperty(pattern, deviceDescription.deviceClass)) String_t* L_19; L_19 = InputDeviceDescription_get_deviceClass_m04BB88F15F817900CF7457A2E7FC65F5618AD1AF_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___deviceDescription0), /*hidden argument*/NULL); bool L_20; L_20 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_19, /*hidden argument*/NULL); if (L_20) { goto IL_00a8; } } { RuntimeObject * L_21 = V_5; String_t* L_22; L_22 = InputDeviceDescription_get_deviceClass_m04BB88F15F817900CF7457A2E7FC65F5618AD1AF_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___deviceDescription0), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); bool L_23; L_23 = InputDeviceMatcher_MatchSingleProperty_m002C705E908A31333E0CEBF8F8BEBB108482F3B3(L_21, L_22, /*hidden argument*/NULL); if (L_23) { goto IL_01ac; } } IL_00a8: { // return 0; return (0.0f); } IL_00ae: { // else if (key == kManufacturerKey) InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_24 = V_4; IL2CPP_RUNTIME_CLASS_INIT(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_25 = ((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_StaticFields*)il2cpp_codegen_static_fields_for(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var))->get_kManufacturerKey_3(); bool L_26; L_26 = InternedString_op_Equality_m0D791451F3BDC84D2EBA0F98EA847F781D1F4FA0(L_24, L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_00e3; } } { // if (string.IsNullOrEmpty(deviceDescription.manufacturer) // || !MatchSingleProperty(pattern, deviceDescription.manufacturer)) String_t* L_27; L_27 = InputDeviceDescription_get_manufacturer_m42C503D82A264C3510752BD1E726D8ED3111E869_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___deviceDescription0), /*hidden argument*/NULL); bool L_28; L_28 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_27, /*hidden argument*/NULL); if (L_28) { goto IL_00dd; } } { RuntimeObject * L_29 = V_5; String_t* L_30; L_30 = InputDeviceDescription_get_manufacturer_m42C503D82A264C3510752BD1E726D8ED3111E869_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___deviceDescription0), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); bool L_31; L_31 = InputDeviceMatcher_MatchSingleProperty_m002C705E908A31333E0CEBF8F8BEBB108482F3B3(L_29, L_30, /*hidden argument*/NULL); if (L_31) { goto IL_01ac; } } IL_00dd: { // return 0; return (0.0f); } IL_00e3: { // else if (key == kProductKey) InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_32 = V_4; IL2CPP_RUNTIME_CLASS_INIT(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_33 = ((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_StaticFields*)il2cpp_codegen_static_fields_for(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var))->get_kProductKey_4(); bool L_34; L_34 = InternedString_op_Equality_m0D791451F3BDC84D2EBA0F98EA847F781D1F4FA0(L_32, L_33, /*hidden argument*/NULL); if (!L_34) { goto IL_0118; } } { // if (string.IsNullOrEmpty(deviceDescription.product) // || !MatchSingleProperty(pattern, deviceDescription.product)) String_t* L_35; L_35 = InputDeviceDescription_get_product_mEECD8A9018BF8C49B89256C912EC0AAEE90D4A82_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___deviceDescription0), /*hidden argument*/NULL); bool L_36; L_36 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_35, /*hidden argument*/NULL); if (L_36) { goto IL_0112; } } { RuntimeObject * L_37 = V_5; String_t* L_38; L_38 = InputDeviceDescription_get_product_mEECD8A9018BF8C49B89256C912EC0AAEE90D4A82_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___deviceDescription0), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); bool L_39; L_39 = InputDeviceMatcher_MatchSingleProperty_m002C705E908A31333E0CEBF8F8BEBB108482F3B3(L_37, L_38, /*hidden argument*/NULL); if (L_39) { goto IL_01ac; } } IL_0112: { // return 0; return (0.0f); } IL_0118: { // else if (key == kVersionKey) InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_40 = V_4; IL2CPP_RUNTIME_CLASS_INIT(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_41 = ((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_StaticFields*)il2cpp_codegen_static_fields_for(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var))->get_kVersionKey_5(); bool L_42; L_42 = InternedString_op_Equality_m0D791451F3BDC84D2EBA0F98EA847F781D1F4FA0(L_40, L_41, /*hidden argument*/NULL); if (!L_42) { goto IL_014a; } } { // if (string.IsNullOrEmpty(deviceDescription.version) // || !MatchSingleProperty(pattern, deviceDescription.version)) String_t* L_43; L_43 = InputDeviceDescription_get_version_mF03973E700CF32DEDDF4374AF5596E618FC21D95_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___deviceDescription0), /*hidden argument*/NULL); bool L_44; L_44 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_43, /*hidden argument*/NULL); if (L_44) { goto IL_0144; } } { RuntimeObject * L_45 = V_5; String_t* L_46; L_46 = InputDeviceDescription_get_version_mF03973E700CF32DEDDF4374AF5596E618FC21D95_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___deviceDescription0), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); bool L_47; L_47 = InputDeviceMatcher_MatchSingleProperty_m002C705E908A31333E0CEBF8F8BEBB108482F3B3(L_45, L_46, /*hidden argument*/NULL); if (L_47) { goto IL_01ac; } } IL_0144: { // return 0; return (0.0f); } IL_014a: { // if (string.IsNullOrEmpty(deviceDescription.capabilities)) String_t* L_48; L_48 = InputDeviceDescription_get_capabilities_m3871219ECAC10766CBAB256E0612674368D5C362_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___deviceDescription0), /*hidden argument*/NULL); bool L_49; L_49 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_48, /*hidden argument*/NULL); if (!L_49) { goto IL_015e; } } { // return 0; return (0.0f); } IL_015e: { // var graph = new JsonParser(deviceDescription.capabilities); String_t* L_50; L_50 = InputDeviceDescription_get_capabilities_m3871219ECAC10766CBAB256E0612674368D5C362_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___deviceDescription0), /*hidden argument*/NULL); JsonParser__ctor_m3FCC88CC2257778CAFF2B3ECC7D27FA28403D290((JsonParser_t4C34C450BC39EA738DBD7CDC56B48626355D272E *)(&V_6), L_50, /*hidden argument*/NULL); // if (!graph.NavigateToProperty(key.ToString()) || // !graph.CurrentPropertyHasValueEqualTo(new JsonParser.JsonValue { type = JsonParser.JsonValueType.Any, anyValue = pattern})) String_t* L_51; L_51 = InternedString_ToString_m1C5D47E8AB1F840D23F79E06D6F27BF6AAFD1D39((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&V_4), /*hidden argument*/NULL); bool L_52; L_52 = JsonParser_NavigateToProperty_m8F77E7815B27B81F6C59450D2FBD763AE7C2B6BD((JsonParser_t4C34C450BC39EA738DBD7CDC56B48626355D272E *)(&V_6), L_51, /*hidden argument*/NULL); if (!L_52) { goto IL_01a6; } } { il2cpp_codegen_initobj((&V_7), sizeof(JsonValue_t547F68925DBBEF3A29A4E14D26153A04872154DB )); (&V_7)->set_type_0(7); RuntimeObject * L_53 = V_5; (&V_7)->set_anyValue_7(L_53); JsonValue_t547F68925DBBEF3A29A4E14D26153A04872154DB L_54 = V_7; bool L_55; L_55 = JsonParser_CurrentPropertyHasValueEqualTo_m8E78B1BEFF4CC652C3D877B3E3829823C97E9A3D((JsonParser_t4C34C450BC39EA738DBD7CDC56B48626355D272E *)(&V_6), L_54, /*hidden argument*/NULL); if (L_55) { goto IL_01ac; } } IL_01a6: { // return 0; return (0.0f); } IL_01ac: { // for (var i = 0; i < numPatterns; ++i) int32_t L_56 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)1)); } IL_01b0: { // for (var i = 0; i < numPatterns; ++i) int32_t L_57 = V_3; int32_t L_58 = V_0; if ((((int32_t)L_57) < ((int32_t)L_58))) { goto IL_001e; } } { // var propertyCountInDescription = GetNumPropertiesIn(deviceDescription); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_59 = ___deviceDescription0; IL2CPP_RUNTIME_CLASS_INIT(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); int32_t L_60; L_60 = InputDeviceMatcher_GetNumPropertiesIn_m64E3F5A3F616048F387BC93B2E1D0662127953D5(L_59, /*hidden argument*/NULL); V_1 = L_60; // var scorePerProperty = 1.0f / propertyCountInDescription; int32_t L_61 = V_1; V_2 = ((float)((float)(1.0f)/(float)((float)((float)L_61)))); // return numPatterns * scorePerProperty; int32_t L_62 = V_0; float L_63 = V_2; return ((float)il2cpp_codegen_multiply((float)((float)((float)L_62)), (float)L_63)); } } IL2CPP_EXTERN_C float InputDeviceMatcher_MatchPercentage_m68081E99E1CCD963DEB980EB439BECAB338A62FB_AdjustorThunk (RuntimeObject * __this, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___deviceDescription0, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * _thisAdjusted = reinterpret_cast(__this + _offset); float _returnValue; _returnValue = InputDeviceMatcher_MatchPercentage_m68081E99E1CCD963DEB980EB439BECAB338A62FB(_thisAdjusted, ___deviceDescription0, method); return _returnValue; } // System.Boolean UnityEngine.InputSystem.Layouts.InputDeviceMatcher::MatchSingleProperty(System.Object,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDeviceMatcher_MatchSingleProperty_m002C705E908A31333E0CEBF8F8BEBB108482F3B3 (RuntimeObject * ___pattern0, String_t* ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * V_1 = NULL; { // if (pattern is string str) RuntimeObject * L_0 = ___pattern0; V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var)); String_t* L_1 = V_0; if (!L_1) { goto IL_0016; } } { // return string.Compare(str, value, StringComparison.OrdinalIgnoreCase) == 0; String_t* L_2 = V_0; String_t* L_3 = ___value1; int32_t L_4; L_4 = String_Compare_m573A1F97B15F82C9AC7DC0BB1B381EEDCD2759CD(L_2, L_3, 5, /*hidden argument*/NULL); return (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0); } IL_0016: { // if (pattern is Regex regex) RuntimeObject * L_5 = ___pattern0; V_1 = ((Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F *)IsInstClass((RuntimeObject*)L_5, Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var)); Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_6 = V_1; if (!L_6) { goto IL_0028; } } { // return regex.IsMatch(value); Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_7 = V_1; String_t* L_8 = ___value1; NullCheck(L_7); bool L_9; L_9 = Regex_IsMatch_m872C1D85AC5BF891AC3C3FC789BBC4E2393FB859(L_7, L_8, /*hidden argument*/NULL); return L_9; } IL_0028: { // return false; return (bool)0; } } // System.Int32 UnityEngine.InputSystem.Layouts.InputDeviceMatcher::GetNumPropertiesIn(UnityEngine.InputSystem.Layouts.InputDeviceDescription) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputDeviceMatcher_GetNumPropertiesIn_m64E3F5A3F616048F387BC93B2E1D0662127953D5 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___description0, const RuntimeMethod* method) { int32_t V_0 = 0; { // var count = 0; V_0 = 0; // if (!string.IsNullOrEmpty(description.interfaceName)) String_t* L_0; L_0 = InputDeviceDescription_get_interfaceName_mCEBA87B35556BD0D03EADDD724B08266120BE761_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___description0), /*hidden argument*/NULL); bool L_1; L_1 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_0, /*hidden argument*/NULL); if (L_1) { goto IL_0014; } } { // count += 1; int32_t L_2 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)); } IL_0014: { // if (!string.IsNullOrEmpty(description.deviceClass)) String_t* L_3; L_3 = InputDeviceDescription_get_deviceClass_m04BB88F15F817900CF7457A2E7FC65F5618AD1AF_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___description0), /*hidden argument*/NULL); bool L_4; L_4 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_3, /*hidden argument*/NULL); if (L_4) { goto IL_0026; } } { // count += 1; int32_t L_5 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)); } IL_0026: { // if (!string.IsNullOrEmpty(description.manufacturer)) String_t* L_6; L_6 = InputDeviceDescription_get_manufacturer_m42C503D82A264C3510752BD1E726D8ED3111E869_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___description0), /*hidden argument*/NULL); bool L_7; L_7 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_6, /*hidden argument*/NULL); if (L_7) { goto IL_0038; } } { // count += 1; int32_t L_8 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_0038: { // if (!string.IsNullOrEmpty(description.product)) String_t* L_9; L_9 = InputDeviceDescription_get_product_mEECD8A9018BF8C49B89256C912EC0AAEE90D4A82_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___description0), /*hidden argument*/NULL); bool L_10; L_10 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_9, /*hidden argument*/NULL); if (L_10) { goto IL_004a; } } { // count += 1; int32_t L_11 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_004a: { // if (!string.IsNullOrEmpty(description.version)) String_t* L_12; L_12 = InputDeviceDescription_get_version_mF03973E700CF32DEDDF4374AF5596E618FC21D95_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___description0), /*hidden argument*/NULL); bool L_13; L_13 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_12, /*hidden argument*/NULL); if (L_13) { goto IL_005c; } } { // count += 1; int32_t L_14 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)); } IL_005c: { // if (!string.IsNullOrEmpty(description.capabilities)) String_t* L_15; L_15 = InputDeviceDescription_get_capabilities_m3871219ECAC10766CBAB256E0612674368D5C362_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___description0), /*hidden argument*/NULL); bool L_16; L_16 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_15, /*hidden argument*/NULL); if (L_16) { goto IL_006e; } } { // count += 1; int32_t L_17 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)); } IL_006e: { // return count; int32_t L_18 = V_0; return L_18; } } // UnityEngine.InputSystem.Layouts.InputDeviceMatcher UnityEngine.InputSystem.Layouts.InputDeviceMatcher::FromDeviceDescription(UnityEngine.InputSystem.Layouts.InputDeviceDescription) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 InputDeviceMatcher_FromDeviceDescription_m65A1A68D6A3F504515FB4777167B95D57FC8B8A3 (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___deviceDescription0, const RuntimeMethod* method) { InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 V_0; memset((&V_0), 0, sizeof(V_0)); { // var matcher = new InputDeviceMatcher(); il2cpp_codegen_initobj((&V_0), sizeof(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 )); // if (!string.IsNullOrEmpty(deviceDescription.interfaceName)) String_t* L_0; L_0 = InputDeviceDescription_get_interfaceName_mCEBA87B35556BD0D03EADDD724B08266120BE761_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___deviceDescription0), /*hidden argument*/NULL); bool L_1; L_1 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_0, /*hidden argument*/NULL); if (L_1) { goto IL_0026; } } { // matcher = matcher.WithInterface(deviceDescription.interfaceName, false); String_t* L_2; L_2 = InputDeviceDescription_get_interfaceName_mCEBA87B35556BD0D03EADDD724B08266120BE761_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___deviceDescription0), /*hidden argument*/NULL); InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_3; L_3 = InputDeviceMatcher_WithInterface_m67902BFA0C953194FCE049F1FA1784C494F5967B((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 *)(&V_0), L_2, (bool)0, /*hidden argument*/NULL); V_0 = L_3; } IL_0026: { // if (!string.IsNullOrEmpty(deviceDescription.deviceClass)) String_t* L_4; L_4 = InputDeviceDescription_get_deviceClass_m04BB88F15F817900CF7457A2E7FC65F5618AD1AF_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___deviceDescription0), /*hidden argument*/NULL); bool L_5; L_5 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_4, /*hidden argument*/NULL); if (L_5) { goto IL_0044; } } { // matcher = matcher.WithDeviceClass(deviceDescription.deviceClass, false); String_t* L_6; L_6 = InputDeviceDescription_get_deviceClass_m04BB88F15F817900CF7457A2E7FC65F5618AD1AF_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___deviceDescription0), /*hidden argument*/NULL); InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_7; L_7 = InputDeviceMatcher_WithDeviceClass_mFD3BB3A359C960E04407F5997ED330D8999F7E9C((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 *)(&V_0), L_6, (bool)0, /*hidden argument*/NULL); V_0 = L_7; } IL_0044: { // if (!string.IsNullOrEmpty(deviceDescription.manufacturer)) String_t* L_8; L_8 = InputDeviceDescription_get_manufacturer_m42C503D82A264C3510752BD1E726D8ED3111E869_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___deviceDescription0), /*hidden argument*/NULL); bool L_9; L_9 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_8, /*hidden argument*/NULL); if (L_9) { goto IL_0062; } } { // matcher = matcher.WithManufacturer(deviceDescription.manufacturer, false); String_t* L_10; L_10 = InputDeviceDescription_get_manufacturer_m42C503D82A264C3510752BD1E726D8ED3111E869_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___deviceDescription0), /*hidden argument*/NULL); InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_11; L_11 = InputDeviceMatcher_WithManufacturer_m160DD6B5020CF757C8CEF2C61525F66D981509BB((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 *)(&V_0), L_10, (bool)0, /*hidden argument*/NULL); V_0 = L_11; } IL_0062: { // if (!string.IsNullOrEmpty(deviceDescription.product)) String_t* L_12; L_12 = InputDeviceDescription_get_product_mEECD8A9018BF8C49B89256C912EC0AAEE90D4A82_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___deviceDescription0), /*hidden argument*/NULL); bool L_13; L_13 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_12, /*hidden argument*/NULL); if (L_13) { goto IL_0080; } } { // matcher = matcher.WithProduct(deviceDescription.product, false); String_t* L_14; L_14 = InputDeviceDescription_get_product_mEECD8A9018BF8C49B89256C912EC0AAEE90D4A82_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___deviceDescription0), /*hidden argument*/NULL); InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_15; L_15 = InputDeviceMatcher_WithProduct_mF03FC23FA705A82946CA53E6667CBCD46055420C((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 *)(&V_0), L_14, (bool)0, /*hidden argument*/NULL); V_0 = L_15; } IL_0080: { // if (!string.IsNullOrEmpty(deviceDescription.version)) String_t* L_16; L_16 = InputDeviceDescription_get_version_mF03973E700CF32DEDDF4374AF5596E618FC21D95_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___deviceDescription0), /*hidden argument*/NULL); bool L_17; L_17 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_16, /*hidden argument*/NULL); if (L_17) { goto IL_009e; } } { // matcher = matcher.WithVersion(deviceDescription.version, false); String_t* L_18; L_18 = InputDeviceDescription_get_version_mF03973E700CF32DEDDF4374AF5596E618FC21D95_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___deviceDescription0), /*hidden argument*/NULL); InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_19; L_19 = InputDeviceMatcher_WithVersion_m64968A69BE8C80ADF2C964AC32415D166620E48A((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 *)(&V_0), L_18, (bool)0, /*hidden argument*/NULL); V_0 = L_19; } IL_009e: { // return matcher; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_20 = V_0; return L_20; } } // System.String UnityEngine.InputSystem.Layouts.InputDeviceMatcher::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputDeviceMatcher_ToString_mBE3962AE750FB77A267874F06C7E2D11380F682E (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_mFBEEBA1D831EB554874C88B7A45536B9AB7229A8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_m391CC747109CAE22FD143AF7520A2C133612D28D_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0236BACCD260A20F0738D0E7EDBB60850D17B36A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6536BE59F0E519C5A741CF907BA6A7047B763361); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE15D34C7DBDCA4C642A2E1C84C08A49E85B30B85); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105* V_1 = NULL; int32_t V_2 = 0; KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 V_3; memset((&V_3), 0, sizeof(V_3)); { // if (empty) bool L_0; L_0 = InputDeviceMatcher_get_empty_m3F46CDE753F731D060E5669A8A1CFEC59CC5D21F((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 *)__this, /*hidden argument*/NULL); if (!L_0) { goto IL_000e; } } { // return ""; return _stringLiteral6536BE59F0E519C5A741CF907BA6A7047B763361; } IL_000e: { // var result = string.Empty; String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); V_0 = L_1; // foreach (var pattern in m_Patterns) KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105* L_2 = __this->get_m_Patterns_0(); V_1 = L_2; V_2 = 0; goto IL_007e; } IL_001f: { // foreach (var pattern in m_Patterns) KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105* L_3 = V_1; int32_t L_4 = V_2; NullCheck(L_3); int32_t L_5 = L_4; KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 L_6 = (KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 )(L_3)->GetAt(static_cast(L_5)); V_3 = L_6; // if (result.Length > 0) String_t* L_7 = V_0; NullCheck(L_7); int32_t L_8; L_8 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_7, /*hidden argument*/NULL); if ((((int32_t)L_8) <= ((int32_t)0))) { goto IL_0056; } } { // result += $",{pattern.Key}={pattern.Value}"; String_t* L_9 = V_0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_10; L_10 = KeyValuePair_2_get_Key_mFBEEBA1D831EB554874C88B7A45536B9AB7229A8_inline((KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 *)(&V_3), /*hidden argument*/KeyValuePair_2_get_Key_mFBEEBA1D831EB554874C88B7A45536B9AB7229A8_RuntimeMethod_var); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_11 = L_10; RuntimeObject * L_12 = Box(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_il2cpp_TypeInfo_var, &L_11); RuntimeObject * L_13; L_13 = KeyValuePair_2_get_Value_m391CC747109CAE22FD143AF7520A2C133612D28D_inline((KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 *)(&V_3), /*hidden argument*/KeyValuePair_2_get_Value_m391CC747109CAE22FD143AF7520A2C133612D28D_RuntimeMethod_var); String_t* L_14; L_14 = String_Format_m8464C6DD7299114954DA87FC39FCD129F3E2ACA2(_stringLiteralE15D34C7DBDCA4C642A2E1C84C08A49E85B30B85, L_12, L_13, /*hidden argument*/NULL); String_t* L_15; L_15 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(L_9, L_14, /*hidden argument*/NULL); V_0 = L_15; goto IL_007a; } IL_0056: { // result += $"{pattern.Key}={pattern.Value}"; String_t* L_16 = V_0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_17; L_17 = KeyValuePair_2_get_Key_mFBEEBA1D831EB554874C88B7A45536B9AB7229A8_inline((KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 *)(&V_3), /*hidden argument*/KeyValuePair_2_get_Key_mFBEEBA1D831EB554874C88B7A45536B9AB7229A8_RuntimeMethod_var); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_18 = L_17; RuntimeObject * L_19 = Box(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_il2cpp_TypeInfo_var, &L_18); RuntimeObject * L_20; L_20 = KeyValuePair_2_get_Value_m391CC747109CAE22FD143AF7520A2C133612D28D_inline((KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 *)(&V_3), /*hidden argument*/KeyValuePair_2_get_Value_m391CC747109CAE22FD143AF7520A2C133612D28D_RuntimeMethod_var); String_t* L_21; L_21 = String_Format_m8464C6DD7299114954DA87FC39FCD129F3E2ACA2(_stringLiteral0236BACCD260A20F0738D0E7EDBB60850D17B36A, L_19, L_20, /*hidden argument*/NULL); String_t* L_22; L_22 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(L_16, L_21, /*hidden argument*/NULL); V_0 = L_22; } IL_007a: { int32_t L_23 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_007e: { // foreach (var pattern in m_Patterns) int32_t L_24 = V_2; KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105* L_25 = V_1; NullCheck(L_25); if ((((int32_t)L_24) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_25)->max_length)))))) { goto IL_001f; } } { // return result; String_t* L_26 = V_0; return L_26; } } IL2CPP_EXTERN_C String_t* InputDeviceMatcher_ToString_mBE3962AE750FB77A267874F06C7E2D11380F682E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = InputDeviceMatcher_ToString_mBE3962AE750FB77A267874F06C7E2D11380F682E(_thisAdjusted, method); return _returnValue; } // System.Boolean UnityEngine.InputSystem.Layouts.InputDeviceMatcher::Equals(UnityEngine.InputSystem.Layouts.InputDeviceMatcher) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDeviceMatcher_Equals_m7A5021DE365960F7B3D71EBCDD5B86616D17B265 (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_mFBEEBA1D831EB554874C88B7A45536B9AB7229A8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_m391CC747109CAE22FD143AF7520A2C133612D28D_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 V_1; memset((&V_1), 0, sizeof(V_1)); bool V_2 = false; int32_t V_3 = 0; KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 V_4; memset((&V_4), 0, sizeof(V_4)); { // if (m_Patterns == other.m_Patterns) KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105* L_0 = __this->get_m_Patterns_0(); InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_1 = ___other0; KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105* L_2 = L_1.get_m_Patterns_0(); if ((!(((RuntimeObject*)(KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105*)L_0) == ((RuntimeObject*)(KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105*)L_2)))) { goto IL_0010; } } { // return true; return (bool)1; } IL_0010: { // if (m_Patterns == null || other.m_Patterns == null) KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105* L_3 = __this->get_m_Patterns_0(); if (!L_3) { goto IL_0020; } } { InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_4 = ___other0; KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105* L_5 = L_4.get_m_Patterns_0(); if (L_5) { goto IL_0022; } } IL_0020: { // return false; return (bool)0; } IL_0022: { // if (m_Patterns.Length != other.m_Patterns.Length) KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105* L_6 = __this->get_m_Patterns_0(); NullCheck(L_6); InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_7 = ___other0; KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105* L_8 = L_7.get_m_Patterns_0(); NullCheck(L_8); if ((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))) == ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))))) { goto IL_0036; } } { // return false; return (bool)0; } IL_0036: { // for (var i = 0; i < m_Patterns.Length; ++i) V_0 = 0; goto IL_00a3; } IL_003a: { // var thisPattern = m_Patterns[i]; KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105* L_9 = __this->get_m_Patterns_0(); int32_t L_10 = V_0; NullCheck(L_9); int32_t L_11 = L_10; KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 L_12 = (KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 )(L_9)->GetAt(static_cast(L_11)); V_1 = L_12; // var foundPattern = false; V_2 = (bool)0; // for (var n = 0; n < m_Patterns.Length; ++n) V_3 = 0; goto IL_008f; } IL_004d: { // var otherPattern = other.m_Patterns[n]; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_13 = ___other0; KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105* L_14 = L_13.get_m_Patterns_0(); int32_t L_15 = V_3; NullCheck(L_14); int32_t L_16 = L_15; KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 L_17 = (KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 )(L_14)->GetAt(static_cast(L_16)); V_4 = L_17; // if (thisPattern.Key != otherPattern.Key) InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_18; L_18 = KeyValuePair_2_get_Key_mFBEEBA1D831EB554874C88B7A45536B9AB7229A8_inline((KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Key_mFBEEBA1D831EB554874C88B7A45536B9AB7229A8_RuntimeMethod_var); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_19; L_19 = KeyValuePair_2_get_Key_mFBEEBA1D831EB554874C88B7A45536B9AB7229A8_inline((KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 *)(&V_4), /*hidden argument*/KeyValuePair_2_get_Key_mFBEEBA1D831EB554874C88B7A45536B9AB7229A8_RuntimeMethod_var); bool L_20; L_20 = InternedString_op_Inequality_mFCB6E922167245A53F016079F13B8A0E6FBC1D98(L_18, L_19, /*hidden argument*/NULL); if (L_20) { goto IL_008b; } } { // if (!thisPattern.Value.Equals(otherPattern.Value)) RuntimeObject * L_21; L_21 = KeyValuePair_2_get_Value_m391CC747109CAE22FD143AF7520A2C133612D28D_inline((KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_m391CC747109CAE22FD143AF7520A2C133612D28D_RuntimeMethod_var); RuntimeObject * L_22; L_22 = KeyValuePair_2_get_Value_m391CC747109CAE22FD143AF7520A2C133612D28D_inline((KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 *)(&V_4), /*hidden argument*/KeyValuePair_2_get_Value_m391CC747109CAE22FD143AF7520A2C133612D28D_RuntimeMethod_var); NullCheck(L_21); bool L_23; L_23 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_21, L_22); if (L_23) { goto IL_0087; } } { // return false; return (bool)0; } IL_0087: { // foundPattern = true; V_2 = (bool)1; // break; goto IL_009a; } IL_008b: { // for (var n = 0; n < m_Patterns.Length; ++n) int32_t L_24 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)); } IL_008f: { // for (var n = 0; n < m_Patterns.Length; ++n) int32_t L_25 = V_3; KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105* L_26 = __this->get_m_Patterns_0(); NullCheck(L_26); if ((((int32_t)L_25) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length)))))) { goto IL_004d; } } IL_009a: { // if (!foundPattern) bool L_27 = V_2; if (L_27) { goto IL_009f; } } { // return false; return (bool)0; } IL_009f: { // for (var i = 0; i < m_Patterns.Length; ++i) int32_t L_28 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); } IL_00a3: { // for (var i = 0; i < m_Patterns.Length; ++i) int32_t L_29 = V_0; KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105* L_30 = __this->get_m_Patterns_0(); NullCheck(L_30); if ((((int32_t)L_29) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_30)->max_length)))))) { goto IL_003a; } } { // return true; return (bool)1; } } IL2CPP_EXTERN_C bool InputDeviceMatcher_Equals_m7A5021DE365960F7B3D71EBCDD5B86616D17B265_AdjustorThunk (RuntimeObject * __this, InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 ___other0, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = InputDeviceMatcher_Equals_m7A5021DE365960F7B3D71EBCDD5B86616D17B265(_thisAdjusted, ___other0, method); return _returnValue; } // System.Boolean UnityEngine.InputSystem.Layouts.InputDeviceMatcher::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDeviceMatcher_Equals_mB0D180AAA89A06F15C11A1AE48AD9D9C60F122A1 (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 V_0; memset((&V_0), 0, sizeof(V_0)); { // if (ReferenceEquals(null, obj)) RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_0005; } } { // return false; return (bool)0; } IL_0005: { // return obj is InputDeviceMatcher matcher && Equals(matcher); RuntimeObject * L_1 = ___obj0; if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var))) { goto IL_001c; } } { RuntimeObject * L_2 = ___obj0; V_0 = ((*(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 *)((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 *)UnBox(L_2, InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var)))); InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_3 = V_0; bool L_4; L_4 = InputDeviceMatcher_Equals_m7A5021DE365960F7B3D71EBCDD5B86616D17B265((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 *)__this, L_3, /*hidden argument*/NULL); return L_4; } IL_001c: { return (bool)0; } } IL2CPP_EXTERN_C bool InputDeviceMatcher_Equals_mB0D180AAA89A06F15C11A1AE48AD9D9C60F122A1_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = InputDeviceMatcher_Equals_mB0D180AAA89A06F15C11A1AE48AD9D9C60F122A1(_thisAdjusted, ___obj0, method); return _returnValue; } // System.Boolean UnityEngine.InputSystem.Layouts.InputDeviceMatcher::op_Equality(UnityEngine.InputSystem.Layouts.InputDeviceMatcher,UnityEngine.InputSystem.Layouts.InputDeviceMatcher) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDeviceMatcher_op_Equality_mD30E8E62792C252415D21EB68E0267E481A155D3 (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 ___left0, InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 ___right1, const RuntimeMethod* method) { { // return left.Equals(right); InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_0 = ___right1; bool L_1; L_1 = InputDeviceMatcher_Equals_m7A5021DE365960F7B3D71EBCDD5B86616D17B265((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 *)(&___left0), L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean UnityEngine.InputSystem.Layouts.InputDeviceMatcher::op_Inequality(UnityEngine.InputSystem.Layouts.InputDeviceMatcher,UnityEngine.InputSystem.Layouts.InputDeviceMatcher) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDeviceMatcher_op_Inequality_m338D2BDF301EB4022236BB75824A926878C120A7 (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 ___left0, InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 ___right1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return !(left == right); InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_0 = ___left0; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_1 = ___right1; IL2CPP_RUNTIME_CLASS_INIT(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); bool L_2; L_2 = InputDeviceMatcher_op_Equality_mD30E8E62792C252415D21EB68E0267E481A155D3(L_0, L_1, /*hidden argument*/NULL); return (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0); } } // System.Int32 UnityEngine.InputSystem.Layouts.InputDeviceMatcher::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputDeviceMatcher_GetHashCode_m53D52AF1599ADACD9275497105EEA4ABF935958F (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * __this, const RuntimeMethod* method) { { // return m_Patterns != null ? m_Patterns.GetHashCode() : 0; KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105* L_0 = __this->get_m_Patterns_0(); if (L_0) { goto IL_000a; } } { return 0; } IL_000a: { KeyValuePair_2U5BU5D_t7E976A4C11090CA77A36F27FF080865677E9C105* L_1 = __this->get_m_Patterns_0(); NullCheck((RuntimeObject *)(RuntimeObject *)L_1); int32_t L_2; L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)(RuntimeObject *)L_1); return L_2; } } IL2CPP_EXTERN_C int32_t InputDeviceMatcher_GetHashCode_m53D52AF1599ADACD9275497105EEA4ABF935958F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = InputDeviceMatcher_GetHashCode_m53D52AF1599ADACD9275497105EEA4ABF935958F(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.Layouts.InputDeviceMatcher::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDeviceMatcher__cctor_m5CD6E22D5B50250E6CE4AFDEE274C070A78AEB36 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0476103E7B88AF8DC134CFD40F85C66DFAB78C70); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1630E6A6E4B065CB228F2BB0735FC4EB04ADCF98); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8DAE0371884040CFA6CE09831807D3D5D255F5D6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF49AECB5A7A9C87D4D672BA9D06F6929E0895580); s_Il2CppMethodInitialized = true; } { // private static readonly InternedString kInterfaceKey = new InternedString("interface"); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_0; memset((&L_0), 0, sizeof(L_0)); InternedString__ctor_mE81A2A4EA05081A96717682ACF38746482E3CF62((&L_0), _stringLiteralF49AECB5A7A9C87D4D672BA9D06F6929E0895580, /*hidden argument*/NULL); ((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_StaticFields*)il2cpp_codegen_static_fields_for(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var))->set_kInterfaceKey_1(L_0); // private static readonly InternedString kDeviceClassKey = new InternedString("deviceClass"); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_1; memset((&L_1), 0, sizeof(L_1)); InternedString__ctor_mE81A2A4EA05081A96717682ACF38746482E3CF62((&L_1), _stringLiteral0476103E7B88AF8DC134CFD40F85C66DFAB78C70, /*hidden argument*/NULL); ((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_StaticFields*)il2cpp_codegen_static_fields_for(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var))->set_kDeviceClassKey_2(L_1); // private static readonly InternedString kManufacturerKey = new InternedString("manufacturer"); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_2; memset((&L_2), 0, sizeof(L_2)); InternedString__ctor_mE81A2A4EA05081A96717682ACF38746482E3CF62((&L_2), _stringLiteral8DAE0371884040CFA6CE09831807D3D5D255F5D6, /*hidden argument*/NULL); ((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_StaticFields*)il2cpp_codegen_static_fields_for(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var))->set_kManufacturerKey_3(L_2); // private static readonly InternedString kProductKey = new InternedString("product"); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_3; memset((&L_3), 0, sizeof(L_3)); InternedString__ctor_mE81A2A4EA05081A96717682ACF38746482E3CF62((&L_3), _stringLiteral1630E6A6E4B065CB228F2BB0735FC4EB04ADCF98, /*hidden argument*/NULL); ((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_StaticFields*)il2cpp_codegen_static_fields_for(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var))->set_kProductKey_4(L_3); // private static readonly InternedString kVersionKey = new InternedString("version"); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_4; memset((&L_4), 0, sizeof(L_4)); InternedString__ctor_mE81A2A4EA05081A96717682ACF38746482E3CF62((&L_4), _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052, /*hidden argument*/NULL); ((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_StaticFields*)il2cpp_codegen_static_fields_for(InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57_il2cpp_TypeInfo_var))->set_kVersionKey_5(L_4); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEvent::get_type() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 InputEvent_get_type_mF27E6FB5A23D3E5AA01386213E9E5248CDC27993 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, const RuntimeMethod* method) { { // get => new FourCC((int)m_Event.type); NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_0 = __this->get_address_of_m_Event_5(); int32_t L_1 = L_0->get_type_1(); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_2; memset((&L_2), 0, sizeof(L_2)); FourCC__ctor_m95DEC137F55FF2E882FA66486D5937072FA2888E_inline((&L_2), L_1, /*hidden argument*/NULL); return L_2; } } IL2CPP_EXTERN_C FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 InputEvent_get_type_mF27E6FB5A23D3E5AA01386213E9E5248CDC27993_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * _thisAdjusted = reinterpret_cast(__this + _offset); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 _returnValue; _returnValue = InputEvent_get_type_mF27E6FB5A23D3E5AA01386213E9E5248CDC27993(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_type(UnityEngine.InputSystem.Utilities.FourCC) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_type_mA59021B1AC85CEA52E1DB983D42FB3E01F6D8233 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___value0, const RuntimeMethod* method) { { // set => m_Event.type = (NativeInputEventType)(int)value; NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_0 = __this->get_address_of_m_Event_5(); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_1 = ___value0; int32_t L_2; L_2 = FourCC_op_Implicit_m31DD5572C70000C1AA4A97915EB6A7C165C53DFA_inline(L_1, /*hidden argument*/NULL); L_0->set_type_1(L_2); return; } } IL2CPP_EXTERN_C void InputEvent_set_type_mA59021B1AC85CEA52E1DB983D42FB3E01F6D8233_AdjustorThunk (RuntimeObject * __this, FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___value0, const RuntimeMethod* method) { int32_t _offset = 1; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * _thisAdjusted = reinterpret_cast(__this + _offset); InputEvent_set_type_mA59021B1AC85CEA52E1DB983D42FB3E01F6D8233(_thisAdjusted, ___value0, method); } // System.UInt32 UnityEngine.InputSystem.LowLevel.InputEvent::get_sizeInBytes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEvent_get_sizeInBytes_mFF08EC52AAEB650D04AFFFA2CDCEDECBC6DB0B59 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, const RuntimeMethod* method) { { // get => m_Event.sizeInBytes; NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_0 = __this->get_address_of_m_Event_5(); uint16_t L_1 = L_0->get_sizeInBytes_2(); return L_1; } } IL2CPP_EXTERN_C uint32_t InputEvent_get_sizeInBytes_mFF08EC52AAEB650D04AFFFA2CDCEDECBC6DB0B59_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * _thisAdjusted = reinterpret_cast(__this + _offset); uint32_t _returnValue; _returnValue = InputEvent_get_sizeInBytes_mFF08EC52AAEB650D04AFFFA2CDCEDECBC6DB0B59(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_sizeInBytes(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_sizeInBytes_m9352C705F40BF3648701BFCAAF3C202C8462EA99 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, uint32_t ___value0, const RuntimeMethod* method) { uint16_t V_0 = 0; { // if (value > ushort.MaxValue) uint32_t L_0 = ___value0; if ((!(((uint32_t)L_0) > ((uint32_t)((int32_t)65535))))) { goto IL_002a; } } { // throw new ArgumentException("Maximum event size is " + ushort.MaxValue, nameof(value)); V_0 = (uint16_t)((int32_t)65535); String_t* L_1; L_1 = UInt16_ToString_mCD21CDBE273387A21683B6C00EF5EBEEFF7A8F6D((uint16_t*)(&V_0), /*hidden argument*/NULL); String_t* L_2; L_2 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral924007ED054F82D9429F46EA3884D176E0DB744B)), L_1, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_3 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_3, L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEvent_set_sizeInBytes_m9352C705F40BF3648701BFCAAF3C202C8462EA99_RuntimeMethod_var))); } IL_002a: { // m_Event.sizeInBytes = (ushort)value; NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_4 = __this->get_address_of_m_Event_5(); uint32_t L_5 = ___value0; L_4->set_sizeInBytes_2((uint16_t)((int32_t)((uint16_t)L_5))); // } return; } } IL2CPP_EXTERN_C void InputEvent_set_sizeInBytes_m9352C705F40BF3648701BFCAAF3C202C8462EA99_AdjustorThunk (RuntimeObject * __this, uint32_t ___value0, const RuntimeMethod* method) { int32_t _offset = 1; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * _thisAdjusted = reinterpret_cast(__this + _offset); InputEvent_set_sizeInBytes_m9352C705F40BF3648701BFCAAF3C202C8462EA99(_thisAdjusted, ___value0, method); } // System.Int32 UnityEngine.InputSystem.LowLevel.InputEvent::get_eventId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEvent_get_eventId_m4F06A9EDDDED1926D8A9F4FA4C77AC26F4F7163B (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, const RuntimeMethod* method) { { // get => (int)(m_Event.eventId & kIdMask); NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_0 = __this->get_address_of_m_Event_5(); int32_t L_1 = L_0->get_eventId_5(); return ((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)((int64_t)L_1))&(int64_t)((int64_t)((int64_t)((int32_t)2147483647LL))))))); } } IL2CPP_EXTERN_C int32_t InputEvent_get_eventId_m4F06A9EDDDED1926D8A9F4FA4C77AC26F4F7163B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = InputEvent_get_eventId_m4F06A9EDDDED1926D8A9F4FA4C77AC26F4F7163B(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_eventId(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_eventId_m14193345A631832F1933EC51A08F622E432B7385 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, int32_t ___value0, const RuntimeMethod* method) { { // set => m_Event.eventId = value | (int)(m_Event.eventId & ~kIdMask); NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_0 = __this->get_address_of_m_Event_5(); int32_t L_1 = ___value0; NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_2 = __this->get_address_of_m_Event_5(); int32_t L_3 = L_2->get_eventId_5(); L_0->set_eventId_5(((int32_t)((int32_t)L_1|(int32_t)((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)((int64_t)L_3))&(int64_t)((int64_t)((uint64_t)((uint32_t)((uint32_t)((int32_t)-2147483648LL)))))))))))); return; } } IL2CPP_EXTERN_C void InputEvent_set_eventId_m14193345A631832F1933EC51A08F622E432B7385_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method) { int32_t _offset = 1; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * _thisAdjusted = reinterpret_cast(__this + _offset); InputEvent_set_eventId_m14193345A631832F1933EC51A08F622E432B7385(_thisAdjusted, ___value0, method); } // System.Int32 UnityEngine.InputSystem.LowLevel.InputEvent::get_deviceId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEvent_get_deviceId_mC5FAD8D65885CC6B1312EB516AA58917FD69BE1F (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, const RuntimeMethod* method) { { // get => m_Event.deviceId; NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_0 = __this->get_address_of_m_Event_5(); uint16_t L_1 = L_0->get_deviceId_3(); return L_1; } } IL2CPP_EXTERN_C int32_t InputEvent_get_deviceId_mC5FAD8D65885CC6B1312EB516AA58917FD69BE1F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = InputEvent_get_deviceId_mC5FAD8D65885CC6B1312EB516AA58917FD69BE1F(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_deviceId(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_deviceId_m7B19E7F9572351E200808B688AD1D3BD192D966C (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, int32_t ___value0, const RuntimeMethod* method) { { // set => m_Event.deviceId = (ushort)value; NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_0 = __this->get_address_of_m_Event_5(); int32_t L_1 = ___value0; L_0->set_deviceId_3((uint16_t)((int32_t)((uint16_t)L_1))); return; } } IL2CPP_EXTERN_C void InputEvent_set_deviceId_m7B19E7F9572351E200808B688AD1D3BD192D966C_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method) { int32_t _offset = 1; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * _thisAdjusted = reinterpret_cast(__this + _offset); InputEvent_set_deviceId_m7B19E7F9572351E200808B688AD1D3BD192D966C(_thisAdjusted, ___value0, method); } // System.Double UnityEngine.InputSystem.LowLevel.InputEvent::get_time() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputEvent_get_time_m49DD96331359ADA906F4CA867991D58F1278CE02 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // get => m_Event.time - InputRuntime.s_CurrentTimeOffsetToRealtimeSinceStartup; NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_0 = __this->get_address_of_m_Event_5(); double L_1 = L_0->get_time_4(); double L_2 = ((InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_il2cpp_TypeInfo_var))->get_s_CurrentTimeOffsetToRealtimeSinceStartup_1(); return ((double)il2cpp_codegen_subtract((double)L_1, (double)L_2)); } } IL2CPP_EXTERN_C double InputEvent_get_time_m49DD96331359ADA906F4CA867991D58F1278CE02_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * _thisAdjusted = reinterpret_cast(__this + _offset); double _returnValue; _returnValue = InputEvent_get_time_m49DD96331359ADA906F4CA867991D58F1278CE02(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_time(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_time_m026DE5343264E144044FB92A15264BDCDF79B962 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // set => m_Event.time = value + InputRuntime.s_CurrentTimeOffsetToRealtimeSinceStartup; NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_0 = __this->get_address_of_m_Event_5(); double L_1 = ___value0; double L_2 = ((InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_il2cpp_TypeInfo_var))->get_s_CurrentTimeOffsetToRealtimeSinceStartup_1(); L_0->set_time_4(((double)il2cpp_codegen_add((double)L_1, (double)L_2))); return; } } IL2CPP_EXTERN_C void InputEvent_set_time_m026DE5343264E144044FB92A15264BDCDF79B962_AdjustorThunk (RuntimeObject * __this, double ___value0, const RuntimeMethod* method) { int32_t _offset = 1; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * _thisAdjusted = reinterpret_cast(__this + _offset); InputEvent_set_time_m026DE5343264E144044FB92A15264BDCDF79B962(_thisAdjusted, ___value0, method); } // System.Double UnityEngine.InputSystem.LowLevel.InputEvent::get_internalTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputEvent_get_internalTime_mCBF9589869296BDD0EE4093C6F3B2B359BA25BB6 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, const RuntimeMethod* method) { { // get => m_Event.time; NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_0 = __this->get_address_of_m_Event_5(); double L_1 = L_0->get_time_4(); return L_1; } } IL2CPP_EXTERN_C double InputEvent_get_internalTime_mCBF9589869296BDD0EE4093C6F3B2B359BA25BB6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * _thisAdjusted = reinterpret_cast(__this + _offset); double _returnValue; _returnValue = InputEvent_get_internalTime_mCBF9589869296BDD0EE4093C6F3B2B359BA25BB6(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_internalTime(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_internalTime_mFA42266AFBEC1496D72489EAD34D459D32DA751A (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, double ___value0, const RuntimeMethod* method) { { // set => m_Event.time = value; NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_0 = __this->get_address_of_m_Event_5(); double L_1 = ___value0; L_0->set_time_4(L_1); return; } } IL2CPP_EXTERN_C void InputEvent_set_internalTime_mFA42266AFBEC1496D72489EAD34D459D32DA751A_AdjustorThunk (RuntimeObject * __this, double ___value0, const RuntimeMethod* method) { int32_t _offset = 1; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * _thisAdjusted = reinterpret_cast(__this + _offset); InputEvent_set_internalTime_mFA42266AFBEC1496D72489EAD34D459D32DA751A(_thisAdjusted, ___value0, method); } // System.Void UnityEngine.InputSystem.LowLevel.InputEvent::.ctor(UnityEngine.InputSystem.Utilities.FourCC,System.Int32,System.Int32,System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent__ctor_mAA991FC4DC45EBDC8E3931FE011918B60EF31E52 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___type0, int32_t ___sizeInBytes1, int32_t ___deviceId2, double ___time3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (time < 0) double L_0 = ___time3; if ((!(((double)L_0) < ((double)(0.0))))) { goto IL_0019; } } { // time = InputRuntime.s_Instance.currentTime; RuntimeObject* L_1 = ((InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_il2cpp_TypeInfo_var))->get_s_Instance_0(); NullCheck(L_1); double L_2; L_2 = InterfaceFuncInvoker0< double >::Invoke(19 /* System.Double UnityEngine.InputSystem.LowLevel.IInputRuntime::get_currentTime() */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_1); ___time3 = L_2; } IL_0019: { // m_Event.type = (NativeInputEventType)(int)type; NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_3 = __this->get_address_of_m_Event_5(); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_4 = ___type0; int32_t L_5; L_5 = FourCC_op_Implicit_m31DD5572C70000C1AA4A97915EB6A7C165C53DFA_inline(L_4, /*hidden argument*/NULL); L_3->set_type_1(L_5); // m_Event.sizeInBytes = (ushort)sizeInBytes; NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_6 = __this->get_address_of_m_Event_5(); int32_t L_7 = ___sizeInBytes1; L_6->set_sizeInBytes_2((uint16_t)((int32_t)((uint16_t)L_7))); // m_Event.deviceId = (ushort)deviceId; NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_8 = __this->get_address_of_m_Event_5(); int32_t L_9 = ___deviceId2; L_8->set_deviceId_3((uint16_t)((int32_t)((uint16_t)L_9))); // m_Event.time = time; NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_10 = __this->get_address_of_m_Event_5(); double L_11 = ___time3; L_10->set_time_4(L_11); // m_Event.eventId = InvalidEventId; NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_12 = __this->get_address_of_m_Event_5(); L_12->set_eventId_5(0); // } return; } } IL2CPP_EXTERN_C void InputEvent__ctor_mAA991FC4DC45EBDC8E3931FE011918B60EF31E52_AdjustorThunk (RuntimeObject * __this, FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___type0, int32_t ___sizeInBytes1, int32_t ___deviceId2, double ___time3, const RuntimeMethod* method) { int32_t _offset = 1; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * _thisAdjusted = reinterpret_cast(__this + _offset); InputEvent__ctor_mAA991FC4DC45EBDC8E3931FE011918B60EF31E52(_thisAdjusted, ___type0, ___sizeInBytes1, ___deviceId2, ___time3, method); } // System.Boolean UnityEngine.InputSystem.LowLevel.InputEvent::get_handled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEvent_get_handled_m99F98A3B1E3678E4EFD0B6893916F315A027E151 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, const RuntimeMethod* method) { { // get => (m_Event.eventId & kHandledMask) == kHandledMask; NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_0 = __this->get_address_of_m_Event_5(); int32_t L_1 = L_0->get_eventId_5(); return (bool)((((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_1))&(int64_t)((int64_t)((uint64_t)((uint32_t)((uint32_t)((int32_t)-2147483648LL)))))))) == ((int64_t)((int64_t)((uint64_t)((uint32_t)((uint32_t)((int32_t)-2147483648LL)))))))? 1 : 0); } } IL2CPP_EXTERN_C bool InputEvent_get_handled_m99F98A3B1E3678E4EFD0B6893916F315A027E151_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = InputEvent_get_handled_m99F98A3B1E3678E4EFD0B6893916F315A027E151(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.LowLevel.InputEvent::set_handled(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_handled_m4B9B0F6A38E59907F18BFC1AB1CC2CB41C6A9FE1 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, bool ___value0, const RuntimeMethod* method) { { // if (value) bool L_0 = ___value0; if (!L_0) { goto IL_0023; } } { // m_Event.eventId = (int)(m_Event.eventId | kHandledMask); NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_1 = __this->get_address_of_m_Event_5(); NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_2 = __this->get_address_of_m_Event_5(); int32_t L_3 = L_2->get_eventId_5(); L_1->set_eventId_5(((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)((int64_t)L_3))|(int64_t)((int64_t)((uint64_t)((uint32_t)((uint32_t)((int32_t)-2147483648LL)))))))))); return; } IL_0023: { // m_Event.eventId = (int)(m_Event.eventId & ~kHandledMask); NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_4 = __this->get_address_of_m_Event_5(); NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_5 = __this->get_address_of_m_Event_5(); int32_t L_6 = L_5->get_eventId_5(); L_4->set_eventId_5(((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)((int64_t)L_6))&(int64_t)((int64_t)((int64_t)((int32_t)2147483647LL)))))))); // } return; } } IL2CPP_EXTERN_C void InputEvent_set_handled_m4B9B0F6A38E59907F18BFC1AB1CC2CB41C6A9FE1_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { int32_t _offset = 1; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * _thisAdjusted = reinterpret_cast(__this + _offset); InputEvent_set_handled_m4B9B0F6A38E59907F18BFC1AB1CC2CB41C6A9FE1(_thisAdjusted, ___value0, method); } // System.String UnityEngine.InputSystem.LowLevel.InputEvent::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputEvent_ToString_m1FC17A5176EAB237A89AB58EC35F690BD0838FE3 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD8D5235574444C342D8D4E761289705C697DD73F); s_Il2CppMethodInitialized = true; } { // return $"id={eventId} type={type} device={deviceId} size={sizeInBytes} time={time}"; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)5); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0; int32_t L_2; L_2 = InputEvent_get_eventId_m4F06A9EDDDED1926D8A9F4FA4C77AC26F4F7163B((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)__this, /*hidden argument*/NULL); int32_t L_3 = L_2; RuntimeObject * L_4 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_3); NullCheck(L_1); ArrayElementTypeCheck (L_1, L_4); (L_1)->SetAt(static_cast(0), (RuntimeObject *)L_4); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = L_1; FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_6; L_6 = InputEvent_get_type_mF27E6FB5A23D3E5AA01386213E9E5248CDC27993((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)__this, /*hidden argument*/NULL); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_7 = L_6; RuntimeObject * L_8 = Box(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9_il2cpp_TypeInfo_var, &L_7); NullCheck(L_5); ArrayElementTypeCheck (L_5, L_8); (L_5)->SetAt(static_cast(1), (RuntimeObject *)L_8); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = L_5; int32_t L_10; L_10 = InputEvent_get_deviceId_mC5FAD8D65885CC6B1312EB516AA58917FD69BE1F((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)__this, /*hidden argument*/NULL); int32_t L_11 = L_10; RuntimeObject * L_12 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_11); NullCheck(L_9); ArrayElementTypeCheck (L_9, L_12); (L_9)->SetAt(static_cast(2), (RuntimeObject *)L_12); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = L_9; uint32_t L_14; L_14 = InputEvent_get_sizeInBytes_mFF08EC52AAEB650D04AFFFA2CDCEDECBC6DB0B59((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)__this, /*hidden argument*/NULL); uint32_t L_15 = L_14; RuntimeObject * L_16 = Box(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var, &L_15); NullCheck(L_13); ArrayElementTypeCheck (L_13, L_16); (L_13)->SetAt(static_cast(3), (RuntimeObject *)L_16); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = L_13; double L_18; L_18 = InputEvent_get_time_m49DD96331359ADA906F4CA867991D58F1278CE02((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)__this, /*hidden argument*/NULL); double L_19 = L_18; RuntimeObject * L_20 = Box(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var, &L_19); NullCheck(L_17); ArrayElementTypeCheck (L_17, L_20); (L_17)->SetAt(static_cast(4), (RuntimeObject *)L_20); String_t* L_21; L_21 = String_Format_m2CDD2A21AF2BCE3CE07D634645F9A61B4CB7D9B3(_stringLiteralD8D5235574444C342D8D4E761289705C697DD73F, L_17, /*hidden argument*/NULL); return L_21; } } IL2CPP_EXTERN_C String_t* InputEvent_ToString_m1FC17A5176EAB237A89AB58EC35F690BD0838FE3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = InputEvent_ToString_m1FC17A5176EAB237A89AB58EC35F690BD0838FE3(_thisAdjusted, method); return _returnValue; } // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEvent::GetNextInMemory(UnityEngine.InputSystem.LowLevel.InputEvent*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEvent_GetNextInMemory_m482607ACC1E6EAA665FE89A2FD8B6448FD4701BD (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___currentPtr0, const RuntimeMethod* method) { uint32_t V_0 = 0; { // var alignedSizeInBytes = currentPtr->sizeInBytes.AlignToMultipleOf(kAlignment); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_0 = ___currentPtr0; uint32_t L_1; L_1 = InputEvent_get_sizeInBytes_mFF08EC52AAEB650D04AFFFA2CDCEDECBC6DB0B59((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_0, /*hidden argument*/NULL); uint32_t L_2; L_2 = NumberHelpers_AlignToMultipleOf_mAC36042E2A9F764DF404617DB262C5FB611212E7_inline(L_1, 4, /*hidden argument*/NULL); V_0 = L_2; // return (InputEvent*)((byte*)currentPtr + alignedSizeInBytes); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_3 = ___currentPtr0; uint32_t L_4 = V_0; return (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)il2cpp_codegen_add((intptr_t)L_3, (intptr_t)((uintptr_t)L_4)))); } } // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEvent::GetNextInMemoryChecked(UnityEngine.InputSystem.LowLevel.InputEvent*,UnityEngine.InputSystem.LowLevel.InputEventBuffer&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEvent_GetNextInMemoryChecked_mE79AFF855E5276D4973633FD338DBF77CDAA3FB3 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___currentPtr0, InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * ___buffer1, const RuntimeMethod* method) { uint32_t V_0 = 0; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * V_1 = NULL; { // var alignedSizeInBytes = currentPtr->sizeInBytes.AlignToMultipleOf(kAlignment); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_0 = ___currentPtr0; uint32_t L_1; L_1 = InputEvent_get_sizeInBytes_mFF08EC52AAEB650D04AFFFA2CDCEDECBC6DB0B59((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_0, /*hidden argument*/NULL); uint32_t L_2; L_2 = NumberHelpers_AlignToMultipleOf_mAC36042E2A9F764DF404617DB262C5FB611212E7_inline(L_1, 4, /*hidden argument*/NULL); V_0 = L_2; // var nextPtr = (InputEvent*)((byte*)currentPtr + alignedSizeInBytes); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_3 = ___currentPtr0; uint32_t L_4 = V_0; V_1 = (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)il2cpp_codegen_add((intptr_t)L_3, (intptr_t)((uintptr_t)L_4))); // if (!buffer.Contains(nextPtr)) InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_5 = ___buffer1; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_6 = V_1; bool L_7; L_7 = InputEventBuffer_Contains_m3864E58540B137C12FF34860C5B863A9C2DA8BE1((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_5, (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_6, /*hidden argument*/NULL); if (L_7) { goto IL_0041; } } { // throw new InvalidOperationException( // $"Event '{new InputEventPtr(currentPtr)}' is last event in given buffer with size {buffer.sizeInBytes}"); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_8 = ___currentPtr0; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_9; memset((&L_9), 0, sizeof(L_9)); InputEventPtr__ctor_m9EBF5134C7CC18F85542C146674EAE1BF7F29110_inline((&L_9), (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_8, /*hidden argument*/NULL); InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_10 = L_9; RuntimeObject * L_11 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_il2cpp_TypeInfo_var)), &L_10); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_12 = ___buffer1; int64_t L_13; L_13 = InputEventBuffer_get_sizeInBytes_m026FE298C8E6BD5A6354CF22445743E108EBB338_inline((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_12, /*hidden argument*/NULL); int64_t L_14 = L_13; RuntimeObject * L_15 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var)), &L_14); String_t* L_16; L_16 = String_Format_m8464C6DD7299114954DA87FC39FCD129F3E2ACA2(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral08FB9129CB5911626293A76FA9EA45A589D9966E)), L_11, L_15, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_17 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_17, L_16, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEvent_GetNextInMemoryChecked_mE79AFF855E5276D4973633FD338DBF77CDAA3FB3_RuntimeMethod_var))); } IL_0041: { // return nextPtr; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_18 = V_1; return (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(L_18); } } // System.Boolean UnityEngine.InputSystem.LowLevel.InputEvent::Equals(UnityEngine.InputSystem.LowLevel.InputEvent*,UnityEngine.InputSystem.LowLevel.InputEvent*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEvent_Equals_mA337199C1F606CDF6718583BC23AA44338A95F59 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___first0, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___second1, const RuntimeMethod* method) { { // if (first == second) InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_0 = ___first0; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_1 = ___second1; if ((!(((uintptr_t)L_0) == ((uintptr_t)L_1)))) { goto IL_0006; } } { // return true; return (bool)1; } IL_0006: { // if (first == null || second == null) InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_2 = ___first0; if ((((intptr_t)L_2) == ((intptr_t)((uintptr_t)0)))) { goto IL_0010; } } { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_3 = ___second1; if ((!(((uintptr_t)L_3) == ((uintptr_t)((uintptr_t)0))))) { goto IL_0012; } } IL_0010: { // return false; return (bool)0; } IL_0012: { // if (first->m_Event.sizeInBytes != second->m_Event.sizeInBytes) InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_4 = ___first0; NullCheck(L_4); NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_5 = L_4->get_address_of_m_Event_5(); uint16_t L_6 = L_5->get_sizeInBytes_2(); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_7 = ___second1; NullCheck(L_7); NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_8 = L_7->get_address_of_m_Event_5(); uint16_t L_9 = L_8->get_sizeInBytes_2(); if ((((int32_t)L_6) == ((int32_t)L_9))) { goto IL_002c; } } { // return false; return (bool)0; } IL_002c: { // return UnsafeUtility.MemCmp(first, second, first->m_Event.sizeInBytes) == 0; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_10 = ___first0; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_11 = ___second1; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_12 = ___first0; NullCheck(L_12); NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * L_13 = L_12->get_address_of_m_Event_5(); uint16_t L_14 = L_13->get_sizeInBytes_2(); int32_t L_15; L_15 = UnsafeUtility_MemCmp_m93F78B937CB38E084CDC1DE811753E6D0F3841C1((void*)(void*)L_10, (void*)(void*)L_11, ((int64_t)((uint64_t)L_14)), /*hidden argument*/NULL); return (bool)((((int32_t)L_15) == ((int32_t)0))? 1 : 0); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: UnityEngine.InputSystem.LowLevel.InputEventBuffer IL2CPP_EXTERN_C void InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshal_pinvoke(const InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA& unmarshaled, InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshaled_pinvoke& marshaled) { marshaled.___m_Buffer_1 = unmarshaled.get_m_Buffer_1(); marshaled.___m_SizeInBytes_2 = unmarshaled.get_m_SizeInBytes_2(); marshaled.___m_EventCount_3 = unmarshaled.get_m_EventCount_3(); marshaled.___m_WeOwnTheBuffer_4 = static_cast(unmarshaled.get_m_WeOwnTheBuffer_4()); } IL2CPP_EXTERN_C void InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshal_pinvoke_back(const InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshaled_pinvoke& marshaled, InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA& unmarshaled) { NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 unmarshaled_m_Buffer_temp_0; memset((&unmarshaled_m_Buffer_temp_0), 0, sizeof(unmarshaled_m_Buffer_temp_0)); unmarshaled_m_Buffer_temp_0 = marshaled.___m_Buffer_1; unmarshaled.set_m_Buffer_1(unmarshaled_m_Buffer_temp_0); int64_t unmarshaled_m_SizeInBytes_temp_1 = 0; unmarshaled_m_SizeInBytes_temp_1 = marshaled.___m_SizeInBytes_2; unmarshaled.set_m_SizeInBytes_2(unmarshaled_m_SizeInBytes_temp_1); int32_t unmarshaled_m_EventCount_temp_2 = 0; unmarshaled_m_EventCount_temp_2 = marshaled.___m_EventCount_3; unmarshaled.set_m_EventCount_3(unmarshaled_m_EventCount_temp_2); bool unmarshaled_m_WeOwnTheBuffer_temp_3 = false; unmarshaled_m_WeOwnTheBuffer_temp_3 = static_cast(marshaled.___m_WeOwnTheBuffer_4); unmarshaled.set_m_WeOwnTheBuffer_4(unmarshaled_m_WeOwnTheBuffer_temp_3); } // Conversion method for clean up from marshalling of: UnityEngine.InputSystem.LowLevel.InputEventBuffer IL2CPP_EXTERN_C void InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshal_pinvoke_cleanup(InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: UnityEngine.InputSystem.LowLevel.InputEventBuffer IL2CPP_EXTERN_C void InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshal_com(const InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA& unmarshaled, InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshaled_com& marshaled) { marshaled.___m_Buffer_1 = unmarshaled.get_m_Buffer_1(); marshaled.___m_SizeInBytes_2 = unmarshaled.get_m_SizeInBytes_2(); marshaled.___m_EventCount_3 = unmarshaled.get_m_EventCount_3(); marshaled.___m_WeOwnTheBuffer_4 = static_cast(unmarshaled.get_m_WeOwnTheBuffer_4()); } IL2CPP_EXTERN_C void InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshal_com_back(const InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshaled_com& marshaled, InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA& unmarshaled) { NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 unmarshaled_m_Buffer_temp_0; memset((&unmarshaled_m_Buffer_temp_0), 0, sizeof(unmarshaled_m_Buffer_temp_0)); unmarshaled_m_Buffer_temp_0 = marshaled.___m_Buffer_1; unmarshaled.set_m_Buffer_1(unmarshaled_m_Buffer_temp_0); int64_t unmarshaled_m_SizeInBytes_temp_1 = 0; unmarshaled_m_SizeInBytes_temp_1 = marshaled.___m_SizeInBytes_2; unmarshaled.set_m_SizeInBytes_2(unmarshaled_m_SizeInBytes_temp_1); int32_t unmarshaled_m_EventCount_temp_2 = 0; unmarshaled_m_EventCount_temp_2 = marshaled.___m_EventCount_3; unmarshaled.set_m_EventCount_3(unmarshaled_m_EventCount_temp_2); bool unmarshaled_m_WeOwnTheBuffer_temp_3 = false; unmarshaled_m_WeOwnTheBuffer_temp_3 = static_cast(marshaled.___m_WeOwnTheBuffer_4); unmarshaled.set_m_WeOwnTheBuffer_4(unmarshaled_m_WeOwnTheBuffer_temp_3); } // Conversion method for clean up from marshalling of: UnityEngine.InputSystem.LowLevel.InputEventBuffer IL2CPP_EXTERN_C void InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshal_com_cleanup(InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshaled_com& marshaled) { } // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventBuffer::get_eventCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventBuffer_get_eventCount_m50712505E0393BA3A20563E64DAA7A6D75854E3F (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method) { { // public int eventCount => m_EventCount; int32_t L_0 = __this->get_m_EventCount_3(); return L_0; } } IL2CPP_EXTERN_C int32_t InputEventBuffer_get_eventCount_m50712505E0393BA3A20563E64DAA7A6D75854E3F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = InputEventBuffer_get_eventCount_m50712505E0393BA3A20563E64DAA7A6D75854E3F_inline(_thisAdjusted, method); return _returnValue; } // System.Int64 UnityEngine.InputSystem.LowLevel.InputEventBuffer::get_sizeInBytes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputEventBuffer_get_sizeInBytes_m026FE298C8E6BD5A6354CF22445743E108EBB338 (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method) { { // public long sizeInBytes => m_SizeInBytes; int64_t L_0 = __this->get_m_SizeInBytes_2(); return L_0; } } IL2CPP_EXTERN_C int64_t InputEventBuffer_get_sizeInBytes_m026FE298C8E6BD5A6354CF22445743E108EBB338_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * _thisAdjusted = reinterpret_cast(__this + _offset); int64_t _returnValue; _returnValue = InputEventBuffer_get_sizeInBytes_m026FE298C8E6BD5A6354CF22445743E108EBB338_inline(_thisAdjusted, method); return _returnValue; } // System.Int64 UnityEngine.InputSystem.LowLevel.InputEventBuffer::get_capacityInBytes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputEventBuffer_get_capacityInBytes_mCB4AF5BB207035D9FAF526A7861CA72B246B9C26 (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // if (!m_Buffer.IsCreated) NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * L_0 = __this->get_address_of_m_Buffer_1(); bool L_1; L_1 = NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)L_0, /*hidden argument*/NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var); if (L_1) { goto IL_0010; } } { // return 0; return ((int64_t)((int64_t)0)); } IL_0010: { // return m_Buffer.Length; NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * L_2 = __this->get_address_of_m_Buffer_1(); int32_t L_3; L_3 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)L_2)->___m_Length_1); return ((int64_t)((int64_t)L_3)); } } IL2CPP_EXTERN_C int64_t InputEventBuffer_get_capacityInBytes_mCB4AF5BB207035D9FAF526A7861CA72B246B9C26_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * _thisAdjusted = reinterpret_cast(__this + _offset); int64_t _returnValue; _returnValue = InputEventBuffer_get_capacityInBytes_mCB4AF5BB207035D9FAF526A7861CA72B246B9C26(_thisAdjusted, method); return _returnValue; } // Unity.Collections.NativeArray`1 UnityEngine.InputSystem.LowLevel.InputEventBuffer::get_data() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 InputEventBuffer_get_data_m5E230CE9CC093445705ED34CDA93AF7527AF945B (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method) { { // public NativeArray data => m_Buffer; NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_0 = __this->get_m_Buffer_1(); return L_0; } } IL2CPP_EXTERN_C NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 InputEventBuffer_get_data_m5E230CE9CC093445705ED34CDA93AF7527AF945B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * _thisAdjusted = reinterpret_cast(__this + _offset); NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 _returnValue; _returnValue = InputEventBuffer_get_data_m5E230CE9CC093445705ED34CDA93AF7527AF945B_inline(_thisAdjusted, method); return _returnValue; } // UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.InputEventBuffer::get_bufferPtr() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 InputEventBuffer_get_bufferPtr_mBDF4C8B45E48FB47151E8934BC2236E66BB5745E (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // get { return (InputEvent*)NativeArrayUnsafeUtility.GetUnsafeBufferPointerWithoutChecks(m_Buffer); } NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_0 = __this->get_m_Buffer_1(); void* L_1; L_1 = NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8(L_0, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8_RuntimeMethod_var); InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_2; L_2 = InputEventPtr_op_Implicit_m929BCCB27CE3B2C2BD9B2C43E49FDCB1F2933AB5((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_1, /*hidden argument*/NULL); return L_2; } } IL2CPP_EXTERN_C InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 InputEventBuffer_get_bufferPtr_mBDF4C8B45E48FB47151E8934BC2236E66BB5745E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * _thisAdjusted = reinterpret_cast(__this + _offset); InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 _returnValue; _returnValue = InputEventBuffer_get_bufferPtr_mBDF4C8B45E48FB47151E8934BC2236E66BB5745E(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer::.ctor(UnityEngine.InputSystem.LowLevel.InputEvent*,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer__ctor_mD809489C60E9A3C3CE02EAD34FF604C7C6D73348 (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr0, int32_t ___eventCount1, int32_t ___sizeInBytes2, int32_t ___capacityInBytes3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m5716D1B129F1FA995C8917D06C0FB2793750A78B_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * G_B11_0 = NULL; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * G_B11_1 = NULL; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * G_B10_0 = NULL; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * G_B10_1 = NULL; int32_t G_B12_0 = 0; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * G_B12_1 = NULL; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * G_B12_2 = NULL; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * G_B14_0 = NULL; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * G_B13_0 = NULL; int64_t G_B15_0 = 0; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * G_B15_1 = NULL; { // : this() il2cpp_codegen_initobj(__this, sizeof(InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA )); // if (eventPtr == null && eventCount != 0) InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_0 = ___eventPtr0; if ((!(((uintptr_t)L_0) == ((uintptr_t)((uintptr_t)0))))) { goto IL_001f; } } { int32_t L_1 = ___eventCount1; if (!L_1) { goto IL_001f; } } { // throw new ArgumentException("eventPtr is NULL but eventCount is != 0", nameof(eventCount)); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_2 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD52F14A7E64122290D63B7EF4B3530CB47A85E14)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAD23E6251FEEFC7CF204F3BB7E43B14EE901517E)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventBuffer__ctor_mD809489C60E9A3C3CE02EAD34FF604C7C6D73348_RuntimeMethod_var))); } IL_001f: { // if (capacityInBytes != 0 && capacityInBytes < sizeInBytes) int32_t L_3 = ___capacityInBytes3; if (!L_3) { goto IL_004a; } } { int32_t L_4 = ___capacityInBytes3; int32_t L_5 = ___sizeInBytes2; if ((((int32_t)L_4) >= ((int32_t)L_5))) { goto IL_004a; } } { // throw new ArgumentException($"capacity({capacityInBytes}) cannot be smaller than size({sizeInBytes})", // nameof(capacityInBytes)); int32_t L_6 = ___capacityInBytes3; int32_t L_7 = L_6; RuntimeObject * L_8 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_7); int32_t L_9 = ___sizeInBytes2; int32_t L_10 = L_9; RuntimeObject * L_11 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_10); String_t* L_12; L_12 = String_Format_m8464C6DD7299114954DA87FC39FCD129F3E2ACA2(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB2A6BBCEEF1288495F26EB3470ACB3FD27C456E3)), L_8, L_11, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_13 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_13, L_12, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral894192F113AFCA62FF819992911789F3CD2A99BF)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventBuffer__ctor_mD809489C60E9A3C3CE02EAD34FF604C7C6D73348_RuntimeMethod_var))); } IL_004a: { // if (eventPtr != null) InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_14 = ___eventPtr0; if ((((intptr_t)L_14) == ((intptr_t)((uintptr_t)0)))) { goto IL_008c; } } { // if (capacityInBytes < 0) int32_t L_15 = ___capacityInBytes3; if ((((int32_t)L_15) >= ((int32_t)0))) { goto IL_0057; } } { // capacityInBytes = sizeInBytes; int32_t L_16 = ___sizeInBytes2; ___capacityInBytes3 = L_16; } IL_0057: { // m_Buffer = NativeArrayUnsafeUtility.ConvertExistingDataToNativeArray(eventPtr, // capacityInBytes > 0 ? capacityInBytes : 0, Allocator.None); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_17 = ___eventPtr0; int32_t L_18 = ___capacityInBytes3; G_B10_0 = L_17; G_B10_1 = __this; if ((((int32_t)L_18) > ((int32_t)0))) { G_B11_0 = L_17; G_B11_1 = __this; goto IL_0061; } } { G_B12_0 = 0; G_B12_1 = G_B10_0; G_B12_2 = G_B10_1; goto IL_0063; } IL_0061: { int32_t L_19 = ___capacityInBytes3; G_B12_0 = L_19; G_B12_1 = G_B11_0; G_B12_2 = G_B11_1; } IL_0063: { NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_20; L_20 = NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m5716D1B129F1FA995C8917D06C0FB2793750A78B((void*)(void*)G_B12_1, G_B12_0, 1, /*hidden argument*/NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m5716D1B129F1FA995C8917D06C0FB2793750A78B_RuntimeMethod_var); G_B12_2->set_m_Buffer_1(L_20); // m_SizeInBytes = sizeInBytes >= 0 ? sizeInBytes : BufferSizeUnknown; int32_t L_21 = ___sizeInBytes2; G_B13_0 = __this; if ((((int32_t)L_21) >= ((int32_t)0))) { G_B14_0 = __this; goto IL_0077; } } { G_B15_0 = ((int64_t)((int64_t)(-1))); G_B15_1 = G_B13_0; goto IL_0079; } IL_0077: { int32_t L_22 = ___sizeInBytes2; G_B15_0 = ((int64_t)((int64_t)L_22)); G_B15_1 = G_B14_0; } IL_0079: { G_B15_1->set_m_SizeInBytes_2(G_B15_0); // m_EventCount = eventCount; int32_t L_23 = ___eventCount1; __this->set_m_EventCount_3(L_23); // m_WeOwnTheBuffer = false; __this->set_m_WeOwnTheBuffer_4((bool)0); } IL_008c: { // } return; } } IL2CPP_EXTERN_C void InputEventBuffer__ctor_mD809489C60E9A3C3CE02EAD34FF604C7C6D73348_AdjustorThunk (RuntimeObject * __this, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr0, int32_t ___eventCount1, int32_t ___sizeInBytes2, int32_t ___capacityInBytes3, const RuntimeMethod* method) { int32_t _offset = 1; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * _thisAdjusted = reinterpret_cast(__this + _offset); InputEventBuffer__ctor_mD809489C60E9A3C3CE02EAD34FF604C7C6D73348(_thisAdjusted, ___eventPtr0, ___eventCount1, ___sizeInBytes2, ___capacityInBytes3, method); } // System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer::.ctor(Unity.Collections.NativeArray`1,System.Int32,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer__ctor_mE4713C79D8E11BFC1FD1E4F696F35C9E05EA5187 (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___buffer0, int32_t ___eventCount1, int32_t ___sizeInBytes2, bool ___transferNativeArrayOwnership3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * G_B7_0 = NULL; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * G_B6_0 = NULL; int32_t G_B8_0 = 0; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * G_B8_1 = NULL; { // if (eventCount > 0 && !buffer.IsCreated) int32_t L_0 = ___eventCount1; if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_001d; } } { bool L_1; L_1 = NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)(&___buffer0), /*hidden argument*/NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var); if (L_1) { goto IL_001d; } } { // throw new ArgumentException("buffer has no data but eventCount is > 0", nameof(eventCount)); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_2 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC2451B8C6D92CA7D8CE2544B065B761C4B4C9647)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAD23E6251FEEFC7CF204F3BB7E43B14EE901517E)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventBuffer__ctor_mE4713C79D8E11BFC1FD1E4F696F35C9E05EA5187_RuntimeMethod_var))); } IL_001d: { // if (sizeInBytes > buffer.Length) int32_t L_3 = ___sizeInBytes2; int32_t L_4; L_4 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)(&___buffer0))->___m_Length_1); if ((((int32_t)L_3) <= ((int32_t)L_4))) { goto IL_0032; } } { // throw new ArgumentOutOfRangeException(nameof(sizeInBytes)); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_5 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9185A9C6A1BF633445844194B5073A9E7D587F4D)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventBuffer__ctor_mE4713C79D8E11BFC1FD1E4F696F35C9E05EA5187_RuntimeMethod_var))); } IL_0032: { // m_Buffer = buffer; NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_6 = ___buffer0; __this->set_m_Buffer_1(L_6); // m_WeOwnTheBuffer = transferNativeArrayOwnership; bool L_7 = ___transferNativeArrayOwnership3; __this->set_m_WeOwnTheBuffer_4(L_7); // m_SizeInBytes = sizeInBytes >= 0 ? sizeInBytes : buffer.Length; int32_t L_8 = ___sizeInBytes2; G_B6_0 = __this; if ((((int32_t)L_8) >= ((int32_t)0))) { G_B7_0 = __this; goto IL_004f; } } { int32_t L_9; L_9 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)(&___buffer0))->___m_Length_1); G_B8_0 = L_9; G_B8_1 = G_B6_0; goto IL_0050; } IL_004f: { int32_t L_10 = ___sizeInBytes2; G_B8_0 = L_10; G_B8_1 = G_B7_0; } IL_0050: { G_B8_1->set_m_SizeInBytes_2(((int64_t)((int64_t)G_B8_0))); // m_EventCount = eventCount; int32_t L_11 = ___eventCount1; __this->set_m_EventCount_3(L_11); // } return; } } IL2CPP_EXTERN_C void InputEventBuffer__ctor_mE4713C79D8E11BFC1FD1E4F696F35C9E05EA5187_AdjustorThunk (RuntimeObject * __this, NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___buffer0, int32_t ___eventCount1, int32_t ___sizeInBytes2, bool ___transferNativeArrayOwnership3, const RuntimeMethod* method) { int32_t _offset = 1; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * _thisAdjusted = reinterpret_cast(__this + _offset); InputEventBuffer__ctor_mE4713C79D8E11BFC1FD1E4F696F35C9E05EA5187(_thisAdjusted, ___buffer0, ___eventCount1, ___sizeInBytes2, ___transferNativeArrayOwnership3, method); } // System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer::AppendEvent(UnityEngine.InputSystem.LowLevel.InputEvent*,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer_AppendEvent_mB2227FAC7CF7C32E2FF8ED9925AEC7EBB0BE853A (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr0, int32_t ___capacityIncrementInBytes1, int32_t ___allocator2, const RuntimeMethod* method) { uint32_t V_0 = 0; { // if (eventPtr == null) InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_0 = ___eventPtr0; if ((!(((uintptr_t)L_0) == ((uintptr_t)((uintptr_t)0))))) { goto IL_0010; } } { // throw new ArgumentNullException(nameof(eventPtr)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBA67382D61289B0EDBD1CD867DE673562B9B5111)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventBuffer_AppendEvent_mB2227FAC7CF7C32E2FF8ED9925AEC7EBB0BE853A_RuntimeMethod_var))); } IL_0010: { // var eventSizeInBytes = eventPtr->sizeInBytes; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_2 = ___eventPtr0; uint32_t L_3; L_3 = InputEvent_get_sizeInBytes_mFF08EC52AAEB650D04AFFFA2CDCEDECBC6DB0B59((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_2, /*hidden argument*/NULL); V_0 = L_3; // var destinationPtr = AllocateEvent((int)eventSizeInBytes, capacityIncrementInBytes, allocator); uint32_t L_4 = V_0; int32_t L_5 = ___capacityIncrementInBytes1; int32_t L_6 = ___allocator2; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_7; L_7 = InputEventBuffer_AllocateEvent_m6B00F1F2E19EC9A1DA3F76CE0DBC5F1A825C1FAE((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)__this, L_4, L_5, L_6, /*hidden argument*/NULL); // UnsafeUtility.MemCpy(destinationPtr, eventPtr, eventSizeInBytes); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_8 = ___eventPtr0; uint32_t L_9 = V_0; UnsafeUtility_MemCpy_mA8E186A63FE9CE463F95E5C5FF1C5F1B4E84F90E((void*)(void*)L_7, (void*)(void*)L_8, ((int64_t)((uint64_t)L_9)), /*hidden argument*/NULL); // } return; } } IL2CPP_EXTERN_C void InputEventBuffer_AppendEvent_mB2227FAC7CF7C32E2FF8ED9925AEC7EBB0BE853A_AdjustorThunk (RuntimeObject * __this, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr0, int32_t ___capacityIncrementInBytes1, int32_t ___allocator2, const RuntimeMethod* method) { int32_t _offset = 1; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * _thisAdjusted = reinterpret_cast(__this + _offset); InputEventBuffer_AppendEvent_mB2227FAC7CF7C32E2FF8ED9925AEC7EBB0BE853A(_thisAdjusted, ___eventPtr0, ___capacityIncrementInBytes1, ___allocator2, method); } // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventBuffer::AllocateEvent(System.Int32,System.Int32,Unity.Collections.Allocator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEventBuffer_AllocateEvent_m6B00F1F2E19EC9A1DA3F76CE0DBC5F1A825C1FAE (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, int32_t ___sizeInBytes0, int32_t ___capacityIncrementInBytes1, int32_t ___allocator2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mE8961C891F379BB648D8CDB9F514FFB65A58EACF_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mD88EDF062EFB4B0E6C8F925B5A4E47E97E687342_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_mED2AEAAEFBBE3F20D8E424582434019D3F94F9EF_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int64_t V_1 = 0; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * V_2 = NULL; int64_t V_3 = 0; NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 V_4; memset((&V_4), 0, sizeof(V_4)); { // if (sizeInBytes < InputEvent.kBaseEventSize) int32_t L_0 = ___sizeInBytes0; if ((((int32_t)L_0) >= ((int32_t)((int32_t)20)))) { goto IL_0027; } } { // throw new ArgumentException( // $"sizeInBytes must be >= sizeof(InputEvent) == {InputEvent.kBaseEventSize} (was {sizeInBytes})", // nameof(sizeInBytes)); int32_t L_1 = ((int32_t)20); RuntimeObject * L_2 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_1); int32_t L_3 = ___sizeInBytes0; int32_t L_4 = L_3; RuntimeObject * L_5 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_4); String_t* L_6; L_6 = String_Format_m8464C6DD7299114954DA87FC39FCD129F3E2ACA2(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral75C2382105EE7550A774237E98EAB4B761429404)), L_2, L_5, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_7, L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9185A9C6A1BF633445844194B5073A9E7D587F4D)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventBuffer_AllocateEvent_m6B00F1F2E19EC9A1DA3F76CE0DBC5F1A825C1FAE_RuntimeMethod_var))); } IL_0027: { // var alignedSizeInBytes = sizeInBytes.AlignToMultipleOf(InputEvent.kAlignment); int32_t L_8 = ___sizeInBytes0; int32_t L_9; L_9 = NumberHelpers_AlignToMultipleOf_mA69DF1D1D4E850C2DFF4D3FE946ED65D9C4615DD_inline(L_8, 4, /*hidden argument*/NULL); V_0 = L_9; // var necessaryCapacity = m_SizeInBytes + alignedSizeInBytes; int64_t L_10 = __this->get_m_SizeInBytes_2(); int32_t L_11 = V_0; V_1 = ((int64_t)il2cpp_codegen_add((int64_t)L_10, (int64_t)((int64_t)((int64_t)L_11)))); // var currentCapacity = capacityInBytes; int64_t L_12; L_12 = InputEventBuffer_get_capacityInBytes_mCB4AF5BB207035D9FAF526A7861CA72B246B9C26((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)__this, /*hidden argument*/NULL); // if (currentCapacity < necessaryCapacity) int64_t L_13 = V_1; if ((((int64_t)L_12) >= ((int64_t)L_13))) { goto IL_00b6; } } { // var newCapacity = necessaryCapacity.AlignToMultipleOf(capacityIncrementInBytes); int64_t L_14 = V_1; int32_t L_15 = ___capacityIncrementInBytes1; int64_t L_16; L_16 = NumberHelpers_AlignToMultipleOf_mCF19A2B038F76E002BF488B659ED1A54778E0645_inline(L_14, ((int64_t)((int64_t)L_15)), /*hidden argument*/NULL); V_3 = L_16; // if (newCapacity > int.MaxValue) int64_t L_17 = V_3; if ((((int64_t)L_17) <= ((int64_t)((int64_t)((int64_t)((int32_t)2147483647LL)))))) { goto IL_005f; } } { // throw new NotImplementedException("NativeArray long support"); NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6 * L_18 = (NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6_il2cpp_TypeInfo_var))); NotImplementedException__ctor_m8A9AA4499614A5BC57DD21713D0720630C130AEB(L_18, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral682C94355936D06676EFEE25A133C60E3F8445C8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventBuffer_AllocateEvent_m6B00F1F2E19EC9A1DA3F76CE0DBC5F1A825C1FAE_RuntimeMethod_var))); } IL_005f: { // var newBuffer = // new NativeArray((int)newCapacity, allocator, NativeArrayOptions.ClearMemory); int64_t L_19 = V_3; int32_t L_20 = ___allocator2; NativeArray_1__ctor_mED2AEAAEFBBE3F20D8E424582434019D3F94F9EF((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)(&V_4), ((int32_t)((int32_t)L_19)), L_20, 1, /*hidden argument*/NativeArray_1__ctor_mED2AEAAEFBBE3F20D8E424582434019D3F94F9EF_RuntimeMethod_var); // if (m_Buffer.IsCreated) NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * L_21 = __this->get_address_of_m_Buffer_1(); bool L_22; L_22 = NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)L_21, /*hidden argument*/NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var); if (!L_22) { goto IL_00a7; } } { // UnsafeUtility.MemCpy(newBuffer.GetUnsafePtr(), // NativeArrayUnsafeUtility.GetUnsafeBufferPointerWithoutChecks(m_Buffer), // this.sizeInBytes); NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_23 = V_4; void* L_24; L_24 = NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mE8961C891F379BB648D8CDB9F514FFB65A58EACF(L_23, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mE8961C891F379BB648D8CDB9F514FFB65A58EACF_RuntimeMethod_var); NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_25 = __this->get_m_Buffer_1(); void* L_26; L_26 = NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8(L_25, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8_RuntimeMethod_var); int64_t L_27; L_27 = InputEventBuffer_get_sizeInBytes_m026FE298C8E6BD5A6354CF22445743E108EBB338_inline((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)__this, /*hidden argument*/NULL); UnsafeUtility_MemCpy_mA8E186A63FE9CE463F95E5C5FF1C5F1B4E84F90E((void*)(void*)L_24, (void*)(void*)L_26, L_27, /*hidden argument*/NULL); // if (m_WeOwnTheBuffer) bool L_28 = __this->get_m_WeOwnTheBuffer_4(); if (!L_28) { goto IL_00a7; } } { // m_Buffer.Dispose(); NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * L_29 = __this->get_address_of_m_Buffer_1(); NativeArray_1_Dispose_mD88EDF062EFB4B0E6C8F925B5A4E47E97E687342((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)L_29, /*hidden argument*/NativeArray_1_Dispose_mD88EDF062EFB4B0E6C8F925B5A4E47E97E687342_RuntimeMethod_var); } IL_00a7: { // m_Buffer = newBuffer; NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_30 = V_4; __this->set_m_Buffer_1(L_30); // m_WeOwnTheBuffer = true; __this->set_m_WeOwnTheBuffer_4((bool)1); } IL_00b6: { // var eventPtr = (InputEvent*)((byte*)NativeArrayUnsafeUtility.GetUnsafeBufferPointerWithoutChecks(m_Buffer) + m_SizeInBytes); NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_31 = __this->get_m_Buffer_1(); void* L_32; L_32 = NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8(L_31, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8_RuntimeMethod_var); int64_t L_33 = __this->get_m_SizeInBytes_2(); V_2 = (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)((void*)il2cpp_codegen_add((intptr_t)L_32, (intptr_t)((intptr_t)L_33))); // eventPtr->sizeInBytes = (uint)sizeInBytes; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_34 = V_2; int32_t L_35 = ___sizeInBytes0; InputEvent_set_sizeInBytes_m9352C705F40BF3648701BFCAAF3C202C8462EA99((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_34, L_35, /*hidden argument*/NULL); // m_SizeInBytes += alignedSizeInBytes; int64_t L_36 = __this->get_m_SizeInBytes_2(); int32_t L_37 = V_0; __this->set_m_SizeInBytes_2(((int64_t)il2cpp_codegen_add((int64_t)L_36, (int64_t)((int64_t)((int64_t)L_37))))); // ++m_EventCount; int32_t L_38 = __this->get_m_EventCount_3(); __this->set_m_EventCount_3(((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1))); // return eventPtr; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_39 = V_2; return (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(L_39); } } IL2CPP_EXTERN_C InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEventBuffer_AllocateEvent_m6B00F1F2E19EC9A1DA3F76CE0DBC5F1A825C1FAE_AdjustorThunk (RuntimeObject * __this, int32_t ___sizeInBytes0, int32_t ___capacityIncrementInBytes1, int32_t ___allocator2, const RuntimeMethod* method) { int32_t _offset = 1; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * _thisAdjusted = reinterpret_cast(__this + _offset); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * _returnValue; _returnValue = InputEventBuffer_AllocateEvent_m6B00F1F2E19EC9A1DA3F76CE0DBC5F1A825C1FAE(_thisAdjusted, ___sizeInBytes0, ___capacityIncrementInBytes1, ___allocator2, method); return _returnValue; } // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventBuffer::Contains(UnityEngine.InputSystem.LowLevel.InputEvent*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventBuffer_Contains_m3864E58540B137C12FF34860C5B863A9C2DA8BE1 (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } void* V_0 = NULL; { // if (eventPtr == null) InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_0 = ___eventPtr0; if ((!(((uintptr_t)L_0) == ((uintptr_t)((uintptr_t)0))))) { goto IL_0007; } } { // return false; return (bool)0; } IL_0007: { // if (sizeInBytes == 0) int64_t L_1; L_1 = InputEventBuffer_get_sizeInBytes_m026FE298C8E6BD5A6354CF22445743E108EBB338_inline((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)__this, /*hidden argument*/NULL); if (L_1) { goto IL_0011; } } { // return false; return (bool)0; } IL_0011: { // var bufferPtr = NativeArrayUnsafeUtility.GetUnsafeBufferPointerWithoutChecks(data); NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_2; L_2 = InputEventBuffer_get_data_m5E230CE9CC093445705ED34CDA93AF7527AF945B_inline((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)__this, /*hidden argument*/NULL); void* L_3; L_3 = NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8(L_2, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8_RuntimeMethod_var); V_0 = (void*)L_3; // if (eventPtr < bufferPtr) InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_4 = ___eventPtr0; void* L_5 = V_0; if ((!(((uintptr_t)L_4) < ((uintptr_t)L_5)))) { goto IL_0023; } } { // return false; return (bool)0; } IL_0023: { // if (sizeInBytes != BufferSizeUnknown && eventPtr >= (byte*)bufferPtr + sizeInBytes) int64_t L_6; L_6 = InputEventBuffer_get_sizeInBytes_m026FE298C8E6BD5A6354CF22445743E108EBB338_inline((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)__this, /*hidden argument*/NULL); if ((((int64_t)L_6) == ((int64_t)((int64_t)((int64_t)(-1)))))) { goto IL_003b; } } { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_7 = ___eventPtr0; void* L_8 = V_0; int64_t L_9; L_9 = InputEventBuffer_get_sizeInBytes_m026FE298C8E6BD5A6354CF22445743E108EBB338_inline((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)__this, /*hidden argument*/NULL); if ((!(((uintptr_t)L_7) >= ((uintptr_t)((void*)il2cpp_codegen_add((intptr_t)L_8, (intptr_t)((intptr_t)L_9))))))) { goto IL_003b; } } { // return false; return (bool)0; } IL_003b: { // return true; return (bool)1; } } IL2CPP_EXTERN_C bool InputEventBuffer_Contains_m3864E58540B137C12FF34860C5B863A9C2DA8BE1_AdjustorThunk (RuntimeObject * __this, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr0, const RuntimeMethod* method) { int32_t _offset = 1; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = InputEventBuffer_Contains_m3864E58540B137C12FF34860C5B863A9C2DA8BE1(_thisAdjusted, ___eventPtr0, method); return _returnValue; } // System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer_Reset_m35B27C04062C1C9C0B61207995552DC7DE57037C (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method) { { // m_EventCount = 0; __this->set_m_EventCount_3(0); // if (m_SizeInBytes != BufferSizeUnknown) int64_t L_0 = __this->get_m_SizeInBytes_2(); if ((((int64_t)L_0) == ((int64_t)((int64_t)((int64_t)(-1)))))) { goto IL_0019; } } { // m_SizeInBytes = 0; __this->set_m_SizeInBytes_2(((int64_t)((int64_t)0))); } IL_0019: { // } return; } } IL2CPP_EXTERN_C void InputEventBuffer_Reset_m35B27C04062C1C9C0B61207995552DC7DE57037C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * _thisAdjusted = reinterpret_cast(__this + _offset); InputEventBuffer_Reset_m35B27C04062C1C9C0B61207995552DC7DE57037C(_thisAdjusted, method); } // System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer::AdvanceToNextEvent(UnityEngine.InputSystem.LowLevel.InputEvent*&,UnityEngine.InputSystem.LowLevel.InputEvent*&,System.Int32&,System.Int32&,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer_AdvanceToNextEvent_m6BE416396F5A67F25CAB5BC34875E968ED894087 (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** ___currentReadPos0, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** ___currentWritePos1, int32_t* ___numEventsRetainedInBuffer2, int32_t* ___numRemainingEvents3, bool ___leaveEventInBuffer4, const RuntimeMethod* method) { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * V_0 = NULL; uint32_t V_1 = 0; { // var newReadPos = currentReadPos; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** L_0 = ___currentReadPos0; V_0 = (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(*((intptr_t*)L_0)); // if (numRemainingEvents > 1) int32_t* L_1 = ___numRemainingEvents3; int32_t L_2 = *((int32_t*)L_1); if ((((int32_t)L_2) <= ((int32_t)1))) { goto IL_0011; } } { // newReadPos = InputEvent.GetNextInMemory(currentReadPos); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** L_3 = ___currentReadPos0; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_4; L_4 = InputEvent_GetNextInMemory_m482607ACC1E6EAA665FE89A2FD8B6448FD4701BD((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(*((intptr_t*)L_3)), /*hidden argument*/NULL); V_0 = (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_4; } IL_0011: { // if (leaveEventInBuffer) bool L_5 = ___leaveEventInBuffer4; if (!L_5) { goto IL_0041; } } { // var numBytes = currentReadPos->sizeInBytes; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** L_6 = ___currentReadPos0; uint32_t L_7; L_7 = InputEvent_get_sizeInBytes_mFF08EC52AAEB650D04AFFFA2CDCEDECBC6DB0B59((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(*((intptr_t*)L_6)), /*hidden argument*/NULL); V_1 = L_7; // if (currentReadPos != currentWritePos) InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** L_8 = ___currentReadPos0; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** L_9 = ___currentWritePos1; if ((((intptr_t)(*((intptr_t*)L_8))) == ((intptr_t)(*((intptr_t*)L_9))))) { goto IL_002e; } } { // UnsafeUtility.MemMove(currentWritePos, currentReadPos, numBytes); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** L_10 = ___currentWritePos1; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** L_11 = ___currentReadPos0; uint32_t L_12 = V_1; UnsafeUtility_MemMove_m6C12AB5CCB2F11C9448F5F02ECD33F9E2E809395((void*)(void*)(*((intptr_t*)L_10)), (void*)(void*)(*((intptr_t*)L_11)), ((int64_t)((uint64_t)L_12)), /*hidden argument*/NULL); } IL_002e: { // currentWritePos = (InputEvent*)((byte*)currentWritePos + numBytes.AlignToMultipleOf(4)); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** L_13 = ___currentWritePos1; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** L_14 = ___currentWritePos1; uint32_t L_15 = V_1; uint32_t L_16; L_16 = NumberHelpers_AlignToMultipleOf_mAC36042E2A9F764DF404617DB262C5FB611212E7_inline(L_15, 4, /*hidden argument*/NULL); *((intptr_t*)L_13) = (intptr_t)((intptr_t)il2cpp_codegen_add((intptr_t)(*((intptr_t*)L_14)), (intptr_t)((uintptr_t)L_16))); // ++numEventsRetainedInBuffer; int32_t* L_17 = ___numEventsRetainedInBuffer2; int32_t* L_18 = ___numEventsRetainedInBuffer2; int32_t L_19 = *((int32_t*)L_18); *((int32_t*)L_17) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1)); } IL_0041: { // currentReadPos = newReadPos; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** L_20 = ___currentReadPos0; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_21 = V_0; *((intptr_t*)L_20) = (intptr_t)L_21; // --numRemainingEvents; int32_t* L_22 = ___numRemainingEvents3; int32_t* L_23 = ___numRemainingEvents3; int32_t L_24 = *((int32_t*)L_23); *((int32_t*)L_22) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1)); // } return; } } IL2CPP_EXTERN_C void InputEventBuffer_AdvanceToNextEvent_m6BE416396F5A67F25CAB5BC34875E968ED894087_AdjustorThunk (RuntimeObject * __this, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** ___currentReadPos0, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** ___currentWritePos1, int32_t* ___numEventsRetainedInBuffer2, int32_t* ___numRemainingEvents3, bool ___leaveEventInBuffer4, const RuntimeMethod* method) { int32_t _offset = 1; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * _thisAdjusted = reinterpret_cast(__this + _offset); InputEventBuffer_AdvanceToNextEvent_m6BE416396F5A67F25CAB5BC34875E968ED894087(_thisAdjusted, ___currentReadPos0, ___currentWritePos1, ___numEventsRetainedInBuffer2, ___numRemainingEvents3, ___leaveEventInBuffer4, method); } // System.Collections.Generic.IEnumerator`1 UnityEngine.InputSystem.LowLevel.InputEventBuffer::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventBuffer_GetEnumerator_m0C449DB54FA0569AC9103F2A790D41D9EF5A6D63 (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_tD8A07122686F8093CC59FC43AE479C73D2B32313_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return new Enumerator(this); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA L_0 = (*(InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)__this); Enumerator_tD8A07122686F8093CC59FC43AE479C73D2B32313 L_1; memset((&L_1), 0, sizeof(L_1)); Enumerator__ctor_mF2B9238CD99A84FC6EC1199461832FC9BC4077F3((&L_1), L_0, /*hidden argument*/NULL); Enumerator_tD8A07122686F8093CC59FC43AE479C73D2B32313 L_2 = L_1; RuntimeObject * L_3 = Box(Enumerator_tD8A07122686F8093CC59FC43AE479C73D2B32313_il2cpp_TypeInfo_var, &L_2); return (RuntimeObject*)L_3; } } IL2CPP_EXTERN_C RuntimeObject* InputEventBuffer_GetEnumerator_m0C449DB54FA0569AC9103F2A790D41D9EF5A6D63_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * _thisAdjusted = reinterpret_cast(__this + _offset); RuntimeObject* _returnValue; _returnValue = InputEventBuffer_GetEnumerator_m0C449DB54FA0569AC9103F2A790D41D9EF5A6D63(_thisAdjusted, method); return _returnValue; } // System.Collections.IEnumerator UnityEngine.InputSystem.LowLevel.InputEventBuffer::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventBuffer_System_Collections_IEnumerable_GetEnumerator_m7FD839859C71BA604A5EDE6BA9530260F6B9E842 (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method) { { // return GetEnumerator(); RuntimeObject* L_0; L_0 = InputEventBuffer_GetEnumerator_m0C449DB54FA0569AC9103F2A790D41D9EF5A6D63((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)__this, /*hidden argument*/NULL); return L_0; } } IL2CPP_EXTERN_C RuntimeObject* InputEventBuffer_System_Collections_IEnumerable_GetEnumerator_m7FD839859C71BA604A5EDE6BA9530260F6B9E842_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * _thisAdjusted = reinterpret_cast(__this + _offset); RuntimeObject* _returnValue; _returnValue = InputEventBuffer_System_Collections_IEnumerable_GetEnumerator_m7FD839859C71BA604A5EDE6BA9530260F6B9E842(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.LowLevel.InputEventBuffer::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer_Dispose_mE775668BD216C49FC5BA6F8DCED3600CFF7A6C66 (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mD88EDF062EFB4B0E6C8F925B5A4E47E97E687342_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // if (!m_WeOwnTheBuffer) bool L_0 = __this->get_m_WeOwnTheBuffer_4(); if (L_0) { goto IL_0009; } } { // return; return; } IL_0009: { // m_Buffer.Dispose(); NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * L_1 = __this->get_address_of_m_Buffer_1(); NativeArray_1_Dispose_mD88EDF062EFB4B0E6C8F925B5A4E47E97E687342((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)L_1, /*hidden argument*/NativeArray_1_Dispose_mD88EDF062EFB4B0E6C8F925B5A4E47E97E687342_RuntimeMethod_var); // m_WeOwnTheBuffer = false; __this->set_m_WeOwnTheBuffer_4((bool)0); // m_SizeInBytes = 0; __this->set_m_SizeInBytes_2(((int64_t)((int64_t)0))); // m_EventCount = 0; __this->set_m_EventCount_3(0); // } return; } } IL2CPP_EXTERN_C void InputEventBuffer_Dispose_mE775668BD216C49FC5BA6F8DCED3600CFF7A6C66_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * _thisAdjusted = reinterpret_cast(__this + _offset); InputEventBuffer_Dispose_mE775668BD216C49FC5BA6F8DCED3600CFF7A6C66(_thisAdjusted, method); } // UnityEngine.InputSystem.LowLevel.InputEventBuffer UnityEngine.InputSystem.LowLevel.InputEventBuffer::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA InputEventBuffer_Clone_mBF9DE5266B0A168D4FA53E8B722AF0E50A5C5D7F (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_CopyFrom_m14EBE56AB030E8DB4B1FC018F936A1E062FD7870_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_mED2AEAAEFBBE3F20D8E424582434019D3F94F9EF_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA V_0; memset((&V_0), 0, sizeof(V_0)); { // var clone = new InputEventBuffer(); il2cpp_codegen_initobj((&V_0), sizeof(InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA )); // if (m_Buffer.IsCreated) NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * L_0 = __this->get_address_of_m_Buffer_1(); bool L_1; L_1 = NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)L_0, /*hidden argument*/NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var); if (!L_1) { goto IL_0048; } } { // clone.m_Buffer = new NativeArray(m_Buffer.Length, Allocator.Persistent); NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * L_2 = __this->get_address_of_m_Buffer_1(); int32_t L_3; L_3 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)L_2)->___m_Length_1); NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_4; memset((&L_4), 0, sizeof(L_4)); NativeArray_1__ctor_mED2AEAAEFBBE3F20D8E424582434019D3F94F9EF((&L_4), L_3, 4, 1, /*hidden argument*/NativeArray_1__ctor_mED2AEAAEFBBE3F20D8E424582434019D3F94F9EF_RuntimeMethod_var); (&V_0)->set_m_Buffer_1(L_4); // clone.m_Buffer.CopyFrom(m_Buffer); NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * L_5 = (&V_0)->get_address_of_m_Buffer_1(); NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_6 = __this->get_m_Buffer_1(); NativeArray_1_CopyFrom_m14EBE56AB030E8DB4B1FC018F936A1E062FD7870((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)L_5, L_6, /*hidden argument*/NativeArray_1_CopyFrom_m14EBE56AB030E8DB4B1FC018F936A1E062FD7870_RuntimeMethod_var); // clone.m_WeOwnTheBuffer = true; (&V_0)->set_m_WeOwnTheBuffer_4((bool)1); } IL_0048: { // clone.m_SizeInBytes = m_SizeInBytes; int64_t L_7 = __this->get_m_SizeInBytes_2(); (&V_0)->set_m_SizeInBytes_2(L_7); // clone.m_EventCount = m_EventCount; int32_t L_8 = __this->get_m_EventCount_3(); (&V_0)->set_m_EventCount_3(L_8); // return clone; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA L_9 = V_0; return L_9; } } IL2CPP_EXTERN_C InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA InputEventBuffer_Clone_mBF9DE5266B0A168D4FA53E8B722AF0E50A5C5D7F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * _thisAdjusted = reinterpret_cast(__this + _offset); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA _returnValue; _returnValue = InputEventBuffer_Clone_mBF9DE5266B0A168D4FA53E8B722AF0E50A5C5D7F(_thisAdjusted, method); return _returnValue; } // System.Object UnityEngine.InputSystem.LowLevel.InputEventBuffer::System.ICloneable.Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InputEventBuffer_System_ICloneable_Clone_m92DD332780FE975B1AB1F88F51F32785D3906DEE (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return Clone(); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA L_0; L_0 = InputEventBuffer_Clone_mBF9DE5266B0A168D4FA53E8B722AF0E50A5C5D7F((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)__this, /*hidden argument*/NULL); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA L_1 = L_0; RuntimeObject * L_2 = Box(InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_il2cpp_TypeInfo_var, &L_1); return L_2; } } IL2CPP_EXTERN_C RuntimeObject * InputEventBuffer_System_ICloneable_Clone_m92DD332780FE975B1AB1F88F51F32785D3906DEE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * _thisAdjusted = reinterpret_cast(__this + _offset); RuntimeObject * _returnValue; _returnValue = InputEventBuffer_System_ICloneable_Clone_m92DD332780FE975B1AB1F88F51F32785D3906DEE(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.InputSystem.LowLevel.InputEventListener UnityEngine.InputSystem.LowLevel.InputEventListener::op_Addition(UnityEngine.InputSystem.LowLevel.InputEventListener,System.Action`2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917 InputEventListener_op_Addition_mD4685D253039B44ABCDD361AB4AED2AA5B513D64 (InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917 ____0, Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * ___callback1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * V_0 = NULL; bool V_1 = false; InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917 V_2; memset((&V_2), 0, sizeof(V_2)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { // if (callback == null) Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * L_0 = ___callback1; if (L_0) { goto IL_000e; } } { // throw new ArgumentNullException(nameof(callback)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDC71B380AFF23A38F6029B32B61C6943CB960350)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventListener_op_Addition_mD4685D253039B44ABCDD361AB4AED2AA5B513D64_RuntimeMethod_var))); } IL_000e: { // lock (InputSystem.s_Manager) IL2CPP_RUNTIME_CLASS_INIT(InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var); InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * L_2 = ((InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_StaticFields*)il2cpp_codegen_static_fields_for(InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var))->get_s_Manager_2(); V_0 = L_2; V_1 = (bool)0; } IL_0016: try { // begin try (depth: 1) InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * L_3 = V_0; Monitor_Enter_m588C16057E70F436C528A800D32546E987CAF1BD(L_3, (bool*)(&V_1), /*hidden argument*/NULL); // InputSystem.s_Manager.onEvent += callback; IL2CPP_RUNTIME_CLASS_INIT(InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var); InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * L_4 = ((InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_StaticFields*)il2cpp_codegen_static_fields_for(InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var))->get_s_Manager_2(); Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * L_5 = ___callback1; NullCheck(L_4); InputManager_add_onEvent_mB129956D2C9545F5693CD26AB5A6E206752F3B1B(L_4, L_5, /*hidden argument*/NULL); IL2CPP_LEAVE(0x35, FINALLY_002b); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_002b; } FINALLY_002b: { // begin finally (depth: 1) { bool L_6 = V_1; if (!L_6) { goto IL_0034; } } IL_002e: { InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * L_7 = V_0; Monitor_Exit_m62365CE1CF6AD0E7396CEEB926F7B0C3FA8CABA1(L_7, /*hidden argument*/NULL); } IL_0034: { IL2CPP_END_FINALLY(43) } } // end finally (depth: 1) IL2CPP_CLEANUP(43) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x35, IL_0035) } IL_0035: { // return default; il2cpp_codegen_initobj((&V_2), sizeof(InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917 )); InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917 L_8 = V_2; return L_8; } } // UnityEngine.InputSystem.LowLevel.InputEventListener UnityEngine.InputSystem.LowLevel.InputEventListener::op_Subtraction(UnityEngine.InputSystem.LowLevel.InputEventListener,System.Action`2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917 InputEventListener_op_Subtraction_m9032C4F204EECE5CC6D80A9B01F7DB796C78A576 (InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917 ____0, Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * ___callback1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * V_0 = NULL; bool V_1 = false; InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917 V_2; memset((&V_2), 0, sizeof(V_2)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { // if (callback == null) Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * L_0 = ___callback1; if (L_0) { goto IL_000e; } } { // throw new ArgumentNullException(nameof(callback)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDC71B380AFF23A38F6029B32B61C6943CB960350)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventListener_op_Subtraction_m9032C4F204EECE5CC6D80A9B01F7DB796C78A576_RuntimeMethod_var))); } IL_000e: { // lock (InputSystem.s_Manager) IL2CPP_RUNTIME_CLASS_INIT(InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var); InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * L_2 = ((InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_StaticFields*)il2cpp_codegen_static_fields_for(InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var))->get_s_Manager_2(); V_0 = L_2; V_1 = (bool)0; } IL_0016: try { // begin try (depth: 1) InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * L_3 = V_0; Monitor_Enter_m588C16057E70F436C528A800D32546E987CAF1BD(L_3, (bool*)(&V_1), /*hidden argument*/NULL); // InputSystem.s_Manager.onEvent -= callback; IL2CPP_RUNTIME_CLASS_INIT(InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var); InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * L_4 = ((InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_StaticFields*)il2cpp_codegen_static_fields_for(InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var))->get_s_Manager_2(); Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * L_5 = ___callback1; NullCheck(L_4); InputManager_remove_onEvent_m15293542B21C67863F4A0AD7FD510E6946BC39EE(L_4, L_5, /*hidden argument*/NULL); IL2CPP_LEAVE(0x35, FINALLY_002b); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_002b; } FINALLY_002b: { // begin finally (depth: 1) { bool L_6 = V_1; if (!L_6) { goto IL_0034; } } IL_002e: { InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * L_7 = V_0; Monitor_Exit_m62365CE1CF6AD0E7396CEEB926F7B0C3FA8CABA1(L_7, /*hidden argument*/NULL); } IL_0034: { IL2CPP_END_FINALLY(43) } } // end finally (depth: 1) IL2CPP_CLEANUP(43) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x35, IL_0035) } IL_0035: { // return default; il2cpp_codegen_initobj((&V_2), sizeof(InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917 )); InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917 L_8 = V_2; return L_8; } } // System.IDisposable UnityEngine.InputSystem.LowLevel.InputEventListener::Subscribe(System.IObserver`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventListener_Subscribe_mD8081FB49E99DAF2FE5921B2B899F24A9E275A26 (InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917 * __this, RuntimeObject* ___observer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DisposableObserver_t3EA358A188D2946104E227EC7510A1247577761E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_AppendWithCapacity_mB4EC1324E421F4F6478549E7CE106DBE8B9FC3E7_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObserverState_t25A763CEA3E3A65975BE34C371224BCAC14681A8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (s_ObserverState == null) ObserverState_t25A763CEA3E3A65975BE34C371224BCAC14681A8 * L_0 = ((InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917_il2cpp_TypeInfo_var))->get_s_ObserverState_0(); if (L_0) { goto IL_0011; } } { // s_ObserverState = new ObserverState(); ObserverState_t25A763CEA3E3A65975BE34C371224BCAC14681A8 * L_1 = (ObserverState_t25A763CEA3E3A65975BE34C371224BCAC14681A8 *)il2cpp_codegen_object_new(ObserverState_t25A763CEA3E3A65975BE34C371224BCAC14681A8_il2cpp_TypeInfo_var); ObserverState__ctor_mA92E04561FF3EA8C8379C6AB99AFDD485677827E(L_1, /*hidden argument*/NULL); ((InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917_il2cpp_TypeInfo_var))->set_s_ObserverState_0(L_1); } IL_0011: { // if (s_ObserverState.observers.length == 0) ObserverState_t25A763CEA3E3A65975BE34C371224BCAC14681A8 * L_2 = ((InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917_il2cpp_TypeInfo_var))->get_s_ObserverState_0(); NullCheck(L_2); InlinedArray_1_t13A70E27E7343557A3762B3A0536C9EC58637950 * L_3 = L_2->get_address_of_observers_0(); int32_t L_4 = L_3->get_length_0(); if (L_4) { goto IL_0036; } } { // InputSystem.s_Manager.onEvent += s_ObserverState.onEventDelegate; IL2CPP_RUNTIME_CLASS_INIT(InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var); InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * L_5 = ((InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_StaticFields*)il2cpp_codegen_static_fields_for(InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var))->get_s_Manager_2(); ObserverState_t25A763CEA3E3A65975BE34C371224BCAC14681A8 * L_6 = ((InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917_il2cpp_TypeInfo_var))->get_s_ObserverState_0(); NullCheck(L_6); Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * L_7 = L_6->get_onEventDelegate_1(); NullCheck(L_5); InputManager_add_onEvent_mB129956D2C9545F5693CD26AB5A6E206752F3B1B(L_5, L_7, /*hidden argument*/NULL); } IL_0036: { // s_ObserverState.observers.AppendWithCapacity(observer); ObserverState_t25A763CEA3E3A65975BE34C371224BCAC14681A8 * L_8 = ((InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917_il2cpp_TypeInfo_var))->get_s_ObserverState_0(); NullCheck(L_8); InlinedArray_1_t13A70E27E7343557A3762B3A0536C9EC58637950 * L_9 = L_8->get_address_of_observers_0(); RuntimeObject* L_10 = ___observer0; int32_t L_11; L_11 = InlinedArray_1_AppendWithCapacity_mB4EC1324E421F4F6478549E7CE106DBE8B9FC3E7((InlinedArray_1_t13A70E27E7343557A3762B3A0536C9EC58637950 *)L_9, L_10, ((int32_t)10), /*hidden argument*/InlinedArray_1_AppendWithCapacity_mB4EC1324E421F4F6478549E7CE106DBE8B9FC3E7_RuntimeMethod_var); // return new DisposableObserver { observer = observer }; DisposableObserver_t3EA358A188D2946104E227EC7510A1247577761E * L_12 = (DisposableObserver_t3EA358A188D2946104E227EC7510A1247577761E *)il2cpp_codegen_object_new(DisposableObserver_t3EA358A188D2946104E227EC7510A1247577761E_il2cpp_TypeInfo_var); DisposableObserver__ctor_m14361AE51E787BAC329B9F3EBE5A848AB06E7FD1(L_12, /*hidden argument*/NULL); DisposableObserver_t3EA358A188D2946104E227EC7510A1247577761E * L_13 = L_12; RuntimeObject* L_14 = ___observer0; NullCheck(L_13); L_13->set_observer_0(L_14); return L_13; } } IL2CPP_EXTERN_C RuntimeObject* InputEventListener_Subscribe_mD8081FB49E99DAF2FE5921B2B899F24A9E275A26_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___observer0, const RuntimeMethod* method) { int32_t _offset = 1; InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917 * _thisAdjusted = reinterpret_cast(__this + _offset); RuntimeObject* _returnValue; _returnValue = InputEventListener_Subscribe_mD8081FB49E99DAF2FE5921B2B899F24A9E275A26(_thisAdjusted, ___observer0, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void UnityEngine.InputSystem.LowLevel.InputEventPtr::.ctor(UnityEngine.InputSystem.LowLevel.InputEvent*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr__ctor_m9EBF5134C7CC18F85542C146674EAE1BF7F29110 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr0, const RuntimeMethod* method) { { // m_EventPtr = eventPtr; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_0 = ___eventPtr0; __this->set_m_EventPtr_0((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_0); // } return; } } IL2CPP_EXTERN_C void InputEventPtr__ctor_m9EBF5134C7CC18F85542C146674EAE1BF7F29110_AdjustorThunk (RuntimeObject * __this, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr0, const RuntimeMethod* method) { int32_t _offset = 1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * _thisAdjusted = reinterpret_cast(__this + _offset); InputEventPtr__ctor_m9EBF5134C7CC18F85542C146674EAE1BF7F29110_inline(_thisAdjusted, ___eventPtr0, method); } // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::get_valid() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_get_valid_m89FC8685702EDBBB434A0576EED219CA4BF0630C (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method) { { // public bool valid => m_EventPtr != null; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_0 = __this->get_m_EventPtr_0(); return (bool)((((int32_t)((((intptr_t)L_0) == ((intptr_t)((uintptr_t)0)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } IL2CPP_EXTERN_C bool InputEventPtr_get_valid_m89FC8685702EDBBB434A0576EED219CA4BF0630C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = InputEventPtr_get_valid_m89FC8685702EDBBB434A0576EED219CA4BF0630C(_thisAdjusted, method); return _returnValue; } // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::get_handled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_get_handled_m7D3DE6A9CC2CB8101B36FA35CFC5D1B1DBFB02E9 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method) { { // if (!valid) bool L_0; L_0 = InputEventPtr_get_valid_m89FC8685702EDBBB434A0576EED219CA4BF0630C((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000a; } } { // return false; return (bool)0; } IL_000a: { // return m_EventPtr->handled; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_1 = __this->get_m_EventPtr_0(); bool L_2; L_2 = InputEvent_get_handled_m99F98A3B1E3678E4EFD0B6893916F315A027E151((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_1, /*hidden argument*/NULL); return L_2; } } IL2CPP_EXTERN_C bool InputEventPtr_get_handled_m7D3DE6A9CC2CB8101B36FA35CFC5D1B1DBFB02E9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = InputEventPtr_get_handled_m7D3DE6A9CC2CB8101B36FA35CFC5D1B1DBFB02E9(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.LowLevel.InputEventPtr::set_handled(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_handled_mDBBEF41220F96FEAD529994EE8615A3F23640A2A (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, bool ___value0, const RuntimeMethod* method) { { // if (!valid) bool L_0; L_0 = InputEventPtr_get_valid_m89FC8685702EDBBB434A0576EED219CA4BF0630C((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_0013; } } { // throw new InvalidOperationException("The InputEventPtr is not valid."); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE2F45012730FED3906C009972A37FF803AFC44F5)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_set_handled_mDBBEF41220F96FEAD529994EE8615A3F23640A2A_RuntimeMethod_var))); } IL_0013: { // m_EventPtr->handled = value; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_2 = __this->get_m_EventPtr_0(); bool L_3 = ___value0; InputEvent_set_handled_m4B9B0F6A38E59907F18BFC1AB1CC2CB41C6A9FE1((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_2, L_3, /*hidden argument*/NULL); // } return; } } IL2CPP_EXTERN_C void InputEventPtr_set_handled_mDBBEF41220F96FEAD529994EE8615A3F23640A2A_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { int32_t _offset = 1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * _thisAdjusted = reinterpret_cast(__this + _offset); InputEventPtr_set_handled_mDBBEF41220F96FEAD529994EE8615A3F23640A2A(_thisAdjusted, ___value0, method); } // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventPtr::get_id() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventPtr_get_id_mF1FFF080C017FDE5A482DF76116129D427B9EEC8 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method) { { // if (!valid) bool L_0; L_0 = InputEventPtr_get_valid_m89FC8685702EDBBB434A0576EED219CA4BF0630C((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000a; } } { // return 0; return 0; } IL_000a: { // return m_EventPtr->eventId; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_1 = __this->get_m_EventPtr_0(); int32_t L_2; L_2 = InputEvent_get_eventId_m4F06A9EDDDED1926D8A9F4FA4C77AC26F4F7163B((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_1, /*hidden argument*/NULL); return L_2; } } IL2CPP_EXTERN_C int32_t InputEventPtr_get_id_mF1FFF080C017FDE5A482DF76116129D427B9EEC8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = InputEventPtr_get_id_mF1FFF080C017FDE5A482DF76116129D427B9EEC8(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.LowLevel.InputEventPtr::set_id(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_id_mEEEAB75867CF17917ED10E499188C92389CEF1AC (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, int32_t ___value0, const RuntimeMethod* method) { { // if (!valid) bool L_0; L_0 = InputEventPtr_get_valid_m89FC8685702EDBBB434A0576EED219CA4BF0630C((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_0013; } } { // throw new InvalidOperationException("The InputEventPtr is not valid."); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE2F45012730FED3906C009972A37FF803AFC44F5)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_set_id_mEEEAB75867CF17917ED10E499188C92389CEF1AC_RuntimeMethod_var))); } IL_0013: { // m_EventPtr->eventId = value; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_2 = __this->get_m_EventPtr_0(); int32_t L_3 = ___value0; InputEvent_set_eventId_m14193345A631832F1933EC51A08F622E432B7385((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_2, L_3, /*hidden argument*/NULL); // } return; } } IL2CPP_EXTERN_C void InputEventPtr_set_id_mEEEAB75867CF17917ED10E499188C92389CEF1AC_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method) { int32_t _offset = 1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * _thisAdjusted = reinterpret_cast(__this + _offset); InputEventPtr_set_id_mEEEAB75867CF17917ED10E499188C92389CEF1AC(_thisAdjusted, ___value0, method); } // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEventPtr::get_type() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 InputEventPtr_get_type_mC6EF58B6562D5B232170DC64DC0F1A99FE996BD2 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method) { FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 V_0; memset((&V_0), 0, sizeof(V_0)); { // if (!valid) bool L_0; L_0 = InputEventPtr_get_valid_m89FC8685702EDBBB434A0576EED219CA4BF0630C((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_0012; } } { // return new FourCC(); il2cpp_codegen_initobj((&V_0), sizeof(FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 )); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_1 = V_0; return L_1; } IL_0012: { // return m_EventPtr->type; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_2 = __this->get_m_EventPtr_0(); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_3; L_3 = InputEvent_get_type_mF27E6FB5A23D3E5AA01386213E9E5248CDC27993((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_2, /*hidden argument*/NULL); return L_3; } } IL2CPP_EXTERN_C FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 InputEventPtr_get_type_mC6EF58B6562D5B232170DC64DC0F1A99FE996BD2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * _thisAdjusted = reinterpret_cast(__this + _offset); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 _returnValue; _returnValue = InputEventPtr_get_type_mC6EF58B6562D5B232170DC64DC0F1A99FE996BD2(_thisAdjusted, method); return _returnValue; } // System.UInt32 UnityEngine.InputSystem.LowLevel.InputEventPtr::get_sizeInBytes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEventPtr_get_sizeInBytes_m4607C53C6A41A6BE5238609D7C1E4A2C169D5712 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method) { { // if (!valid) bool L_0; L_0 = InputEventPtr_get_valid_m89FC8685702EDBBB434A0576EED219CA4BF0630C((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000a; } } { // return 0; return 0; } IL_000a: { // return m_EventPtr->sizeInBytes; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_1 = __this->get_m_EventPtr_0(); uint32_t L_2; L_2 = InputEvent_get_sizeInBytes_mFF08EC52AAEB650D04AFFFA2CDCEDECBC6DB0B59((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_1, /*hidden argument*/NULL); return L_2; } } IL2CPP_EXTERN_C uint32_t InputEventPtr_get_sizeInBytes_m4607C53C6A41A6BE5238609D7C1E4A2C169D5712_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * _thisAdjusted = reinterpret_cast(__this + _offset); uint32_t _returnValue; _returnValue = InputEventPtr_get_sizeInBytes_m4607C53C6A41A6BE5238609D7C1E4A2C169D5712(_thisAdjusted, method); return _returnValue; } // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventPtr::get_deviceId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventPtr_get_deviceId_m1FECADA1BAB8F96780A21A5B374C96D9FC2A9109 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method) { { // if (!valid) bool L_0; L_0 = InputEventPtr_get_valid_m89FC8685702EDBBB434A0576EED219CA4BF0630C((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000a; } } { // return InputDevice.InvalidDeviceId; return 0; } IL_000a: { // return m_EventPtr->deviceId; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_1 = __this->get_m_EventPtr_0(); int32_t L_2; L_2 = InputEvent_get_deviceId_mC5FAD8D65885CC6B1312EB516AA58917FD69BE1F((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_1, /*hidden argument*/NULL); return L_2; } } IL2CPP_EXTERN_C int32_t InputEventPtr_get_deviceId_m1FECADA1BAB8F96780A21A5B374C96D9FC2A9109_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = InputEventPtr_get_deviceId_m1FECADA1BAB8F96780A21A5B374C96D9FC2A9109(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.LowLevel.InputEventPtr::set_deviceId(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_deviceId_m6B7CD11430FABB07A8DD7A04C184CDE870B41F34 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, int32_t ___value0, const RuntimeMethod* method) { { // if (!valid) bool L_0; L_0 = InputEventPtr_get_valid_m89FC8685702EDBBB434A0576EED219CA4BF0630C((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_0013; } } { // throw new InvalidOperationException("The InputEventPtr is not valid."); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE2F45012730FED3906C009972A37FF803AFC44F5)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_set_deviceId_m6B7CD11430FABB07A8DD7A04C184CDE870B41F34_RuntimeMethod_var))); } IL_0013: { // m_EventPtr->deviceId = value; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_2 = __this->get_m_EventPtr_0(); int32_t L_3 = ___value0; InputEvent_set_deviceId_m7B19E7F9572351E200808B688AD1D3BD192D966C((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_2, L_3, /*hidden argument*/NULL); // } return; } } IL2CPP_EXTERN_C void InputEventPtr_set_deviceId_m6B7CD11430FABB07A8DD7A04C184CDE870B41F34_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method) { int32_t _offset = 1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * _thisAdjusted = reinterpret_cast(__this + _offset); InputEventPtr_set_deviceId_m6B7CD11430FABB07A8DD7A04C184CDE870B41F34(_thisAdjusted, ___value0, method); } // System.Double UnityEngine.InputSystem.LowLevel.InputEventPtr::get_time() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputEventPtr_get_time_m18E988668C6CE181A0054541214F371A53387F89 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method) { { // get => valid ? m_EventPtr->time : 0.0; bool L_0; L_0 = InputEventPtr_get_valid_m89FC8685702EDBBB434A0576EED219CA4BF0630C((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_0012; } } { return (0.0); } IL_0012: { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_1 = __this->get_m_EventPtr_0(); double L_2; L_2 = InputEvent_get_time_m49DD96331359ADA906F4CA867991D58F1278CE02((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_1, /*hidden argument*/NULL); return L_2; } } IL2CPP_EXTERN_C double InputEventPtr_get_time_m18E988668C6CE181A0054541214F371A53387F89_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * _thisAdjusted = reinterpret_cast(__this + _offset); double _returnValue; _returnValue = InputEventPtr_get_time_m18E988668C6CE181A0054541214F371A53387F89(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.LowLevel.InputEventPtr::set_time(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_time_m6A4F813044110C164AC571CADE60ED7623A98710 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, double ___value0, const RuntimeMethod* method) { { // if (!valid) bool L_0; L_0 = InputEventPtr_get_valid_m89FC8685702EDBBB434A0576EED219CA4BF0630C((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_0013; } } { // throw new InvalidOperationException("The InputEventPtr is not valid."); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE2F45012730FED3906C009972A37FF803AFC44F5)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_set_time_m6A4F813044110C164AC571CADE60ED7623A98710_RuntimeMethod_var))); } IL_0013: { // m_EventPtr->time = value; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_2 = __this->get_m_EventPtr_0(); double L_3 = ___value0; InputEvent_set_time_m026DE5343264E144044FB92A15264BDCDF79B962((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_2, L_3, /*hidden argument*/NULL); // } return; } } IL2CPP_EXTERN_C void InputEventPtr_set_time_m6A4F813044110C164AC571CADE60ED7623A98710_AdjustorThunk (RuntimeObject * __this, double ___value0, const RuntimeMethod* method) { int32_t _offset = 1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * _thisAdjusted = reinterpret_cast(__this + _offset); InputEventPtr_set_time_m6A4F813044110C164AC571CADE60ED7623A98710(_thisAdjusted, ___value0, method); } // System.Double UnityEngine.InputSystem.LowLevel.InputEventPtr::get_internalTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputEventPtr_get_internalTime_m2EB7E0D18A1C720BCCC17363F5FEA88DD482A067 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method) { { // get => valid ? m_EventPtr->internalTime : 0.0; bool L_0; L_0 = InputEventPtr_get_valid_m89FC8685702EDBBB434A0576EED219CA4BF0630C((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_0012; } } { return (0.0); } IL_0012: { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_1 = __this->get_m_EventPtr_0(); double L_2; L_2 = InputEvent_get_internalTime_mCBF9589869296BDD0EE4093C6F3B2B359BA25BB6((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_1, /*hidden argument*/NULL); return L_2; } } IL2CPP_EXTERN_C double InputEventPtr_get_internalTime_m2EB7E0D18A1C720BCCC17363F5FEA88DD482A067_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * _thisAdjusted = reinterpret_cast(__this + _offset); double _returnValue; _returnValue = InputEventPtr_get_internalTime_m2EB7E0D18A1C720BCCC17363F5FEA88DD482A067(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.LowLevel.InputEventPtr::set_internalTime(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_internalTime_mD17903386D19A7B1232C00AD60E5C37C9C9CC53D (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, double ___value0, const RuntimeMethod* method) { { // if (!valid) bool L_0; L_0 = InputEventPtr_get_valid_m89FC8685702EDBBB434A0576EED219CA4BF0630C((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_0013; } } { // throw new InvalidOperationException("The InputEventPtr is not valid."); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE2F45012730FED3906C009972A37FF803AFC44F5)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_set_internalTime_mD17903386D19A7B1232C00AD60E5C37C9C9CC53D_RuntimeMethod_var))); } IL_0013: { // m_EventPtr->internalTime = value; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_2 = __this->get_m_EventPtr_0(); double L_3 = ___value0; InputEvent_set_internalTime_mFA42266AFBEC1496D72489EAD34D459D32DA751A((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_2, L_3, /*hidden argument*/NULL); // } return; } } IL2CPP_EXTERN_C void InputEventPtr_set_internalTime_mD17903386D19A7B1232C00AD60E5C37C9C9CC53D_AdjustorThunk (RuntimeObject * __this, double ___value0, const RuntimeMethod* method) { int32_t _offset = 1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * _thisAdjusted = reinterpret_cast(__this + _offset); InputEventPtr_set_internalTime_mD17903386D19A7B1232C00AD60E5C37C9C9CC53D(_thisAdjusted, ___value0, method); } // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventPtr::get_data() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEventPtr_get_data_m23324B1E4068E48168D6D06CEF9CC061D1E2D694 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method) { { // public InputEvent* data => m_EventPtr; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_0 = __this->get_m_EventPtr_0(); return (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(L_0); } } IL2CPP_EXTERN_C InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEventPtr_get_data_m23324B1E4068E48168D6D06CEF9CC061D1E2D694_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * _thisAdjusted = reinterpret_cast(__this + _offset); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * _returnValue; _returnValue = InputEventPtr_get_data_m23324B1E4068E48168D6D06CEF9CC061D1E2D694_inline(_thisAdjusted, method); return _returnValue; } // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEventPtr::get_stateFormat() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 InputEventPtr_get_stateFormat_m7E15CDB67CA516425CED0D1CA7799EC65D2FD889 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method) { FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 V_0; memset((&V_0), 0, sizeof(V_0)); InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 V_1; memset((&V_1), 0, sizeof(V_1)); { // var eventType = type; FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_0; L_0 = InputEventPtr_get_type_mC6EF58B6562D5B232170DC64DC0F1A99FE996BD2((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this, /*hidden argument*/NULL); V_0 = L_0; // if (eventType == StateEvent.Type) FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_1 = V_0; FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_2; L_2 = FourCC_op_Implicit_m1EF35613D75316DA0F135114B72093EBB3D04356(((int32_t)1398030676), /*hidden argument*/NULL); bool L_3; L_3 = FourCC_op_Equality_mF8F9867D06AB0FE50CBB895EE0A1F5CEA211CF7C(L_1, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_002a; } } { // return StateEvent.FromUnchecked(this)->stateFormat; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_4 = (*(InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this); StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 * L_5; L_5 = StateEvent_FromUnchecked_mBA1C200CACC998DEA3063B300C6B93EAF7E71DD1(L_4, /*hidden argument*/NULL); NullCheck(L_5); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_6 = L_5->get_stateFormat_3(); return L_6; } IL_002a: { // if (eventType == DeltaStateEvent.Type) FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_7 = V_0; FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_8; L_8 = FourCC_op_Implicit_m1EF35613D75316DA0F135114B72093EBB3D04356(((int32_t)1145852993), /*hidden argument*/NULL); bool L_9; L_9 = FourCC_op_Equality_mF8F9867D06AB0FE50CBB895EE0A1F5CEA211CF7C(L_7, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_004d; } } { // return DeltaStateEvent.FromUnchecked(this)->stateFormat; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_10 = (*(InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this); DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4 * L_11; L_11 = DeltaStateEvent_FromUnchecked_m12565448560ACE283BD588A131E71A6E85F74F3C(L_10, /*hidden argument*/NULL); NullCheck(L_11); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_12 = L_11->get_stateFormat_2(); return L_12; } IL_004d: { // throw new InvalidOperationException("Event must be a StateEvent or DeltaStateEvent but is " + this); InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_13 = (*(InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this); V_1 = L_13; String_t* L_14; L_14 = InputEventPtr_ToString_mCAF5502A72B493AB20F889565AEA45814B8F05FF((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&V_1), /*hidden argument*/NULL); String_t* L_15; L_15 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8F6CFBA1DD39F197A0470DD4831EDB73FF9AA184)), L_14, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_16 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_16, L_15, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_get_stateFormat_m7E15CDB67CA516425CED0D1CA7799EC65D2FD889_RuntimeMethod_var))); } } IL2CPP_EXTERN_C FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 InputEventPtr_get_stateFormat_m7E15CDB67CA516425CED0D1CA7799EC65D2FD889_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * _thisAdjusted = reinterpret_cast(__this + _offset); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 _returnValue; _returnValue = InputEventPtr_get_stateFormat_m7E15CDB67CA516425CED0D1CA7799EC65D2FD889(_thisAdjusted, method); return _returnValue; } // System.UInt32 UnityEngine.InputSystem.LowLevel.InputEventPtr::get_stateSizeInBytes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEventPtr_get_stateSizeInBytes_m686622EC45E20A90321F176DC7F54B9EE9E89383 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventPtr_IsA_TisDeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4_m52B5875F2EACBC85E22AF1807227E9A2C83FEC3E_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventPtr_IsA_TisStateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3_m91EF69757639C51EDFCFAFA88EE04CE0D6C1795E_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 V_0; memset((&V_0), 0, sizeof(V_0)); { // if (IsA()) bool L_0; L_0 = InputEventPtr_IsA_TisStateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3_m91EF69757639C51EDFCFAFA88EE04CE0D6C1795E((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this, /*hidden argument*/InputEventPtr_IsA_TisStateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3_m91EF69757639C51EDFCFAFA88EE04CE0D6C1795E_RuntimeMethod_var); if (!L_0) { goto IL_0019; } } { // return StateEvent.From(this)->stateSizeInBytes; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_1 = (*(InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this); StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 * L_2; L_2 = StateEvent_From_m65D0068AF13678DC33ED0A4B2B83B352417D8FE3(L_1, /*hidden argument*/NULL); uint32_t L_3; L_3 = StateEvent_get_stateSizeInBytes_mF7D46CB26D7C0793ED3C699357F315102093EE65((StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 *)(StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 *)L_2, /*hidden argument*/NULL); return L_3; } IL_0019: { // if (IsA()) bool L_4; L_4 = InputEventPtr_IsA_TisDeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4_m52B5875F2EACBC85E22AF1807227E9A2C83FEC3E((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this, /*hidden argument*/InputEventPtr_IsA_TisDeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4_m52B5875F2EACBC85E22AF1807227E9A2C83FEC3E_RuntimeMethod_var); if (!L_4) { goto IL_0032; } } { // return DeltaStateEvent.From(this)->deltaStateSizeInBytes; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_5 = (*(InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this); DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4 * L_6; L_6 = DeltaStateEvent_From_mDC9F1D5AE9419F8193F22CD34C8B6E26DF466F5D(L_5, /*hidden argument*/NULL); uint32_t L_7; L_7 = DeltaStateEvent_get_deltaStateSizeInBytes_m9BED7AD9113828078EFB6E9271AC74055964782E((DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4 *)(DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4 *)L_6, /*hidden argument*/NULL); return L_7; } IL_0032: { // throw new InvalidOperationException("Event must be a StateEvent or DeltaStateEvent but is " + this); InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_8 = (*(InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this); V_0 = L_8; String_t* L_9; L_9 = InputEventPtr_ToString_mCAF5502A72B493AB20F889565AEA45814B8F05FF((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&V_0), /*hidden argument*/NULL); String_t* L_10; L_10 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8F6CFBA1DD39F197A0470DD4831EDB73FF9AA184)), L_9, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_11 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_11, L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_get_stateSizeInBytes_m686622EC45E20A90321F176DC7F54B9EE9E89383_RuntimeMethod_var))); } } IL2CPP_EXTERN_C uint32_t InputEventPtr_get_stateSizeInBytes_m686622EC45E20A90321F176DC7F54B9EE9E89383_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * _thisAdjusted = reinterpret_cast(__this + _offset); uint32_t _returnValue; _returnValue = InputEventPtr_get_stateSizeInBytes_m686622EC45E20A90321F176DC7F54B9EE9E89383(_thisAdjusted, method); return _returnValue; } // System.UInt32 UnityEngine.InputSystem.LowLevel.InputEventPtr::get_stateOffset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEventPtr_get_stateOffset_mD9A4DE9CBDA45CABC3D351B14C6C4F1945E5D454 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventPtr_IsA_TisDeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4_m52B5875F2EACBC85E22AF1807227E9A2C83FEC3E_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 V_0; memset((&V_0), 0, sizeof(V_0)); { // if (IsA()) bool L_0; L_0 = InputEventPtr_IsA_TisDeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4_m52B5875F2EACBC85E22AF1807227E9A2C83FEC3E((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this, /*hidden argument*/InputEventPtr_IsA_TisDeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4_m52B5875F2EACBC85E22AF1807227E9A2C83FEC3E_RuntimeMethod_var); if (!L_0) { goto IL_0019; } } { // return DeltaStateEvent.From(this)->stateOffset; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_1 = (*(InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this); DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4 * L_2; L_2 = DeltaStateEvent_From_mDC9F1D5AE9419F8193F22CD34C8B6E26DF466F5D(L_1, /*hidden argument*/NULL); NullCheck(L_2); uint32_t L_3 = L_2->get_stateOffset_3(); return L_3; } IL_0019: { // throw new InvalidOperationException("Event must be a DeltaStateEvent but is " + this); InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_4 = (*(InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this); V_0 = L_4; String_t* L_5; L_5 = InputEventPtr_ToString_mCAF5502A72B493AB20F889565AEA45814B8F05FF((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&V_0), /*hidden argument*/NULL); String_t* L_6; L_6 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5C82E0DD83FAB77ECA656BE8D48C1899B25B0815)), L_5, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_7 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_get_stateOffset_mD9A4DE9CBDA45CABC3D351B14C6C4F1945E5D454_RuntimeMethod_var))); } } IL2CPP_EXTERN_C uint32_t InputEventPtr_get_stateOffset_mD9A4DE9CBDA45CABC3D351B14C6C4F1945E5D454_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * _thisAdjusted = reinterpret_cast(__this + _offset); uint32_t _returnValue; _returnValue = InputEventPtr_get_stateOffset_mD9A4DE9CBDA45CABC3D351B14C6C4F1945E5D454(_thisAdjusted, method); return _returnValue; } // UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.InputEventPtr::Next() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 InputEventPtr_Next_m580A3672177EA9ECAE635D02199927FCE695314A (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method) { InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 V_0; memset((&V_0), 0, sizeof(V_0)); { // if (!valid) bool L_0; L_0 = InputEventPtr_get_valid_m89FC8685702EDBBB434A0576EED219CA4BF0630C((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_0012; } } { // return new InputEventPtr(); il2cpp_codegen_initobj((&V_0), sizeof(InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 )); InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_1 = V_0; return L_1; } IL_0012: { // return new InputEventPtr(InputEvent.GetNextInMemory(m_EventPtr)); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_2 = __this->get_m_EventPtr_0(); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_3; L_3 = InputEvent_GetNextInMemory_m482607ACC1E6EAA665FE89A2FD8B6448FD4701BD((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_2, /*hidden argument*/NULL); InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_4; memset((&L_4), 0, sizeof(L_4)); InputEventPtr__ctor_m9EBF5134C7CC18F85542C146674EAE1BF7F29110_inline((&L_4), (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_3, /*hidden argument*/NULL); return L_4; } } IL2CPP_EXTERN_C InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 InputEventPtr_Next_m580A3672177EA9ECAE635D02199927FCE695314A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * _thisAdjusted = reinterpret_cast(__this + _offset); InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 _returnValue; _returnValue = InputEventPtr_Next_m580A3672177EA9ECAE635D02199927FCE695314A(_thisAdjusted, method); return _returnValue; } // System.String UnityEngine.InputSystem.LowLevel.InputEventPtr::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputEventPtr_ToString_mCAF5502A72B493AB20F889565AEA45814B8F05FF (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174); s_Il2CppMethodInitialized = true; } InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 V_0; memset((&V_0), 0, sizeof(V_0)); { // if (!valid) bool L_0; L_0 = InputEventPtr_get_valid_m89FC8685702EDBBB434A0576EED219CA4BF0630C((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { // return "null"; return _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174; } IL_000e: { // var eventPtr = *m_EventPtr; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_1 = __this->get_m_EventPtr_0(); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 L_2 = (*(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_1); V_0 = L_2; // return eventPtr.ToString(); String_t* L_3; L_3 = InputEvent_ToString_m1FC17A5176EAB237A89AB58EC35F690BD0838FE3((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(&V_0), /*hidden argument*/NULL); return L_3; } } IL2CPP_EXTERN_C String_t* InputEventPtr_ToString_mCAF5502A72B493AB20F889565AEA45814B8F05FF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = InputEventPtr_ToString_mCAF5502A72B493AB20F889565AEA45814B8F05FF(_thisAdjusted, method); return _returnValue; } // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventPtr::ToPointer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEventPtr_ToPointer_m77A71EEA1470411DE1C2B75013E4A6CDC7B52DCE (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method) { { // return this; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_0 = (*(InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_1; L_1 = InputEventPtr_op_Implicit_m25CA03BF945CB766E6C8A09310269C70F9D0C948(L_0, /*hidden argument*/NULL); return (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(L_1); } } IL2CPP_EXTERN_C InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEventPtr_ToPointer_m77A71EEA1470411DE1C2B75013E4A6CDC7B52DCE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * _thisAdjusted = reinterpret_cast(__this + _offset); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * _returnValue; _returnValue = InputEventPtr_ToPointer_m77A71EEA1470411DE1C2B75013E4A6CDC7B52DCE(_thisAdjusted, method); return _returnValue; } // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::Equals(UnityEngine.InputSystem.LowLevel.InputEventPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_Equals_m53A0B79ABDAAE8948582372DF97D0979645B3981 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___other0, const RuntimeMethod* method) { { // return m_EventPtr == other.m_EventPtr || InputEvent.Equals(m_EventPtr, other.m_EventPtr); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_0 = __this->get_m_EventPtr_0(); InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_1 = ___other0; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_2 = L_1.get_m_EventPtr_0(); if ((((intptr_t)L_0) == ((intptr_t)L_2))) { goto IL_0020; } } { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_3 = __this->get_m_EventPtr_0(); InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_4 = ___other0; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_5 = L_4.get_m_EventPtr_0(); bool L_6; L_6 = InputEvent_Equals_mA337199C1F606CDF6718583BC23AA44338A95F59((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_3, (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_5, /*hidden argument*/NULL); return L_6; } IL_0020: { return (bool)1; } } IL2CPP_EXTERN_C bool InputEventPtr_Equals_m53A0B79ABDAAE8948582372DF97D0979645B3981_AdjustorThunk (RuntimeObject * __this, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___other0, const RuntimeMethod* method) { int32_t _offset = 1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = InputEventPtr_Equals_m53A0B79ABDAAE8948582372DF97D0979645B3981(_thisAdjusted, ___other0, method); return _returnValue; } // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_Equals_m1ABB7FA63E0C439A2C71E6429BBBE6C8A7F64D69 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 V_0; memset((&V_0), 0, sizeof(V_0)); { // if (ReferenceEquals(null, obj)) RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_0005; } } { // return false; return (bool)0; } IL_0005: { // return obj is InputEventPtr ptr && Equals(ptr); RuntimeObject * L_1 = ___obj0; if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_il2cpp_TypeInfo_var))) { goto IL_001c; } } { RuntimeObject * L_2 = ___obj0; V_0 = ((*(InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)UnBox(L_2, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_il2cpp_TypeInfo_var)))); InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_3 = V_0; bool L_4; L_4 = InputEventPtr_Equals_m53A0B79ABDAAE8948582372DF97D0979645B3981((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)__this, L_3, /*hidden argument*/NULL); return L_4; } IL_001c: { return (bool)0; } } IL2CPP_EXTERN_C bool InputEventPtr_Equals_m1ABB7FA63E0C439A2C71E6429BBBE6C8A7F64D69_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = InputEventPtr_Equals_m1ABB7FA63E0C439A2C71E6429BBBE6C8A7F64D69(_thisAdjusted, ___obj0, method); return _returnValue; } // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventPtr::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventPtr_GetHashCode_mC1E252431B9F88707B6F406C51168F5305C2A63A (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method) { { // return unchecked((int)(long)m_EventPtr); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_0 = __this->get_m_EventPtr_0(); return ((int32_t)((int32_t)((int64_t)((uint64_t)(intptr_t)L_0)))); } } IL2CPP_EXTERN_C int32_t InputEventPtr_GetHashCode_mC1E252431B9F88707B6F406C51168F5305C2A63A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = InputEventPtr_GetHashCode_mC1E252431B9F88707B6F406C51168F5305C2A63A(_thisAdjusted, method); return _returnValue; } // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::op_Equality(UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.LowLevel.InputEventPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_op_Equality_mBB2DA9319443903EDE5D82682D98EEC6BE180774 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___left0, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___right1, const RuntimeMethod* method) { { // return left.m_EventPtr == right.m_EventPtr; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_0 = ___left0; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_1 = L_0.get_m_EventPtr_0(); InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_2 = ___right1; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_3 = L_2.get_m_EventPtr_0(); return (bool)((((intptr_t)L_1) == ((intptr_t)L_3))? 1 : 0); } } // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventPtr::op_Inequality(UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.LowLevel.InputEventPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_op_Inequality_m8EA5E236A098085CAD32F014B2F0CDB75C18D695 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___left0, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___right1, const RuntimeMethod* method) { { // return left.m_EventPtr != right.m_EventPtr; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_0 = ___left0; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_1 = L_0.get_m_EventPtr_0(); InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_2 = ___right1; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_3 = L_2.get_m_EventPtr_0(); return (bool)((((int32_t)((((intptr_t)L_1) == ((intptr_t)L_3))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.InputEventPtr::op_Implicit(UnityEngine.InputSystem.LowLevel.InputEvent*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 InputEventPtr_op_Implicit_m929BCCB27CE3B2C2BD9B2C43E49FDCB1F2933AB5 (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr0, const RuntimeMethod* method) { { // return new InputEventPtr(eventPtr); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_0 = ___eventPtr0; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_1; memset((&L_1), 0, sizeof(L_1)); InputEventPtr__ctor_m9EBF5134C7CC18F85542C146674EAE1BF7F29110_inline((&L_1), (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_0, /*hidden argument*/NULL); return L_1; } } // UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.InputEventPtr::From(UnityEngine.InputSystem.LowLevel.InputEvent*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 InputEventPtr_From_m00CF58A101C7F75FCDDFE96E90D63C5C9FCFD06F (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr0, const RuntimeMethod* method) { { // return new InputEventPtr(eventPtr); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_0 = ___eventPtr0; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_1; memset((&L_1), 0, sizeof(L_1)); InputEventPtr__ctor_m9EBF5134C7CC18F85542C146674EAE1BF7F29110_inline((&L_1), (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_0, /*hidden argument*/NULL); return L_1; } } // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventPtr::op_Implicit(UnityEngine.InputSystem.LowLevel.InputEventPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEventPtr_op_Implicit_m25CA03BF945CB766E6C8A09310269C70F9D0C948 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___eventPtr0, const RuntimeMethod* method) { { // return eventPtr.data; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_0; L_0 = InputEventPtr_get_data_m23324B1E4068E48168D6D06CEF9CC061D1E2D694_inline((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&___eventPtr0), /*hidden argument*/NULL); return (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(L_0); } } // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventPtr::FromInputEventPtr(UnityEngine.InputSystem.LowLevel.InputEventPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEventPtr_FromInputEventPtr_m2B2BD6685BD51F1894403A2FA8BAD12D539B4536 (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___eventPtr0, const RuntimeMethod* method) { { // return eventPtr.data; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_0; L_0 = InputEventPtr_get_data_m23324B1E4068E48168D6D06CEF9CC061D1E2D694_inline((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&___eventPtr0), /*hidden argument*/NULL); return (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(L_0); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: UnityEngine.InputSystem.LowLevel.InputEventStream IL2CPP_EXTERN_C void InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755_marshal_pinvoke(const InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755& unmarshaled, InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755_marshaled_pinvoke& marshaled) { InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshal_pinvoke(unmarshaled.get_m_NativeBuffer_0(), marshaled.___m_NativeBuffer_0); marshaled.___m_CurrentNativeEventReadPtr_1 = unmarshaled.get_m_CurrentNativeEventReadPtr_1(); marshaled.___m_CurrentNativeEventWritePtr_2 = unmarshaled.get_m_CurrentNativeEventWritePtr_2(); marshaled.___m_RemainingNativeEventCount_3 = unmarshaled.get_m_RemainingNativeEventCount_3(); marshaled.___m_MaxAppendedEvents_4 = unmarshaled.get_m_MaxAppendedEvents_4(); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshal_pinvoke(unmarshaled.get_m_AppendBuffer_5(), marshaled.___m_AppendBuffer_5); marshaled.___m_CurrentAppendEventReadPtr_6 = unmarshaled.get_m_CurrentAppendEventReadPtr_6(); marshaled.___m_CurrentAppendEventWritePtr_7 = unmarshaled.get_m_CurrentAppendEventWritePtr_7(); marshaled.___m_RemainingAppendEventCount_8 = unmarshaled.get_m_RemainingAppendEventCount_8(); marshaled.___m_NumEventsRetainedInBuffer_9 = unmarshaled.get_m_NumEventsRetainedInBuffer_9(); marshaled.___m_IsOpen_10 = static_cast(unmarshaled.get_m_IsOpen_10()); } IL2CPP_EXTERN_C void InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755_marshal_pinvoke_back(const InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755_marshaled_pinvoke& marshaled, InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755& unmarshaled) { InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA unmarshaled_m_NativeBuffer_temp_0; memset((&unmarshaled_m_NativeBuffer_temp_0), 0, sizeof(unmarshaled_m_NativeBuffer_temp_0)); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshal_pinvoke_back(marshaled.___m_NativeBuffer_0, unmarshaled_m_NativeBuffer_temp_0); unmarshaled.set_m_NativeBuffer_0(unmarshaled_m_NativeBuffer_temp_0); unmarshaled.set_m_CurrentNativeEventReadPtr_1(marshaled.___m_CurrentNativeEventReadPtr_1); unmarshaled.set_m_CurrentNativeEventWritePtr_2(marshaled.___m_CurrentNativeEventWritePtr_2); int32_t unmarshaled_m_RemainingNativeEventCount_temp_3 = 0; unmarshaled_m_RemainingNativeEventCount_temp_3 = marshaled.___m_RemainingNativeEventCount_3; unmarshaled.set_m_RemainingNativeEventCount_3(unmarshaled_m_RemainingNativeEventCount_temp_3); int32_t unmarshaled_m_MaxAppendedEvents_temp_4 = 0; unmarshaled_m_MaxAppendedEvents_temp_4 = marshaled.___m_MaxAppendedEvents_4; unmarshaled.set_m_MaxAppendedEvents_4(unmarshaled_m_MaxAppendedEvents_temp_4); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA unmarshaled_m_AppendBuffer_temp_5; memset((&unmarshaled_m_AppendBuffer_temp_5), 0, sizeof(unmarshaled_m_AppendBuffer_temp_5)); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshal_pinvoke_back(marshaled.___m_AppendBuffer_5, unmarshaled_m_AppendBuffer_temp_5); unmarshaled.set_m_AppendBuffer_5(unmarshaled_m_AppendBuffer_temp_5); unmarshaled.set_m_CurrentAppendEventReadPtr_6(marshaled.___m_CurrentAppendEventReadPtr_6); unmarshaled.set_m_CurrentAppendEventWritePtr_7(marshaled.___m_CurrentAppendEventWritePtr_7); int32_t unmarshaled_m_RemainingAppendEventCount_temp_8 = 0; unmarshaled_m_RemainingAppendEventCount_temp_8 = marshaled.___m_RemainingAppendEventCount_8; unmarshaled.set_m_RemainingAppendEventCount_8(unmarshaled_m_RemainingAppendEventCount_temp_8); int32_t unmarshaled_m_NumEventsRetainedInBuffer_temp_9 = 0; unmarshaled_m_NumEventsRetainedInBuffer_temp_9 = marshaled.___m_NumEventsRetainedInBuffer_9; unmarshaled.set_m_NumEventsRetainedInBuffer_9(unmarshaled_m_NumEventsRetainedInBuffer_temp_9); bool unmarshaled_m_IsOpen_temp_10 = false; unmarshaled_m_IsOpen_temp_10 = static_cast(marshaled.___m_IsOpen_10); unmarshaled.set_m_IsOpen_10(unmarshaled_m_IsOpen_temp_10); } // Conversion method for clean up from marshalling of: UnityEngine.InputSystem.LowLevel.InputEventStream IL2CPP_EXTERN_C void InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755_marshal_pinvoke_cleanup(InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755_marshaled_pinvoke& marshaled) { InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshal_pinvoke_cleanup(marshaled.___m_NativeBuffer_0); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshal_pinvoke_cleanup(marshaled.___m_AppendBuffer_5); } // Conversion methods for marshalling of: UnityEngine.InputSystem.LowLevel.InputEventStream IL2CPP_EXTERN_C void InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755_marshal_com(const InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755& unmarshaled, InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755_marshaled_com& marshaled) { InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshal_com(unmarshaled.get_m_NativeBuffer_0(), marshaled.___m_NativeBuffer_0); marshaled.___m_CurrentNativeEventReadPtr_1 = unmarshaled.get_m_CurrentNativeEventReadPtr_1(); marshaled.___m_CurrentNativeEventWritePtr_2 = unmarshaled.get_m_CurrentNativeEventWritePtr_2(); marshaled.___m_RemainingNativeEventCount_3 = unmarshaled.get_m_RemainingNativeEventCount_3(); marshaled.___m_MaxAppendedEvents_4 = unmarshaled.get_m_MaxAppendedEvents_4(); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshal_com(unmarshaled.get_m_AppendBuffer_5(), marshaled.___m_AppendBuffer_5); marshaled.___m_CurrentAppendEventReadPtr_6 = unmarshaled.get_m_CurrentAppendEventReadPtr_6(); marshaled.___m_CurrentAppendEventWritePtr_7 = unmarshaled.get_m_CurrentAppendEventWritePtr_7(); marshaled.___m_RemainingAppendEventCount_8 = unmarshaled.get_m_RemainingAppendEventCount_8(); marshaled.___m_NumEventsRetainedInBuffer_9 = unmarshaled.get_m_NumEventsRetainedInBuffer_9(); marshaled.___m_IsOpen_10 = static_cast(unmarshaled.get_m_IsOpen_10()); } IL2CPP_EXTERN_C void InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755_marshal_com_back(const InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755_marshaled_com& marshaled, InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755& unmarshaled) { InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA unmarshaled_m_NativeBuffer_temp_0; memset((&unmarshaled_m_NativeBuffer_temp_0), 0, sizeof(unmarshaled_m_NativeBuffer_temp_0)); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshal_com_back(marshaled.___m_NativeBuffer_0, unmarshaled_m_NativeBuffer_temp_0); unmarshaled.set_m_NativeBuffer_0(unmarshaled_m_NativeBuffer_temp_0); unmarshaled.set_m_CurrentNativeEventReadPtr_1(marshaled.___m_CurrentNativeEventReadPtr_1); unmarshaled.set_m_CurrentNativeEventWritePtr_2(marshaled.___m_CurrentNativeEventWritePtr_2); int32_t unmarshaled_m_RemainingNativeEventCount_temp_3 = 0; unmarshaled_m_RemainingNativeEventCount_temp_3 = marshaled.___m_RemainingNativeEventCount_3; unmarshaled.set_m_RemainingNativeEventCount_3(unmarshaled_m_RemainingNativeEventCount_temp_3); int32_t unmarshaled_m_MaxAppendedEvents_temp_4 = 0; unmarshaled_m_MaxAppendedEvents_temp_4 = marshaled.___m_MaxAppendedEvents_4; unmarshaled.set_m_MaxAppendedEvents_4(unmarshaled_m_MaxAppendedEvents_temp_4); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA unmarshaled_m_AppendBuffer_temp_5; memset((&unmarshaled_m_AppendBuffer_temp_5), 0, sizeof(unmarshaled_m_AppendBuffer_temp_5)); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshal_com_back(marshaled.___m_AppendBuffer_5, unmarshaled_m_AppendBuffer_temp_5); unmarshaled.set_m_AppendBuffer_5(unmarshaled_m_AppendBuffer_temp_5); unmarshaled.set_m_CurrentAppendEventReadPtr_6(marshaled.___m_CurrentAppendEventReadPtr_6); unmarshaled.set_m_CurrentAppendEventWritePtr_7(marshaled.___m_CurrentAppendEventWritePtr_7); int32_t unmarshaled_m_RemainingAppendEventCount_temp_8 = 0; unmarshaled_m_RemainingAppendEventCount_temp_8 = marshaled.___m_RemainingAppendEventCount_8; unmarshaled.set_m_RemainingAppendEventCount_8(unmarshaled_m_RemainingAppendEventCount_temp_8); int32_t unmarshaled_m_NumEventsRetainedInBuffer_temp_9 = 0; unmarshaled_m_NumEventsRetainedInBuffer_temp_9 = marshaled.___m_NumEventsRetainedInBuffer_9; unmarshaled.set_m_NumEventsRetainedInBuffer_9(unmarshaled_m_NumEventsRetainedInBuffer_temp_9); bool unmarshaled_m_IsOpen_temp_10 = false; unmarshaled_m_IsOpen_temp_10 = static_cast(marshaled.___m_IsOpen_10); unmarshaled.set_m_IsOpen_10(unmarshaled_m_IsOpen_temp_10); } // Conversion method for clean up from marshalling of: UnityEngine.InputSystem.LowLevel.InputEventStream IL2CPP_EXTERN_C void InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755_marshal_com_cleanup(InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755_marshaled_com& marshaled) { InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshal_com_cleanup(marshaled.___m_NativeBuffer_0); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA_marshal_com_cleanup(marshaled.___m_AppendBuffer_5); } // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventStream::get_isOpen() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventStream_get_isOpen_m6813A58E116448D4957B213FA9FD7DAA57D7B8D4 (InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * __this, const RuntimeMethod* method) { { // public bool isOpen => m_IsOpen; bool L_0 = __this->get_m_IsOpen_10(); return L_0; } } IL2CPP_EXTERN_C bool InputEventStream_get_isOpen_m6813A58E116448D4957B213FA9FD7DAA57D7B8D4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = InputEventStream_get_isOpen_m6813A58E116448D4957B213FA9FD7DAA57D7B8D4_inline(_thisAdjusted, method); return _returnValue; } // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventStream::get_remainingEventCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventStream_get_remainingEventCount_m98087A7B74629FA5F8AB30407DB696ECE81E6FF8 (InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * __this, const RuntimeMethod* method) { { // public int remainingEventCount => m_RemainingNativeEventCount + m_RemainingAppendEventCount; int32_t L_0 = __this->get_m_RemainingNativeEventCount_3(); int32_t L_1 = __this->get_m_RemainingAppendEventCount_8(); return ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1)); } } IL2CPP_EXTERN_C int32_t InputEventStream_get_remainingEventCount_m98087A7B74629FA5F8AB30407DB696ECE81E6FF8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = InputEventStream_get_remainingEventCount_m98087A7B74629FA5F8AB30407DB696ECE81E6FF8(_thisAdjusted, method); return _returnValue; } // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventStream::get_numEventsRetainedInBuffer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventStream_get_numEventsRetainedInBuffer_m183F6D823B00E4613353548D7D202D4610EC15F2 (InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * __this, const RuntimeMethod* method) { { // public int numEventsRetainedInBuffer => m_NumEventsRetainedInBuffer; int32_t L_0 = __this->get_m_NumEventsRetainedInBuffer_9(); return L_0; } } IL2CPP_EXTERN_C int32_t InputEventStream_get_numEventsRetainedInBuffer_m183F6D823B00E4613353548D7D202D4610EC15F2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = InputEventStream_get_numEventsRetainedInBuffer_m183F6D823B00E4613353548D7D202D4610EC15F2_inline(_thisAdjusted, method); return _returnValue; } // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventStream::get_currentEventPtr() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEventStream_get_currentEventPtr_mF9ED21A01A006896DAC0BE4C2D42A36B21D4EEA9 (InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * __this, const RuntimeMethod* method) { { // public InputEvent* currentEventPtr => m_RemainingNativeEventCount > 0 // ? m_CurrentNativeEventReadPtr // : (m_RemainingAppendEventCount > 0 ? m_CurrentAppendEventReadPtr : null); int32_t L_0 = __this->get_m_RemainingNativeEventCount_3(); if ((((int32_t)L_0) > ((int32_t)0))) { goto IL_001c; } } { int32_t L_1 = __this->get_m_RemainingAppendEventCount_8(); if ((((int32_t)L_1) > ((int32_t)0))) { goto IL_0015; } } { return (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(((uintptr_t)0)); } IL_0015: { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_2 = __this->get_m_CurrentAppendEventReadPtr_6(); return (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(L_2); } IL_001c: { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_3 = __this->get_m_CurrentNativeEventReadPtr_1(); return (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(L_3); } } IL2CPP_EXTERN_C InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEventStream_get_currentEventPtr_mF9ED21A01A006896DAC0BE4C2D42A36B21D4EEA9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * _thisAdjusted = reinterpret_cast(__this + _offset); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * _returnValue; _returnValue = InputEventStream_get_currentEventPtr_mF9ED21A01A006896DAC0BE4C2D42A36B21D4EEA9(_thisAdjusted, method); return _returnValue; } // System.UInt32 UnityEngine.InputSystem.LowLevel.InputEventStream::get_numBytesRetainedInBuffer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEventStream_get_numBytesRetainedInBuffer_m5E61D211BE3193A40CE467314BB9A4CB1045AEB7 (InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // (uint)((byte*)m_CurrentNativeEventWritePtr - // (byte*)NativeArrayUnsafeUtility // .GetUnsafeBufferPointerWithoutChecks(m_NativeBuffer.data)); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_0 = __this->get_m_CurrentNativeEventWritePtr_2(); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_1 = __this->get_address_of_m_NativeBuffer_0(); NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_2; L_2 = InputEventBuffer_get_data_m5E230CE9CC093445705ED34CDA93AF7527AF945B_inline((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_1, /*hidden argument*/NULL); void* L_3; L_3 = NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8(L_2, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8_RuntimeMethod_var); return ((int32_t)((uint32_t)((int64_t)((int64_t)(intptr_t)((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)((intptr_t)((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)il2cpp_codegen_subtract((intptr_t)L_0, (intptr_t)L_3))/(int32_t)1)))))); } } IL2CPP_EXTERN_C uint32_t InputEventStream_get_numBytesRetainedInBuffer_m5E61D211BE3193A40CE467314BB9A4CB1045AEB7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * _thisAdjusted = reinterpret_cast(__this + _offset); uint32_t _returnValue; _returnValue = InputEventStream_get_numBytesRetainedInBuffer_m5E61D211BE3193A40CE467314BB9A4CB1045AEB7(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.LowLevel.InputEventStream::.ctor(UnityEngine.InputSystem.LowLevel.InputEventBuffer&,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventStream__ctor_mD3D449973BC57E65CE6DE268E1C039309B77551B (InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * __this, InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * ___eventBuffer0, int32_t ___maxAppendedEvents1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * V_0 = NULL; { // m_CurrentNativeEventWritePtr = m_CurrentNativeEventReadPtr = // (InputEvent*)NativeArrayUnsafeUtility.GetUnsafeBufferPointerWithoutChecks(eventBuffer.data); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_0 = ___eventBuffer0; NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_1; L_1 = InputEventBuffer_get_data_m5E230CE9CC093445705ED34CDA93AF7527AF945B_inline((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_0, /*hidden argument*/NULL); void* L_2; L_2 = NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8(L_1, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8_RuntimeMethod_var); void* L_3 = (void*)L_2; V_0 = (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_3; __this->set_m_CurrentNativeEventReadPtr_1((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_3); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_4 = V_0; __this->set_m_CurrentNativeEventWritePtr_2((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_4); // m_NativeBuffer = eventBuffer; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_5 = ___eventBuffer0; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA L_6 = (*(InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_5); __this->set_m_NativeBuffer_0(L_6); // m_RemainingNativeEventCount = m_NativeBuffer.eventCount; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_7 = __this->get_address_of_m_NativeBuffer_0(); int32_t L_8; L_8 = InputEventBuffer_get_eventCount_m50712505E0393BA3A20563E64DAA7A6D75854E3F_inline((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_7, /*hidden argument*/NULL); __this->set_m_RemainingNativeEventCount_3(L_8); // m_NumEventsRetainedInBuffer = 0; __this->set_m_NumEventsRetainedInBuffer_9(0); // m_CurrentAppendEventReadPtr = m_CurrentAppendEventWritePtr = default; uintptr_t L_9 = ((uintptr_t)0); V_0 = (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_9; __this->set_m_CurrentAppendEventWritePtr_7((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_9); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_10 = V_0; __this->set_m_CurrentAppendEventReadPtr_6((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_10); // m_AppendBuffer = default; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_11 = __this->get_address_of_m_AppendBuffer_5(); il2cpp_codegen_initobj(L_11, sizeof(InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA )); // m_RemainingAppendEventCount = 0; __this->set_m_RemainingAppendEventCount_8(0); // m_MaxAppendedEvents = maxAppendedEvents; int32_t L_12 = ___maxAppendedEvents1; __this->set_m_MaxAppendedEvents_4(L_12); // m_IsOpen = true; __this->set_m_IsOpen_10((bool)1); // } return; } } IL2CPP_EXTERN_C void InputEventStream__ctor_mD3D449973BC57E65CE6DE268E1C039309B77551B_AdjustorThunk (RuntimeObject * __this, InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * ___eventBuffer0, int32_t ___maxAppendedEvents1, const RuntimeMethod* method) { int32_t _offset = 1; InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * _thisAdjusted = reinterpret_cast(__this + _offset); InputEventStream__ctor_mD3D449973BC57E65CE6DE268E1C039309B77551B(_thisAdjusted, ___eventBuffer0, ___maxAppendedEvents1, method); } // System.Void UnityEngine.InputSystem.LowLevel.InputEventStream::Close(UnityEngine.InputSystem.LowLevel.InputEventBuffer&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventStream_Close_m65AFA3054D6B4D2BA6E59C7734482052BD9D3FAE (InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * __this, InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * ___eventBuffer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } void* V_0 = NULL; int64_t V_1 = 0; NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 V_2; memset((&V_2), 0, sizeof(V_2)); { // if (m_NumEventsRetainedInBuffer > 0) int32_t L_0 = __this->get_m_NumEventsRetainedInBuffer_9(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_0048; } } { // var bufferPtr = NativeArrayUnsafeUtility.GetUnsafeBufferPointerWithoutChecks(m_NativeBuffer.data); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_1 = __this->get_address_of_m_NativeBuffer_0(); NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_2; L_2 = InputEventBuffer_get_data_m5E230CE9CC093445705ED34CDA93AF7527AF945B_inline((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_1, /*hidden argument*/NULL); void* L_3; L_3 = NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8(L_2, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8_RuntimeMethod_var); V_0 = (void*)L_3; // var newBufferSize = (byte*)m_CurrentNativeEventWritePtr - (byte*)bufferPtr; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_4 = __this->get_m_CurrentNativeEventWritePtr_2(); void* L_5 = V_0; V_1 = ((int64_t)((int64_t)(intptr_t)((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)((intptr_t)((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)il2cpp_codegen_subtract((intptr_t)L_4, (intptr_t)L_5))/(int32_t)1)))); // m_NativeBuffer = new InputEventBuffer((InputEvent*)bufferPtr, m_NumEventsRetainedInBuffer, (int)newBufferSize, // (int)m_NativeBuffer.capacityInBytes); void* L_6 = V_0; int32_t L_7 = __this->get_m_NumEventsRetainedInBuffer_9(); int64_t L_8 = V_1; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_9 = __this->get_address_of_m_NativeBuffer_0(); int64_t L_10; L_10 = InputEventBuffer_get_capacityInBytes_mCB4AF5BB207035D9FAF526A7861CA72B246B9C26((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_9, /*hidden argument*/NULL); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA L_11; memset((&L_11), 0, sizeof(L_11)); InputEventBuffer__ctor_mD809489C60E9A3C3CE02EAD34FF604C7C6D73348((&L_11), (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_6, L_7, ((int32_t)((int32_t)L_8)), ((int32_t)((int32_t)L_10)), /*hidden argument*/NULL); __this->set_m_NativeBuffer_0(L_11); // } goto IL_0053; } IL_0048: { // m_NativeBuffer.Reset(); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_12 = __this->get_address_of_m_NativeBuffer_0(); InputEventBuffer_Reset_m35B27C04062C1C9C0B61207995552DC7DE57037C((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_12, /*hidden argument*/NULL); } IL_0053: { // if (m_AppendBuffer.data.IsCreated) InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_13 = __this->get_address_of_m_AppendBuffer_5(); NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_14; L_14 = InputEventBuffer_get_data_m5E230CE9CC093445705ED34CDA93AF7527AF945B_inline((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_13, /*hidden argument*/NULL); V_2 = L_14; bool L_15; L_15 = NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)(&V_2), /*hidden argument*/NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var); if (!L_15) { goto IL_0073; } } { // m_AppendBuffer.Dispose(); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_16 = __this->get_address_of_m_AppendBuffer_5(); InputEventBuffer_Dispose_mE775668BD216C49FC5BA6F8DCED3600CFF7A6C66((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_16, /*hidden argument*/NULL); } IL_0073: { // eventBuffer = m_NativeBuffer; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_17 = ___eventBuffer0; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA L_18 = __this->get_m_NativeBuffer_0(); *(InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_17 = L_18; // m_IsOpen = false; __this->set_m_IsOpen_10((bool)0); // } return; } } IL2CPP_EXTERN_C void InputEventStream_Close_m65AFA3054D6B4D2BA6E59C7734482052BD9D3FAE_AdjustorThunk (RuntimeObject * __this, InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * ___eventBuffer0, const RuntimeMethod* method) { int32_t _offset = 1; InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * _thisAdjusted = reinterpret_cast(__this + _offset); InputEventStream_Close_m65AFA3054D6B4D2BA6E59C7734482052BD9D3FAE(_thisAdjusted, ___eventBuffer0, method); } // System.Void UnityEngine.InputSystem.LowLevel.InputEventStream::CleanUpAfterException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventStream_CleanUpAfterException_mD1220F4B41B9B5A6829DBE71367EBA7A21311CD2 (InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 V_0; memset((&V_0), 0, sizeof(V_0)); { // if (!isOpen) bool L_0; L_0 = InputEventStream_get_isOpen_m6813A58E116448D4957B213FA9FD7DAA57D7B8D4_inline((InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_0009; } } { // return; return; } IL_0009: { // m_NativeBuffer.Reset(); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_1 = __this->get_address_of_m_NativeBuffer_0(); InputEventBuffer_Reset_m35B27C04062C1C9C0B61207995552DC7DE57037C((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_1, /*hidden argument*/NULL); // if (m_AppendBuffer.data.IsCreated) InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_2 = __this->get_address_of_m_AppendBuffer_5(); NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_3; L_3 = InputEventBuffer_get_data_m5E230CE9CC093445705ED34CDA93AF7527AF945B_inline((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_2, /*hidden argument*/NULL); V_0 = L_3; bool L_4; L_4 = NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)(&V_0), /*hidden argument*/NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var); if (!L_4) { goto IL_0034; } } { // m_AppendBuffer.Dispose(); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_5 = __this->get_address_of_m_AppendBuffer_5(); InputEventBuffer_Dispose_mE775668BD216C49FC5BA6F8DCED3600CFF7A6C66((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_5, /*hidden argument*/NULL); } IL_0034: { // m_IsOpen = false; __this->set_m_IsOpen_10((bool)0); // } return; } } IL2CPP_EXTERN_C void InputEventStream_CleanUpAfterException_mD1220F4B41B9B5A6829DBE71367EBA7A21311CD2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * _thisAdjusted = reinterpret_cast(__this + _offset); InputEventStream_CleanUpAfterException_mD1220F4B41B9B5A6829DBE71367EBA7A21311CD2(_thisAdjusted, method); } // System.Void UnityEngine.InputSystem.LowLevel.InputEventStream::Write(UnityEngine.InputSystem.LowLevel.InputEvent*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventStream_Write_mE21DBB2F56BCAD00DC2D2BE5939FCE874206C109 (InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * __this, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral012315DEACA80CA5572171295D68942333F9F9A7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEBE3EEDD107BB87C6567C5FBFDC3A815F512391E); s_Il2CppMethodInitialized = true; } uint8_t* V_0 = NULL; NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 V_1; memset((&V_1), 0, sizeof(V_1)); InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 V_2; memset((&V_2), 0, sizeof(V_2)); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * V_3 = NULL; uint8_t* V_4 = NULL; int64_t V_5 = 0; int64_t V_6 = 0; { // if (m_AppendBuffer.eventCount >= m_MaxAppendedEvents) InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_0 = __this->get_address_of_m_AppendBuffer_5(); int32_t L_1; L_1 = InputEventBuffer_get_eventCount_m50712505E0393BA3A20563E64DAA7A6D75854E3F_inline((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_0, /*hidden argument*/NULL); int32_t L_2 = __this->get_m_MaxAppendedEvents_4(); if ((((int32_t)L_1) < ((int32_t)L_2))) { goto IL_0038; } } { // Debug.LogError($"Maximum number of queued events exceeded. Set the '{nameof(InputSettings.maxQueuedEventsPerUpdate)}' " + // $"setting to a higher value if you need to queue more events than this. " + // $"Current limit is '{m_MaxAppendedEvents}'."); int32_t L_3 = __this->get_m_MaxAppendedEvents_4(); int32_t L_4 = L_3; RuntimeObject * L_5 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_4); String_t* L_6; L_6 = String_Format_m5A16F3ABC59A3E9804E0CB2636849CCD74CEC994(_stringLiteral012315DEACA80CA5572171295D68942333F9F9A7, L_5, /*hidden argument*/NULL); String_t* L_7; L_7 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(_stringLiteralEBE3EEDD107BB87C6567C5FBFDC3A815F512391E, L_6, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogError_m5952BCE5DC0EF798B31FA983B9CE42A5A1F82DE1(L_7, /*hidden argument*/NULL); // return; return; } IL_0038: { // var wasAlreadyCreated = m_AppendBuffer.data.IsCreated; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_8 = __this->get_address_of_m_AppendBuffer_5(); NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_9; L_9 = InputEventBuffer_get_data_m5E230CE9CC093445705ED34CDA93AF7527AF945B_inline((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_8, /*hidden argument*/NULL); V_1 = L_9; bool L_10; L_10 = NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)(&V_1), /*hidden argument*/NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var); // var oldBufferPtr = (byte*)m_AppendBuffer.bufferPtr.data; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_11 = __this->get_address_of_m_AppendBuffer_5(); InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_12; L_12 = InputEventBuffer_get_bufferPtr_mBDF4C8B45E48FB47151E8934BC2236E66BB5745E((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_11, /*hidden argument*/NULL); V_2 = L_12; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_13; L_13 = InputEventPtr_get_data_m23324B1E4068E48168D6D06CEF9CC061D1E2D694_inline((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&V_2), /*hidden argument*/NULL); V_0 = (uint8_t*)L_13; // m_AppendBuffer.AppendEvent(eventPtr, allocator: Allocator.Temp); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_14 = __this->get_address_of_m_AppendBuffer_5(); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_15 = ___eventPtr0; InputEventBuffer_AppendEvent_mB2227FAC7CF7C32E2FF8ED9925AEC7EBB0BE853A((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_14, (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_15, ((int32_t)2048), 2, /*hidden argument*/NULL); // if (!wasAlreadyCreated) if (L_10) { goto IL_0094; } } { // m_CurrentAppendEventWritePtr = m_CurrentAppendEventReadPtr = // (InputEvent*)NativeArrayUnsafeUtility.GetUnsafeBufferPointerWithoutChecks(m_AppendBuffer.data); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_16 = __this->get_address_of_m_AppendBuffer_5(); NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_17; L_17 = InputEventBuffer_get_data_m5E230CE9CC093445705ED34CDA93AF7527AF945B_inline((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_16, /*hidden argument*/NULL); void* L_18; L_18 = NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8(L_17, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m124A80F7A21A4426191770E6BC08231C01532CA8_RuntimeMethod_var); void* L_19 = (void*)L_18; V_3 = (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_19; __this->set_m_CurrentAppendEventReadPtr_6((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_19); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_20 = V_3; __this->set_m_CurrentAppendEventWritePtr_7((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_20); // } goto IL_00e0; } IL_0094: { // var newBufferPtr = (byte*)m_AppendBuffer.bufferPtr.data; InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_21 = __this->get_address_of_m_AppendBuffer_5(); InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_22; L_22 = InputEventBuffer_get_bufferPtr_mBDF4C8B45E48FB47151E8934BC2236E66BB5745E((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_21, /*hidden argument*/NULL); V_2 = L_22; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_23; L_23 = InputEventPtr_get_data_m23324B1E4068E48168D6D06CEF9CC061D1E2D694_inline((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&V_2), /*hidden argument*/NULL); V_4 = (uint8_t*)L_23; // if (oldBufferPtr != newBufferPtr) uint8_t* L_24 = V_0; uint8_t* L_25 = V_4; if ((((intptr_t)L_24) == ((intptr_t)L_25))) { goto IL_00e0; } } { // var currentWriteOffset = (byte*)m_CurrentAppendEventWritePtr - oldBufferPtr; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_26 = __this->get_m_CurrentAppendEventWritePtr_7(); uint8_t* L_27 = V_0; V_5 = ((int64_t)((int64_t)(intptr_t)((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)((intptr_t)((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)il2cpp_codegen_subtract((intptr_t)L_26, (intptr_t)L_27))/(int32_t)1)))); // var currentReadOffset = (byte*)m_CurrentAppendEventReadPtr - oldBufferPtr; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_28 = __this->get_m_CurrentAppendEventReadPtr_6(); uint8_t* L_29 = V_0; V_6 = ((int64_t)((int64_t)(intptr_t)((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)((intptr_t)((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)il2cpp_codegen_subtract((intptr_t)L_28, (intptr_t)L_29))/(int32_t)1)))); // m_CurrentAppendEventWritePtr = (InputEvent*)(newBufferPtr + currentWriteOffset); uint8_t* L_30 = V_4; int64_t L_31 = V_5; __this->set_m_CurrentAppendEventWritePtr_7((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)((uint8_t*)il2cpp_codegen_add((intptr_t)L_30, (intptr_t)((intptr_t)L_31)))); // m_CurrentAppendEventReadPtr = (InputEvent*)(newBufferPtr + currentReadOffset); uint8_t* L_32 = V_4; int64_t L_33 = V_6; __this->set_m_CurrentAppendEventReadPtr_6((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)((uint8_t*)il2cpp_codegen_add((intptr_t)L_32, (intptr_t)((intptr_t)L_33)))); } IL_00e0: { // m_RemainingAppendEventCount++; int32_t L_34 = __this->get_m_RemainingAppendEventCount_8(); __this->set_m_RemainingAppendEventCount_8(((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)1))); // } return; } } IL2CPP_EXTERN_C void InputEventStream_Write_mE21DBB2F56BCAD00DC2D2BE5939FCE874206C109_AdjustorThunk (RuntimeObject * __this, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr0, const RuntimeMethod* method) { int32_t _offset = 1; InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * _thisAdjusted = reinterpret_cast(__this + _offset); InputEventStream_Write_mE21DBB2F56BCAD00DC2D2BE5939FCE874206C109(_thisAdjusted, ___eventPtr0, method); } // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventStream::Advance(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEventStream_Advance_mA16875BDE0A84FFD19DB0062B34DA4058350565C (InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * __this, bool ___leaveEventInBuffer0, const RuntimeMethod* method) { int32_t V_0 = 0; { // if (m_RemainingNativeEventCount > 0) int32_t L_0 = __this->get_m_RemainingNativeEventCount_3(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_002f; } } { // m_NativeBuffer.AdvanceToNextEvent(ref m_CurrentNativeEventReadPtr, ref m_CurrentNativeEventWritePtr, // ref m_NumEventsRetainedInBuffer, ref m_RemainingNativeEventCount, leaveEventInBuffer); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_1 = __this->get_address_of_m_NativeBuffer_0(); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** L_2 = __this->get_address_of_m_CurrentNativeEventReadPtr_1(); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** L_3 = __this->get_address_of_m_CurrentNativeEventWritePtr_2(); int32_t* L_4 = __this->get_address_of_m_NumEventsRetainedInBuffer_9(); int32_t* L_5 = __this->get_address_of_m_RemainingNativeEventCount_3(); bool L_6 = ___leaveEventInBuffer0; InputEventBuffer_AdvanceToNextEvent_m6BE416396F5A67F25CAB5BC34875E968ED894087((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_1, (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 **)L_2, (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 **)L_3, (int32_t*)L_4, (int32_t*)L_5, L_6, /*hidden argument*/NULL); // } goto IL_005a; } IL_002f: { // else if (m_RemainingAppendEventCount > 0) int32_t L_7 = __this->get_m_RemainingAppendEventCount_8(); if ((((int32_t)L_7) <= ((int32_t)0))) { goto IL_005a; } } { // var numEventRetained = 0; V_0 = 0; // m_AppendBuffer.AdvanceToNextEvent(ref m_CurrentAppendEventReadPtr, ref m_CurrentAppendEventWritePtr, // ref numEventRetained, ref m_RemainingAppendEventCount, false); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_8 = __this->get_address_of_m_AppendBuffer_5(); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** L_9 = __this->get_address_of_m_CurrentAppendEventReadPtr_6(); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 ** L_10 = __this->get_address_of_m_CurrentAppendEventWritePtr_7(); int32_t* L_11 = __this->get_address_of_m_RemainingAppendEventCount_8(); InputEventBuffer_AdvanceToNextEvent_m6BE416396F5A67F25CAB5BC34875E968ED894087((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_8, (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 **)L_9, (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 **)L_10, (int32_t*)(&V_0), (int32_t*)L_11, (bool)0, /*hidden argument*/NULL); } IL_005a: { // return currentEventPtr; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_12; L_12 = InputEventStream_get_currentEventPtr_mF9ED21A01A006896DAC0BE4C2D42A36B21D4EEA9((InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 *)__this, /*hidden argument*/NULL); return (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(L_12); } } IL2CPP_EXTERN_C InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEventStream_Advance_mA16875BDE0A84FFD19DB0062B34DA4058350565C_AdjustorThunk (RuntimeObject * __this, bool ___leaveEventInBuffer0, const RuntimeMethod* method) { int32_t _offset = 1; InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * _thisAdjusted = reinterpret_cast(__this + _offset); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * _returnValue; _returnValue = InputEventStream_Advance_mA16875BDE0A84FFD19DB0062B34DA4058350565C(_thisAdjusted, ___leaveEventInBuffer0, method); return _returnValue; } // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventStream::Peek() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEventStream_Peek_mDD6536C4D3F1493B36020E3BE841F30A95236A16 (InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * __this, const RuntimeMethod* method) { { // if (m_RemainingNativeEventCount > 1) int32_t L_0 = __this->get_m_RemainingNativeEventCount_3(); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0015; } } { // return InputEvent.GetNextInMemory(m_CurrentNativeEventReadPtr); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_1 = __this->get_m_CurrentNativeEventReadPtr_1(); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_2; L_2 = InputEvent_GetNextInMemory_m482607ACC1E6EAA665FE89A2FD8B6448FD4701BD((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_1, /*hidden argument*/NULL); return (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(L_2); } IL_0015: { // if (m_RemainingNativeEventCount == 1) int32_t L_3 = __this->get_m_RemainingNativeEventCount_3(); if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0031; } } { // return m_RemainingAppendEventCount > 0 ? m_CurrentAppendEventReadPtr : null; int32_t L_4 = __this->get_m_RemainingAppendEventCount_8(); if ((((int32_t)L_4) > ((int32_t)0))) { goto IL_002a; } } { return (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(((uintptr_t)0)); } IL_002a: { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_5 = __this->get_m_CurrentAppendEventReadPtr_6(); return (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(L_5); } IL_0031: { // if (m_RemainingAppendEventCount > 1) int32_t L_6 = __this->get_m_RemainingAppendEventCount_8(); if ((((int32_t)L_6) <= ((int32_t)1))) { goto IL_0046; } } { // return InputEvent.GetNextInMemory(m_CurrentAppendEventReadPtr); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_7 = __this->get_m_CurrentAppendEventReadPtr_6(); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_8; L_8 = InputEvent_GetNextInMemory_m482607ACC1E6EAA665FE89A2FD8B6448FD4701BD((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_7, /*hidden argument*/NULL); return (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(L_8); } IL_0046: { // return null; return (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(((uintptr_t)0)); } } IL2CPP_EXTERN_C InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEventStream_Peek_mDD6536C4D3F1493B36020E3BE841F30A95236A16_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * _thisAdjusted = reinterpret_cast(__this + _offset); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * _returnValue; _returnValue = InputEventStream_Peek_mDD6536C4D3F1493B36020E3BE841F30A95236A16(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEventTrace::get_FrameMarkerEvent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 InputEventTrace_get_FrameMarkerEvent_mB1E248E76A888DA729C0F590C17E662A73B2C508 (const RuntimeMethod* method) { { // public static FourCC FrameMarkerEvent => new FourCC('F', 'R', 'M', 'E'); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_0; memset((&L_0), 0, sizeof(L_0)); FourCC__ctor_mEF52BABF36FD0F6E63A5CD7C1520AEFDAC9FCC14((&L_0), ((int32_t)70), ((int32_t)82), ((int32_t)77), ((int32_t)69), /*hidden argument*/NULL); return L_0; } } // System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace::get_deviceId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventTrace_get_deviceId_mBAC1A1E5F87ACE47037B369085AE2D4CF265E5E6 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method) { { // get => m_DeviceId; int32_t L_0 = __this->get_m_DeviceId_4(); return L_0; } } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::set_deviceId(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_deviceId_m8D985D7BC1868A09091690E120C2DF40F48EE30C (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, int32_t ___value0, const RuntimeMethod* method) { { // set => m_DeviceId = value; int32_t L_0 = ___value0; __this->set_m_DeviceId_4(L_0); return; } } // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace::get_enabled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventTrace_get_enabled_mDD0E2EE1DF4216CD4D03124C36030D39BA534F4E (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method) { { // public bool enabled => m_Enabled; bool L_0 = __this->get_m_Enabled_2(); return L_0; } } // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace::get_recordFrameMarkers() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventTrace_get_recordFrameMarkers_m58CA0BC839D7746FDA90A44A021AC0FB11FE8B02 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method) { { // get => m_RecordFrameMarkers; bool L_0 = __this->get_m_RecordFrameMarkers_15(); return L_0; } } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::set_recordFrameMarkers(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_recordFrameMarkers_mAB8A30373DB1920CB6D24CF213A87D87DCD4E450 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_OnBeforeUpdate_mF73C7357F6F9CDD64F30E3ABA0C1525743CE2B0C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (m_RecordFrameMarkers == value) bool L_0 = __this->get_m_RecordFrameMarkers_15(); bool L_1 = ___value0; if ((!(((uint32_t)L_0) == ((uint32_t)L_1)))) { goto IL_000a; } } { // return; return; } IL_000a: { // m_RecordFrameMarkers = value; bool L_2 = ___value0; __this->set_m_RecordFrameMarkers_15(L_2); // if (m_Enabled) bool L_3 = __this->get_m_Enabled_2(); if (!L_3) { goto IL_003f; } } { // if (value) bool L_4 = ___value0; if (!L_4) { goto IL_002e; } } { // InputSystem.onBeforeUpdate += OnBeforeUpdate; Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_5 = (Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 *)il2cpp_codegen_object_new(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var); Action__ctor_m07BE5EE8A629FBBA52AE6356D57A0D371BE2574B(L_5, __this, (intptr_t)((intptr_t)InputEventTrace_OnBeforeUpdate_mF73C7357F6F9CDD64F30E3ABA0C1525743CE2B0C_RuntimeMethod_var), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var); InputSystem_add_onBeforeUpdate_mB645C0A7F83346EE7D7ABC85F89BEAEF702FCDDD(L_5, /*hidden argument*/NULL); return; } IL_002e: { // InputSystem.onBeforeUpdate -= OnBeforeUpdate; Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_6 = (Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 *)il2cpp_codegen_object_new(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var); Action__ctor_m07BE5EE8A629FBBA52AE6356D57A0D371BE2574B(L_6, __this, (intptr_t)((intptr_t)InputEventTrace_OnBeforeUpdate_mF73C7357F6F9CDD64F30E3ABA0C1525743CE2B0C_RuntimeMethod_var), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var); InputSystem_remove_onBeforeUpdate_m90DF65A6301BBAE1D0FC4689D412598155AF6DBE(L_6, /*hidden argument*/NULL); } IL_003f: { // } return; } } // System.Int64 UnityEngine.InputSystem.LowLevel.InputEventTrace::get_eventCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputEventTrace_get_eventCount_m764045556A2926F8642191F035F7DF5A91280E6A (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method) { { // public long eventCount => m_EventCount; int64_t L_0 = __this->get_m_EventCount_9(); return L_0; } } // System.Int64 UnityEngine.InputSystem.LowLevel.InputEventTrace::get_totalEventSizeInBytes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputEventTrace_get_totalEventSizeInBytes_m05613916BF73888DABE18BC467BA8BB387E78081 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method) { { // public long totalEventSizeInBytes => m_EventSizeInBytes; int64_t L_0 = __this->get_m_EventSizeInBytes_10(); return L_0; } } // System.Int64 UnityEngine.InputSystem.LowLevel.InputEventTrace::get_allocatedSizeInBytes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputEventTrace_get_allocatedSizeInBytes_m2D615C7EC2598FAD4A22C09A44A9FC6A797E2AD5 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method) { { // public long allocatedSizeInBytes => m_EventBuffer != default ? m_EventBufferSize : 0; uint8_t* L_0; L_0 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); if ((!(((uintptr_t)L_0) == ((uintptr_t)((uintptr_t)0))))) { goto IL_000d; } } { return ((int64_t)((int64_t)0)); } IL_000d: { int64_t L_1 = __this->get_m_EventBufferSize_6(); return L_1; } } // System.Int64 UnityEngine.InputSystem.LowLevel.InputEventTrace::get_maxSizeInBytes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputEventTrace_get_maxSizeInBytes_m4B34DA89A15CA485FDA194254389008F82BBED82 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method) { { // public long maxSizeInBytes => m_MaxEventBufferSize; int64_t L_0 = __this->get_m_MaxEventBufferSize_7(); return L_0; } } // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 UnityEngine.InputSystem.LowLevel.InputEventTrace::get_deviceInfos() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_tB0C672A35D9507319B5BF448296839F3F3BAF078 InputEventTrace_get_deviceInfos_m14B81F9439FDA9022A047D88D48E1B58B4D3A8B5 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_op_Implicit_mA7B6FD4501EAC9196BB0A451EC4835363B7E5C70_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // public ReadOnlyArray deviceInfos => m_DeviceInfos; DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81* L_0 = __this->get_m_DeviceInfos_16(); ReadOnlyArray_1_tB0C672A35D9507319B5BF448296839F3F3BAF078 L_1; L_1 = ReadOnlyArray_1_op_Implicit_mA7B6FD4501EAC9196BB0A451EC4835363B7E5C70(L_0, /*hidden argument*/ReadOnlyArray_1_op_Implicit_mA7B6FD4501EAC9196BB0A451EC4835363B7E5C70_RuntimeMethod_var); return L_1; } } // System.Func`3 UnityEngine.InputSystem.LowLevel.InputEventTrace::get_onFilterEvent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_3_tD99A6009701E72566BE785B8109E9B5773975D91 * InputEventTrace_get_onFilterEvent_mDB71B65EEBBABC07BFBEA2382C85C012C54B7D15 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method) { { // get => m_OnFilterEvent; Func_3_tD99A6009701E72566BE785B8109E9B5773975D91 * L_0 = __this->get_m_OnFilterEvent_3(); return L_0; } } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::set_onFilterEvent(System.Func`3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_onFilterEvent_mB6CA531F02290C394F02A92A99C8763050D80504 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, Func_3_tD99A6009701E72566BE785B8109E9B5773975D91 * ___value0, const RuntimeMethod* method) { { // set => m_OnFilterEvent = value; Func_3_tD99A6009701E72566BE785B8109E9B5773975D91 * L_0 = ___value0; __this->set_m_OnFilterEvent_3(L_0); return; } } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::add_onEvent(System.Action`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_add_onEvent_m76C973DED1EA64D748DEB8DDE222687742F607BC (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, Action_1_t231F2AF856D3317D1380298224A60D02F9F43072 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_AddCallback_m18089655DC703FDDC127E3DAD49DF62E10D369E6_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // add => m_EventListeners.AddCallback(value); CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008 * L_0 = __this->get_address_of_m_EventListeners_5(); Action_1_t231F2AF856D3317D1380298224A60D02F9F43072 * L_1 = ___value0; CallbackArray_1_AddCallback_m18089655DC703FDDC127E3DAD49DF62E10D369E6((CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008 *)L_0, L_1, /*hidden argument*/CallbackArray_1_AddCallback_m18089655DC703FDDC127E3DAD49DF62E10D369E6_RuntimeMethod_var); return; } } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::remove_onEvent(System.Action`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_remove_onEvent_mA5B633A61CDFE330DEBD51DC405C357645D52C69 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, Action_1_t231F2AF856D3317D1380298224A60D02F9F43072 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_RemoveCallback_m9E56B372129F9C558893BD6A2CE2139EF23C9F71_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // remove => m_EventListeners.RemoveCallback(value); CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008 * L_0 = __this->get_address_of_m_EventListeners_5(); Action_1_t231F2AF856D3317D1380298224A60D02F9F43072 * L_1 = ___value0; CallbackArray_1_RemoveCallback_m9E56B372129F9C558893BD6A2CE2139EF23C9F71((CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008 *)L_0, L_1, /*hidden argument*/CallbackArray_1_RemoveCallback_m9E56B372129F9C558893BD6A2CE2139EF23C9F71_RuntimeMethod_var); return; } } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::.ctor(UnityEngine.InputSystem.InputDevice,System.Int64,System.Boolean,System.Int64,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace__ctor_mF22332C7F9A39017F0CBD636F4F533C527F68D90 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, int64_t ___bufferSizeInBytes1, bool ___growBuffer2, int64_t ___maxBufferSizeInBytes3, int64_t ___growIncrementSizeInBytes4, const RuntimeMethod* method) { { // : this(bufferSizeInBytes, growBuffer, maxBufferSizeInBytes, growIncrementSizeInBytes) int64_t L_0 = ___bufferSizeInBytes1; bool L_1 = ___growBuffer2; int64_t L_2 = ___maxBufferSizeInBytes3; int64_t L_3 = ___growIncrementSizeInBytes4; InputEventTrace__ctor_mE55684093A028B8CF27A782B4427C952718BF6D9(__this, L_0, L_1, L_2, L_3, /*hidden argument*/NULL); // if (device == null) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_4 = ___device0; if (L_4) { goto IL_001a; } } { // throw new ArgumentNullException(nameof(device)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_5 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE847FDE91DE0DA95AFBA0EEF52C90BEB4CE621BF)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace__ctor_mF22332C7F9A39017F0CBD636F4F533C527F68D90_RuntimeMethod_var))); } IL_001a: { // m_DeviceId = device.deviceId; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_6 = ___device0; NullCheck(L_6); int32_t L_7; L_7 = InputDevice_get_deviceId_mDDE1531F7B9A1E03B17094C7AC37E58177E4AA0D_inline(L_6, /*hidden argument*/NULL); __this->set_m_DeviceId_4(L_7); // } return; } } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::.ctor(System.Int64,System.Boolean,System.Int64,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace__ctor_mE55684093A028B8CF27A782B4427C952718BF6D9 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, int64_t ___bufferSizeInBytes0, bool ___growBuffer1, int64_t ___maxBufferSizeInBytes2, int64_t ___growIncrementSizeInBytes3, const RuntimeMethod* method) { { // public InputEventTrace(long bufferSizeInBytes = kDefaultBufferSize, bool growBuffer = false, long maxBufferSizeInBytes = -1, long growIncrementSizeInBytes = -1) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // m_EventBufferSize = (uint)bufferSizeInBytes; int64_t L_0 = ___bufferSizeInBytes0; __this->set_m_EventBufferSize_6(((int64_t)((uint64_t)((uint32_t)((uint32_t)((int32_t)((uint32_t)L_0))))))); // if (growBuffer) bool L_1 = ___growBuffer1; if (!L_1) { goto IL_0048; } } { // if (maxBufferSizeInBytes < 0) int64_t L_2 = ___maxBufferSizeInBytes2; if ((((int64_t)L_2) >= ((int64_t)((int64_t)((int64_t)0))))) { goto IL_0025; } } { // m_MaxEventBufferSize = 256 * kDefaultBufferSize; __this->set_m_MaxEventBufferSize_7(((int64_t)((int64_t)((int32_t)268435456)))); goto IL_002c; } IL_0025: { // m_MaxEventBufferSize = maxBufferSizeInBytes; int64_t L_3 = ___maxBufferSizeInBytes2; __this->set_m_MaxEventBufferSize_7(L_3); } IL_002c: { // if (growIncrementSizeInBytes < 0) int64_t L_4 = ___growIncrementSizeInBytes3; if ((((int64_t)L_4) >= ((int64_t)((int64_t)((int64_t)0))))) { goto IL_003f; } } { // m_GrowIncrementSize = kDefaultBufferSize; __this->set_m_GrowIncrementSize_8(((int64_t)((int64_t)((int32_t)1048576)))); return; } IL_003f: { // m_GrowIncrementSize = growIncrementSizeInBytes; int64_t L_5 = ___growIncrementSizeInBytes3; __this->set_m_GrowIncrementSize_8(L_5); // } return; } IL_0048: { // m_MaxEventBufferSize = m_EventBufferSize; int64_t L_6 = __this->get_m_EventBufferSize_6(); __this->set_m_MaxEventBufferSize_7(L_6); // } return; } } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::WriteTo(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_WriteTo_m6DDDA8165A1B62137878493F5D318A7121F98D6A (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, String_t* ___filePath0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 * V_0 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { // if (string.IsNullOrEmpty(filePath)) String_t* L_0 = ___filePath0; bool L_1; L_1 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0013; } } { // throw new ArgumentNullException(nameof(filePath)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E6231226F0A62484622AE51964EB5710BB528F9)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_WriteTo_m6DDDA8165A1B62137878493F5D318A7121F98D6A_RuntimeMethod_var))); } IL_0013: { // using (var stream = File.OpenWrite(filePath)) String_t* L_3 = ___filePath0; FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 * L_4; L_4 = File_OpenWrite_m2A4F40A23C3BB7E97563E93D7C7A6D1C10C266C9(L_3, /*hidden argument*/NULL); V_0 = L_4; } IL_001a: try { // begin try (depth: 1) // WriteTo(stream); FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 * L_5 = V_0; InputEventTrace_WriteTo_m972A3D422439BDAC6ED445DCEB2422C05111D73F(__this, L_5, /*hidden argument*/NULL); IL2CPP_LEAVE(0x2D, FINALLY_0023); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0023; } FINALLY_0023: { // begin finally (depth: 1) { FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 * L_6 = V_0; if (!L_6) { goto IL_002c; } } IL_0026: { FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 * L_7 = V_0; NullCheck(L_7); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_7); } IL_002c: { IL2CPP_END_FINALLY(35) } } // end finally (depth: 1) IL2CPP_CLEANUP(35) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x2D, IL_002d) } IL_002d: { // } return; } } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::WriteTo(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_WriteTo_m972A3D422439BDAC6ED445DCEB2422C05111D73F (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_LengthSafe_TisDeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F_m5289263AC46EB098266066A629B4B9F951B8A3F3_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t35B2BB0A3DE11CABE33D6DF7DA61318A7DD994F4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * V_0 = NULL; int32_t V_1 = 0; int64_t V_2 = 0; int32_t V_3 = 0; int64_t V_4 = 0; RuntimeObject* V_5 = NULL; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 V_6; memset((&V_6), 0, sizeof(V_6)); uint32_t V_7 = 0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_8 = NULL; uint8_t* V_9 = NULL; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_10 = NULL; int32_t V_11 = 0; DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * V_12 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; String_t* G_B23_0 = NULL; BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * G_B23_1 = NULL; String_t* G_B22_0 = NULL; BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * G_B22_1 = NULL; { // if (stream == null) Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = ___stream0; if (L_0) { goto IL_000e; } } { // throw new ArgumentNullException(nameof(stream)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_WriteTo_m972A3D422439BDAC6ED445DCEB2422C05111D73F_RuntimeMethod_var))); } IL_000e: { // if (!stream.CanSeek) Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_2 = ___stream0; NullCheck(L_2); bool L_3; L_3 = VirtFuncInvoker0< bool >::Invoke(8 /* System.Boolean System.IO.Stream::get_CanSeek() */, L_2); if (L_3) { goto IL_0026; } } { // throw new ArgumentException("Stream does not support seeking", nameof(stream)); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4541DABAC4FE8FD5D7C4DBCDA1190481B5A90229)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_WriteTo_m972A3D422439BDAC6ED445DCEB2422C05111D73F_RuntimeMethod_var))); } IL_0026: { // var writer = new BinaryWriter(stream); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_5 = ___stream0; BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * L_6 = (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F *)il2cpp_codegen_object_new(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F_il2cpp_TypeInfo_var); BinaryWriter__ctor_mC6F89939E04734FBEEA375D7E0FF9C042E4AB71A(L_6, L_5, /*hidden argument*/NULL); V_0 = L_6; // var flags = default(FileFlags); V_1 = 0; // if (InputSystem.settings.updateMode == InputSettings.UpdateMode.ProcessEventsInFixedUpdate) IL2CPP_RUNTIME_CLASS_INIT(InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var); InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_7; L_7 = InputSystem_get_settings_mA42EFB90BC81DD4A8E7C5B069395915157571ED8(/*hidden argument*/NULL); NullCheck(L_7); int32_t L_8; L_8 = InputSettings_get_updateMode_m139C9F1C6191E7C6209426D23BEE5C5816AC7280_inline(L_7, /*hidden argument*/NULL); if ((!(((uint32_t)L_8) == ((uint32_t)2)))) { goto IL_0040; } } { // flags |= FileFlags.FixedUpdate; int32_t L_9 = V_1; V_1 = ((int32_t)((int32_t)L_9|(int32_t)1)); } IL_0040: { // writer.Write(kFileFormat); BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * L_10 = V_0; IL2CPP_RUNTIME_CLASS_INIT(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_il2cpp_TypeInfo_var); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_11; L_11 = InputEventTrace_get_kFileFormat_mB181CCDEF3644A0EA1F4A8EC41CD203D3631B20F(/*hidden argument*/NULL); int32_t L_12; L_12 = FourCC_op_Implicit_m31DD5572C70000C1AA4A97915EB6A7C165C53DFA_inline(L_11, /*hidden argument*/NULL); NullCheck(L_10); VirtActionInvoker1< int32_t >::Invoke(16 /* System.Void System.IO.BinaryWriter::Write(System.Int32) */, L_10, L_12); // writer.Write(kFileVersion); BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * L_13 = V_0; int32_t L_14 = ((InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_StaticFields*)il2cpp_codegen_static_fields_for(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_il2cpp_TypeInfo_var))->get_kFileVersion_17(); NullCheck(L_13); VirtActionInvoker1< int32_t >::Invoke(16 /* System.Void System.IO.BinaryWriter::Write(System.Int32) */, L_13, L_14); // writer.Write((int)flags); BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * L_15 = V_0; int32_t L_16 = V_1; NullCheck(L_15); VirtActionInvoker1< int32_t >::Invoke(16 /* System.Void System.IO.BinaryWriter::Write(System.Int32) */, L_15, L_16); // writer.Write((int)Application.platform); BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * L_17 = V_0; int32_t L_18; L_18 = Application_get_platform_mAD6C941E38459EFF017EC446E2E5EFB7CDD36EE4(/*hidden argument*/NULL); NullCheck(L_17); VirtActionInvoker1< int32_t >::Invoke(16 /* System.Void System.IO.BinaryWriter::Write(System.Int32) */, L_17, L_18); // writer.Write((ulong)m_EventCount); BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * L_19 = V_0; int64_t L_20 = __this->get_m_EventCount_9(); NullCheck(L_19); VirtActionInvoker1< uint64_t >::Invoke(19 /* System.Void System.IO.BinaryWriter::Write(System.UInt64) */, L_19, L_20); // writer.Write((ulong)m_EventSizeInBytes); BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * L_21 = V_0; int64_t L_22 = __this->get_m_EventSizeInBytes_10(); NullCheck(L_21); VirtActionInvoker1< uint64_t >::Invoke(19 /* System.Void System.IO.BinaryWriter::Write(System.UInt64) */, L_21, L_22); // foreach (var eventPtr in this) RuntimeObject* L_23; L_23 = InputEventTrace_GetEnumerator_m40F307BD45D94C5ADFFD90C048A13215B85828AD(__this, /*hidden argument*/NULL); V_5 = L_23; } IL_008d: try { // begin try (depth: 1) { goto IL_00e7; } IL_008f: { // foreach (var eventPtr in this) RuntimeObject* L_24 = V_5; NullCheck(L_24); InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_25; L_25 = InterfaceFuncInvoker0< InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1::get_Current() */, IEnumerator_1_t35B2BB0A3DE11CABE33D6DF7DA61318A7DD994F4_il2cpp_TypeInfo_var, L_24); V_6 = L_25; // var sizeInBytes = eventPtr.sizeInBytes; uint32_t L_26; L_26 = InputEventPtr_get_sizeInBytes_m4607C53C6A41A6BE5238609D7C1E4A2C169D5712((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&V_6), /*hidden argument*/NULL); V_7 = L_26; // var buffer = new byte[sizeInBytes]; uint32_t L_27 = V_7; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_28 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_27); V_8 = L_28; } IL_00aa: try { // begin try (depth: 2) { // fixed(byte* bufferPtr = buffer) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_29 = V_8; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_30 = L_29; V_10 = L_30; if (!L_30) { goto IL_00b7; } } IL_00b1: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_31 = V_10; NullCheck(L_31); if (((int32_t)((int32_t)(((RuntimeArray*)L_31)->max_length)))) { goto IL_00bd; } } IL_00b7: { V_9 = (uint8_t*)((uintptr_t)0); goto IL_00c8; } IL_00bd: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_32 = V_10; NullCheck(L_32); V_9 = (uint8_t*)((uintptr_t)((L_32)->GetAddressAt(static_cast(0)))); } IL_00c8: { // UnsafeUtility.MemCpy(bufferPtr, eventPtr.data, sizeInBytes); uint8_t* L_33 = V_9; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_34; L_34 = InputEventPtr_get_data_m23324B1E4068E48168D6D06CEF9CC061D1E2D694_inline((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&V_6), /*hidden argument*/NULL); uint32_t L_35 = V_7; UnsafeUtility_MemCpy_mA8E186A63FE9CE463F95E5C5FF1C5F1B4E84F90E((void*)(void*)L_33, (void*)(void*)L_34, ((int64_t)((uint64_t)L_35)), /*hidden argument*/NULL); // writer.Write(buffer); BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * L_36 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_37 = V_8; NullCheck(L_36); VirtActionInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(9 /* System.Void System.IO.BinaryWriter::Write(System.Byte[]) */, L_36, L_37); IL2CPP_LEAVE(0xE7, FINALLY_00e3); } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00e3; } FINALLY_00e3: { // begin finally (depth: 2) V_10 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL; IL2CPP_END_FINALLY(227) } // end finally (depth: 2) IL2CPP_CLEANUP(227) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xE7, IL_00e7) } IL_00e7: { // foreach (var eventPtr in this) RuntimeObject* L_38 = V_5; NullCheck(L_38); bool L_39; L_39 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_38); if (L_39) { goto IL_008f; } } IL_00f0: { IL2CPP_LEAVE(0xFE, FINALLY_00f2); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00f2; } FINALLY_00f2: { // begin finally (depth: 1) { RuntimeObject* L_40 = V_5; if (!L_40) { goto IL_00fd; } } IL_00f6: { RuntimeObject* L_41 = V_5; NullCheck(L_41); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_41); } IL_00fd: { IL2CPP_END_FINALLY(242) } } // end finally (depth: 1) IL2CPP_CLEANUP(242) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xFE, IL_00fe) } IL_00fe: { // writer.Flush(); BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * L_42 = V_0; NullCheck(L_42); VirtActionInvoker0::Invoke(6 /* System.Void System.IO.BinaryWriter::Flush() */, L_42); // var positionOfDeviceList = stream.Position; Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_43 = ___stream0; NullCheck(L_43); int64_t L_44; L_44 = VirtFuncInvoker0< int64_t >::Invoke(11 /* System.Int64 System.IO.Stream::get_Position() */, L_43); V_2 = L_44; // var deviceCount = m_DeviceInfos.LengthSafe(); DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81* L_45 = __this->get_m_DeviceInfos_16(); int32_t L_46; L_46 = ArrayHelpers_LengthSafe_TisDeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F_m5289263AC46EB098266066A629B4B9F951B8A3F3(L_45, /*hidden argument*/ArrayHelpers_LengthSafe_TisDeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F_m5289263AC46EB098266066A629B4B9F951B8A3F3_RuntimeMethod_var); V_3 = L_46; // writer.Write(deviceCount); BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * L_47 = V_0; int32_t L_48 = V_3; NullCheck(L_47); VirtActionInvoker1< int32_t >::Invoke(16 /* System.Void System.IO.BinaryWriter::Write(System.Int32) */, L_47, L_48); // for (var i = 0; i < deviceCount; ++i) V_11 = 0; goto IL_0187; } IL_0123: { // ref var device = ref m_DeviceInfos[i]; DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81* L_49 = __this->get_m_DeviceInfos_16(); int32_t L_50 = V_11; NullCheck(L_49); V_12 = (DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F *)((L_49)->GetAddressAt(static_cast(L_50))); // writer.Write(device.deviceId); BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * L_51 = V_0; DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * L_52 = V_12; int32_t L_53; L_53 = DeviceInfo_get_deviceId_m4CA1031F6F24EFD5C78EB7B05EAEDAB926FEC3B0_inline((DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F *)L_52, /*hidden argument*/NULL); NullCheck(L_51); VirtActionInvoker1< int32_t >::Invoke(16 /* System.Void System.IO.BinaryWriter::Write(System.Int32) */, L_51, L_53); // writer.Write(device.layout); BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * L_54 = V_0; DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * L_55 = V_12; String_t* L_56; L_56 = DeviceInfo_get_layout_m3109AA525FB0E7DE59C7ADF62E85D35D8FC5A76F_inline((DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F *)L_55, /*hidden argument*/NULL); NullCheck(L_54); VirtActionInvoker1< String_t* >::Invoke(21 /* System.Void System.IO.BinaryWriter::Write(System.String) */, L_54, L_56); // writer.Write(device.stateFormat); BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * L_57 = V_0; DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * L_58 = V_12; FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_59; L_59 = DeviceInfo_get_stateFormat_m1B94E3D7F14F239074C2D0208F79BFEB7FBFC6BA_inline((DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F *)L_58, /*hidden argument*/NULL); int32_t L_60; L_60 = FourCC_op_Implicit_m31DD5572C70000C1AA4A97915EB6A7C165C53DFA_inline(L_59, /*hidden argument*/NULL); NullCheck(L_57); VirtActionInvoker1< int32_t >::Invoke(16 /* System.Void System.IO.BinaryWriter::Write(System.Int32) */, L_57, L_60); // writer.Write(device.stateSizeInBytes); BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * L_61 = V_0; DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * L_62 = V_12; int32_t L_63; L_63 = DeviceInfo_get_stateSizeInBytes_mD3FB033842B290EF701D2CC5E5553B07D0223B9B_inline((DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F *)L_62, /*hidden argument*/NULL); NullCheck(L_61); VirtActionInvoker1< int32_t >::Invoke(16 /* System.Void System.IO.BinaryWriter::Write(System.Int32) */, L_61, L_63); // writer.Write(device.m_FullLayoutJson ?? string.Empty); BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * L_64 = V_0; DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * L_65 = V_12; String_t* L_66 = L_65->get_m_FullLayoutJson_4(); String_t* L_67 = L_66; G_B22_0 = L_67; G_B22_1 = L_64; if (L_67) { G_B23_0 = L_67; G_B23_1 = L_64; goto IL_017c; } } { String_t* L_68 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); G_B23_0 = L_68; G_B23_1 = G_B22_1; } IL_017c: { NullCheck(G_B23_1); VirtActionInvoker1< String_t* >::Invoke(21 /* System.Void System.IO.BinaryWriter::Write(System.String) */, G_B23_1, G_B23_0); // for (var i = 0; i < deviceCount; ++i) int32_t L_69 = V_11; V_11 = ((int32_t)il2cpp_codegen_add((int32_t)L_69, (int32_t)1)); } IL_0187: { // for (var i = 0; i < deviceCount; ++i) int32_t L_70 = V_11; int32_t L_71 = V_3; if ((((int32_t)L_70) < ((int32_t)L_71))) { goto IL_0123; } } { // writer.Flush(); BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * L_72 = V_0; NullCheck(L_72); VirtActionInvoker0::Invoke(6 /* System.Void System.IO.BinaryWriter::Flush() */, L_72); // var offsetOfDeviceList = stream.Position - positionOfDeviceList; Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_73 = ___stream0; NullCheck(L_73); int64_t L_74; L_74 = VirtFuncInvoker0< int64_t >::Invoke(11 /* System.Int64 System.IO.Stream::get_Position() */, L_73); int64_t L_75 = V_2; V_4 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_74, (int64_t)L_75)); // writer.Write(offsetOfDeviceList); BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * L_76 = V_0; int64_t L_77 = V_4; NullCheck(L_76); VirtActionInvoker1< int64_t >::Invoke(18 /* System.Void System.IO.BinaryWriter::Write(System.Int64) */, L_76, L_77); // } return; } } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::ReadFrom(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_ReadFrom_mBEE7DF428E30993AA1175C16193285175D2C600D (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, String_t* ___filePath0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 * V_0 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { // if (string.IsNullOrEmpty(filePath)) String_t* L_0 = ___filePath0; bool L_1; L_1 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0013; } } { // throw new ArgumentNullException(nameof(filePath)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E6231226F0A62484622AE51964EB5710BB528F9)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_ReadFrom_mBEE7DF428E30993AA1175C16193285175D2C600D_RuntimeMethod_var))); } IL_0013: { // using (var stream = File.OpenRead(filePath)) String_t* L_3 = ___filePath0; FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 * L_4; L_4 = File_OpenRead_m8911FD2375633548F8443CD2F0C9C3E4819474DA(L_3, /*hidden argument*/NULL); V_0 = L_4; } IL_001a: try { // begin try (depth: 1) // ReadFrom(stream); FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 * L_5 = V_0; InputEventTrace_ReadFrom_m98E4BABCB5F0BA8E173D7FB11DCDF1DFD4FC81DD(__this, L_5, /*hidden argument*/NULL); IL2CPP_LEAVE(0x2D, FINALLY_0023); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0023; } FINALLY_0023: { // begin finally (depth: 1) { FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 * L_6 = V_0; if (!L_6) { goto IL_002c; } } IL_0026: { FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 * L_7 = V_0; NullCheck(L_7); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_7); } IL_002c: { IL2CPP_END_FINALLY(35) } } // end finally (depth: 1) IL2CPP_CLEANUP(35) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x2D, IL_002d) } IL_002d: { // } return; } } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::ReadFrom(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_ReadFrom_m98E4BABCB5F0BA8E173D7FB11DCDF1DFD4FC81DD (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128 * V_0 = NULL; uint64_t V_1 = 0; uint64_t V_2 = 0; uint8_t* V_3 = NULL; uint8_t* V_4 = NULL; uint8_t* V_5 = NULL; uint8_t* V_6 = NULL; int64_t V_7 = 0; int32_t V_8 = 0; DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81* V_9 = NULL; uint64_t V_10 = 0; int32_t V_11 = 0; uint32_t V_12 = 0; uint32_t V_13 = 0; int32_t V_14 = 0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_15 = NULL; uint8_t* V_16 = NULL; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_17 = NULL; int32_t V_18 = 0; DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F V_19; memset((&V_19), 0, sizeof(V_19)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // if (stream == null) Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = ___stream0; if (L_0) { goto IL_000e; } } { // throw new ArgumentNullException(nameof(stream)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_ReadFrom_m98E4BABCB5F0BA8E173D7FB11DCDF1DFD4FC81DD_RuntimeMethod_var))); } IL_000e: { // if (!stream.CanRead) Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_2 = ___stream0; NullCheck(L_2); bool L_3; L_3 = VirtFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.IO.Stream::get_CanRead() */, L_2); if (L_3) { goto IL_0026; } } { // throw new ArgumentException("Stream does not support reading", nameof(stream)); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA4EC35FE30A8C73BDAEF7A654EEEA3953D7FAE24)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_ReadFrom_m98E4BABCB5F0BA8E173D7FB11DCDF1DFD4FC81DD_RuntimeMethod_var))); } IL_0026: { // var reader = new BinaryReader(stream); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_5 = ___stream0; BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128 * L_6 = (BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128 *)il2cpp_codegen_object_new(BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128_il2cpp_TypeInfo_var); BinaryReader__ctor_m8D2F966D44EF5BD30D54D94653A831EFDB9C6A60(L_6, L_5, /*hidden argument*/NULL); V_0 = L_6; // if (reader.ReadInt32() != kFileFormat) BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128 * L_7 = V_0; NullCheck(L_7); int32_t L_8; L_8 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_7); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_9; L_9 = FourCC_op_Implicit_m1EF35613D75316DA0F135114B72093EBB3D04356(L_8, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_il2cpp_TypeInfo_var); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_10; L_10 = InputEventTrace_get_kFileFormat_mB181CCDEF3644A0EA1F4A8EC41CD203D3631B20F(/*hidden argument*/NULL); bool L_11; L_11 = FourCC_op_Inequality_m1E781CB491ABFCA16991EF6F695C559068406232(L_9, L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_005e; } } { // throw new IOException($"Stream does not appear to be an InputEventTrace (no '{kFileFormat}' code)"); IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_il2cpp_TypeInfo_var))); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_12; L_12 = InputEventTrace_get_kFileFormat_mB181CCDEF3644A0EA1F4A8EC41CD203D3631B20F(/*hidden argument*/NULL); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_13 = L_12; RuntimeObject * L_14 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9_il2cpp_TypeInfo_var)), &L_13); String_t* L_15; L_15 = String_Format_m5A16F3ABC59A3E9804E0CB2636849CCD74CEC994(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral589E6D8BD59F7D804E4A1A1C559787B0B2549B6C)), L_14, /*hidden argument*/NULL); IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * L_16 = (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var))); IOException__ctor_m208E01C02FF2C1D6C5AA661A5816C744804E1690(L_16, L_15, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_ReadFrom_m98E4BABCB5F0BA8E173D7FB11DCDF1DFD4FC81DD_RuntimeMethod_var))); } IL_005e: { // if (reader.ReadInt32() > kFileVersion) BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128 * L_17 = V_0; NullCheck(L_17); int32_t L_18; L_18 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_17); IL2CPP_RUNTIME_CLASS_INIT(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_il2cpp_TypeInfo_var); int32_t L_19 = ((InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_StaticFields*)il2cpp_codegen_static_fields_for(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_il2cpp_TypeInfo_var))->get_kFileVersion_17(); if ((((int32_t)L_18) <= ((int32_t)L_19))) { goto IL_0085; } } { // throw new IOException($"Stream is an InputEventTrace but a newer version (expected version {kFileVersion} or below)"); IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_il2cpp_TypeInfo_var))); int32_t L_20 = ((InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_il2cpp_TypeInfo_var))))->get_kFileVersion_17(); int32_t L_21 = L_20; RuntimeObject * L_22 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_21); String_t* L_23; L_23 = String_Format_m5A16F3ABC59A3E9804E0CB2636849CCD74CEC994(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral34E2E1D5D393F33E08B55532C6B7D27294F02F4C)), L_22, /*hidden argument*/NULL); IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * L_24 = (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var))); IOException__ctor_m208E01C02FF2C1D6C5AA661A5816C744804E1690(L_24, L_23, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_ReadFrom_m98E4BABCB5F0BA8E173D7FB11DCDF1DFD4FC81DD_RuntimeMethod_var))); } IL_0085: { // reader.ReadInt32(); // Flags; ignored for now. BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128 * L_25 = V_0; NullCheck(L_25); int32_t L_26; L_26 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_25); // reader.ReadInt32(); // Platform; for now we're not doing anything with it. BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128 * L_27 = V_0; NullCheck(L_27); int32_t L_28; L_28 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_27); // var eventCount = reader.ReadUInt64(); BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128 * L_29 = V_0; NullCheck(L_29); uint64_t L_30; L_30 = VirtFuncInvoker0< uint64_t >::Invoke(18 /* System.UInt64 System.IO.BinaryReader::ReadUInt64() */, L_29); V_1 = L_30; // var totalEventSizeInBytes = reader.ReadUInt64(); BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128 * L_31 = V_0; NullCheck(L_31); uint64_t L_32; L_32 = VirtFuncInvoker0< uint64_t >::Invoke(18 /* System.UInt64 System.IO.BinaryReader::ReadUInt64() */, L_31); V_2 = L_32; // var oldBuffer = m_EventBuffer; uint8_t* L_33; L_33 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); V_3 = (uint8_t*)L_33; // if (eventCount > 0 && totalEventSizeInBytes > 0) uint64_t L_34 = V_1; if ((!(((uint64_t)L_34) > ((uint64_t)((int64_t)((int64_t)0)))))) { goto IL_027e; } } { uint64_t L_35 = V_2; if ((!(((uint64_t)L_35) > ((uint64_t)((int64_t)((int64_t)0)))))) { goto IL_027e; } } { // if (m_EventBuffer != null && m_EventBufferSize >= (long)totalEventSizeInBytes) uint8_t* L_36; L_36 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); if ((((intptr_t)L_36) == ((intptr_t)((uintptr_t)0)))) { goto IL_00d5; } } { int64_t L_37 = __this->get_m_EventBufferSize_6(); uint64_t L_38 = V_2; if ((((int64_t)L_37) < ((int64_t)L_38))) { goto IL_00d5; } } { // buffer = m_EventBuffer; uint8_t* L_39; L_39 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); V_4 = (uint8_t*)L_39; // } goto IL_00e6; } IL_00d5: { // buffer = (byte*)UnsafeUtility.Malloc((long)totalEventSizeInBytes, InputEvent.kAlignment, Allocator.Persistent); uint64_t L_40 = V_2; void* L_41; L_41 = UnsafeUtility_Malloc_m540451750CEC21D0DEEE8C42ED25AE9B623E2BAE(L_40, 4, 4, /*hidden argument*/NULL); V_4 = (uint8_t*)L_41; // m_EventBufferSize = (long)totalEventSizeInBytes; uint64_t L_42 = V_2; __this->set_m_EventBufferSize_6(L_42); } IL_00e6: { } IL_00e7: try { // begin try (depth: 1) { // var tailPtr = buffer; uint8_t* L_43 = V_4; V_5 = (uint8_t*)L_43; // var endPtr = tailPtr + totalEventSizeInBytes; uint8_t* L_44 = V_5; uint64_t L_45 = V_2; V_6 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_44, (intptr_t)((uintptr_t)L_45))); // var totalEventSize = 0L; V_7 = ((int64_t)((int64_t)0)); // for (var i = 0ul; i < eventCount; ++i) V_10 = ((int64_t)((int64_t)0)); goto IL_01b6; } IL_00ff: { // var eventType = reader.ReadInt32(); BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128 * L_46 = V_0; NullCheck(L_46); int32_t L_47; L_47 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_46); V_11 = L_47; // var eventSizeInBytes = (uint)reader.ReadUInt16(); BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128 * L_48 = V_0; NullCheck(L_48); uint16_t L_49; L_49 = VirtFuncInvoker0< uint16_t >::Invoke(14 /* System.UInt16 System.IO.BinaryReader::ReadUInt16() */, L_48); V_12 = L_49; // var eventDeviceId = (uint)reader.ReadUInt16(); BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128 * L_50 = V_0; NullCheck(L_50); uint16_t L_51; L_51 = VirtFuncInvoker0< uint16_t >::Invoke(14 /* System.UInt16 System.IO.BinaryReader::ReadUInt16() */, L_50); V_13 = L_51; // if (eventSizeInBytes > endPtr - tailPtr) uint32_t L_52 = V_12; uint8_t* L_53 = V_6; uint8_t* L_54 = V_5; if ((((int64_t)((int64_t)((uint64_t)L_52))) > ((int64_t)((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_53, (intptr_t)L_54))/(int32_t)1))))))) { goto IL_01be; } } IL_0127: { // *(int*)tailPtr = eventType; uint8_t* L_55 = V_5; int32_t L_56 = V_11; *((int32_t*)L_55) = (int32_t)L_56; // tailPtr += 4; uint8_t* L_57 = V_5; V_5 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_57, (int32_t)4)); // *(ushort*)tailPtr = (ushort)eventSizeInBytes; uint8_t* L_58 = V_5; uint32_t L_59 = V_12; *((int16_t*)L_58) = (int16_t)((int32_t)((uint16_t)L_59)); // tailPtr += 2; uint8_t* L_60 = V_5; V_5 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_60, (int32_t)2)); // *(ushort*)tailPtr = (ushort)eventDeviceId; uint8_t* L_61 = V_5; uint32_t L_62 = V_13; *((int16_t*)L_61) = (int16_t)((int32_t)((uint16_t)L_62)); // tailPtr += 2; uint8_t* L_63 = V_5; V_5 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_63, (int32_t)2)); // var remainingSize = (int)eventSizeInBytes - sizeof(int) - sizeof(short) - sizeof(short); uint32_t L_64 = V_12; V_14 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_64, (int32_t)4)), (int32_t)2)), (int32_t)2)); // var tempBuffer = reader.ReadBytes(remainingSize); BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128 * L_65 = V_0; int32_t L_66 = V_14; NullCheck(L_65); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_67; L_67 = VirtFuncInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(25 /* System.Byte[] System.IO.BinaryReader::ReadBytes(System.Int32) */, L_65, L_66); V_15 = L_67; } IL_015e: try { // begin try (depth: 2) { // fixed(byte* tempBufferPtr = tempBuffer) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_68 = V_15; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_69 = L_68; V_17 = L_69; if (!L_69) { goto IL_016b; } } IL_0165: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_70 = V_17; NullCheck(L_70); if (((int32_t)((int32_t)(((RuntimeArray*)L_70)->max_length)))) { goto IL_0171; } } IL_016b: { V_16 = (uint8_t*)((uintptr_t)0); goto IL_017c; } IL_0171: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_71 = V_17; NullCheck(L_71); V_16 = (uint8_t*)((uintptr_t)((L_71)->GetAddressAt(static_cast(0)))); } IL_017c: { // UnsafeUtility.MemCpy(tailPtr, tempBufferPtr, remainingSize); uint8_t* L_72 = V_5; uint8_t* L_73 = V_16; int32_t L_74 = V_14; UnsafeUtility_MemCpy_mA8E186A63FE9CE463F95E5C5FF1C5F1B4E84F90E((void*)(void*)L_72, (void*)(void*)L_73, ((int64_t)((int64_t)L_74)), /*hidden argument*/NULL); IL2CPP_LEAVE(0x18E, FINALLY_018a); } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_018a; } FINALLY_018a: { // begin finally (depth: 2) V_17 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL; IL2CPP_END_FINALLY(394) } // end finally (depth: 2) IL2CPP_CLEANUP(394) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x18E, IL_018e) } IL_018e: { // tailPtr += remainingSize.AlignToMultipleOf(InputEvent.kAlignment); uint8_t* L_75 = V_5; int32_t L_76 = V_14; int32_t L_77; L_77 = NumberHelpers_AlignToMultipleOf_mA69DF1D1D4E850C2DFF4D3FE946ED65D9C4615DD_inline(L_76, 4, /*hidden argument*/NULL); V_5 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_75, (int32_t)L_77)); // totalEventSize += eventSizeInBytes.AlignToMultipleOf(InputEvent.kAlignment); int64_t L_78 = V_7; uint32_t L_79 = V_12; uint32_t L_80; L_80 = NumberHelpers_AlignToMultipleOf_mAC36042E2A9F764DF404617DB262C5FB611212E7_inline(L_79, 4, /*hidden argument*/NULL); V_7 = ((int64_t)il2cpp_codegen_add((int64_t)L_78, (int64_t)((int64_t)((uint64_t)L_80)))); // if (tailPtr >= endPtr) uint8_t* L_81 = V_5; uint8_t* L_82 = V_6; if ((!(((uintptr_t)L_81) < ((uintptr_t)L_82)))) { goto IL_01be; } } IL_01af: { // for (var i = 0ul; i < eventCount; ++i) uint64_t L_83 = V_10; V_10 = ((int64_t)il2cpp_codegen_add((int64_t)L_83, (int64_t)((int64_t)((int64_t)1)))); } IL_01b6: { // for (var i = 0ul; i < eventCount; ++i) uint64_t L_84 = V_10; uint64_t L_85 = V_1; if ((!(((uint64_t)L_84) >= ((uint64_t)L_85)))) { goto IL_00ff; } } IL_01be: { // var deviceCount = reader.ReadInt32(); BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128 * L_86 = V_0; NullCheck(L_86); int32_t L_87; L_87 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_86); V_8 = L_87; // var deviceInfos = new DeviceInfo[deviceCount]; int32_t L_88 = V_8; DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81* L_89 = (DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81*)(DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81*)SZArrayNew(DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81_il2cpp_TypeInfo_var, (uint32_t)L_88); V_9 = L_89; // for (var i = 0; i < deviceCount; ++i) V_18 = 0; goto IL_0233; } IL_01d4: { // deviceInfos[i] = new DeviceInfo // { // deviceId = reader.ReadInt32(), // layout = reader.ReadString(), // stateFormat = reader.ReadInt32(), // stateSizeInBytes = reader.ReadInt32(), // m_FullLayoutJson = reader.ReadString() // }; DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81* L_90 = V_9; int32_t L_91 = V_18; il2cpp_codegen_initobj((&V_19), sizeof(DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F )); BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128 * L_92 = V_0; NullCheck(L_92); int32_t L_93; L_93 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_92); DeviceInfo_set_deviceId_mFE9C7FEFFBEE3349620D5143B15A30E2D5B08534_inline((DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F *)(&V_19), L_93, /*hidden argument*/NULL); BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128 * L_94 = V_0; NullCheck(L_94); String_t* L_95; L_95 = VirtFuncInvoker0< String_t* >::Invoke(22 /* System.String System.IO.BinaryReader::ReadString() */, L_94); DeviceInfo_set_layout_m0262E41ECF890B2E0C124864F9E0D13929FCC8CF_inline((DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F *)(&V_19), L_95, /*hidden argument*/NULL); BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128 * L_96 = V_0; NullCheck(L_96); int32_t L_97; L_97 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_96); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_98; L_98 = FourCC_op_Implicit_m1EF35613D75316DA0F135114B72093EBB3D04356(L_97, /*hidden argument*/NULL); DeviceInfo_set_stateFormat_m5D4E48D9F02EF684A946AD61A8F214D87D9FF82C_inline((DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F *)(&V_19), L_98, /*hidden argument*/NULL); BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128 * L_99 = V_0; NullCheck(L_99); int32_t L_100; L_100 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_99); DeviceInfo_set_stateSizeInBytes_m467A04204331C39AF96CF6E4753FFAB4460F6470_inline((DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F *)(&V_19), L_100, /*hidden argument*/NULL); BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128 * L_101 = V_0; NullCheck(L_101); String_t* L_102; L_102 = VirtFuncInvoker0< String_t* >::Invoke(22 /* System.String System.IO.BinaryReader::ReadString() */, L_101); (&V_19)->set_m_FullLayoutJson_4(L_102); DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F L_103 = V_19; NullCheck(L_90); (L_90)->SetAt(static_cast(L_91), (DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F )L_103); // for (var i = 0; i < deviceCount; ++i) int32_t L_104 = V_18; V_18 = ((int32_t)il2cpp_codegen_add((int32_t)L_104, (int32_t)1)); } IL_0233: { // for (var i = 0; i < deviceCount; ++i) int32_t L_105 = V_18; int32_t L_106 = V_8; if ((((int32_t)L_105) < ((int32_t)L_106))) { goto IL_01d4; } } IL_0239: { // m_EventBuffer = buffer; uint8_t* L_107 = V_4; InputEventTrace_set_m_EventBuffer_m9B6305E95ECC12E9B5B811D6B1883891A807BFF0(__this, (uint8_t*)(uint8_t*)L_107, /*hidden argument*/NULL); // m_EventBufferHead = m_EventBuffer; uint8_t* L_108; L_108 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); InputEventTrace_set_m_EventBufferHead_mF322FFA85D9962A39F70E91855F5BD4FAEC15785(__this, (uint8_t*)(uint8_t*)L_108, /*hidden argument*/NULL); // m_EventBufferTail = endPtr; uint8_t* L_109 = V_6; InputEventTrace_set_m_EventBufferTail_m34E44F7D85F4EA4DF45B7EAB71F0DCDBB262E166(__this, (uint8_t*)(uint8_t*)L_109, /*hidden argument*/NULL); // m_EventCount = (long)eventCount; uint64_t L_110 = V_1; __this->set_m_EventCount_9(L_110); // m_EventSizeInBytes = totalEventSize; int64_t L_111 = V_7; __this->set_m_EventSizeInBytes_10(L_111); // m_DeviceInfos = deviceInfos; DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81* L_112 = V_9; __this->set_m_DeviceInfos_16(L_112); // } goto IL_0296; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_026e; } throw e; } CATCH_026e: { // begin catch(System.Object) { // catch // if (buffer != oldBuffer) uint8_t* L_113 = V_4; uint8_t* L_114 = V_3; if ((((intptr_t)L_113) == ((intptr_t)L_114))) { goto IL_027c; } } IL_0274: { // UnsafeUtility.Free(buffer, Allocator.Persistent); uint8_t* L_115 = V_4; UnsafeUtility_Free_mBC2D8A194E2E34662D81ACF759610790010D5919((void*)(void*)L_115, 4, /*hidden argument*/NULL); } IL_027c: { // throw; IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_ReadFrom_m98E4BABCB5F0BA8E173D7FB11DCDF1DFD4FC81DD_RuntimeMethod_var))); } } // end catch (depth: 1) IL_027e: { // m_EventBuffer = default; InputEventTrace_set_m_EventBuffer_m9B6305E95ECC12E9B5B811D6B1883891A807BFF0(__this, (uint8_t*)(uint8_t*)((uintptr_t)0), /*hidden argument*/NULL); // m_EventBufferHead = default; InputEventTrace_set_m_EventBufferHead_mF322FFA85D9962A39F70E91855F5BD4FAEC15785(__this, (uint8_t*)(uint8_t*)((uintptr_t)0), /*hidden argument*/NULL); // m_EventBufferTail = default; InputEventTrace_set_m_EventBufferTail_m34E44F7D85F4EA4DF45B7EAB71F0DCDBB262E166(__this, (uint8_t*)(uint8_t*)((uintptr_t)0), /*hidden argument*/NULL); } IL_0296: { // if (m_EventBuffer != oldBuffer && oldBuffer != null) uint8_t* L_116; L_116 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); uint8_t* L_117 = V_3; if ((((intptr_t)L_116) == ((intptr_t)L_117))) { goto IL_02ab; } } { uint8_t* L_118 = V_3; if ((((intptr_t)L_118) == ((intptr_t)((uintptr_t)0)))) { goto IL_02ab; } } { // UnsafeUtility.Free(oldBuffer, Allocator.Persistent); uint8_t* L_119 = V_3; UnsafeUtility_Free_mBC2D8A194E2E34662D81ACF759610790010D5919((void*)(void*)L_119, 4, /*hidden argument*/NULL); } IL_02ab: { // ++m_ChangeCounter; int32_t L_120 = __this->get_m_ChangeCounter_1(); __this->set_m_ChangeCounter_1(((int32_t)il2cpp_codegen_add((int32_t)L_120, (int32_t)1))); // } return; } } // UnityEngine.InputSystem.LowLevel.InputEventTrace UnityEngine.InputSystem.LowLevel.InputEventTrace::LoadFrom(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * InputEventTrace_LoadFrom_m485668176B86A504AFD9B19D341ACE11B60C590C (String_t* ___filePath0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 * V_0 = NULL; InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { // if (string.IsNullOrEmpty(filePath)) String_t* L_0 = ___filePath0; bool L_1; L_1 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0013; } } { // throw new ArgumentNullException(nameof(filePath)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E6231226F0A62484622AE51964EB5710BB528F9)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_LoadFrom_m485668176B86A504AFD9B19D341ACE11B60C590C_RuntimeMethod_var))); } IL_0013: { // using (var stream = File.OpenRead(filePath)) String_t* L_3 = ___filePath0; FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 * L_4; L_4 = File_OpenRead_m8911FD2375633548F8443CD2F0C9C3E4819474DA(L_3, /*hidden argument*/NULL); V_0 = L_4; } IL_001a: try { // begin try (depth: 1) // return LoadFrom(stream); FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 * L_5 = V_0; IL2CPP_RUNTIME_CLASS_INIT(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_il2cpp_TypeInfo_var); InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * L_6; L_6 = InputEventTrace_LoadFrom_mB8838D6D2BF8A339DEC85246CE2245287F4CC168(L_5, /*hidden argument*/NULL); V_1 = L_6; IL2CPP_LEAVE(0x2D, FINALLY_0023); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0023; } FINALLY_0023: { // begin finally (depth: 1) { FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 * L_7 = V_0; if (!L_7) { goto IL_002c; } } IL_0026: { FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 * L_8 = V_0; NullCheck(L_8); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_8); } IL_002c: { IL2CPP_END_FINALLY(35) } } // end finally (depth: 1) IL2CPP_CLEANUP(35) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x2D, IL_002d) } IL_002d: { // } InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * L_9 = V_1; return L_9; } } // UnityEngine.InputSystem.LowLevel.InputEventTrace UnityEngine.InputSystem.LowLevel.InputEventTrace::LoadFrom(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * InputEventTrace_LoadFrom_mB8838D6D2BF8A339DEC85246CE2245287F4CC168 (Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (stream == null) Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = ___stream0; if (L_0) { goto IL_000e; } } { // throw new ArgumentNullException(nameof(stream)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_LoadFrom_mB8838D6D2BF8A339DEC85246CE2245287F4CC168_RuntimeMethod_var))); } IL_000e: { // if (!stream.CanRead) Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_2 = ___stream0; NullCheck(L_2); bool L_3; L_3 = VirtFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.IO.Stream::get_CanRead() */, L_2); if (L_3) { goto IL_0026; } } { // throw new ArgumentException("Stream must be readable", nameof(stream)); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE518FE2FD73613C259C98F83F70015A67E8459D1)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_LoadFrom_mB8838D6D2BF8A339DEC85246CE2245287F4CC168_RuntimeMethod_var))); } IL_0026: { // var trace = new InputEventTrace(); InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * L_5 = (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 *)il2cpp_codegen_object_new(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_il2cpp_TypeInfo_var); InputEventTrace__ctor_mE55684093A028B8CF27A782B4427C952718BF6D9(L_5, ((int64_t)((int64_t)((int32_t)1048576))), (bool)0, ((int64_t)((int64_t)(-1))), ((int64_t)((int64_t)(-1))), /*hidden argument*/NULL); // trace.ReadFrom(stream); InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * L_6 = L_5; Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_7 = ___stream0; NullCheck(L_6); InputEventTrace_ReadFrom_m98E4BABCB5F0BA8E173D7FB11DCDF1DFD4FC81DD(L_6, L_7, /*hidden argument*/NULL); // return trace; return L_6; } } // UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController UnityEngine.InputSystem.LowLevel.InputEventTrace::Replay() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReplayController_tB89A6FAB335193E670D3B2A1E84BB7F291060755 * InputEventTrace_Replay_m99ED3AC9728E0D8FEC2C1F77F0D2ADCDAB168247 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReplayController_tB89A6FAB335193E670D3B2A1E84BB7F291060755_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // Disable(); InputEventTrace_Disable_m3C8166D6F372D60045EFCB9DC04AF52F4A1FF037(__this, /*hidden argument*/NULL); // return new ReplayController(this); ReplayController_tB89A6FAB335193E670D3B2A1E84BB7F291060755 * L_0 = (ReplayController_tB89A6FAB335193E670D3B2A1E84BB7F291060755 *)il2cpp_codegen_object_new(ReplayController_tB89A6FAB335193E670D3B2A1E84BB7F291060755_il2cpp_TypeInfo_var); ReplayController__ctor_m23CB549473F4B85310768E37052CC41DC7A812B9(L_0, __this, /*hidden argument*/NULL); return L_0; } } // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace::Resize(System.Int64,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventTrace_Resize_m084E07494718A6C19A797EE9D4DE338C3C805DFE (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, int64_t ___newBufferSize0, int64_t ___newMaxBufferSize1, const RuntimeMethod* method) { uint8_t* V_0 = NULL; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 V_1; memset((&V_1), 0, sizeof(V_1)); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; int64_t V_5 = 0; int32_t V_6 = 0; uint32_t V_7 = 0; uint32_t V_8 = 0; { // if (newBufferSize <= 0) int64_t L_0 = ___newBufferSize0; if ((((int64_t)L_0) > ((int64_t)((int64_t)((int64_t)0))))) { goto IL_0015; } } { // throw new ArgumentException("Size must be positive", nameof(newBufferSize)); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_1 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5278FC49D5DD7EE6B7B489211DF85A018916ACB6)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC5F6475699851D077E0F965E3C29BEB8A33E339A)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_Resize_m084E07494718A6C19A797EE9D4DE338C3C805DFE_RuntimeMethod_var))); } IL_0015: { // if (m_EventBufferSize == newBufferSize) int64_t L_2 = __this->get_m_EventBufferSize_6(); int64_t L_3 = ___newBufferSize0; if ((!(((uint64_t)L_2) == ((uint64_t)L_3)))) { goto IL_0020; } } { // return true; return (bool)1; } IL_0020: { // if (newMaxBufferSize < newBufferSize) int64_t L_4 = ___newMaxBufferSize1; int64_t L_5 = ___newBufferSize0; if ((((int64_t)L_4) >= ((int64_t)L_5))) { goto IL_0027; } } { // newMaxBufferSize = newBufferSize; int64_t L_6 = ___newBufferSize0; ___newMaxBufferSize1 = L_6; } IL_0027: { // var newEventBuffer = (byte*)UnsafeUtility.Malloc(newBufferSize, InputEvent.kAlignment, Allocator.Persistent); int64_t L_7 = ___newBufferSize0; void* L_8; L_8 = UnsafeUtility_Malloc_m540451750CEC21D0DEEE8C42ED25AE9B623E2BAE(L_7, 4, 4, /*hidden argument*/NULL); V_0 = (uint8_t*)L_8; // if (newEventBuffer == default) uint8_t* L_9 = V_0; if ((!(((uintptr_t)L_9) == ((uintptr_t)((uintptr_t)0))))) { goto IL_0037; } } { // return false; return (bool)0; } IL_0037: { // if (m_EventCount > 0) int64_t L_10 = __this->get_m_EventCount_9(); if ((((int64_t)L_10) <= ((int64_t)((int64_t)((int64_t)0))))) { goto IL_0102; } } { // if (newBufferSize < m_EventBufferSize || m_HasWrapped) int64_t L_11 = ___newBufferSize0; int64_t L_12 = __this->get_m_EventBufferSize_6(); if ((((int64_t)L_11) < ((int64_t)L_12))) { goto IL_0058; } } { bool L_13 = __this->get_m_HasWrapped_14(); if (!L_13) { goto IL_00f0; } } IL_0058: { // var fromPtr = new InputEventPtr((InputEvent*)m_EventBufferHead); uint8_t* L_14; L_14 = InputEventTrace_get_m_EventBufferHead_mD3AC2D3ACFAE376865E0D059DE7D9EA4EEA9BCF1(__this, /*hidden argument*/NULL); InputEventPtr__ctor_m9EBF5134C7CC18F85542C146674EAE1BF7F29110_inline((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&V_1), (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_14, /*hidden argument*/NULL); // var toPtr = (InputEvent*)newEventBuffer; uint8_t* L_15 = V_0; V_2 = (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_15; // var newEventCount = 0; V_3 = 0; // var newEventSizeInBytes = 0; V_4 = 0; // var remainingEventBytes = m_EventSizeInBytes; int64_t L_16 = __this->get_m_EventSizeInBytes_10(); V_5 = L_16; // for (var i = 0; i < m_EventCount; ++i) V_6 = 0; goto IL_00cb; } IL_0079: { // var eventSizeInBytes = fromPtr.sizeInBytes; uint32_t L_17; L_17 = InputEventPtr_get_sizeInBytes_m4607C53C6A41A6BE5238609D7C1E4A2C169D5712((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&V_1), /*hidden argument*/NULL); V_7 = L_17; // var alignedEventSizeInBytes = eventSizeInBytes.AlignToMultipleOf(InputEvent.kAlignment); uint32_t L_18 = V_7; uint32_t L_19; L_19 = NumberHelpers_AlignToMultipleOf_mAC36042E2A9F764DF404617DB262C5FB611212E7_inline(L_18, 4, /*hidden argument*/NULL); V_8 = L_19; // if (remainingEventBytes <= newBufferSize) int64_t L_20 = V_5; int64_t L_21 = ___newBufferSize0; if ((((int64_t)L_20) > ((int64_t)L_21))) { goto IL_00b3; } } { // UnsafeUtility.MemCpy(toPtr, fromPtr.ToPointer(), eventSizeInBytes); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_22 = V_2; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_23; L_23 = InputEventPtr_ToPointer_m77A71EEA1470411DE1C2B75013E4A6CDC7B52DCE((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&V_1), /*hidden argument*/NULL); uint32_t L_24 = V_7; UnsafeUtility_MemCpy_mA8E186A63FE9CE463F95E5C5FF1C5F1B4E84F90E((void*)(void*)L_22, (void*)(void*)L_23, ((int64_t)((uint64_t)L_24)), /*hidden argument*/NULL); // toPtr = InputEvent.GetNextInMemory(toPtr); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_25 = V_2; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_26; L_26 = InputEvent_GetNextInMemory_m482607ACC1E6EAA665FE89A2FD8B6448FD4701BD((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_25, /*hidden argument*/NULL); V_2 = (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_26; // newEventSizeInBytes += (int)alignedEventSizeInBytes; int32_t L_27 = V_4; uint32_t L_28 = V_8; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)L_28)); // ++newEventCount; int32_t L_29 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1)); } IL_00b3: { // remainingEventBytes -= alignedEventSizeInBytes; int64_t L_30 = V_5; uint32_t L_31 = V_8; V_5 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_30, (int64_t)((int64_t)((uint64_t)L_31)))); // if (!GetNextEvent(ref fromPtr)) bool L_32; L_32 = InputEventTrace_GetNextEvent_m19B0892B193ABDCF8A612272DE61465A6F154486(__this, (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&V_1), /*hidden argument*/NULL); if (!L_32) { goto IL_00d6; } } { // for (var i = 0; i < m_EventCount; ++i) int32_t L_33 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); } IL_00cb: { // for (var i = 0; i < m_EventCount; ++i) int32_t L_34 = V_6; int64_t L_35 = __this->get_m_EventCount_9(); if ((((int64_t)((int64_t)((int64_t)L_34))) < ((int64_t)L_35))) { goto IL_0079; } } IL_00d6: { // m_HasWrapped = false; __this->set_m_HasWrapped_14((bool)0); // m_EventCount = newEventCount; int32_t L_36 = V_3; __this->set_m_EventCount_9(((int64_t)((int64_t)L_36))); // m_EventSizeInBytes = newEventSizeInBytes; int32_t L_37 = V_4; __this->set_m_EventSizeInBytes_10(((int64_t)((int64_t)L_37))); // } goto IL_0102; } IL_00f0: { // UnsafeUtility.MemCpy(newEventBuffer, // m_EventBufferHead, // m_EventSizeInBytes); uint8_t* L_38 = V_0; uint8_t* L_39; L_39 = InputEventTrace_get_m_EventBufferHead_mD3AC2D3ACFAE376865E0D059DE7D9EA4EEA9BCF1(__this, /*hidden argument*/NULL); int64_t L_40 = __this->get_m_EventSizeInBytes_10(); UnsafeUtility_MemCpy_mA8E186A63FE9CE463F95E5C5FF1C5F1B4E84F90E((void*)(void*)L_38, (void*)(void*)L_39, L_40, /*hidden argument*/NULL); } IL_0102: { // if (m_EventBuffer != null) uint8_t* L_41; L_41 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); if ((((intptr_t)L_41) == ((intptr_t)((uintptr_t)0)))) { goto IL_0118; } } { // UnsafeUtility.Free(m_EventBuffer, Allocator.Persistent); uint8_t* L_42; L_42 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); UnsafeUtility_Free_mBC2D8A194E2E34662D81ACF759610790010D5919((void*)(void*)L_42, 4, /*hidden argument*/NULL); } IL_0118: { // m_EventBufferSize = newBufferSize; int64_t L_43 = ___newBufferSize0; __this->set_m_EventBufferSize_6(L_43); // m_EventBuffer = newEventBuffer; uint8_t* L_44 = V_0; InputEventTrace_set_m_EventBuffer_m9B6305E95ECC12E9B5B811D6B1883891A807BFF0(__this, (uint8_t*)(uint8_t*)L_44, /*hidden argument*/NULL); // m_EventBufferHead = newEventBuffer; uint8_t* L_45 = V_0; InputEventTrace_set_m_EventBufferHead_mF322FFA85D9962A39F70E91855F5BD4FAEC15785(__this, (uint8_t*)(uint8_t*)L_45, /*hidden argument*/NULL); // m_EventBufferTail = m_EventBuffer + m_EventSizeInBytes; uint8_t* L_46; L_46 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); int64_t L_47 = __this->get_m_EventSizeInBytes_10(); InputEventTrace_set_m_EventBufferTail_m34E44F7D85F4EA4DF45B7EAB71F0DCDBB262E166(__this, (uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_46, (intptr_t)((intptr_t)L_47))), /*hidden argument*/NULL); // m_MaxEventBufferSize = newMaxBufferSize; int64_t L_48 = ___newMaxBufferSize1; __this->set_m_MaxEventBufferSize_7(L_48); // ++m_ChangeCounter; int32_t L_49 = __this->get_m_ChangeCounter_1(); __this->set_m_ChangeCounter_1(((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)1))); // return true; return (bool)1; } } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Clear_m8953FD572984DB1C1E4832919F5B7F36B3D8E0B1 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method) { uint8_t* V_0 = NULL; { // m_EventBufferHead = m_EventBufferTail = default; il2cpp_codegen_initobj((&V_0), sizeof(uint8_t*)); uint8_t* L_0 = V_0; InputEventTrace_set_m_EventBufferTail_m34E44F7D85F4EA4DF45B7EAB71F0DCDBB262E166(__this, (uint8_t*)(uint8_t*)L_0, /*hidden argument*/NULL); uint8_t* L_1 = V_0; InputEventTrace_set_m_EventBufferHead_mF322FFA85D9962A39F70E91855F5BD4FAEC15785(__this, (uint8_t*)(uint8_t*)L_1, /*hidden argument*/NULL); // m_EventCount = 0; __this->set_m_EventCount_9(((int64_t)((int64_t)0))); // m_EventSizeInBytes = 0; __this->set_m_EventSizeInBytes_10(((int64_t)((int64_t)0))); // ++m_ChangeCounter; int32_t L_2 = __this->get_m_ChangeCounter_1(); __this->set_m_ChangeCounter_1(((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1))); // m_DeviceInfos = null; __this->set_m_DeviceInfos_16((DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81*)NULL); // } return; } } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::Enable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Enable_mE0125EEC10D31B3172AD1A6F7B148C004F0A9401 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2__ctor_mF7AE7ABE5C6078672A1B4C97C6E3848615D4975A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_OnBeforeUpdate_mF73C7357F6F9CDD64F30E3ABA0C1525743CE2B0C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_OnInputEvent_mCDB9904A4569F0FA8BD1745CD27B2F4336D2689B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (m_Enabled) bool L_0 = __this->get_m_Enabled_2(); if (!L_0) { goto IL_0009; } } { // return; return; } IL_0009: { // if (m_EventBuffer == default) uint8_t* L_1; L_1 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); if ((!(((uintptr_t)L_1) == ((uintptr_t)((uintptr_t)0))))) { goto IL_0019; } } { // Allocate(); InputEventTrace_Allocate_mBD5C6DFBFB0B993CF2DE8E17E9814EC92F6F3870(__this, /*hidden argument*/NULL); } IL_0019: { // InputSystem.onEvent += OnInputEvent; IL2CPP_RUNTIME_CLASS_INIT(InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var); InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917 L_2; L_2 = InputSystem_get_onEvent_mF1EA5D60636767DD6D97E5AC8DC6D690DD2718A2(/*hidden argument*/NULL); Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * L_3 = (Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C *)il2cpp_codegen_object_new(Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C_il2cpp_TypeInfo_var); Action_2__ctor_mF7AE7ABE5C6078672A1B4C97C6E3848615D4975A(L_3, __this, (intptr_t)((intptr_t)InputEventTrace_OnInputEvent_mCDB9904A4569F0FA8BD1745CD27B2F4336D2689B_RuntimeMethod_var), /*hidden argument*/Action_2__ctor_mF7AE7ABE5C6078672A1B4C97C6E3848615D4975A_RuntimeMethod_var); InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917 L_4; L_4 = InputEventListener_op_Addition_mD4685D253039B44ABCDD361AB4AED2AA5B513D64(L_2, L_3, /*hidden argument*/NULL); InputSystem_set_onEvent_mE6C546B07A2063545F4DB75A494F585BEFBF748C(L_4, /*hidden argument*/NULL); // if (m_RecordFrameMarkers) bool L_5 = __this->get_m_RecordFrameMarkers_15(); if (!L_5) { goto IL_004d; } } { // InputSystem.onBeforeUpdate += OnBeforeUpdate; Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_6 = (Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 *)il2cpp_codegen_object_new(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var); Action__ctor_m07BE5EE8A629FBBA52AE6356D57A0D371BE2574B(L_6, __this, (intptr_t)((intptr_t)InputEventTrace_OnBeforeUpdate_mF73C7357F6F9CDD64F30E3ABA0C1525743CE2B0C_RuntimeMethod_var), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var); InputSystem_add_onBeforeUpdate_mB645C0A7F83346EE7D7ABC85F89BEAEF702FCDDD(L_6, /*hidden argument*/NULL); } IL_004d: { // m_Enabled = true; __this->set_m_Enabled_2((bool)1); // } return; } } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::Disable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Disable_m3C8166D6F372D60045EFCB9DC04AF52F4A1FF037 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2__ctor_mF7AE7ABE5C6078672A1B4C97C6E3848615D4975A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_OnBeforeUpdate_mF73C7357F6F9CDD64F30E3ABA0C1525743CE2B0C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_OnInputEvent_mCDB9904A4569F0FA8BD1745CD27B2F4336D2689B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (!m_Enabled) bool L_0 = __this->get_m_Enabled_2(); if (L_0) { goto IL_0009; } } { // return; return; } IL_0009: { // InputSystem.onEvent -= OnInputEvent; IL2CPP_RUNTIME_CLASS_INIT(InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var); InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917 L_1; L_1 = InputSystem_get_onEvent_mF1EA5D60636767DD6D97E5AC8DC6D690DD2718A2(/*hidden argument*/NULL); Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * L_2 = (Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C *)il2cpp_codegen_object_new(Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C_il2cpp_TypeInfo_var); Action_2__ctor_mF7AE7ABE5C6078672A1B4C97C6E3848615D4975A(L_2, __this, (intptr_t)((intptr_t)InputEventTrace_OnInputEvent_mCDB9904A4569F0FA8BD1745CD27B2F4336D2689B_RuntimeMethod_var), /*hidden argument*/Action_2__ctor_mF7AE7ABE5C6078672A1B4C97C6E3848615D4975A_RuntimeMethod_var); InputEventListener_t72BC656F05D7E60E082D2AC2879BA44B343BA917 L_3; L_3 = InputEventListener_op_Subtraction_m9032C4F204EECE5CC6D80A9B01F7DB796C78A576(L_1, L_2, /*hidden argument*/NULL); InputSystem_set_onEvent_mE6C546B07A2063545F4DB75A494F585BEFBF748C(L_3, /*hidden argument*/NULL); // InputSystem.onBeforeUpdate -= OnBeforeUpdate; Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_4 = (Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 *)il2cpp_codegen_object_new(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var); Action__ctor_m07BE5EE8A629FBBA52AE6356D57A0D371BE2574B(L_4, __this, (intptr_t)((intptr_t)InputEventTrace_OnBeforeUpdate_mF73C7357F6F9CDD64F30E3ABA0C1525743CE2B0C_RuntimeMethod_var), /*hidden argument*/NULL); InputSystem_remove_onBeforeUpdate_m90DF65A6301BBAE1D0FC4689D412598155AF6DBE(L_4, /*hidden argument*/NULL); // m_Enabled = false; __this->set_m_Enabled_2((bool)0); // } return; } } // System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace::GetNextEvent(UnityEngine.InputSystem.LowLevel.InputEventPtr&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventTrace_GetNextEvent_m19B0892B193ABDCF8A612272DE61465A6F154486 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * ___current0, const RuntimeMethod* method) { uint8_t* V_0 = NULL; uint8_t* V_1 = NULL; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 V_2; memset((&V_2), 0, sizeof(V_2)); { // if (m_EventBuffer == default) uint8_t* L_0; L_0 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); if ((!(((uintptr_t)L_0) == ((uintptr_t)((uintptr_t)0))))) { goto IL_000c; } } { // return false; return (bool)0; } IL_000c: { // if (m_EventBufferHead == default) uint8_t* L_1; L_1 = InputEventTrace_get_m_EventBufferHead_mD3AC2D3ACFAE376865E0D059DE7D9EA4EEA9BCF1(__this, /*hidden argument*/NULL); if ((!(((uintptr_t)L_1) == ((uintptr_t)((uintptr_t)0))))) { goto IL_0018; } } { // return false; return (bool)0; } IL_0018: { // if (!current.valid) InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * L_2 = ___current0; bool L_3; L_3 = InputEventPtr_get_valid_m89FC8685702EDBBB434A0576EED219CA4BF0630C((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)L_2, /*hidden argument*/NULL); if (L_3) { goto IL_0033; } } { // current = new InputEventPtr((InputEvent*)m_EventBufferHead); InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * L_4 = ___current0; uint8_t* L_5; L_5 = InputEventTrace_get_m_EventBufferHead_mD3AC2D3ACFAE376865E0D059DE7D9EA4EEA9BCF1(__this, /*hidden argument*/NULL); InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_6; memset((&L_6), 0, sizeof(L_6)); InputEventPtr__ctor_m9EBF5134C7CC18F85542C146674EAE1BF7F29110_inline((&L_6), (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_5, /*hidden argument*/NULL); *(InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)L_4 = L_6; // return true; return (bool)1; } IL_0033: { // var nextEvent = (byte*)current.Next().data; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * L_7 = ___current0; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_8; L_8 = InputEventPtr_Next_m580A3672177EA9ECAE635D02199927FCE695314A((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)L_7, /*hidden argument*/NULL); V_2 = L_8; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_9; L_9 = InputEventPtr_get_data_m23324B1E4068E48168D6D06CEF9CC061D1E2D694_inline((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&V_2), /*hidden argument*/NULL); V_0 = (uint8_t*)L_9; // var endOfBuffer = m_EventBuffer + m_EventBufferSize; uint8_t* L_10; L_10 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); int64_t L_11 = __this->get_m_EventBufferSize_6(); V_1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, (intptr_t)((intptr_t)L_11))); // if (nextEvent == m_EventBufferTail) uint8_t* L_12 = V_0; uint8_t* L_13; L_13 = InputEventTrace_get_m_EventBufferTail_mED3E2B59BEC1AE315F588F422E823F64DCFC902E(__this, /*hidden argument*/NULL); if ((!(((uintptr_t)L_12) == ((uintptr_t)L_13)))) { goto IL_005c; } } { // return false; return (bool)0; } IL_005c: { // if (endOfBuffer - nextEvent < InputEvent.kBaseEventSize || // ((InputEvent*)nextEvent)->sizeInBytes == 0) uint8_t* L_14 = V_1; uint8_t* L_15 = V_0; if ((((int64_t)((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_14, (intptr_t)L_15))/(int32_t)1))))) < ((int64_t)((int64_t)((int64_t)((int32_t)20)))))) { goto IL_006f; } } { uint8_t* L_16 = V_0; uint32_t L_17; L_17 = InputEvent_get_sizeInBytes_mFF08EC52AAEB650D04AFFFA2CDCEDECBC6DB0B59((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_16, /*hidden argument*/NULL); if (L_17) { goto IL_0081; } } IL_006f: { // nextEvent = m_EventBuffer; uint8_t* L_18; L_18 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); V_0 = (uint8_t*)L_18; // if (nextEvent == current.ToPointer()) uint8_t* L_19 = V_0; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * L_20 = ___current0; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_21; L_21 = InputEventPtr_ToPointer_m77A71EEA1470411DE1C2B75013E4A6CDC7B52DCE((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)L_20, /*hidden argument*/NULL); if ((!(((uintptr_t)L_19) == ((uintptr_t)L_21)))) { goto IL_0081; } } { // return false; // There's only a single event in the buffer. return (bool)0; } IL_0081: { // current = new InputEventPtr((InputEvent*)nextEvent); InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * L_22 = ___current0; uint8_t* L_23 = V_0; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_24; memset((&L_24), 0, sizeof(L_24)); InputEventPtr__ctor_m9EBF5134C7CC18F85542C146674EAE1BF7F29110_inline((&L_24), (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_23, /*hidden argument*/NULL); *(InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)L_22 = L_24; // return true; return (bool)1; } } // System.Collections.Generic.IEnumerator`1 UnityEngine.InputSystem.LowLevel.InputEventTrace::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventTrace_GetEnumerator_m40F307BD45D94C5ADFFD90C048A13215B85828AD (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_tDC926D70FAEB628CE95D05C8FF1E24E55664B143_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return new Enumerator(this); Enumerator_tDC926D70FAEB628CE95D05C8FF1E24E55664B143 * L_0 = (Enumerator_tDC926D70FAEB628CE95D05C8FF1E24E55664B143 *)il2cpp_codegen_object_new(Enumerator_tDC926D70FAEB628CE95D05C8FF1E24E55664B143_il2cpp_TypeInfo_var); Enumerator__ctor_mA4CC38C3AE2CF34DBA64167932DE9504C31D50C6(L_0, __this, /*hidden argument*/NULL); return L_0; } } // System.Collections.IEnumerator UnityEngine.InputSystem.LowLevel.InputEventTrace::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventTrace_System_Collections_IEnumerable_GetEnumerator_mE3528D75CA9E7A85D804B4310F2678F9EB366BDC (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method) { { // return GetEnumerator(); RuntimeObject* L_0; L_0 = InputEventTrace_GetEnumerator_m40F307BD45D94C5ADFFD90C048A13215B85828AD(__this, /*hidden argument*/NULL); return L_0; } } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Dispose_mCAB1BB703989EE1B9983B3527DCD989819BF94D4 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method) { { // Disable(); InputEventTrace_Disable_m3C8166D6F372D60045EFCB9DC04AF52F4A1FF037(__this, /*hidden argument*/NULL); // Release(); InputEventTrace_Release_m79726FE97FCEEE215EA71E8F71BC449D509CD289(__this, /*hidden argument*/NULL); // } return; } } // System.Byte* UnityEngine.InputSystem.LowLevel.InputEventTrace::get_m_EventBuffer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method) { { // get => (byte*)m_EventBufferStorage; uint64_t L_0 = __this->get_m_EventBufferStorage_11(); return (uint8_t*)(((uintptr_t)L_0)); } } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::set_m_EventBuffer(System.Byte*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_m_EventBuffer_m9B6305E95ECC12E9B5B811D6B1883891A807BFF0 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, uint8_t* ___value0, const RuntimeMethod* method) { { // set => m_EventBufferStorage = (ulong)value; uint8_t* L_0 = ___value0; __this->set_m_EventBufferStorage_11(((int64_t)((uint64_t)(intptr_t)L_0))); return; } } // System.Byte* UnityEngine.InputSystem.LowLevel.InputEventTrace::get_m_EventBufferHead() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* InputEventTrace_get_m_EventBufferHead_mD3AC2D3ACFAE376865E0D059DE7D9EA4EEA9BCF1 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method) { { // get => (byte*)m_EventBufferHeadStorage; uint64_t L_0 = __this->get_m_EventBufferHeadStorage_12(); return (uint8_t*)(((uintptr_t)L_0)); } } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::set_m_EventBufferHead(System.Byte*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_m_EventBufferHead_mF322FFA85D9962A39F70E91855F5BD4FAEC15785 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, uint8_t* ___value0, const RuntimeMethod* method) { { // set => m_EventBufferHeadStorage = (ulong)value; uint8_t* L_0 = ___value0; __this->set_m_EventBufferHeadStorage_12(((int64_t)((uint64_t)(intptr_t)L_0))); return; } } // System.Byte* UnityEngine.InputSystem.LowLevel.InputEventTrace::get_m_EventBufferTail() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* InputEventTrace_get_m_EventBufferTail_mED3E2B59BEC1AE315F588F422E823F64DCFC902E (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method) { { // get => (byte*)m_EventBufferTailStorage; uint64_t L_0 = __this->get_m_EventBufferTailStorage_13(); return (uint8_t*)(((uintptr_t)L_0)); } } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::set_m_EventBufferTail(System.Byte*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_m_EventBufferTail_m34E44F7D85F4EA4DF45B7EAB71F0DCDBB262E166 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, uint8_t* ___value0, const RuntimeMethod* method) { { // set => m_EventBufferTailStorage = (ulong)value; uint8_t* L_0 = ___value0; __this->set_m_EventBufferTailStorage_13(((int64_t)((uint64_t)(intptr_t)L_0))); return; } } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::Allocate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Allocate_mBD5C6DFBFB0B993CF2DE8E17E9814EC92F6F3870 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method) { { // m_EventBuffer = (byte*)UnsafeUtility.Malloc(m_EventBufferSize, InputEvent.kAlignment, Allocator.Persistent); int64_t L_0 = __this->get_m_EventBufferSize_6(); void* L_1; L_1 = UnsafeUtility_Malloc_m540451750CEC21D0DEEE8C42ED25AE9B623E2BAE(L_0, 4, 4, /*hidden argument*/NULL); InputEventTrace_set_m_EventBuffer_m9B6305E95ECC12E9B5B811D6B1883891A807BFF0(__this, (uint8_t*)(uint8_t*)L_1, /*hidden argument*/NULL); // } return; } } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::Release() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Release_m79726FE97FCEEE215EA71E8F71BC449D509CD289 (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method) { { // Clear(); InputEventTrace_Clear_m8953FD572984DB1C1E4832919F5B7F36B3D8E0B1(__this, /*hidden argument*/NULL); // if (m_EventBuffer != default) uint8_t* L_0; L_0 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); if ((((intptr_t)L_0) == ((intptr_t)((uintptr_t)0)))) { goto IL_0024; } } { // UnsafeUtility.Free(m_EventBuffer, Allocator.Persistent); uint8_t* L_1; L_1 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); UnsafeUtility_Free_mBC2D8A194E2E34662D81ACF759610790010D5919((void*)(void*)L_1, 4, /*hidden argument*/NULL); // m_EventBuffer = default; InputEventTrace_set_m_EventBuffer_m9B6305E95ECC12E9B5B811D6B1883891A807BFF0(__this, (uint8_t*)(uint8_t*)((uintptr_t)0), /*hidden argument*/NULL); } IL_0024: { // } return; } } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::OnBeforeUpdate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_OnBeforeUpdate_mF73C7357F6F9CDD64F30E3ABA0C1525743CE2B0C (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeUtility_SizeOf_TisInputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234_mE54BCED9D284351B027281FCFFBD542BE9E13CF5_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 V_0; memset((&V_0), 0, sizeof(V_0)); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 V_1; memset((&V_1), 0, sizeof(V_1)); { // if (m_RecordFrameMarkers) bool L_0 = __this->get_m_RecordFrameMarkers_15(); if (!L_0) { goto IL_004e; } } { // var frameMarkerEvent = new InputEvent // { // type = FrameMarkerEvent, // internalTime = InputRuntime.s_Instance.currentTime, // sizeInBytes = (uint)UnsafeUtility.SizeOf() // }; il2cpp_codegen_initobj((&V_1), sizeof(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 )); IL2CPP_RUNTIME_CLASS_INIT(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_il2cpp_TypeInfo_var); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_1; L_1 = InputEventTrace_get_FrameMarkerEvent_mB1E248E76A888DA729C0F590C17E662A73B2C508(/*hidden argument*/NULL); InputEvent_set_type_mA59021B1AC85CEA52E1DB983D42FB3E01F6D8233((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(&V_1), L_1, /*hidden argument*/NULL); RuntimeObject* L_2 = ((InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_il2cpp_TypeInfo_var))->get_s_Instance_0(); NullCheck(L_2); double L_3; L_3 = InterfaceFuncInvoker0< double >::Invoke(19 /* System.Double UnityEngine.InputSystem.LowLevel.IInputRuntime::get_currentTime() */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_2); InputEvent_set_internalTime_mFA42266AFBEC1496D72489EAD34D459D32DA751A((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(&V_1), L_3, /*hidden argument*/NULL); int32_t L_4; L_4 = UnsafeUtility_SizeOf_TisInputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234_mE54BCED9D284351B027281FCFFBD542BE9E13CF5(/*hidden argument*/UnsafeUtility_SizeOf_TisInputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234_mE54BCED9D284351B027281FCFFBD542BE9E13CF5_RuntimeMethod_var); InputEvent_set_sizeInBytes_m9352C705F40BF3648701BFCAAF3C202C8462EA99((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(&V_1), L_4, /*hidden argument*/NULL); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 L_5 = V_1; V_0 = L_5; // OnInputEvent(new InputEventPtr((InputEvent*)UnsafeUtility.AddressOf(ref frameMarkerEvent)), null); void* L_6; L_6 = il2cpp_codegen_unsafe_cast((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(&V_0)); InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_7; memset((&L_7), 0, sizeof(L_7)); InputEventPtr__ctor_m9EBF5134C7CC18F85542C146674EAE1BF7F29110_inline((&L_7), (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_6, /*hidden argument*/NULL); InputEventTrace_OnInputEvent_mCDB9904A4569F0FA8BD1745CD27B2F4336D2689B(__this, L_7, (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *)NULL, /*hidden argument*/NULL); } IL_004e: { // } return; } } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::OnInputEvent(UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_OnInputEvent_mCDB9904A4569F0FA8BD1745CD27B2F4336D2689B (InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646 * __this, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___inputEvent0, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_Append_TisDeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F_mEA1ABEEA1ADC1C5A21B8E4665D8E57A9E8FC6295_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_get_length_mF8F5F570FA6C35E69784FBB53071EF27BB29A7B4_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_mC4159FA60A399EFD819461CBD6CF31C2C9953FA7_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_3_Invoke_mDD7806C9546FB2E40EFFD6A636FDD7E992DA46E9_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6CD29DF87BDE4FB4030DE06320C56337EE9127EF); s_Il2CppMethodInitialized = true; } uint32_t V_0 = 0; uint8_t* V_1 = NULL; bool V_2 = false; uint8_t* V_3 = NULL; int64_t V_4 = 0; int64_t V_5 = 0; int64_t V_6 = 0; uint8_t* V_7 = NULL; uint8_t* V_8 = NULL; uint32_t V_9 = 0; bool V_10 = false; int32_t V_11 = 0; DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F V_12; memset((&V_12), 0, sizeof(V_12)); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B V_13; memset((&V_13), 0, sizeof(V_13)); int32_t G_B18_0 = 0; DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * G_B49_0 = NULL; DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81** G_B49_1 = NULL; DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * G_B48_0 = NULL; DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81** G_B48_1 = NULL; String_t* G_B50_0 = NULL; DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * G_B50_1 = NULL; DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81** G_B50_2 = NULL; { // if (inputEvent.handled) bool L_0; L_0 = InputEventPtr_get_handled_m7D3DE6A9CC2CB8101B36FA35CFC5D1B1DBFB02E9((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&___inputEvent0), /*hidden argument*/NULL); if (!L_0) { goto IL_000a; } } { // return; return; } IL_000a: { // if (m_DeviceId != InputDevice.InvalidDeviceId && inputEvent.deviceId != m_DeviceId && inputEvent.type != FrameMarkerEvent) int32_t L_1 = __this->get_m_DeviceId_4(); if (!L_1) { goto IL_0035; } } { int32_t L_2; L_2 = InputEventPtr_get_deviceId_m1FECADA1BAB8F96780A21A5B374C96D9FC2A9109((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&___inputEvent0), /*hidden argument*/NULL); int32_t L_3 = __this->get_m_DeviceId_4(); if ((((int32_t)L_2) == ((int32_t)L_3))) { goto IL_0035; } } { FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_4; L_4 = InputEventPtr_get_type_mC6EF58B6562D5B232170DC64DC0F1A99FE996BD2((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&___inputEvent0), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_il2cpp_TypeInfo_var); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_5; L_5 = InputEventTrace_get_FrameMarkerEvent_mB1E248E76A888DA729C0F590C17E662A73B2C508(/*hidden argument*/NULL); bool L_6; L_6 = FourCC_op_Inequality_m1E781CB491ABFCA16991EF6F695C559068406232(L_4, L_5, /*hidden argument*/NULL); if (!L_6) { goto IL_0035; } } { // return; return; } IL_0035: { // if (m_OnFilterEvent != null && !m_OnFilterEvent(inputEvent, device)) Func_3_tD99A6009701E72566BE785B8109E9B5773975D91 * L_7 = __this->get_m_OnFilterEvent_3(); if (!L_7) { goto IL_004d; } } { Func_3_tD99A6009701E72566BE785B8109E9B5773975D91 * L_8 = __this->get_m_OnFilterEvent_3(); InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_9 = ___inputEvent0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_10 = ___device1; NullCheck(L_8); bool L_11; L_11 = Func_3_Invoke_mDD7806C9546FB2E40EFFD6A636FDD7E992DA46E9(L_8, L_9, L_10, /*hidden argument*/Func_3_Invoke_mDD7806C9546FB2E40EFFD6A636FDD7E992DA46E9_RuntimeMethod_var); if (L_11) { goto IL_004d; } } { // return; return; } IL_004d: { // if (m_EventBuffer == default) uint8_t* L_12; L_12 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); if ((!(((uintptr_t)L_12) == ((uintptr_t)((uintptr_t)0))))) { goto IL_0058; } } { // return; return; } IL_0058: { // var bytesNeeded = inputEvent.sizeInBytes.AlignToMultipleOf(InputEvent.kAlignment); uint32_t L_13; L_13 = InputEventPtr_get_sizeInBytes_m4607C53C6A41A6BE5238609D7C1E4A2C169D5712((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&___inputEvent0), /*hidden argument*/NULL); uint32_t L_14; L_14 = NumberHelpers_AlignToMultipleOf_mAC36042E2A9F764DF404617DB262C5FB611212E7_inline(L_13, 4, /*hidden argument*/NULL); V_0 = L_14; // if (bytesNeeded > m_MaxEventBufferSize) uint32_t L_15 = V_0; int64_t L_16 = __this->get_m_MaxEventBufferSize_7(); if ((((int64_t)((int64_t)((uint64_t)L_15))) <= ((int64_t)L_16))) { goto IL_0071; } } { // return; return; } IL_0071: { // if (m_EventBufferTail == default) uint8_t* L_17; L_17 = InputEventTrace_get_m_EventBufferTail_mED3E2B59BEC1AE315F588F422E823F64DCFC902E(__this, /*hidden argument*/NULL); if ((!(((uintptr_t)L_17) == ((uintptr_t)((uintptr_t)0))))) { goto IL_0093; } } { // m_EventBufferHead = m_EventBuffer; uint8_t* L_18; L_18 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); InputEventTrace_set_m_EventBufferHead_mF322FFA85D9962A39F70E91855F5BD4FAEC15785(__this, (uint8_t*)(uint8_t*)L_18, /*hidden argument*/NULL); // m_EventBufferTail = m_EventBuffer; uint8_t* L_19; L_19 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); InputEventTrace_set_m_EventBufferTail_m34E44F7D85F4EA4DF45B7EAB71F0DCDBB262E166(__this, (uint8_t*)(uint8_t*)L_19, /*hidden argument*/NULL); } IL_0093: { // var newTail = m_EventBufferTail + bytesNeeded; uint8_t* L_20; L_20 = InputEventTrace_get_m_EventBufferTail_mED3E2B59BEC1AE315F588F422E823F64DCFC902E(__this, /*hidden argument*/NULL); uint32_t L_21 = V_0; V_1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_20, (intptr_t)((uintptr_t)L_21))); // var newTailOvertakesHead = newTail > m_EventBufferHead && m_EventBufferHead != m_EventBuffer; uint8_t* L_22 = V_1; uint8_t* L_23; L_23 = InputEventTrace_get_m_EventBufferHead_mD3AC2D3ACFAE376865E0D059DE7D9EA4EEA9BCF1(__this, /*hidden argument*/NULL); if ((!(((uintptr_t)L_22) > ((uintptr_t)L_23)))) { goto IL_00b9; } } { uint8_t* L_24; L_24 = InputEventTrace_get_m_EventBufferHead_mD3AC2D3ACFAE376865E0D059DE7D9EA4EEA9BCF1(__this, /*hidden argument*/NULL); uint8_t* L_25; L_25 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); G_B18_0 = ((((int32_t)((((intptr_t)L_24) == ((intptr_t)L_25))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_00ba; } IL_00b9: { G_B18_0 = 0; } IL_00ba: { V_2 = (bool)G_B18_0; // var newTailGoesPastEndOfBuffer = newTail > m_EventBuffer + m_EventBufferSize; uint8_t* L_26 = V_1; uint8_t* L_27; L_27 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); int64_t L_28 = __this->get_m_EventBufferSize_6(); // if (newTailGoesPastEndOfBuffer) if (!((!(((uintptr_t)L_26) <= ((uintptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_27, (intptr_t)((intptr_t)L_28))))))? 1 : 0)) { goto IL_019f; } } { // if (m_EventBufferSize < m_MaxEventBufferSize && !m_HasWrapped) int64_t L_29 = __this->get_m_EventBufferSize_6(); int64_t L_30 = __this->get_m_MaxEventBufferSize_7(); if ((((int64_t)L_29) >= ((int64_t)L_30))) { goto IL_0135; } } { bool L_31 = __this->get_m_HasWrapped_14(); if (L_31) { goto IL_0135; } } { // var increment = Math.Max(m_GrowIncrementSize, bytesNeeded.AlignToMultipleOf(InputEvent.kAlignment)); int64_t L_32 = __this->get_m_GrowIncrementSize_8(); uint32_t L_33 = V_0; uint32_t L_34; L_34 = NumberHelpers_AlignToMultipleOf_mAC36042E2A9F764DF404617DB262C5FB611212E7_inline(L_33, 4, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var); int64_t L_35; L_35 = Math_Max_m38AA1B2C96A160A0AB5B9615570EFA26ED7BD9ED(L_32, ((int64_t)((uint64_t)L_34)), /*hidden argument*/NULL); V_5 = L_35; // var newBufferSize = m_EventBufferSize + increment; int64_t L_36 = __this->get_m_EventBufferSize_6(); int64_t L_37 = V_5; V_6 = ((int64_t)il2cpp_codegen_add((int64_t)L_36, (int64_t)L_37)); // if (newBufferSize > m_MaxEventBufferSize) int64_t L_38 = V_6; int64_t L_39 = __this->get_m_MaxEventBufferSize_7(); if ((((int64_t)L_38) <= ((int64_t)L_39))) { goto IL_0119; } } { // newBufferSize = m_MaxEventBufferSize; int64_t L_40 = __this->get_m_MaxEventBufferSize_7(); V_6 = L_40; } IL_0119: { // if (newBufferSize < bytesNeeded) int64_t L_41 = V_6; uint32_t L_42 = V_0; if ((((int64_t)L_41) >= ((int64_t)((int64_t)((uint64_t)L_42))))) { goto IL_0120; } } { // return; return; } IL_0120: { // Resize(newBufferSize); int64_t L_43 = V_6; bool L_44; L_44 = InputEventTrace_Resize_m084E07494718A6C19A797EE9D4DE338C3C805DFE(__this, L_43, ((int64_t)((int64_t)(-1))), /*hidden argument*/NULL); // newTail = m_EventBufferTail + bytesNeeded; uint8_t* L_45; L_45 = InputEventTrace_get_m_EventBufferTail_mED3E2B59BEC1AE315F588F422E823F64DCFC902E(__this, /*hidden argument*/NULL); uint32_t L_46 = V_0; V_1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_45, (intptr_t)((uintptr_t)L_46))); } IL_0135: { // var spaceLeft = m_EventBufferSize - (m_EventBufferTail - m_EventBuffer); int64_t L_47 = __this->get_m_EventBufferSize_6(); uint8_t* L_48; L_48 = InputEventTrace_get_m_EventBufferTail_mED3E2B59BEC1AE315F588F422E823F64DCFC902E(__this, /*hidden argument*/NULL); uint8_t* L_49; L_49 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); V_4 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_47, (int64_t)((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_48, (intptr_t)L_49))/(int32_t)1)))))); // if (spaceLeft < bytesNeeded) int64_t L_50 = V_4; uint32_t L_51 = V_0; if ((((int64_t)L_50) >= ((int64_t)((int64_t)((uint64_t)L_51))))) { goto IL_019f; } } { // m_HasWrapped = true; __this->set_m_HasWrapped_14((bool)1); // if (spaceLeft >= InputEvent.kBaseEventSize) int64_t L_52 = V_4; if ((((int64_t)L_52) < ((int64_t)((int64_t)((int64_t)((int32_t)20)))))) { goto IL_0170; } } { // UnsafeUtility.MemClear(m_EventBufferTail, InputEvent.kBaseEventSize); uint8_t* L_53; L_53 = InputEventTrace_get_m_EventBufferTail_mED3E2B59BEC1AE315F588F422E823F64DCFC902E(__this, /*hidden argument*/NULL); UnsafeUtility_MemClear_m0915615269E0140AB23F0073BF02086A51AFCABF((void*)(void*)L_53, ((int64_t)((int64_t)((int32_t)20))), /*hidden argument*/NULL); } IL_0170: { // m_EventBufferTail = m_EventBuffer; uint8_t* L_54; L_54 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); InputEventTrace_set_m_EventBufferTail_m34E44F7D85F4EA4DF45B7EAB71F0DCDBB262E166(__this, (uint8_t*)(uint8_t*)L_54, /*hidden argument*/NULL); // newTail = m_EventBuffer + bytesNeeded; uint8_t* L_55; L_55 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); uint32_t L_56 = V_0; V_1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_55, (intptr_t)((uintptr_t)L_56))); // if (newTailOvertakesHead) bool L_57 = V_2; if (!L_57) { goto IL_0195; } } { // m_EventBufferHead = m_EventBuffer; uint8_t* L_58; L_58 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); InputEventTrace_set_m_EventBufferHead_mF322FFA85D9962A39F70E91855F5BD4FAEC15785(__this, (uint8_t*)(uint8_t*)L_58, /*hidden argument*/NULL); } IL_0195: { // newTailOvertakesHead = newTail > m_EventBufferHead; uint8_t* L_59 = V_1; uint8_t* L_60; L_60 = InputEventTrace_get_m_EventBufferHead_mD3AC2D3ACFAE376865E0D059DE7D9EA4EEA9BCF1(__this, /*hidden argument*/NULL); V_2 = (bool)((!(((uintptr_t)L_59) <= ((uintptr_t)L_60)))? 1 : 0); } IL_019f: { // if (newTailOvertakesHead) bool L_61 = V_2; if (!L_61) { goto IL_0215; } } { // var newHead = m_EventBufferHead; uint8_t* L_62; L_62 = InputEventTrace_get_m_EventBufferHead_mD3AC2D3ACFAE376865E0D059DE7D9EA4EEA9BCF1(__this, /*hidden argument*/NULL); V_7 = (uint8_t*)L_62; // var endOfBufferMinusOneEvent = // m_EventBuffer + m_EventBufferSize - InputEvent.kBaseEventSize; uint8_t* L_63; L_63 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); int64_t L_64 = __this->get_m_EventBufferSize_6(); V_8 = (uint8_t*)((uint8_t*)il2cpp_codegen_subtract((intptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_63, (intptr_t)((intptr_t)L_64))), (int32_t)((int32_t)20))); goto IL_0208; } IL_01bf: { // var numBytes = ((InputEvent*)newHead)->sizeInBytes; uint8_t* L_65 = V_7; uint32_t L_66; L_66 = InputEvent_get_sizeInBytes_mFF08EC52AAEB650D04AFFFA2CDCEDECBC6DB0B59((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_65, /*hidden argument*/NULL); V_9 = L_66; // newHead += numBytes; uint8_t* L_67 = V_7; uint32_t L_68 = V_9; V_7 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_67, (intptr_t)((uintptr_t)L_68))); // --m_EventCount; int64_t L_69 = __this->get_m_EventCount_9(); __this->set_m_EventCount_9(((int64_t)il2cpp_codegen_subtract((int64_t)L_69, (int64_t)((int64_t)((int64_t)1))))); // m_EventSizeInBytes -= numBytes; int64_t L_70 = __this->get_m_EventSizeInBytes_10(); uint32_t L_71 = V_9; __this->set_m_EventSizeInBytes_10(((int64_t)il2cpp_codegen_subtract((int64_t)L_70, (int64_t)((int64_t)((uint64_t)L_71))))); // if (newHead > endOfBufferMinusOneEvent || ((InputEvent*)newHead)->sizeInBytes == 0) uint8_t* L_72 = V_7; uint8_t* L_73 = V_8; if ((!(((uintptr_t)L_72) <= ((uintptr_t)L_73)))) { goto IL_01fe; } } { uint8_t* L_74 = V_7; uint32_t L_75; L_75 = InputEvent_get_sizeInBytes_mFF08EC52AAEB650D04AFFFA2CDCEDECBC6DB0B59((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_74, /*hidden argument*/NULL); if (L_75) { goto IL_0208; } } IL_01fe: { // newHead = m_EventBuffer; uint8_t* L_76; L_76 = InputEventTrace_get_m_EventBuffer_m0BB75F56386FED2FA33B6E01590B036CF71FBA82(__this, /*hidden argument*/NULL); V_7 = (uint8_t*)L_76; // break; goto IL_020d; } IL_0208: { // while (newHead < newTail) uint8_t* L_77 = V_7; uint8_t* L_78 = V_1; if ((!(((uintptr_t)L_77) >= ((uintptr_t)L_78)))) { goto IL_01bf; } } IL_020d: { // m_EventBufferHead = newHead; uint8_t* L_79 = V_7; InputEventTrace_set_m_EventBufferHead_mF322FFA85D9962A39F70E91855F5BD4FAEC15785(__this, (uint8_t*)(uint8_t*)L_79, /*hidden argument*/NULL); } IL_0215: { // var buffer = m_EventBufferTail; uint8_t* L_80; L_80 = InputEventTrace_get_m_EventBufferTail_mED3E2B59BEC1AE315F588F422E823F64DCFC902E(__this, /*hidden argument*/NULL); V_3 = (uint8_t*)L_80; // m_EventBufferTail = newTail; uint8_t* L_81 = V_1; InputEventTrace_set_m_EventBufferTail_m34E44F7D85F4EA4DF45B7EAB71F0DCDBB262E166(__this, (uint8_t*)(uint8_t*)L_81, /*hidden argument*/NULL); // UnsafeUtility.MemCpy(buffer, inputEvent.data, inputEvent.sizeInBytes); uint8_t* L_82 = V_3; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_83; L_83 = InputEventPtr_get_data_m23324B1E4068E48168D6D06CEF9CC061D1E2D694_inline((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&___inputEvent0), /*hidden argument*/NULL); uint32_t L_84; L_84 = InputEventPtr_get_sizeInBytes_m4607C53C6A41A6BE5238609D7C1E4A2C169D5712((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&___inputEvent0), /*hidden argument*/NULL); UnsafeUtility_MemCpy_mA8E186A63FE9CE463F95E5C5FF1C5F1B4E84F90E((void*)(void*)L_82, (void*)(void*)L_83, ((int64_t)((uint64_t)L_84)), /*hidden argument*/NULL); // ++m_ChangeCounter; int32_t L_85 = __this->get_m_ChangeCounter_1(); __this->set_m_ChangeCounter_1(((int32_t)il2cpp_codegen_add((int32_t)L_85, (int32_t)1))); // ++m_EventCount; int64_t L_86 = __this->get_m_EventCount_9(); __this->set_m_EventCount_9(((int64_t)il2cpp_codegen_add((int64_t)L_86, (int64_t)((int64_t)((int64_t)1))))); // m_EventSizeInBytes += bytesNeeded; int64_t L_87 = __this->get_m_EventSizeInBytes_10(); uint32_t L_88 = V_0; __this->set_m_EventSizeInBytes_10(((int64_t)il2cpp_codegen_add((int64_t)L_87, (int64_t)((int64_t)((uint64_t)L_88))))); // if (device != null) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_89 = ___device1; if (!L_89) { goto IL_033a; } } { // var haveRecord = false; V_10 = (bool)0; // if (m_DeviceInfos != null) DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81* L_90 = __this->get_m_DeviceInfos_16(); if (!L_90) { goto IL_02ab; } } { // for (var i = 0; i < m_DeviceInfos.Length; ++i) V_11 = 0; goto IL_029f; } IL_027a: { // if (m_DeviceInfos[i].deviceId == device.deviceId) DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81* L_91 = __this->get_m_DeviceInfos_16(); int32_t L_92 = V_11; NullCheck(L_91); int32_t L_93; L_93 = DeviceInfo_get_deviceId_m4CA1031F6F24EFD5C78EB7B05EAEDAB926FEC3B0_inline((DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F *)((L_91)->GetAddressAt(static_cast(L_92))), /*hidden argument*/NULL); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_94 = ___device1; NullCheck(L_94); int32_t L_95; L_95 = InputDevice_get_deviceId_mDDE1531F7B9A1E03B17094C7AC37E58177E4AA0D_inline(L_94, /*hidden argument*/NULL); if ((!(((uint32_t)L_93) == ((uint32_t)L_95)))) { goto IL_0299; } } { // haveRecord = true; V_10 = (bool)1; // break; goto IL_02ab; } IL_0299: { // for (var i = 0; i < m_DeviceInfos.Length; ++i) int32_t L_96 = V_11; V_11 = ((int32_t)il2cpp_codegen_add((int32_t)L_96, (int32_t)1)); } IL_029f: { // for (var i = 0; i < m_DeviceInfos.Length; ++i) int32_t L_97 = V_11; DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81* L_98 = __this->get_m_DeviceInfos_16(); NullCheck(L_98); if ((((int32_t)L_97) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_98)->max_length)))))) { goto IL_027a; } } IL_02ab: { // if (!haveRecord) bool L_99 = V_10; if (L_99) { goto IL_033a; } } { // ArrayHelpers.Append(ref m_DeviceInfos, new DeviceInfo // { // m_DeviceId = device.deviceId, // m_Layout = device.layout, // m_StateFormat = device.stateBlock.format, // m_StateSizeInBytes = (int)device.stateBlock.alignedSizeInBytes, // // // If it's a generated layout, store the full layout JSON in the device info. We do this so that // // when saving traces for this kind of input, we can recreate the device. // m_FullLayoutJson = InputControlLayout.s_Layouts.IsGeneratedLayout(device.m_Layout) // ? InputSystem.LoadLayout(device.layout).ToJson() // : null // }); DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81** L_100 = __this->get_address_of_m_DeviceInfos_16(); il2cpp_codegen_initobj((&V_12), sizeof(DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F )); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_101 = ___device1; NullCheck(L_101); int32_t L_102; L_102 = InputDevice_get_deviceId_mDDE1531F7B9A1E03B17094C7AC37E58177E4AA0D_inline(L_101, /*hidden argument*/NULL); (&V_12)->set_m_DeviceId_0(L_102); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_103 = ___device1; NullCheck(L_103); String_t* L_104; L_104 = InputControl_get_layout_m6A38EE2D15A5FCFDEE94B4056DD1565E17378454(L_103, /*hidden argument*/NULL); (&V_12)->set_m_Layout_1(L_104); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_105 = ___device1; NullCheck(L_105); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B L_106; L_106 = InputControl_get_stateBlock_m0ECA3324A1A42DDE5085EAE0A82D7C0447143252_inline(L_105, /*hidden argument*/NULL); V_13 = L_106; FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_107; L_107 = InputStateBlock_get_format_m99B8AE2CD603AC198E543FA369ACEADB725E2689_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)(&V_13), /*hidden argument*/NULL); (&V_12)->set_m_StateFormat_2(L_107); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_108 = ___device1; NullCheck(L_108); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B L_109; L_109 = InputControl_get_stateBlock_m0ECA3324A1A42DDE5085EAE0A82D7C0447143252_inline(L_108, /*hidden argument*/NULL); V_13 = L_109; uint32_t L_110; L_110 = InputStateBlock_get_alignedSizeInBytes_m0A9650F80120683F6336427F2A8C9639109738D8((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)(&V_13), /*hidden argument*/NULL); (&V_12)->set_m_StateSizeInBytes_3(L_110); IL2CPP_RUNTIME_CLASS_INIT(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_il2cpp_TypeInfo_var); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_111 = ___device1; NullCheck(L_111); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_112 = ((InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *)L_111)->get_m_Layout_7(); bool L_113; L_113 = Collection_IsGeneratedLayout_m7E7FC91B386F1FB499E7C94A316B8C9B03FFF032((Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F *)(((InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_StaticFields*)il2cpp_codegen_static_fields_for(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_il2cpp_TypeInfo_var))->get_address_of_s_Layouts_15()), L_112, /*hidden argument*/NULL); G_B48_0 = (&V_12); G_B48_1 = L_100; if (L_113) { G_B49_0 = (&V_12); G_B49_1 = L_100; goto IL_031d; } } { G_B50_0 = ((String_t*)(NULL)); G_B50_1 = G_B48_0; G_B50_2 = G_B48_1; goto IL_032d; } IL_031d: { InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_114 = ___device1; NullCheck(L_114); String_t* L_115; L_115 = InputControl_get_layout_m6A38EE2D15A5FCFDEE94B4056DD1565E17378454(L_114, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var); InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741 * L_116; L_116 = InputSystem_LoadLayout_mAC61787605E3C0F8ACA3300B7A56117567D04A25(L_115, /*hidden argument*/NULL); NullCheck(L_116); String_t* L_117; L_117 = InputControlLayout_ToJson_mC9EF60D7EBC7BABC09452B624F499184BDBACFE3(L_116, /*hidden argument*/NULL); G_B50_0 = L_117; G_B50_1 = G_B49_0; G_B50_2 = G_B49_1; } IL_032d: { G_B50_1->set_m_FullLayoutJson_4(G_B50_0); DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F L_118 = V_12; int32_t L_119; L_119 = ArrayHelpers_Append_TisDeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F_mEA1ABEEA1ADC1C5A21B8E4665D8E57A9E8FC6295((DeviceInfoU5BU5D_tB7886245BF5313CF2A54F627A6734E2322BA4A81**)G_B50_2, L_118, /*hidden argument*/ArrayHelpers_Append_TisDeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F_mEA1ABEEA1ADC1C5A21B8E4665D8E57A9E8FC6295_RuntimeMethod_var); } IL_033a: { // if (m_EventListeners.length > 0) CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008 * L_120 = __this->get_address_of_m_EventListeners_5(); int32_t L_121; L_121 = CallbackArray_1_get_length_mF8F5F570FA6C35E69784FBB53071EF27BB29A7B4((CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008 *)L_120, /*hidden argument*/CallbackArray_1_get_length_mF8F5F570FA6C35E69784FBB53071EF27BB29A7B4_RuntimeMethod_var); if ((((int32_t)L_121) <= ((int32_t)0))) { goto IL_035f; } } { // DelegateHelpers.InvokeCallbacksSafe(ref m_EventListeners, new InputEventPtr((InputEvent*)buffer), // "InputEventTrace.onEvent"); CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008 * L_122 = __this->get_address_of_m_EventListeners_5(); uint8_t* L_123 = V_3; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_124; memset((&L_124), 0, sizeof(L_124)); InputEventPtr__ctor_m9EBF5134C7CC18F85542C146674EAE1BF7F29110_inline((&L_124), (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_123, /*hidden argument*/NULL); DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_mC4159FA60A399EFD819461CBD6CF31C2C9953FA7((CallbackArray_1_tCB91AA1213E7BA962E1C5DCC0A7CBD07B13A9008 *)L_122, L_124, _stringLiteral6CD29DF87BDE4FB4030DE06320C56337EE9127EF, NULL, /*hidden argument*/DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_mC4159FA60A399EFD819461CBD6CF31C2C9953FA7_RuntimeMethod_var); } IL_035f: { // } return; } } // UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEventTrace::get_kFileFormat() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 InputEventTrace_get_kFileFormat_mB181CCDEF3644A0EA1F4A8EC41CD203D3631B20F (const RuntimeMethod* method) { { // private static FourCC kFileFormat => new FourCC('I', 'E', 'V', 'T'); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_0; memset((&L_0), 0, sizeof(L_0)); FourCC__ctor_mEF52BABF36FD0F6E63A5CD7C1520AEFDAC9FCC14((&L_0), ((int32_t)73), ((int32_t)69), ((int32_t)86), ((int32_t)84), /*hidden argument*/NULL); return L_0; } } // System.Void UnityEngine.InputSystem.LowLevel.InputEventTrace::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace__cctor_m0A56EED713C7B4ADCD1BBD935EA634A64161005A (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // private static int kFileVersion = 1; ((InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_StaticFields*)il2cpp_codegen_static_fields_for(InputEventTrace_t22E95967587C4A3EAA545A70D57A745BCFEAD646_il2cpp_TypeInfo_var))->set_kFileVersion_17(1); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean UnityEngine.InputSystem.InputExtensions::IsInProgress(UnityEngine.InputSystem.InputActionPhase) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputExtensions_IsInProgress_mEB534005411FDCF6FB88FEF96CFB13EB9120EBF4 (int32_t ___phase0, const RuntimeMethod* method) { { // return phase == InputActionPhase.Started || phase == InputActionPhase.Performed; int32_t L_0 = ___phase0; if ((((int32_t)L_0) == ((int32_t)2))) { goto IL_0009; } } { int32_t L_1 = ___phase0; return (bool)((((int32_t)L_1) == ((int32_t)3))? 1 : 0); } IL_0009: { return (bool)1; } } // System.Boolean UnityEngine.InputSystem.InputExtensions::IsEndedOrCanceled(UnityEngine.InputSystem.TouchPhase) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputExtensions_IsEndedOrCanceled_mA5694FFC2E20FD8270090165A392F53B74837FD5 (int32_t ___phase0, const RuntimeMethod* method) { { // return phase == TouchPhase.Canceled || phase == TouchPhase.Ended; int32_t L_0 = ___phase0; if ((((int32_t)L_0) == ((int32_t)4))) { goto IL_0009; } } { int32_t L_1 = ___phase0; return (bool)((((int32_t)L_1) == ((int32_t)3))? 1 : 0); } IL_0009: { return (bool)1; } } // System.Boolean UnityEngine.InputSystem.InputExtensions::IsActive(UnityEngine.InputSystem.TouchPhase) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputExtensions_IsActive_m650A9B9DF809DA19108D24BD0A0273AD7D94840B (int32_t ___phase0, const RuntimeMethod* method) { { int32_t L_0 = ___phase0; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1))) > ((uint32_t)1)))) { goto IL_000a; } } { int32_t L_1 = ___phase0; if ((!(((uint32_t)L_1) == ((uint32_t)5)))) { goto IL_000c; } } IL_000a: { // return true; return (bool)1; } IL_000c: { // return false; return (bool)0; } } // System.Boolean UnityEngine.InputSystem.InputExtensions::IsModifierKey(UnityEngine.InputSystem.Key) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputExtensions_IsModifierKey_m6BF430933AD29570532CE81536059B40ED9A2FBF (int32_t ___key0, const RuntimeMethod* method) { { int32_t L_0 = ___key0; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)((int32_t)51)))) <= ((uint32_t)7)))) { goto IL_0009; } } { // return true; return (bool)1; } IL_0009: { // return false; return (bool)0; } } // System.Boolean UnityEngine.InputSystem.InputExtensions::IsTextInputKey(UnityEngine.InputSystem.Key) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputExtensions_IsTextInputKey_m1B871201A97DE3EC52DE6884EEDF626E09C11839 (int32_t ___key0, const RuntimeMethod* method) { { int32_t L_0 = ___key0; if ((!(((uint32_t)L_0) > ((uint32_t)3)))) { goto IL_0014; } } { int32_t L_1 = ___key0; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)((int32_t)51)))) > ((uint32_t)((int32_t)26))))) { goto IL_0014; } } { int32_t L_2 = ___key0; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((int32_t)94)))) <= ((uint32_t)((int32_t)17))))) { goto IL_0016; } } IL_0014: { // return false; return (bool)0; } IL_0016: { // return true; return (bool)1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Type UnityEngine.InputSystem.InputInteraction::GetValueType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * InputInteraction_GetValueType_m15008505D3AC2E1B378A92E710A20BC2E3E36D39 (Type_t * ___interactionType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputInteraction_1_t883F8D0B912532D325D9544EC005978AD56CFA9C_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (interactionType == null) Type_t * L_0 = ___interactionType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { // throw new ArgumentNullException(nameof(interactionType)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2FAF69E7069A74915581E7B248D1232DBBACF6CC)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputInteraction_GetValueType_m15008505D3AC2E1B378A92E710A20BC2E3E36D39_RuntimeMethod_var))); } IL_0014: { // return TypeHelpers.GetGenericTypeArgumentFromHierarchy(interactionType, typeof(IInputInteraction<>), 0); Type_t * L_3 = ___interactionType0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_4 = { reinterpret_cast (IInputInteraction_1_t883F8D0B912532D325D9544EC005978AD56CFA9C_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5; L_5 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_4, /*hidden argument*/NULL); Type_t * L_6; L_6 = TypeHelpers_GetGenericTypeArgumentFromHierarchy_mAC39DFBA374535C9D576EF7278163E933E2598C8(L_3, L_5, 0, /*hidden argument*/NULL); return L_6; } } // System.String UnityEngine.InputSystem.InputInteraction::GetDisplayName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputInteraction_GetDisplayName_mCCBCA3612441E933006CE842A9832B3DED6CE981 (String_t* ___interaction0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputInteraction_t7BAD5F994214A465B34D56FB86391F9181113F78_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; { // if (string.IsNullOrEmpty(interaction)) String_t* L_0 = ___interaction0; bool L_1; L_1 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0013; } } { // throw new ArgumentNullException(nameof(interaction)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral023DD7331D6D2552C2332AAE94DB1E66780AE095)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputInteraction_GetDisplayName_mCCBCA3612441E933006CE842A9832B3DED6CE981_RuntimeMethod_var))); } IL_0013: { // var interactionType = s_Interactions.LookupTypeRegistration(interaction); String_t* L_3 = ___interaction0; Type_t * L_4; L_4 = TypeTable_LookupTypeRegistration_mE847426243DD211C994CF5EACC7F05E038D32A13((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(((InputInteraction_t7BAD5F994214A465B34D56FB86391F9181113F78_StaticFields*)il2cpp_codegen_static_fields_for(InputInteraction_t7BAD5F994214A465B34D56FB86391F9181113F78_il2cpp_TypeInfo_var))->get_address_of_s_Interactions_0()), L_3, /*hidden argument*/NULL); V_0 = L_4; // if (interactionType == null) Type_t * L_5 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_6; L_6 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_5, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_6) { goto IL_002a; } } { // return interaction; String_t* L_7 = ___interaction0; return L_7; } IL_002a: { // return GetDisplayName(interactionType); Type_t * L_8 = V_0; String_t* L_9; L_9 = InputInteraction_GetDisplayName_m5DFBB4B834A04D4FE2FBBFCEE5FCFC1E8CD588C8(L_8, /*hidden argument*/NULL); return L_9; } } // System.String UnityEngine.InputSystem.InputInteraction::GetDisplayName(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputInteraction_GetDisplayName_m5DFBB4B834A04D4FE2FBBFCEE5FCFC1E8CD588C8 (Type_t * ___interactionType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CustomAttributeExtensions_GetCustomAttribute_TisDisplayNameAttribute_t23E87B8B23DC5CF5E2A72B8039935029D0A53E85_m38F082239F94AE4A752E5121D74E024688EC7897_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAF8E649A3EF1AB74A43C9F88015FA68AC719215A); s_Il2CppMethodInitialized = true; } DisplayNameAttribute_t23E87B8B23DC5CF5E2A72B8039935029D0A53E85 * V_0 = NULL; { // if (interactionType == null) Type_t * L_0 = ___interactionType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { // throw new ArgumentNullException(nameof(interactionType)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2FAF69E7069A74915581E7B248D1232DBBACF6CC)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputInteraction_GetDisplayName_m5DFBB4B834A04D4FE2FBBFCEE5FCFC1E8CD588C8_RuntimeMethod_var))); } IL_0014: { // var displayNameAttribute = interactionType.GetCustomAttribute(); Type_t * L_3 = ___interactionType0; DisplayNameAttribute_t23E87B8B23DC5CF5E2A72B8039935029D0A53E85 * L_4; L_4 = CustomAttributeExtensions_GetCustomAttribute_TisDisplayNameAttribute_t23E87B8B23DC5CF5E2A72B8039935029D0A53E85_m38F082239F94AE4A752E5121D74E024688EC7897(L_3, /*hidden argument*/CustomAttributeExtensions_GetCustomAttribute_TisDisplayNameAttribute_t23E87B8B23DC5CF5E2A72B8039935029D0A53E85_m38F082239F94AE4A752E5121D74E024688EC7897_RuntimeMethod_var); V_0 = L_4; // if (displayNameAttribute == null) DisplayNameAttribute_t23E87B8B23DC5CF5E2A72B8039935029D0A53E85 * L_5 = V_0; if (L_5) { goto IL_005a; } } { // if (interactionType.Name.EndsWith("Interaction")) Type_t * L_6 = ___interactionType0; NullCheck(L_6); String_t* L_7; L_7 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_6); NullCheck(L_7); bool L_8; L_8 = String_EndsWith_m9A6011FDF8EBFFD3BCB51FE5BE58BE265116DCBE(L_7, _stringLiteralAF8E649A3EF1AB74A43C9F88015FA68AC719215A, /*hidden argument*/NULL); if (!L_8) { goto IL_0053; } } { // return interactionType.Name.Substring(0, interactionType.Name.Length - "Interaction".Length); Type_t * L_9 = ___interactionType0; NullCheck(L_9); String_t* L_10; L_10 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_9); Type_t * L_11 = ___interactionType0; NullCheck(L_11); String_t* L_12; L_12 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_11); NullCheck(L_12); int32_t L_13; L_13 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_12, /*hidden argument*/NULL); NullCheck(_stringLiteralAF8E649A3EF1AB74A43C9F88015FA68AC719215A); int32_t L_14; L_14 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(_stringLiteralAF8E649A3EF1AB74A43C9F88015FA68AC719215A, /*hidden argument*/NULL); NullCheck(L_10); String_t* L_15; L_15 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_10, 0, ((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)L_14)), /*hidden argument*/NULL); return L_15; } IL_0053: { // return interactionType.Name; Type_t * L_16 = ___interactionType0; NullCheck(L_16); String_t* L_17; L_17 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_16); return L_17; } IL_005a: { // return displayNameAttribute.DisplayName; DisplayNameAttribute_t23E87B8B23DC5CF5E2A72B8039935029D0A53E85 * L_18 = V_0; NullCheck(L_18); String_t* L_19; L_19 = VirtFuncInvoker0< String_t* >::Invoke(4 /* System.String System.ComponentModel.DisplayNameAttribute::get_DisplayName() */, L_18); return L_19; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: UnityEngine.InputSystem.InputInteractionContext IL2CPP_EXTERN_C void InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909_marshal_pinvoke(const InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909& unmarshaled, InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909_marshaled_pinvoke& marshaled) { Exception_t* ___m_State_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_State' of type 'InputInteractionContext': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___m_State_0Exception, NULL); } IL2CPP_EXTERN_C void InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909_marshal_pinvoke_back(const InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909_marshaled_pinvoke& marshaled, InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909& unmarshaled) { Exception_t* ___m_State_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_State' of type 'InputInteractionContext': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___m_State_0Exception, NULL); } // Conversion method for clean up from marshalling of: UnityEngine.InputSystem.InputInteractionContext IL2CPP_EXTERN_C void InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909_marshal_pinvoke_cleanup(InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: UnityEngine.InputSystem.InputInteractionContext IL2CPP_EXTERN_C void InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909_marshal_com(const InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909& unmarshaled, InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909_marshaled_com& marshaled) { Exception_t* ___m_State_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_State' of type 'InputInteractionContext': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___m_State_0Exception, NULL); } IL2CPP_EXTERN_C void InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909_marshal_com_back(const InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909_marshaled_com& marshaled, InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909& unmarshaled) { Exception_t* ___m_State_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_State' of type 'InputInteractionContext': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___m_State_0Exception, NULL); } // Conversion method for clean up from marshalling of: UnityEngine.InputSystem.InputInteractionContext IL2CPP_EXTERN_C void InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909_marshal_com_cleanup(InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909_marshaled_com& marshaled) { } // UnityEngine.InputSystem.InputAction UnityEngine.InputSystem.InputInteractionContext::get_action() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B * InputInteractionContext_get_action_mC4E7224112117A13F2067204A367CE6B9D2CB592 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method) { { // public InputAction action => m_State.GetActionOrNull(ref m_TriggerState); InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9 * L_0 = __this->get_m_State_0(); TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_1 = __this->get_address_of_m_TriggerState_2(); NullCheck(L_0); InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B * L_2; L_2 = InputActionState_GetActionOrNull_m70412C552F339718FDB8F5390D6DE2A0223B30AA(L_0, (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_1, /*hidden argument*/NULL); return L_2; } } IL2CPP_EXTERN_C InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B * InputInteractionContext_get_action_mC4E7224112117A13F2067204A367CE6B9D2CB592_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * _thisAdjusted = reinterpret_cast(__this + _offset); InputAction_t9AC3F79A5911EDC5CEB0BCD81640FDACA8DB0B0B * _returnValue; _returnValue = InputInteractionContext_get_action_mC4E7224112117A13F2067204A367CE6B9D2CB592(_thisAdjusted, method); return _returnValue; } // UnityEngine.InputSystem.InputControl UnityEngine.InputSystem.InputInteractionContext::get_control() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * InputInteractionContext_get_control_m76A5676F1E0EC90CC5092ECB59DE1C446E0E4FA0 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method) { { // public InputControl control => m_State.GetControl(ref m_TriggerState); InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9 * L_0 = __this->get_m_State_0(); TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_1 = __this->get_address_of_m_TriggerState_2(); NullCheck(L_0); InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_2; L_2 = InputActionState_GetControl_m940C0F82A1BAF42C7F44F9F3E62B29243FCFDC33(L_0, (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_1, /*hidden argument*/NULL); return L_2; } } IL2CPP_EXTERN_C InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * InputInteractionContext_get_control_m76A5676F1E0EC90CC5092ECB59DE1C446E0E4FA0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * _thisAdjusted = reinterpret_cast(__this + _offset); InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * _returnValue; _returnValue = InputInteractionContext_get_control_m76A5676F1E0EC90CC5092ECB59DE1C446E0E4FA0(_thisAdjusted, method); return _returnValue; } // UnityEngine.InputSystem.InputActionPhase UnityEngine.InputSystem.InputInteractionContext::get_phase() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputInteractionContext_get_phase_m1D1F933DC688D76CA3BFD84B5D69F8675A1B4641 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method) { { // public InputActionPhase phase => m_TriggerState.phase; TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_0 = __this->get_address_of_m_TriggerState_2(); int32_t L_1; L_1 = TriggerState_get_phase_m8BC034C0171DFBEFFE326B22BED602AB414D8CB8_inline((TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int32_t InputInteractionContext_get_phase_m1D1F933DC688D76CA3BFD84B5D69F8675A1B4641_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = InputInteractionContext_get_phase_m1D1F933DC688D76CA3BFD84B5D69F8675A1B4641(_thisAdjusted, method); return _returnValue; } // System.Double UnityEngine.InputSystem.InputInteractionContext::get_time() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputInteractionContext_get_time_m3F56EF59500DB7157D98B9FCAAFA87144C6462C5 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method) { { // public double time => m_TriggerState.time; TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_0 = __this->get_address_of_m_TriggerState_2(); double L_1; L_1 = TriggerState_get_time_mEF5F8E6EA1177F885A7F1EE8FBEF374EFB43660C_inline((TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C double InputInteractionContext_get_time_m3F56EF59500DB7157D98B9FCAAFA87144C6462C5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * _thisAdjusted = reinterpret_cast(__this + _offset); double _returnValue; _returnValue = InputInteractionContext_get_time_m3F56EF59500DB7157D98B9FCAAFA87144C6462C5(_thisAdjusted, method); return _returnValue; } // System.Double UnityEngine.InputSystem.InputInteractionContext::get_startTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputInteractionContext_get_startTime_mBD5679426EE582E198DEAD23B3FF8754CE5BDCA9 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method) { { // public double startTime => m_TriggerState.startTime; TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_0 = __this->get_address_of_m_TriggerState_2(); double L_1; L_1 = TriggerState_get_startTime_m465D962E69624146FD140452618312328005299A_inline((TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C double InputInteractionContext_get_startTime_mBD5679426EE582E198DEAD23B3FF8754CE5BDCA9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * _thisAdjusted = reinterpret_cast(__this + _offset); double _returnValue; _returnValue = InputInteractionContext_get_startTime_mBD5679426EE582E198DEAD23B3FF8754CE5BDCA9(_thisAdjusted, method); return _returnValue; } // System.Boolean UnityEngine.InputSystem.InputInteractionContext::get_timerHasExpired() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputInteractionContext_get_timerHasExpired_mDE56578A71907B074611261FFE6923D8DEF9BE5C (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method) { { // get => (m_Flags & Flags.TimerHasExpired) != 0; int32_t L_0 = __this->get_m_Flags_1(); return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)2))) <= ((uint32_t)0)))? 1 : 0); } } IL2CPP_EXTERN_C bool InputInteractionContext_get_timerHasExpired_mDE56578A71907B074611261FFE6923D8DEF9BE5C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = InputInteractionContext_get_timerHasExpired_mDE56578A71907B074611261FFE6923D8DEF9BE5C(_thisAdjusted, method); return _returnValue; } // System.Void UnityEngine.InputSystem.InputInteractionContext::set_timerHasExpired(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputInteractionContext_set_timerHasExpired_mD5484310F467F8D60331499A8ECD7840EDCB70F4 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, bool ___value0, const RuntimeMethod* method) { { // if (value) bool L_0 = ___value0; if (!L_0) { goto IL_0012; } } { // m_Flags |= Flags.TimerHasExpired; int32_t L_1 = __this->get_m_Flags_1(); __this->set_m_Flags_1(((int32_t)((int32_t)L_1|(int32_t)2))); return; } IL_0012: { // m_Flags &= ~Flags.TimerHasExpired; int32_t L_2 = __this->get_m_Flags_1(); __this->set_m_Flags_1(((int32_t)((int32_t)L_2&(int32_t)((int32_t)-3)))); // } return; } } IL2CPP_EXTERN_C void InputInteractionContext_set_timerHasExpired_mD5484310F467F8D60331499A8ECD7840EDCB70F4_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { int32_t _offset = 1; InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * _thisAdjusted = reinterpret_cast(__this + _offset); InputInteractionContext_set_timerHasExpired_mD5484310F467F8D60331499A8ECD7840EDCB70F4(_thisAdjusted, ___value0, method); } // System.Boolean UnityEngine.InputSystem.InputInteractionContext::get_isWaiting() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputInteractionContext_get_isWaiting_m31D8A710BB4F41311CC31E384915855CA35191C7 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method) { { // public bool isWaiting => phase == InputActionPhase.Waiting; int32_t L_0; L_0 = InputInteractionContext_get_phase_m1D1F933DC688D76CA3BFD84B5D69F8675A1B4641((InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 *)__this, /*hidden argument*/NULL); return (bool)((((int32_t)L_0) == ((int32_t)1))? 1 : 0); } } IL2CPP_EXTERN_C bool InputInteractionContext_get_isWaiting_m31D8A710BB4F41311CC31E384915855CA35191C7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = InputInteractionContext_get_isWaiting_m31D8A710BB4F41311CC31E384915855CA35191C7(_thisAdjusted, method); return _returnValue; } // System.Boolean UnityEngine.InputSystem.InputInteractionContext::get_isStarted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputInteractionContext_get_isStarted_m9E92E3E55705698AC76C9993032E312DD55BD6A6 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method) { { // public bool isStarted => phase == InputActionPhase.Started; int32_t L_0; L_0 = InputInteractionContext_get_phase_m1D1F933DC688D76CA3BFD84B5D69F8675A1B4641((InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 *)__this, /*hidden argument*/NULL); return (bool)((((int32_t)L_0) == ((int32_t)2))? 1 : 0); } } IL2CPP_EXTERN_C bool InputInteractionContext_get_isStarted_m9E92E3E55705698AC76C9993032E312DD55BD6A6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = InputInteractionContext_get_isStarted_m9E92E3E55705698AC76C9993032E312DD55BD6A6(_thisAdjusted, method); return _returnValue; } // System.Single UnityEngine.InputSystem.InputInteractionContext::ComputeMagnitude() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float InputInteractionContext_ComputeMagnitude_m538830F588A35F39EEEA91642599C40404B7051F (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method) { { // return m_TriggerState.magnitude; TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_0 = __this->get_address_of_m_TriggerState_2(); float L_1; L_1 = TriggerState_get_magnitude_m173021159A016BD6FAF4DE2E83AD1E1BD19EA40B_inline((TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C float InputInteractionContext_ComputeMagnitude_m538830F588A35F39EEEA91642599C40404B7051F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * _thisAdjusted = reinterpret_cast(__this + _offset); float _returnValue; _returnValue = InputInteractionContext_ComputeMagnitude_m538830F588A35F39EEEA91642599C40404B7051F(_thisAdjusted, method); return _returnValue; } // System.Boolean UnityEngine.InputSystem.InputInteractionContext::ControlIsActuated(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputInteractionContext_ControlIsActuated_mDCF2AA5CA798067D94B97506A59DA2D3C9D30C19 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, float ___threshold0, const RuntimeMethod* method) { { // return InputActionState.IsActuated(ref m_TriggerState, threshold); TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_0 = __this->get_address_of_m_TriggerState_2(); float L_1 = ___threshold0; bool L_2; L_2 = InputActionState_IsActuated_m4B3CC59FD6606C069A6C10AEE88DF8D426CE622E((TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_0, L_1, /*hidden argument*/NULL); return L_2; } } IL2CPP_EXTERN_C bool InputInteractionContext_ControlIsActuated_mDCF2AA5CA798067D94B97506A59DA2D3C9D30C19_AdjustorThunk (RuntimeObject * __this, float ___threshold0, const RuntimeMethod* method) { int32_t _offset = 1; InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = InputInteractionContext_ControlIsActuated_mDCF2AA5CA798067D94B97506A59DA2D3C9D30C19(_thisAdjusted, ___threshold0, method); return _returnValue; } // System.Void UnityEngine.InputSystem.InputInteractionContext::Started() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputInteractionContext_Started_m23C1C4057523A978181856534E62F72A581A2503 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method) { { // m_TriggerState.startTime = time; TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_0 = __this->get_address_of_m_TriggerState_2(); double L_1; L_1 = InputInteractionContext_get_time_m3F56EF59500DB7157D98B9FCAAFA87144C6462C5((InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 *)__this, /*hidden argument*/NULL); TriggerState_set_startTime_mED223305B4E6A406E1E7612531C10B783C665D85_inline((TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_0, L_1, /*hidden argument*/NULL); // m_State.ChangePhaseOfInteraction(InputActionPhase.Started, ref m_TriggerState); InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9 * L_2 = __this->get_m_State_0(); TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_3 = __this->get_address_of_m_TriggerState_2(); NullCheck(L_2); InputActionState_ChangePhaseOfInteraction_m76B79D5FBD6FD3D231B5C1ADCDF6CC9E535B0B06(L_2, 2, (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_3, 1, (bool)1, /*hidden argument*/NULL); // } return; } } IL2CPP_EXTERN_C void InputInteractionContext_Started_m23C1C4057523A978181856534E62F72A581A2503_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * _thisAdjusted = reinterpret_cast(__this + _offset); InputInteractionContext_Started_m23C1C4057523A978181856534E62F72A581A2503(_thisAdjusted, method); } // System.Void UnityEngine.InputSystem.InputInteractionContext::Performed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputInteractionContext_Performed_m5ACE9C85B4E009C8FB825EFD389B47393CEA953D (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method) { { // if (m_TriggerState.phase == InputActionPhase.Waiting) TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_0 = __this->get_address_of_m_TriggerState_2(); int32_t L_1; L_1 = TriggerState_get_phase_m8BC034C0171DFBEFFE326B22BED602AB414D8CB8_inline((TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_0, /*hidden argument*/NULL); if ((!(((uint32_t)L_1) == ((uint32_t)1)))) { goto IL_001f; } } { // m_TriggerState.startTime = time; TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_2 = __this->get_address_of_m_TriggerState_2(); double L_3; L_3 = InputInteractionContext_get_time_m3F56EF59500DB7157D98B9FCAAFA87144C6462C5((InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 *)__this, /*hidden argument*/NULL); TriggerState_set_startTime_mED223305B4E6A406E1E7612531C10B783C665D85_inline((TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_2, L_3, /*hidden argument*/NULL); } IL_001f: { // m_State.ChangePhaseOfInteraction(InputActionPhase.Performed, ref m_TriggerState); InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9 * L_4 = __this->get_m_State_0(); TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_5 = __this->get_address_of_m_TriggerState_2(); NullCheck(L_4); InputActionState_ChangePhaseOfInteraction_m76B79D5FBD6FD3D231B5C1ADCDF6CC9E535B0B06(L_4, 3, (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_5, 1, (bool)1, /*hidden argument*/NULL); // } return; } } IL2CPP_EXTERN_C void InputInteractionContext_Performed_m5ACE9C85B4E009C8FB825EFD389B47393CEA953D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * _thisAdjusted = reinterpret_cast(__this + _offset); InputInteractionContext_Performed_m5ACE9C85B4E009C8FB825EFD389B47393CEA953D(_thisAdjusted, method); } // System.Void UnityEngine.InputSystem.InputInteractionContext::PerformedAndStayStarted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputInteractionContext_PerformedAndStayStarted_m4D7A3827DE07AE0C3D9A272AAFFCACABEBB74899 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method) { { // if (m_TriggerState.phase == InputActionPhase.Waiting) TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_0 = __this->get_address_of_m_TriggerState_2(); int32_t L_1; L_1 = TriggerState_get_phase_m8BC034C0171DFBEFFE326B22BED602AB414D8CB8_inline((TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_0, /*hidden argument*/NULL); if ((!(((uint32_t)L_1) == ((uint32_t)1)))) { goto IL_001f; } } { // m_TriggerState.startTime = time; TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_2 = __this->get_address_of_m_TriggerState_2(); double L_3; L_3 = InputInteractionContext_get_time_m3F56EF59500DB7157D98B9FCAAFA87144C6462C5((InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 *)__this, /*hidden argument*/NULL); TriggerState_set_startTime_mED223305B4E6A406E1E7612531C10B783C665D85_inline((TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_2, L_3, /*hidden argument*/NULL); } IL_001f: { // m_State.ChangePhaseOfInteraction(InputActionPhase.Performed, ref m_TriggerState, // phaseAfterPerformed: InputActionPhase.Started); InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9 * L_4 = __this->get_m_State_0(); TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_5 = __this->get_address_of_m_TriggerState_2(); NullCheck(L_4); InputActionState_ChangePhaseOfInteraction_m76B79D5FBD6FD3D231B5C1ADCDF6CC9E535B0B06(L_4, 3, (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_5, 2, (bool)1, /*hidden argument*/NULL); // } return; } } IL2CPP_EXTERN_C void InputInteractionContext_PerformedAndStayStarted_m4D7A3827DE07AE0C3D9A272AAFFCACABEBB74899_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * _thisAdjusted = reinterpret_cast(__this + _offset); InputInteractionContext_PerformedAndStayStarted_m4D7A3827DE07AE0C3D9A272AAFFCACABEBB74899(_thisAdjusted, method); } // System.Void UnityEngine.InputSystem.InputInteractionContext::PerformedAndStayPerformed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputInteractionContext_PerformedAndStayPerformed_m7F6E9A7FFC70F7FF9AAC627A301B63BC9ACA5CC0 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method) { { // if (m_TriggerState.phase == InputActionPhase.Waiting) TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_0 = __this->get_address_of_m_TriggerState_2(); int32_t L_1; L_1 = TriggerState_get_phase_m8BC034C0171DFBEFFE326B22BED602AB414D8CB8_inline((TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_0, /*hidden argument*/NULL); if ((!(((uint32_t)L_1) == ((uint32_t)1)))) { goto IL_001f; } } { // m_TriggerState.startTime = time; TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_2 = __this->get_address_of_m_TriggerState_2(); double L_3; L_3 = InputInteractionContext_get_time_m3F56EF59500DB7157D98B9FCAAFA87144C6462C5((InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 *)__this, /*hidden argument*/NULL); TriggerState_set_startTime_mED223305B4E6A406E1E7612531C10B783C665D85_inline((TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_2, L_3, /*hidden argument*/NULL); } IL_001f: { // m_State.ChangePhaseOfInteraction(InputActionPhase.Performed, ref m_TriggerState, // phaseAfterPerformed: InputActionPhase.Performed); InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9 * L_4 = __this->get_m_State_0(); TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_5 = __this->get_address_of_m_TriggerState_2(); NullCheck(L_4); InputActionState_ChangePhaseOfInteraction_m76B79D5FBD6FD3D231B5C1ADCDF6CC9E535B0B06(L_4, 3, (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_5, 3, (bool)1, /*hidden argument*/NULL); // } return; } } IL2CPP_EXTERN_C void InputInteractionContext_PerformedAndStayPerformed_m7F6E9A7FFC70F7FF9AAC627A301B63BC9ACA5CC0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * _thisAdjusted = reinterpret_cast(__this + _offset); InputInteractionContext_PerformedAndStayPerformed_m7F6E9A7FFC70F7FF9AAC627A301B63BC9ACA5CC0(_thisAdjusted, method); } // System.Void UnityEngine.InputSystem.InputInteractionContext::Canceled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputInteractionContext_Canceled_m540CC348F474B1BEE12982ED2872EF050E52EBFA (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method) { { // if (m_TriggerState.phase != InputActionPhase.Canceled) TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_0 = __this->get_address_of_m_TriggerState_2(); int32_t L_1; L_1 = TriggerState_get_phase_m8BC034C0171DFBEFFE326B22BED602AB414D8CB8_inline((TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_0, /*hidden argument*/NULL); if ((((int32_t)L_1) == ((int32_t)4))) { goto IL_0022; } } { // m_State.ChangePhaseOfInteraction(InputActionPhase.Canceled, ref m_TriggerState); InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9 * L_2 = __this->get_m_State_0(); TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_3 = __this->get_address_of_m_TriggerState_2(); NullCheck(L_2); InputActionState_ChangePhaseOfInteraction_m76B79D5FBD6FD3D231B5C1ADCDF6CC9E535B0B06(L_2, 4, (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_3, 1, (bool)1, /*hidden argument*/NULL); } IL_0022: { // } return; } } IL2CPP_EXTERN_C void InputInteractionContext_Canceled_m540CC348F474B1BEE12982ED2872EF050E52EBFA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * _thisAdjusted = reinterpret_cast(__this + _offset); InputInteractionContext_Canceled_m540CC348F474B1BEE12982ED2872EF050E52EBFA(_thisAdjusted, method); } // System.Void UnityEngine.InputSystem.InputInteractionContext::Waiting() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputInteractionContext_Waiting_m9F11707093CAC9C6F2A8ADE6C8B48631FCA0E0F9 (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method) { { // if (m_TriggerState.phase != InputActionPhase.Waiting) TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_0 = __this->get_address_of_m_TriggerState_2(); int32_t L_1; L_1 = TriggerState_get_phase_m8BC034C0171DFBEFFE326B22BED602AB414D8CB8_inline((TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_0, /*hidden argument*/NULL); if ((((int32_t)L_1) == ((int32_t)1))) { goto IL_0022; } } { // m_State.ChangePhaseOfInteraction(InputActionPhase.Waiting, ref m_TriggerState); InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9 * L_2 = __this->get_m_State_0(); TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_3 = __this->get_address_of_m_TriggerState_2(); NullCheck(L_2); InputActionState_ChangePhaseOfInteraction_m76B79D5FBD6FD3D231B5C1ADCDF6CC9E535B0B06(L_2, 1, (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_3, 1, (bool)1, /*hidden argument*/NULL); } IL_0022: { // } return; } } IL2CPP_EXTERN_C void InputInteractionContext_Waiting_m9F11707093CAC9C6F2A8ADE6C8B48631FCA0E0F9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * _thisAdjusted = reinterpret_cast(__this + _offset); InputInteractionContext_Waiting_m9F11707093CAC9C6F2A8ADE6C8B48631FCA0E0F9(_thisAdjusted, method); } // System.Void UnityEngine.InputSystem.InputInteractionContext::SetTimeout(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputInteractionContext_SetTimeout_m2141731FADDC6FF74277B85667CE6164DE84FC9F (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, float ___seconds0, const RuntimeMethod* method) { { // m_State.StartTimeout(seconds, ref m_TriggerState); InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9 * L_0 = __this->get_m_State_0(); float L_1 = ___seconds0; TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_2 = __this->get_address_of_m_TriggerState_2(); NullCheck(L_0); InputActionState_StartTimeout_mF48803007A5CF95BB23A7370CE888BCF665B6504(L_0, L_1, (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_2, /*hidden argument*/NULL); // } return; } } IL2CPP_EXTERN_C void InputInteractionContext_SetTimeout_m2141731FADDC6FF74277B85667CE6164DE84FC9F_AdjustorThunk (RuntimeObject * __this, float ___seconds0, const RuntimeMethod* method) { int32_t _offset = 1; InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * _thisAdjusted = reinterpret_cast(__this + _offset); InputInteractionContext_SetTimeout_m2141731FADDC6FF74277B85667CE6164DE84FC9F(_thisAdjusted, ___seconds0, method); } // System.Void UnityEngine.InputSystem.InputInteractionContext::SetTotalTimeoutCompletionTime(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputInteractionContext_SetTotalTimeoutCompletionTime_mE59B7013EFC7F13855BBCD1170CC4C1401E719DD (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, float ___seconds0, const RuntimeMethod* method) { { // if (seconds <= 0) float L_0 = ___seconds0; if ((!(((float)L_0) <= ((float)(0.0f))))) { goto IL_0018; } } { // throw new ArgumentException("Seconds must be a positive value", nameof(seconds)); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_1 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral945C9FDD2DF1B4F9CE3D0FE9BC9B6DD3A9DC93DE)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAC2806EA40D9F7601BBB6DA354C649B46D2D8877)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputInteractionContext_SetTotalTimeoutCompletionTime_mE59B7013EFC7F13855BBCD1170CC4C1401E719DD_RuntimeMethod_var))); } IL_0018: { // m_State.SetTotalTimeoutCompletionTime(seconds, ref m_TriggerState); InputActionState_tBAB20591FD6515A6FF5D70EF641A423E270A33F9 * L_2 = __this->get_m_State_0(); float L_3 = ___seconds0; TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_4 = __this->get_address_of_m_TriggerState_2(); NullCheck(L_2); InputActionState_SetTotalTimeoutCompletionTime_m1873C227899784774E0ADD698C8E5AAB38953C38(L_2, L_3, (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_4, /*hidden argument*/NULL); // } return; } } IL2CPP_EXTERN_C void InputInteractionContext_SetTotalTimeoutCompletionTime_mE59B7013EFC7F13855BBCD1170CC4C1401E719DD_AdjustorThunk (RuntimeObject * __this, float ___seconds0, const RuntimeMethod* method) { int32_t _offset = 1; InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * _thisAdjusted = reinterpret_cast(__this + _offset); InputInteractionContext_SetTotalTimeoutCompletionTime_mE59B7013EFC7F13855BBCD1170CC4C1401E719DD(_thisAdjusted, ___seconds0, method); } // System.Int32 UnityEngine.InputSystem.InputInteractionContext::get_mapIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputInteractionContext_get_mapIndex_m59657570E27E3D1A0B35E85C2F906D8398F2A1FD (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method) { { // internal int mapIndex => m_TriggerState.mapIndex; TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_0 = __this->get_address_of_m_TriggerState_2(); int32_t L_1; L_1 = TriggerState_get_mapIndex_m51582ABC29AFC6629760C66F15289E86CFCC3680_inline((TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int32_t InputInteractionContext_get_mapIndex_m59657570E27E3D1A0B35E85C2F906D8398F2A1FD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = InputInteractionContext_get_mapIndex_m59657570E27E3D1A0B35E85C2F906D8398F2A1FD(_thisAdjusted, method); return _returnValue; } // System.Int32 UnityEngine.InputSystem.InputInteractionContext::get_controlIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputInteractionContext_get_controlIndex_m4569A1177C64A190CE9A451930BBE3AF5C99BEDD (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method) { { // internal int controlIndex => m_TriggerState.controlIndex; TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_0 = __this->get_address_of_m_TriggerState_2(); int32_t L_1; L_1 = TriggerState_get_controlIndex_m960A306864E08240EEFEEDE399279D9B60C53BC4((TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int32_t InputInteractionContext_get_controlIndex_m4569A1177C64A190CE9A451930BBE3AF5C99BEDD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = InputInteractionContext_get_controlIndex_m4569A1177C64A190CE9A451930BBE3AF5C99BEDD(_thisAdjusted, method); return _returnValue; } // System.Int32 UnityEngine.InputSystem.InputInteractionContext::get_bindingIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputInteractionContext_get_bindingIndex_mD82E5BB42B069317235E01121FF7F30F07BC11FC (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method) { { // internal int bindingIndex => m_TriggerState.bindingIndex; TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_0 = __this->get_address_of_m_TriggerState_2(); int32_t L_1; L_1 = TriggerState_get_bindingIndex_m0AC6E41222022188B9528FC31FBC0B519BF7F7DF_inline((TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int32_t InputInteractionContext_get_bindingIndex_mD82E5BB42B069317235E01121FF7F30F07BC11FC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = InputInteractionContext_get_bindingIndex_mD82E5BB42B069317235E01121FF7F30F07BC11FC(_thisAdjusted, method); return _returnValue; } // System.Int32 UnityEngine.InputSystem.InputInteractionContext::get_interactionIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputInteractionContext_get_interactionIndex_m902505E51063CDE0D36417356E73FF889E52DEBC (InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * __this, const RuntimeMethod* method) { { // internal int interactionIndex => m_TriggerState.interactionIndex; TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * L_0 = __this->get_address_of_m_TriggerState_2(); int32_t L_1; L_1 = TriggerState_get_interactionIndex_m901FE8EF223E7846033D0F2A9406A9026967A1F2((TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 *)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int32_t InputInteractionContext_get_interactionIndex_m902505E51063CDE0D36417356E73FF889E52DEBC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; InputInteractionContext_t75228CAFBDC74D7F9313CAA70C85D6E98F238909 * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = InputInteractionContext_get_interactionIndex_m902505E51063CDE0D36417356E73FF889E52DEBC(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 UnityEngine.InputSystem.InputManager::get_devices() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_tACB506541C5CC2CCA16D8065F5F949D9874C78D0 InputManager_get_devices_m0415D67AD6F63DBDB79EAC7C8DF25DC89CFD481E (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1__ctor_m84C983212B6C53DA9A17DF1F5863FD5CE667512B_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // public ReadOnlyArray devices => new ReadOnlyArray(m_Devices, 0, m_DevicesCount); InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* L_0 = __this->get_m_Devices_7(); int32_t L_1 = __this->get_m_DevicesCount_6(); ReadOnlyArray_1_tACB506541C5CC2CCA16D8065F5F949D9874C78D0 L_2; memset((&L_2), 0, sizeof(L_2)); ReadOnlyArray_1__ctor_m84C983212B6C53DA9A17DF1F5863FD5CE667512B((&L_2), L_0, 0, L_1, /*hidden argument*/ReadOnlyArray_1__ctor_m84C983212B6C53DA9A17DF1F5863FD5CE667512B_RuntimeMethod_var); return L_2; } } // UnityEngine.InputSystem.Utilities.TypeTable UnityEngine.InputSystem.InputManager::get_processors() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F InputManager_get_processors_mE2E7DCBCB385B48AFA5B8EF95B35504E6BBD872E (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { { // public TypeTable processors => m_Processors; TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_0 = __this->get_m_Processors_3(); return L_0; } } // UnityEngine.InputSystem.Utilities.TypeTable UnityEngine.InputSystem.InputManager::get_interactions() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F InputManager_get_interactions_m82239AA93F8937149018A1CC8114BCAB00E27FA1 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { { // public TypeTable interactions => m_Interactions; TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_0 = __this->get_m_Interactions_4(); return L_0; } } // UnityEngine.InputSystem.Utilities.TypeTable UnityEngine.InputSystem.InputManager::get_composites() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F InputManager_get_composites_m8CE950CB9C8AA8AA8C69F17363908C87196CD6A5 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { { // public TypeTable composites => m_Composites; TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_0 = __this->get_m_Composites_5(); return L_0; } } // UnityEngine.InputSystem.LowLevel.InputMetrics UnityEngine.InputSystem.InputManager::get_metrics() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C InputManager_get_metrics_mE900643E6217B4DDA234B78C47CF67CD1139DF32 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Count_m09523E819BC1EA0131392AA4FC555E91CB7E4560_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Count_m85BE442214F4831E0502D55336A19E9C7AC3F539_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Count_mA9155B19D6D6E40D2515488C8F2F175D430E69EB_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Count_mF4598BAD5B89302527B0069BA4CCD0D3B2F861BB_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Count_mC17382AC83BBF147C47E7A21A628F51F082E92DA_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 V_2; memset((&V_2), 0, sizeof(V_2)); { // var result = m_Metrics; InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C L_0 = __this->get_m_Metrics_32(); V_0 = L_0; // result.currentNumDevices = m_DevicesCount; int32_t L_1 = __this->get_m_DevicesCount_6(); InputMetrics_set_currentNumDevices_m1B672B2ACDFBB65FFE05FAC1E37CD8126BD39DC7_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)(&V_0), L_1, /*hidden argument*/NULL); // result.currentStateSizeInBytes = (int)m_StateBuffers.totalSize; InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA * L_2 = __this->get_address_of_m_StateBuffers_15(); uint32_t L_3 = L_2->get_totalSize_1(); InputMetrics_set_currentStateSizeInBytes_m129BFD4C4FBD76F7DAF2EDDEF78FD48AED3AC570_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)(&V_0), L_3, /*hidden argument*/NULL); // result.currentControlCount = m_DevicesCount; int32_t L_4 = __this->get_m_DevicesCount_6(); InputMetrics_set_currentControlCount_mF8260E222D6516E2493634792CF117824E4B8BD1_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)(&V_0), L_4, /*hidden argument*/NULL); // for (var i = 0; i < m_DevicesCount; ++i) V_1 = 0; goto IL_005e; } IL_0037: { // result.currentControlCount += m_Devices[i].allControls.Count; InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * L_5 = (&V_0); int32_t L_6; L_6 = InputMetrics_get_currentControlCount_mFEC27CAEB3AFB76FDDA8AAE6B4CA64466E01D42B_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)L_5, /*hidden argument*/NULL); InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* L_7 = __this->get_m_Devices_7(); int32_t L_8 = V_1; NullCheck(L_7); int32_t L_9 = L_8; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_10 = (L_7)->GetAt(static_cast(L_9)); NullCheck(L_10); ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 L_11; L_11 = InputDevice_get_allControls_mD986E92DCF42FBA62A009692D7B7E51CDC55175B(L_10, /*hidden argument*/NULL); V_2 = L_11; int32_t L_12; L_12 = ReadOnlyArray_1_get_Count_mC17382AC83BBF147C47E7A21A628F51F082E92DA_inline((ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 *)(&V_2), /*hidden argument*/ReadOnlyArray_1_get_Count_mC17382AC83BBF147C47E7A21A628F51F082E92DA_RuntimeMethod_var); InputMetrics_set_currentControlCount_mF8260E222D6516E2493634792CF117824E4B8BD1_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)L_5, ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)L_12)), /*hidden argument*/NULL); // for (var i = 0; i < m_DevicesCount; ++i) int32_t L_13 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); } IL_005e: { // for (var i = 0; i < m_DevicesCount; ++i) int32_t L_14 = V_1; int32_t L_15 = __this->get_m_DevicesCount_6(); if ((((int32_t)L_14) < ((int32_t)L_15))) { goto IL_0037; } } { // result.currentLayoutCount = m_Layouts.layoutTypes.Count; Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_16 = __this->get_address_of_m_Layouts_2(); Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * L_17 = L_16->get_layoutTypes_1(); NullCheck(L_17); int32_t L_18; L_18 = Dictionary_2_get_Count_mF4598BAD5B89302527B0069BA4CCD0D3B2F861BB(L_17, /*hidden argument*/Dictionary_2_get_Count_mF4598BAD5B89302527B0069BA4CCD0D3B2F861BB_RuntimeMethod_var); InputMetrics_set_currentLayoutCount_m8E5458C009A176278C0ED815AE64A584D9CBE9D3_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)(&V_0), L_18, /*hidden argument*/NULL); // result.currentLayoutCount += m_Layouts.layoutStrings.Count; InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * L_19 = (&V_0); int32_t L_20; L_20 = InputMetrics_get_currentLayoutCount_m24F5B56B4382F3DE3770351A840445FF4FC38D56_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)L_19, /*hidden argument*/NULL); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_21 = __this->get_address_of_m_Layouts_2(); Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E * L_22 = L_21->get_layoutStrings_2(); NullCheck(L_22); int32_t L_23; L_23 = Dictionary_2_get_Count_mA9155B19D6D6E40D2515488C8F2F175D430E69EB(L_22, /*hidden argument*/Dictionary_2_get_Count_mA9155B19D6D6E40D2515488C8F2F175D430E69EB_RuntimeMethod_var); InputMetrics_set_currentLayoutCount_m8E5458C009A176278C0ED815AE64A584D9CBE9D3_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)L_19, ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)L_23)), /*hidden argument*/NULL); // result.currentLayoutCount += m_Layouts.layoutBuilders.Count; InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * L_24 = (&V_0); int32_t L_25; L_25 = InputMetrics_get_currentLayoutCount_m24F5B56B4382F3DE3770351A840445FF4FC38D56_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)L_24, /*hidden argument*/NULL); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_26 = __this->get_address_of_m_Layouts_2(); Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9 * L_27 = L_26->get_layoutBuilders_3(); NullCheck(L_27); int32_t L_28; L_28 = Dictionary_2_get_Count_m85BE442214F4831E0502D55336A19E9C7AC3F539(L_27, /*hidden argument*/Dictionary_2_get_Count_m85BE442214F4831E0502D55336A19E9C7AC3F539_RuntimeMethod_var); InputMetrics_set_currentLayoutCount_m8E5458C009A176278C0ED815AE64A584D9CBE9D3_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)L_24, ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)L_28)), /*hidden argument*/NULL); // result.currentLayoutCount += m_Layouts.layoutOverrides.Count; InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * L_29 = (&V_0); int32_t L_30; L_30 = InputMetrics_get_currentLayoutCount_m24F5B56B4382F3DE3770351A840445FF4FC38D56_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)L_29, /*hidden argument*/NULL); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_31 = __this->get_address_of_m_Layouts_2(); Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86 * L_32 = L_31->get_layoutOverrides_5(); NullCheck(L_32); int32_t L_33; L_33 = Dictionary_2_get_Count_m09523E819BC1EA0131392AA4FC555E91CB7E4560(L_32, /*hidden argument*/Dictionary_2_get_Count_m09523E819BC1EA0131392AA4FC555E91CB7E4560_RuntimeMethod_var); InputMetrics_set_currentLayoutCount_m8E5458C009A176278C0ED815AE64A584D9CBE9D3_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)L_29, ((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)L_33)), /*hidden argument*/NULL); // return result; InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C L_34 = V_0; return L_34; } } // UnityEngine.InputSystem.InputSettings UnityEngine.InputSystem.InputManager::get_settings() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * InputManager_get_settings_m274A9304D86B1B1E9BAAC775A9B34E0BFA502E2C (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { { // return m_Settings; InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_0 = __this->get_m_Settings_33(); return L_0; } } // System.Void UnityEngine.InputSystem.InputManager::set_settings(UnityEngine.InputSystem.InputSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_set_settings_m3C56AFFC9983A5ECE5449F5F6DAFA362934BFE05 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (value == null) InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1; L_1 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { // throw new ArgumentNullException(nameof(value)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_set_settings_m3C56AFFC9983A5ECE5449F5F6DAFA362934BFE05_RuntimeMethod_var))); } IL_0014: { // if (m_Settings == value) InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_3 = __this->get_m_Settings_33(); InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_4 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_5; L_5 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0023; } } { // return; return; } IL_0023: { // m_Settings = value; InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_6 = ___value0; __this->set_m_Settings_33(L_6); // ApplySettings(); InputManager_ApplySettings_mEF00E3EDCFEE9C9311B3016A22F478DC1A56E446(__this, /*hidden argument*/NULL); // } return; } } // UnityEngine.InputSystem.LowLevel.InputUpdateType UnityEngine.InputSystem.InputManager::get_updateMask() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputManager_get_updateMask_mF3D4D0E3E4AC121A3DECFD25A8BAFB7EC25FB312 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { { // get => m_UpdateMask; int32_t L_0 = __this->get_m_UpdateMask_13(); return L_0; } } // System.Void UnityEngine.InputSystem.InputManager::set_updateMask(UnityEngine.InputSystem.LowLevel.InputUpdateType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_set_updateMask_m84A72CF7C05D03B1A10E960F36FA562B3EF22032 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, int32_t ___value0, const RuntimeMethod* method) { { // if (m_UpdateMask == value) int32_t L_0 = __this->get_m_UpdateMask_13(); int32_t L_1 = ___value0; if ((!(((uint32_t)L_0) == ((uint32_t)L_1)))) { goto IL_000a; } } { // return; return; } IL_000a: { // m_UpdateMask = value; int32_t L_2 = ___value0; __this->set_m_UpdateMask_13(L_2); // if (m_DevicesCount > 0) int32_t L_3 = __this->get_m_DevicesCount_6(); if ((((int32_t)L_3) <= ((int32_t)0))) { goto IL_0020; } } { // ReallocateStateBuffers(); InputManager_ReallocateStateBuffers_m310B7B6983270356571E856412C65B3233B21DF9(__this, /*hidden argument*/NULL); } IL_0020: { // } return; } } // UnityEngine.InputSystem.LowLevel.InputUpdateType UnityEngine.InputSystem.InputManager::get_defaultUpdateType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputManager_get_defaultUpdateType_m42567EB68373890616C0D95CCE3F40098CE731BE (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { { // if (m_CurrentUpdate != default) int32_t L_0 = __this->get_m_CurrentUpdate_14(); if (!L_0) { goto IL_000f; } } { // return m_CurrentUpdate; int32_t L_1 = __this->get_m_CurrentUpdate_14(); return L_1; } IL_000f: { // return m_UpdateMask.GetUpdateTypeForPlayer(); int32_t L_2 = __this->get_m_UpdateMask_13(); int32_t L_3; L_3 = InputUpdate_GetUpdateTypeForPlayer_mDF9AE0C41704130242EDA73BFC0B9281ED9C63C7(L_2, /*hidden argument*/NULL); return L_3; } } // System.Single UnityEngine.InputSystem.InputManager::get_pollingFrequency() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float InputManager_get_pollingFrequency_m428EF9D329371C89836EAFDD89E8D0C707DE7B56 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { { // get => m_PollingFrequency; float L_0 = __this->get_m_PollingFrequency_1(); return L_0; } } // System.Void UnityEngine.InputSystem.InputManager::set_pollingFrequency(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_set_pollingFrequency_m15EB100F4CFE9DC3C9E515F18D740E2444CF5A68 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, float ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (value <= 0) float L_0 = ___value0; if ((!(((float)L_0) <= ((float)(0.0f))))) { goto IL_0018; } } { // throw new ArgumentException("Polling frequency must be greater than zero", "value"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_1 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE4C1123FFC7B0EFD6254D0768E1D5746664256B0)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_set_pollingFrequency_m15EB100F4CFE9DC3C9E515F18D740E2444CF5A68_RuntimeMethod_var))); } IL_0018: { // m_PollingFrequency = value; float L_2 = ___value0; __this->set_m_PollingFrequency_1(L_2); // if (m_Runtime != null) RuntimeObject* L_3 = __this->get_m_Runtime_31(); if (!L_3) { goto IL_0033; } } { // m_Runtime.pollingFrequency = value; RuntimeObject* L_4 = __this->get_m_Runtime_31(); float L_5 = ___value0; NullCheck(L_4); InterfaceActionInvoker1< float >::Invoke(18 /* System.Void UnityEngine.InputSystem.LowLevel.IInputRuntime::set_pollingFrequency(System.Single) */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_4, L_5); } IL_0033: { // } return; } } // System.Void UnityEngine.InputSystem.InputManager::add_onDeviceChange(System.Action`2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_add_onDeviceChange_m1E206F6EFDC4B45CF6BAA542BDE54FB32649A3A5 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Action_2_tA58D913EBCC7FD3E95DEC877EDB4363CD3051DF4 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_AddCallback_mA5367FB0F077BD5B2AD9147F13B8883326E86330_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // add => m_DeviceChangeListeners.AddCallback(value); CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 * L_0 = __this->get_address_of_m_DeviceChangeListeners_16(); Action_2_tA58D913EBCC7FD3E95DEC877EDB4363CD3051DF4 * L_1 = ___value0; CallbackArray_1_AddCallback_mA5367FB0F077BD5B2AD9147F13B8883326E86330((CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 *)L_0, L_1, /*hidden argument*/CallbackArray_1_AddCallback_mA5367FB0F077BD5B2AD9147F13B8883326E86330_RuntimeMethod_var); return; } } // System.Void UnityEngine.InputSystem.InputManager::remove_onDeviceChange(System.Action`2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_remove_onDeviceChange_m28528946F45F4865DCEDC3E598399D1BEBF21ED9 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Action_2_tA58D913EBCC7FD3E95DEC877EDB4363CD3051DF4 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_RemoveCallback_mD70C611C79F427A2F62DF541DC0EACDA46388134_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // remove => m_DeviceChangeListeners.RemoveCallback(value); CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 * L_0 = __this->get_address_of_m_DeviceChangeListeners_16(); Action_2_tA58D913EBCC7FD3E95DEC877EDB4363CD3051DF4 * L_1 = ___value0; CallbackArray_1_RemoveCallback_mD70C611C79F427A2F62DF541DC0EACDA46388134((CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 *)L_0, L_1, /*hidden argument*/CallbackArray_1_RemoveCallback_mD70C611C79F427A2F62DF541DC0EACDA46388134_RuntimeMethod_var); return; } } // System.Void UnityEngine.InputSystem.InputManager::add_onDeviceStateChange(System.Action`2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_add_onDeviceStateChange_mBD9C9CE5A66368FB1958278F073CD6CC4BD8823B (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Action_2_t22339AC0C02B10DD3C743D557C52738BA901E74A * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_AddCallback_mF7F3622B138F94DD7CB1238C738AFF2060F8AC33_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // add => m_DeviceStateChangeListeners.AddCallback(value); CallbackArray_1_t6B54B12C76958BFFEC586C4B69F70560884AEF34 * L_0 = __this->get_address_of_m_DeviceStateChangeListeners_17(); Action_2_t22339AC0C02B10DD3C743D557C52738BA901E74A * L_1 = ___value0; CallbackArray_1_AddCallback_mF7F3622B138F94DD7CB1238C738AFF2060F8AC33((CallbackArray_1_t6B54B12C76958BFFEC586C4B69F70560884AEF34 *)L_0, L_1, /*hidden argument*/CallbackArray_1_AddCallback_mF7F3622B138F94DD7CB1238C738AFF2060F8AC33_RuntimeMethod_var); return; } } // System.Void UnityEngine.InputSystem.InputManager::remove_onDeviceStateChange(System.Action`2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_remove_onDeviceStateChange_m8D366CE88346791A1253C86442067A3E8DE489A8 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Action_2_t22339AC0C02B10DD3C743D557C52738BA901E74A * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_RemoveCallback_m550840A29A7A0367D7965D0D54734D0FEE0EC847_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // remove => m_DeviceStateChangeListeners.RemoveCallback(value); CallbackArray_1_t6B54B12C76958BFFEC586C4B69F70560884AEF34 * L_0 = __this->get_address_of_m_DeviceStateChangeListeners_17(); Action_2_t22339AC0C02B10DD3C743D557C52738BA901E74A * L_1 = ___value0; CallbackArray_1_RemoveCallback_m550840A29A7A0367D7965D0D54734D0FEE0EC847((CallbackArray_1_t6B54B12C76958BFFEC586C4B69F70560884AEF34 *)L_0, L_1, /*hidden argument*/CallbackArray_1_RemoveCallback_m550840A29A7A0367D7965D0D54734D0FEE0EC847_RuntimeMethod_var); return; } } // System.Void UnityEngine.InputSystem.InputManager::add_onDeviceCommand(UnityEngine.InputSystem.LowLevel.InputDeviceCommandDelegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_add_onDeviceCommand_mBFFB50EE83FFAF41CF7090BD367584D1A986E800 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDeviceCommandDelegate_t967EA90378916CA01FF68A0403468313659A1718 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_AddCallback_mF83FAF15CD78DB17DC6FE61825B4FAE6BE135E85_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // add => m_DeviceCommandCallbacks.AddCallback(value); CallbackArray_1_t157FF6A379E3716A8F98AD7AA44984A6C7908C87 * L_0 = __this->get_address_of_m_DeviceCommandCallbacks_19(); InputDeviceCommandDelegate_t967EA90378916CA01FF68A0403468313659A1718 * L_1 = ___value0; CallbackArray_1_AddCallback_mF83FAF15CD78DB17DC6FE61825B4FAE6BE135E85((CallbackArray_1_t157FF6A379E3716A8F98AD7AA44984A6C7908C87 *)L_0, L_1, /*hidden argument*/CallbackArray_1_AddCallback_mF83FAF15CD78DB17DC6FE61825B4FAE6BE135E85_RuntimeMethod_var); return; } } // System.Void UnityEngine.InputSystem.InputManager::remove_onDeviceCommand(UnityEngine.InputSystem.LowLevel.InputDeviceCommandDelegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_remove_onDeviceCommand_mC80C9D8E51D557F03E8EFA35977A47E27572D135 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDeviceCommandDelegate_t967EA90378916CA01FF68A0403468313659A1718 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_RemoveCallback_mD0BF954F5AADB28D01B088F583317C4D6D6D360A_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // remove => m_DeviceCommandCallbacks.RemoveCallback(value); CallbackArray_1_t157FF6A379E3716A8F98AD7AA44984A6C7908C87 * L_0 = __this->get_address_of_m_DeviceCommandCallbacks_19(); InputDeviceCommandDelegate_t967EA90378916CA01FF68A0403468313659A1718 * L_1 = ___value0; CallbackArray_1_RemoveCallback_mD0BF954F5AADB28D01B088F583317C4D6D6D360A((CallbackArray_1_t157FF6A379E3716A8F98AD7AA44984A6C7908C87 *)L_0, L_1, /*hidden argument*/CallbackArray_1_RemoveCallback_mD0BF954F5AADB28D01B088F583317C4D6D6D360A_RuntimeMethod_var); return; } } // System.Void UnityEngine.InputSystem.InputManager::add_onFindControlLayoutForDevice(UnityEngine.InputSystem.Layouts.InputDeviceFindControlLayoutDelegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_add_onFindControlLayoutForDevice_m40CBFA2B503B78BA44C1B2CA233B102FD1EE5021 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDeviceFindControlLayoutDelegate_tE30412E20D6F6870BF090C6D6C4CA9B4CFD0978F * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_AddCallback_m679CA6D57CD8B3766421FCB0C861E30A586B431B_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // m_DeviceFindLayoutCallbacks.AddCallback(value); CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 * L_0 = __this->get_address_of_m_DeviceFindLayoutCallbacks_18(); InputDeviceFindControlLayoutDelegate_tE30412E20D6F6870BF090C6D6C4CA9B4CFD0978F * L_1 = ___value0; CallbackArray_1_AddCallback_m679CA6D57CD8B3766421FCB0C861E30A586B431B((CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 *)L_0, L_1, /*hidden argument*/CallbackArray_1_AddCallback_m679CA6D57CD8B3766421FCB0C861E30A586B431B_RuntimeMethod_var); // AddAvailableDevicesThatAreNowRecognized(); InputManager_AddAvailableDevicesThatAreNowRecognized_mAB791BABE33F529FBF87F6A90A42C521EC005527(__this, /*hidden argument*/NULL); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::remove_onFindControlLayoutForDevice(UnityEngine.InputSystem.Layouts.InputDeviceFindControlLayoutDelegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_remove_onFindControlLayoutForDevice_mE28453757AC2F90976376D76DF32A6AD9598B898 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDeviceFindControlLayoutDelegate_tE30412E20D6F6870BF090C6D6C4CA9B4CFD0978F * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_RemoveCallback_mF6514B59F0ECDD6E36C68FC802A62DF7B7330111_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // remove => m_DeviceFindLayoutCallbacks.RemoveCallback(value); CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 * L_0 = __this->get_address_of_m_DeviceFindLayoutCallbacks_18(); InputDeviceFindControlLayoutDelegate_tE30412E20D6F6870BF090C6D6C4CA9B4CFD0978F * L_1 = ___value0; CallbackArray_1_RemoveCallback_mF6514B59F0ECDD6E36C68FC802A62DF7B7330111((CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 *)L_0, L_1, /*hidden argument*/CallbackArray_1_RemoveCallback_mF6514B59F0ECDD6E36C68FC802A62DF7B7330111_RuntimeMethod_var); return; } } // System.Void UnityEngine.InputSystem.InputManager::add_onLayoutChange(System.Action`2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_add_onLayoutChange_m097BE4637A248883D566D4C9A7538999AD45F8E6 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Action_2_tB596892BAE11233D1410B282A3EE7610732B50EC * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_AddCallback_mBE67876CE84EC9F3B9969C1A922B65E194F7435C_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // add => m_LayoutChangeListeners.AddCallback(value); CallbackArray_1_t506D5A43E1BA50974832B6281CE0E05C835BD3A9 * L_0 = __this->get_address_of_m_LayoutChangeListeners_20(); Action_2_tB596892BAE11233D1410B282A3EE7610732B50EC * L_1 = ___value0; CallbackArray_1_AddCallback_mBE67876CE84EC9F3B9969C1A922B65E194F7435C((CallbackArray_1_t506D5A43E1BA50974832B6281CE0E05C835BD3A9 *)L_0, L_1, /*hidden argument*/CallbackArray_1_AddCallback_mBE67876CE84EC9F3B9969C1A922B65E194F7435C_RuntimeMethod_var); return; } } // System.Void UnityEngine.InputSystem.InputManager::remove_onLayoutChange(System.Action`2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_remove_onLayoutChange_m85B59C61B2583EAF4A200C9D1F9C70AE43DA29E6 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Action_2_tB596892BAE11233D1410B282A3EE7610732B50EC * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_RemoveCallback_m2EFA10D662D6322C2043176CC67A1FAAFD0FFE96_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // remove => m_LayoutChangeListeners.RemoveCallback(value); CallbackArray_1_t506D5A43E1BA50974832B6281CE0E05C835BD3A9 * L_0 = __this->get_address_of_m_LayoutChangeListeners_20(); Action_2_tB596892BAE11233D1410B282A3EE7610732B50EC * L_1 = ___value0; CallbackArray_1_RemoveCallback_m2EFA10D662D6322C2043176CC67A1FAAFD0FFE96((CallbackArray_1_t506D5A43E1BA50974832B6281CE0E05C835BD3A9 *)L_0, L_1, /*hidden argument*/CallbackArray_1_RemoveCallback_m2EFA10D662D6322C2043176CC67A1FAAFD0FFE96_RuntimeMethod_var); return; } } // System.Void UnityEngine.InputSystem.InputManager::add_onEvent(System.Action`2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_add_onEvent_mB129956D2C9545F5693CD26AB5A6E206752F3B1B (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_AddCallback_m073015304540182F1EFC66AA8332D29A93CF4800_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // add => m_EventListeners.AddCallback(value); CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61 * L_0 = __this->get_address_of_m_EventListeners_21(); Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * L_1 = ___value0; CallbackArray_1_AddCallback_m073015304540182F1EFC66AA8332D29A93CF4800((CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61 *)L_0, L_1, /*hidden argument*/CallbackArray_1_AddCallback_m073015304540182F1EFC66AA8332D29A93CF4800_RuntimeMethod_var); return; } } // System.Void UnityEngine.InputSystem.InputManager::remove_onEvent(System.Action`2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_remove_onEvent_m15293542B21C67863F4A0AD7FD510E6946BC39EE (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_RemoveCallback_m7054BE818AEED2BED3AE923DDB9C2ECDDB716828_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // remove => m_EventListeners.RemoveCallback(value); CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61 * L_0 = __this->get_address_of_m_EventListeners_21(); Action_2_t18E7F4E321737EF92F70387314BC88164CA7B59C * L_1 = ___value0; CallbackArray_1_RemoveCallback_m7054BE818AEED2BED3AE923DDB9C2ECDDB716828((CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61 *)L_0, L_1, /*hidden argument*/CallbackArray_1_RemoveCallback_m7054BE818AEED2BED3AE923DDB9C2ECDDB716828_RuntimeMethod_var); return; } } // System.Void UnityEngine.InputSystem.InputManager::add_onBeforeUpdate(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_add_onBeforeUpdate_m502B9A8DAA2F06E61843275F351A72D289D461FF (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_AddCallback_m5E6986916999BAB90D19DE8305D82D3242A7D35F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // InstallBeforeUpdateHookIfNecessary(); InputManager_InstallBeforeUpdateHookIfNecessary_m0B1B1F9F035537BD5D337CA60EBB9F8CCDBDC58B(__this, /*hidden argument*/NULL); // m_BeforeUpdateListeners.AddCallback(value); CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 * L_0 = __this->get_address_of_m_BeforeUpdateListeners_22(); Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_1 = ___value0; CallbackArray_1_AddCallback_m5E6986916999BAB90D19DE8305D82D3242A7D35F((CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 *)L_0, L_1, /*hidden argument*/CallbackArray_1_AddCallback_m5E6986916999BAB90D19DE8305D82D3242A7D35F_RuntimeMethod_var); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::remove_onBeforeUpdate(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_remove_onBeforeUpdate_m5CE346EC8D9BCE18CF10EDEB11448BDB667A8691 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_RemoveCallback_m45535C6F1E56C3F2813992B3601727B83D59C236_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // remove => m_BeforeUpdateListeners.RemoveCallback(value); CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 * L_0 = __this->get_address_of_m_BeforeUpdateListeners_22(); Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_1 = ___value0; CallbackArray_1_RemoveCallback_m45535C6F1E56C3F2813992B3601727B83D59C236((CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 *)L_0, L_1, /*hidden argument*/CallbackArray_1_RemoveCallback_m45535C6F1E56C3F2813992B3601727B83D59C236_RuntimeMethod_var); return; } } // System.Void UnityEngine.InputSystem.InputManager::add_onAfterUpdate(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_add_onAfterUpdate_mC7C3AA66F5ADEFC3747B6D9F57B4053E2790D731 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_AddCallback_m5E6986916999BAB90D19DE8305D82D3242A7D35F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // add => m_AfterUpdateListeners.AddCallback(value); CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 * L_0 = __this->get_address_of_m_AfterUpdateListeners_23(); Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_1 = ___value0; CallbackArray_1_AddCallback_m5E6986916999BAB90D19DE8305D82D3242A7D35F((CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 *)L_0, L_1, /*hidden argument*/CallbackArray_1_AddCallback_m5E6986916999BAB90D19DE8305D82D3242A7D35F_RuntimeMethod_var); return; } } // System.Void UnityEngine.InputSystem.InputManager::remove_onAfterUpdate(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_remove_onAfterUpdate_mBE6441ED7E6358052ECFB4613509FD6BD47B8A30 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_RemoveCallback_m45535C6F1E56C3F2813992B3601727B83D59C236_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // remove => m_AfterUpdateListeners.RemoveCallback(value); CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 * L_0 = __this->get_address_of_m_AfterUpdateListeners_23(); Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_1 = ___value0; CallbackArray_1_RemoveCallback_m45535C6F1E56C3F2813992B3601727B83D59C236((CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 *)L_0, L_1, /*hidden argument*/CallbackArray_1_RemoveCallback_m45535C6F1E56C3F2813992B3601727B83D59C236_RuntimeMethod_var); return; } } // System.Void UnityEngine.InputSystem.InputManager::add_onSettingsChange(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_add_onSettingsChange_m166408CD3CC01E976573A5F39C41C53131CE1269 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_AddCallback_m5E6986916999BAB90D19DE8305D82D3242A7D35F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // add => m_SettingsChangedListeners.AddCallback(value); CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 * L_0 = __this->get_address_of_m_SettingsChangedListeners_24(); Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_1 = ___value0; CallbackArray_1_AddCallback_m5E6986916999BAB90D19DE8305D82D3242A7D35F((CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 *)L_0, L_1, /*hidden argument*/CallbackArray_1_AddCallback_m5E6986916999BAB90D19DE8305D82D3242A7D35F_RuntimeMethod_var); return; } } // System.Void UnityEngine.InputSystem.InputManager::remove_onSettingsChange(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_remove_onSettingsChange_mCBA4C267B9628F9877F4F3CA0187B638862514F7 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_RemoveCallback_m45535C6F1E56C3F2813992B3601727B83D59C236_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // remove => m_SettingsChangedListeners.RemoveCallback(value); CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 * L_0 = __this->get_address_of_m_SettingsChangedListeners_24(); Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_1 = ___value0; CallbackArray_1_RemoveCallback_m45535C6F1E56C3F2813992B3601727B83D59C236((CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 *)L_0, L_1, /*hidden argument*/CallbackArray_1_RemoveCallback_m45535C6F1E56C3F2813992B3601727B83D59C236_RuntimeMethod_var); return; } } // System.Boolean UnityEngine.InputSystem.InputManager::get_isProcessingEvents() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_get_isProcessingEvents_m0727B15A9FAAF427636B7706ABFA1E239D3F37CA (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { { // public bool isProcessingEvents => m_InputEventStream.isOpen; InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * L_0 = __this->get_address_of_m_InputEventStream_28(); bool L_1; L_1 = InputEventStream_get_isOpen_m6813A58E116448D4957B213FA9FD7DAA57D7B8D4_inline((InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 *)L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean UnityEngine.InputSystem.InputManager::get_gameIsPlaying() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_get_gameIsPlaying_m4AE69424001E9ADED2D016DF59681FD61366D6B9 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { { // true; return (bool)1; } } // System.Boolean UnityEngine.InputSystem.InputManager::get_gameHasFocus() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_get_gameHasFocus_m5165C51969FCD9AC566668067F2FF38740130D18 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { { // m_HasFocus || gameShouldGetInputRegardlessOfFocus; bool L_0 = __this->get_m_HasFocus_27(); if (L_0) { goto IL_000f; } } { bool L_1; L_1 = InputManager_get_gameShouldGetInputRegardlessOfFocus_m9BAF190125233D8BF2A835A94CB9FB8E29CFF44E(__this, /*hidden argument*/NULL); return L_1; } IL_000f: { return (bool)1; } } // System.Boolean UnityEngine.InputSystem.InputManager::get_gameShouldGetInputRegardlessOfFocus() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_get_gameShouldGetInputRegardlessOfFocus_m9BAF190125233D8BF2A835A94CB9FB8E29CFF44E (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { { // m_Settings.backgroundBehavior == InputSettings.BackgroundBehavior.IgnoreFocus InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_0 = __this->get_m_Settings_33(); NullCheck(L_0); int32_t L_1; L_1 = InputSettings_get_backgroundBehavior_mFCF311E589790630CAC71ACD0E13F8D6472B3EBE_inline(L_0, /*hidden argument*/NULL); return (bool)((((int32_t)L_1) == ((int32_t)2))? 1 : 0); } } // System.Void UnityEngine.InputSystem.InputManager::RegisterControlLayout(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, String_t* ___name0, Type_t * ___type1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_GetEnumerator_mFCD21F083C4657C41DC227C4BECBDE2E1A08D8FF_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m36FC21CAEA6BB79ED3EBCB0B184C8775EC42350C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m29804C5A2B763A4DFE276D5589D6ECF0A1732AD2_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m6C8D1BCFFFE78F9231E17672D0A07E0238E5A5D0_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m1A471B3DEBCB5644EDC2B24E5BEB00751AA45C04_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1__ctor_m63D4B87260948C2A73C6DF32D7374DAEFFE5319C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_m946C35D5CBBDBCEACDC283CAE3461389B582062A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_mCEED82C56D42D498CFB45BD1B49E3CE764CB5E3A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_2; memset((&V_2), 0, sizeof(V_2)); bool V_3 = false; String_t* V_4 = NULL; Type_t * V_5 = NULL; Enumerator_tBC97DB5B6B5870EB975D595B3E8450E430C0A0E5 V_6; memset((&V_6), 0, sizeof(V_6)); KeyValuePair_2_t32554390D3DCC815F632A9813367A1A9E6C4C324 V_7; memset((&V_7), 0, sizeof(V_7)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { // if (string.IsNullOrEmpty(name)) String_t* L_0 = ___name0; bool L_1; L_1 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0013; } } { // throw new ArgumentNullException(nameof(name)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634_RuntimeMethod_var))); } IL_0013: { // if (type == null) Type_t * L_3 = ___type1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_4; L_4 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_4) { goto IL_0027; } } { // throw new ArgumentNullException(nameof(type)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_5 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634_RuntimeMethod_var))); } IL_0027: { // var isDeviceLayout = typeof(InputDevice).IsAssignableFrom(type); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_6 = { reinterpret_cast (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7; L_7 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_6, /*hidden argument*/NULL); Type_t * L_8 = ___type1; NullCheck(L_7); bool L_9; L_9 = VirtFuncInvoker1< bool, Type_t * >::Invoke(115 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_7, L_8); V_0 = L_9; // var isControlLayout = typeof(InputControl).IsAssignableFrom(type); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_10 = { reinterpret_cast (InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1_0_0_0_var) }; Type_t * L_11; L_11 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_10, /*hidden argument*/NULL); Type_t * L_12 = ___type1; NullCheck(L_11); bool L_13; L_13 = VirtFuncInvoker1< bool, Type_t * >::Invoke(115 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_11, L_12); V_1 = L_13; // if (!isDeviceLayout && !isControlLayout) bool L_14 = V_0; if (L_14) { goto IL_0094; } } { bool L_15 = V_1; if (L_15) { goto IL_0094; } } { // throw new ArgumentException($"Types used as layouts have to be InputControls or InputDevices; '{type.Name}' is a '{type.BaseType.Name}'", // nameof(type)); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_16 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var)), (uint32_t)5); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_17 = L_16; NullCheck(L_17); ArrayElementTypeCheck (L_17, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD94B30F5FBD8D148126F385E80E1D11579438F2E))); (L_17)->SetAt(static_cast(0), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD94B30F5FBD8D148126F385E80E1D11579438F2E))); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_18 = L_17; Type_t * L_19 = ___type1; NullCheck(L_19); String_t* L_20; L_20 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_19); NullCheck(L_18); ArrayElementTypeCheck (L_18, L_20); (L_18)->SetAt(static_cast(1), (String_t*)L_20); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_21 = L_18; NullCheck(L_21); ArrayElementTypeCheck (L_21, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFA3BFCAE5626D295B274EC32A9E75D975A8A8A8A))); (L_21)->SetAt(static_cast(2), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFA3BFCAE5626D295B274EC32A9E75D975A8A8A8A))); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_22 = L_21; Type_t * L_23 = ___type1; NullCheck(L_23); Type_t * L_24; L_24 = VirtFuncInvoker0< Type_t * >::Invoke(30 /* System.Type System.Type::get_BaseType() */, L_23); NullCheck(L_24); String_t* L_25; L_25 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_24); NullCheck(L_22); ArrayElementTypeCheck (L_22, L_25); (L_22)->SetAt(static_cast(3), (String_t*)L_25); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_26 = L_22; NullCheck(L_26); ArrayElementTypeCheck (L_26, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D))); (L_26)->SetAt(static_cast(4), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D))); String_t* L_27; L_27 = String_Concat_m27B9C3007C7DABFABCC3726B37A3BE08CB40C417(L_26, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_28, L_27, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634_RuntimeMethod_var))); } IL_0094: { // var internedName = new InternedString(name); String_t* L_29 = ___name0; InternedString__ctor_mE81A2A4EA05081A96717682ACF38746482E3CF62((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&V_2), L_29, /*hidden argument*/NULL); // var isReplacement = m_Layouts.HasLayout(internedName); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_30 = __this->get_address_of_m_Layouts_2(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_31 = V_2; bool L_32; L_32 = Collection_HasLayout_m93C27EDE028A85DDB26705F50A335D76BD330328((Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F *)L_30, L_31, /*hidden argument*/NULL); V_3 = L_32; // m_Layouts.layoutTypes[internedName] = type; Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_33 = __this->get_address_of_m_Layouts_2(); Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * L_34 = L_33->get_layoutTypes_1(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_35 = V_2; Type_t * L_36 = ___type1; NullCheck(L_34); Dictionary_2_set_Item_m36FC21CAEA6BB79ED3EBCB0B184C8775EC42350C(L_34, L_35, L_36, /*hidden argument*/Dictionary_2_set_Item_m36FC21CAEA6BB79ED3EBCB0B184C8775EC42350C_RuntimeMethod_var); // string baseLayout = null; V_4 = (String_t*)NULL; // for (var baseType = type.BaseType; baseLayout == null && baseType != typeof(InputControl); Type_t * L_37 = ___type1; NullCheck(L_37); Type_t * L_38; L_38 = VirtFuncInvoker0< Type_t * >::Invoke(30 /* System.Type System.Type::get_BaseType() */, L_37); V_5 = L_38; goto IL_0127; } IL_00c8: { // foreach (var entry in m_Layouts.layoutTypes) Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_39 = __this->get_address_of_m_Layouts_2(); Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * L_40 = L_39->get_layoutTypes_1(); NullCheck(L_40); Enumerator_tBC97DB5B6B5870EB975D595B3E8450E430C0A0E5 L_41; L_41 = Dictionary_2_GetEnumerator_mFCD21F083C4657C41DC227C4BECBDE2E1A08D8FF(L_40, /*hidden argument*/Dictionary_2_GetEnumerator_mFCD21F083C4657C41DC227C4BECBDE2E1A08D8FF_RuntimeMethod_var); V_6 = L_41; } IL_00da: try { // begin try (depth: 1) { goto IL_0105; } IL_00dc: { // foreach (var entry in m_Layouts.layoutTypes) KeyValuePair_2_t32554390D3DCC815F632A9813367A1A9E6C4C324 L_42; L_42 = Enumerator_get_Current_m1A471B3DEBCB5644EDC2B24E5BEB00751AA45C04_inline((Enumerator_tBC97DB5B6B5870EB975D595B3E8450E430C0A0E5 *)(&V_6), /*hidden argument*/Enumerator_get_Current_m1A471B3DEBCB5644EDC2B24E5BEB00751AA45C04_RuntimeMethod_var); V_7 = L_42; // if (entry.Value == baseType) Type_t * L_43; L_43 = KeyValuePair_2_get_Value_mCEED82C56D42D498CFB45BD1B49E3CE764CB5E3A_inline((KeyValuePair_2_t32554390D3DCC815F632A9813367A1A9E6C4C324 *)(&V_7), /*hidden argument*/KeyValuePair_2_get_Value_mCEED82C56D42D498CFB45BD1B49E3CE764CB5E3A_RuntimeMethod_var); Type_t * L_44 = V_5; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_45; L_45 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_43, L_44, /*hidden argument*/NULL); if (!L_45) { goto IL_0105; } } IL_00f5: { // baseLayout = entry.Key; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_46; L_46 = KeyValuePair_2_get_Key_m946C35D5CBBDBCEACDC283CAE3461389B582062A_inline((KeyValuePair_2_t32554390D3DCC815F632A9813367A1A9E6C4C324 *)(&V_7), /*hidden argument*/KeyValuePair_2_get_Key_m946C35D5CBBDBCEACDC283CAE3461389B582062A_RuntimeMethod_var); String_t* L_47; L_47 = InternedString_op_Implicit_m5C5E28D59A0F856D52E38C0C147176E4B306D6BD(L_46, /*hidden argument*/NULL); V_4 = L_47; // break; IL2CPP_LEAVE(0x11E, FINALLY_0110); } IL_0105: { // foreach (var entry in m_Layouts.layoutTypes) bool L_48; L_48 = Enumerator_MoveNext_m6C8D1BCFFFE78F9231E17672D0A07E0238E5A5D0((Enumerator_tBC97DB5B6B5870EB975D595B3E8450E430C0A0E5 *)(&V_6), /*hidden argument*/Enumerator_MoveNext_m6C8D1BCFFFE78F9231E17672D0A07E0238E5A5D0_RuntimeMethod_var); if (L_48) { goto IL_00dc; } } IL_010e: { IL2CPP_LEAVE(0x11E, FINALLY_0110); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0110; } FINALLY_0110: { // begin finally (depth: 1) Enumerator_Dispose_m29804C5A2B763A4DFE276D5589D6ECF0A1732AD2((Enumerator_tBC97DB5B6B5870EB975D595B3E8450E430C0A0E5 *)(&V_6), /*hidden argument*/Enumerator_Dispose_m29804C5A2B763A4DFE276D5589D6ECF0A1732AD2_RuntimeMethod_var); IL2CPP_END_FINALLY(272) } // end finally (depth: 1) IL2CPP_CLEANUP(272) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x11E, IL_011e) } IL_011e: { // baseType = baseType.BaseType) Type_t * L_49 = V_5; NullCheck(L_49); Type_t * L_50; L_50 = VirtFuncInvoker0< Type_t * >::Invoke(30 /* System.Type System.Type::get_BaseType() */, L_49); V_5 = L_50; } IL_0127: { // for (var baseType = type.BaseType; baseLayout == null && baseType != typeof(InputControl); String_t* L_51 = V_4; if (L_51) { goto IL_013e; } } { Type_t * L_52 = V_5; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_53 = { reinterpret_cast (InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54; L_54 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_53, /*hidden argument*/NULL); bool L_55; L_55 = Type_op_Inequality_m519B1E8F2F1E2101ADF863401FCAE38210395368(L_52, L_54, /*hidden argument*/NULL); if (L_55) { goto IL_00c8; } } IL_013e: { // PerformLayoutPostRegistration(internedName, new InlinedArray(new InternedString(baseLayout)), // isReplacement, isKnownToBeDeviceLayout: isDeviceLayout); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_56 = V_2; String_t* L_57 = V_4; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_58; memset((&L_58), 0, sizeof(L_58)); InternedString__ctor_mE81A2A4EA05081A96717682ACF38746482E3CF62((&L_58), L_57, /*hidden argument*/NULL); InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB L_59; memset((&L_59), 0, sizeof(L_59)); InlinedArray_1__ctor_m63D4B87260948C2A73C6DF32D7374DAEFFE5319C((&L_59), L_58, /*hidden argument*/InlinedArray_1__ctor_m63D4B87260948C2A73C6DF32D7374DAEFFE5319C_RuntimeMethod_var); bool L_60 = V_3; bool L_61 = V_0; InputManager_PerformLayoutPostRegistration_m65C9103D91E7AA542B7CDF20655703368E10A420(__this, L_56, L_59, L_60, L_61, (bool)0, /*hidden argument*/NULL); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::RegisterControlLayout(System.String,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_RegisterControlLayout_m7C16C894B183BD1B559A287DAFFFE352D8D5387F (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, String_t* ___json0, String_t* ___name1, bool ___isOverride2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_Append_TisInternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_mDC61B9BB789B775D8026681A13BFE1C9E378A5B1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m930A5E2C4019CD67A6C8556684F8E489C0D59DF9_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m089162FB86506487C8CCBD2563C742EA0A4909EF_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m38B16DF45DC4401DFA674E9F58F165319C3D48E4_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_m7C5B4590798DB969BBE29A457DBECB7082532BEC_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Contains_mFC4294A6594B5C8BDC5FDD29E060C7A6E4B890FA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_get_Item_m63A5AB84323894345D9D8A01807C53CEC0219D12_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_0; memset((&V_0), 0, sizeof(V_0)); InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB V_1; memset((&V_1), 0, sizeof(V_1)); InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 V_2; memset((&V_2), 0, sizeof(V_2)); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_3; memset((&V_3), 0, sizeof(V_3)); bool V_4 = false; int32_t V_5 = 0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_6; memset((&V_6), 0, sizeof(V_6)); InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* V_7 = NULL; { // if (string.IsNullOrEmpty(json)) String_t* L_0 = ___json0; bool L_1; L_1 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0013; } } { // throw new ArgumentNullException(nameof(json)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral43187C90BBB5DFB063A95733C9BD65ECD25A2E84)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_RegisterControlLayout_m7C16C894B183BD1B559A287DAFFFE352D8D5387F_RuntimeMethod_var))); } IL_0013: { // InputControlLayout.ParseHeaderFieldsFromJson(json, out var nameFromJson, out var baseLayouts, // out var deviceMatcher); String_t* L_3 = ___json0; IL2CPP_RUNTIME_CLASS_INIT(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_il2cpp_TypeInfo_var); InputControlLayout_ParseHeaderFieldsFromJson_m562BCA6B0FC99EC60C90D0585B4F375FF84ACBE9(L_3, (InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&V_0), (InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB *)(&V_1), (InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 *)(&V_2), /*hidden argument*/NULL); // var internedLayoutName = new InternedString(name); String_t* L_4 = ___name1; InternedString__ctor_mE81A2A4EA05081A96717682ACF38746482E3CF62((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&V_3), L_4, /*hidden argument*/NULL); // if (internedLayoutName.IsEmpty()) bool L_5; L_5 = InternedString_IsEmpty_mDC1F123EBDF899AB57EDDCFFC3F67DA84A2CC2AD((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&V_3), /*hidden argument*/NULL); if (!L_5) { goto IL_004b; } } { // internedLayoutName = nameFromJson; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_6 = V_0; V_3 = L_6; // if (internedLayoutName.IsEmpty()) bool L_7; L_7 = InternedString_IsEmpty_mDC1F123EBDF899AB57EDDCFFC3F67DA84A2CC2AD((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&V_3), /*hidden argument*/NULL); if (!L_7) { goto IL_004b; } } { // throw new ArgumentException("Layout name has not been given and is not set in JSON layout", // nameof(name)); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE745E1F0ACBC580139103499E5FBF2E52B7CC8B9)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_RegisterControlLayout_m7C16C894B183BD1B559A287DAFFFE352D8D5387F_RuntimeMethod_var))); } IL_004b: { // if (isOverride && baseLayouts.length == 0) bool L_9 = ___isOverride2; if (!L_9) { goto IL_0071; } } { InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB L_10 = V_1; int32_t L_11 = L_10.get_length_0(); if (L_11) { goto IL_0071; } } { // throw new ArgumentException( // $"Layout override '{internedLayoutName}' must have 'extend' property mentioning layout to which to apply the overrides", // nameof(json)); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_12 = V_3; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_13 = L_12; RuntimeObject * L_14 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_il2cpp_TypeInfo_var)), &L_13); String_t* L_15; L_15 = String_Format_m5A16F3ABC59A3E9804E0CB2636849CCD74CEC994(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral960CFC4855FBB42851E393425E8CE32ABB68C781)), L_14, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_16 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_16, L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral43187C90BBB5DFB063A95733C9BD65ECD25A2E84)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_RegisterControlLayout_m7C16C894B183BD1B559A287DAFFFE352D8D5387F_RuntimeMethod_var))); } IL_0071: { // var isReplacement = m_Layouts.HasLayout(internedLayoutName); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_17 = __this->get_address_of_m_Layouts_2(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_18 = V_3; bool L_19; L_19 = Collection_HasLayout_m93C27EDE028A85DDB26705F50A335D76BD330328((Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F *)L_17, L_18, /*hidden argument*/NULL); V_4 = L_19; // if (isReplacement && isOverride) bool L_20 = V_4; bool L_21 = ___isOverride2; if (!((int32_t)((int32_t)L_20&(int32_t)L_21))) { goto IL_00c8; } } { // var isReplacingOverride = m_Layouts.layoutOverrideNames.Contains(internedLayoutName); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_22 = __this->get_address_of_m_Layouts_2(); HashSet_1_t9DCF3402E30D433824DBE15EBB53B1DD79D671C1 * L_23 = L_22->get_layoutOverrideNames_6(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_24 = V_3; NullCheck(L_23); bool L_25; L_25 = HashSet_1_Contains_mFC4294A6594B5C8BDC5FDD29E060C7A6E4B890FA(L_23, L_24, /*hidden argument*/HashSet_1_Contains_mFC4294A6594B5C8BDC5FDD29E060C7A6E4B890FA_RuntimeMethod_var); // if (!isReplacingOverride) if (L_25) { goto IL_00c8; } } { // throw new ArgumentException($"Failed to register layout override '{internedLayoutName}'" + // $"since a layout named '{internedLayoutName}' already exist. Layout overrides must " + // $"have unique names with respect to existing layouts."); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_26 = V_3; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_27 = L_26; RuntimeObject * L_28 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_il2cpp_TypeInfo_var)), &L_27); String_t* L_29; L_29 = String_Format_m5A16F3ABC59A3E9804E0CB2636849CCD74CEC994(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9171B6BCFF1D313A30D54A41A29DA67164863CCC)), L_28, /*hidden argument*/NULL); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_30 = V_3; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_31 = L_30; RuntimeObject * L_32 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_il2cpp_TypeInfo_var)), &L_31); String_t* L_33; L_33 = String_Format_m5A16F3ABC59A3E9804E0CB2636849CCD74CEC994(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral303ECECF0AA9FDD6A0293D0A3390A5F5E9E32329)), L_32, /*hidden argument*/NULL); String_t* L_34; L_34 = String_Concat_mC41740F000A5A48F8D313FB4CEE0E35E207A2632(L_29, L_33, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF0A62C192F27057067371C6E639D54342012235D)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_35 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_35, L_34, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_35, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_RegisterControlLayout_m7C16C894B183BD1B559A287DAFFFE352D8D5387F_RuntimeMethod_var))); } IL_00c8: { // m_Layouts.layoutStrings[internedLayoutName] = json; Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_36 = __this->get_address_of_m_Layouts_2(); Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E * L_37 = L_36->get_layoutStrings_2(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_38 = V_3; String_t* L_39 = ___json0; NullCheck(L_37); Dictionary_2_set_Item_m089162FB86506487C8CCBD2563C742EA0A4909EF(L_37, L_38, L_39, /*hidden argument*/Dictionary_2_set_Item_m089162FB86506487C8CCBD2563C742EA0A4909EF_RuntimeMethod_var); // if (isOverride) bool L_40 = ___isOverride2; if (!L_40) { goto IL_0145; } } { // m_Layouts.layoutOverrideNames.Add(internedLayoutName); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_41 = __this->get_address_of_m_Layouts_2(); HashSet_1_t9DCF3402E30D433824DBE15EBB53B1DD79D671C1 * L_42 = L_41->get_layoutOverrideNames_6(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_43 = V_3; NullCheck(L_42); bool L_44; L_44 = HashSet_1_Add_m7C5B4590798DB969BBE29A457DBECB7082532BEC(L_42, L_43, /*hidden argument*/HashSet_1_Add_m7C5B4590798DB969BBE29A457DBECB7082532BEC_RuntimeMethod_var); // for (var i = 0; i < baseLayouts.length; ++i) V_5 = 0; goto IL_013b; } IL_00f4: { // var baseLayoutName = baseLayouts[i]; int32_t L_45 = V_5; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_46; L_46 = InlinedArray_1_get_Item_m63A5AB84323894345D9D8A01807C53CEC0219D12((InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB *)(&V_1), L_45, /*hidden argument*/InlinedArray_1_get_Item_m63A5AB84323894345D9D8A01807C53CEC0219D12_RuntimeMethod_var); V_6 = L_46; // m_Layouts.layoutOverrides.TryGetValue(baseLayoutName, out var overrideList); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_47 = __this->get_address_of_m_Layouts_2(); Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86 * L_48 = L_47->get_layoutOverrides_5(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_49 = V_6; NullCheck(L_48); bool L_50; L_50 = Dictionary_2_TryGetValue_m930A5E2C4019CD67A6C8556684F8E489C0D59DF9(L_48, L_49, (InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4**)(&V_7), /*hidden argument*/Dictionary_2_TryGetValue_m930A5E2C4019CD67A6C8556684F8E489C0D59DF9_RuntimeMethod_var); // if (!isReplacement) bool L_51 = V_4; if (L_51) { goto IL_0121; } } { // ArrayHelpers.Append(ref overrideList, internedLayoutName); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_52 = V_3; int32_t L_53; L_53 = ArrayHelpers_Append_TisInternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_mDC61B9BB789B775D8026681A13BFE1C9E378A5B1((InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4**)(&V_7), L_52, /*hidden argument*/ArrayHelpers_Append_TisInternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_mDC61B9BB789B775D8026681A13BFE1C9E378A5B1_RuntimeMethod_var); } IL_0121: { // m_Layouts.layoutOverrides[baseLayoutName] = overrideList; Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_54 = __this->get_address_of_m_Layouts_2(); Dictionary_2_t20A4C56B2681DD10F2C1E2E7283A237815224E86 * L_55 = L_54->get_layoutOverrides_5(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_56 = V_6; InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* L_57 = V_7; NullCheck(L_55); Dictionary_2_set_Item_m38B16DF45DC4401DFA674E9F58F165319C3D48E4(L_55, L_56, L_57, /*hidden argument*/Dictionary_2_set_Item_m38B16DF45DC4401DFA674E9F58F165319C3D48E4_RuntimeMethod_var); // for (var i = 0; i < baseLayouts.length; ++i) int32_t L_58 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_58, (int32_t)1)); } IL_013b: { // for (var i = 0; i < baseLayouts.length; ++i) int32_t L_59 = V_5; InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB L_60 = V_1; int32_t L_61 = L_60.get_length_0(); if ((((int32_t)L_59) < ((int32_t)L_61))) { goto IL_00f4; } } IL_0145: { // PerformLayoutPostRegistration(internedLayoutName, baseLayouts, // isReplacement: isReplacement, isOverride: isOverride); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_62 = V_3; InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB L_63 = V_1; bool L_64 = V_4; bool L_65 = ___isOverride2; InputManager_PerformLayoutPostRegistration_m65C9103D91E7AA542B7CDF20655703368E10A420(__this, L_62, L_63, L_64, (bool)0, L_65, /*hidden argument*/NULL); // if (!deviceMatcher.empty) bool L_66; L_66 = InputDeviceMatcher_get_empty_m3F46CDE753F731D060E5669A8A1CFEC59CC5D21F((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 *)(&V_2), /*hidden argument*/NULL); if (L_66) { goto IL_0167; } } { // RegisterControlLayoutMatcher(internedLayoutName, deviceMatcher); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_67 = V_3; String_t* L_68; L_68 = InternedString_op_Implicit_m5C5E28D59A0F856D52E38C0C147176E4B306D6BD(L_67, /*hidden argument*/NULL); InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_69 = V_2; InputManager_RegisterControlLayoutMatcher_m2D32C93B9C897BD6E23A0A9E512A0BAADACD9B90(__this, L_68, L_69, /*hidden argument*/NULL); } IL_0167: { // } return; } } // System.Void UnityEngine.InputSystem.InputManager::RegisterControlLayoutBuilder(System.Func`1,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_RegisterControlLayoutBuilder_mD5D5FC9797FD0F0FE1B9332426D589F3EE7FAAEE (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Func_1_t87F4D899EDDDA25407AC884A9A61F602E32A21FA * ___method0, String_t* ___name1, String_t* ___baseLayout2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m0E7A22E243CB7ECC894D7884FE721B35F7C9C067_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1__ctor_m63D4B87260948C2A73C6DF32D7374DAEFFE5319C_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_0; memset((&V_0), 0, sizeof(V_0)); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_1; memset((&V_1), 0, sizeof(V_1)); bool V_2 = false; { // if (method == null) Func_1_t87F4D899EDDDA25407AC884A9A61F602E32A21FA * L_0 = ___method0; if (L_0) { goto IL_000e; } } { // throw new ArgumentNullException(nameof(method)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral82EA3C9AFC08F0CECEBC1B257606B3106346FCAF)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_RegisterControlLayoutBuilder_mD5D5FC9797FD0F0FE1B9332426D589F3EE7FAAEE_RuntimeMethod_var))); } IL_000e: { // if (string.IsNullOrEmpty(name)) String_t* L_2 = ___name1; bool L_3; L_3 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0021; } } { // throw new ArgumentNullException(nameof(name)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_4 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_RegisterControlLayoutBuilder_mD5D5FC9797FD0F0FE1B9332426D589F3EE7FAAEE_RuntimeMethod_var))); } IL_0021: { // var internedLayoutName = new InternedString(name); String_t* L_5 = ___name1; InternedString__ctor_mE81A2A4EA05081A96717682ACF38746482E3CF62((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&V_0), L_5, /*hidden argument*/NULL); // var internedBaseLayoutName = new InternedString(baseLayout); String_t* L_6 = ___baseLayout2; InternedString__ctor_mE81A2A4EA05081A96717682ACF38746482E3CF62((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&V_1), L_6, /*hidden argument*/NULL); // var isReplacement = m_Layouts.HasLayout(internedLayoutName); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_7 = __this->get_address_of_m_Layouts_2(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_8 = V_0; bool L_9; L_9 = Collection_HasLayout_m93C27EDE028A85DDB26705F50A335D76BD330328((Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F *)L_7, L_8, /*hidden argument*/NULL); V_2 = L_9; // m_Layouts.layoutBuilders[internedLayoutName] = method; Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_10 = __this->get_address_of_m_Layouts_2(); Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9 * L_11 = L_10->get_layoutBuilders_3(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_12 = V_0; Func_1_t87F4D899EDDDA25407AC884A9A61F602E32A21FA * L_13 = ___method0; NullCheck(L_11); Dictionary_2_set_Item_m0E7A22E243CB7ECC894D7884FE721B35F7C9C067(L_11, L_12, L_13, /*hidden argument*/Dictionary_2_set_Item_m0E7A22E243CB7ECC894D7884FE721B35F7C9C067_RuntimeMethod_var); // PerformLayoutPostRegistration(internedLayoutName, new InlinedArray(internedBaseLayoutName), // isReplacement); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_14 = V_0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_15 = V_1; InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB L_16; memset((&L_16), 0, sizeof(L_16)); InlinedArray_1__ctor_m63D4B87260948C2A73C6DF32D7374DAEFFE5319C((&L_16), L_15, /*hidden argument*/InlinedArray_1__ctor_m63D4B87260948C2A73C6DF32D7374DAEFFE5319C_RuntimeMethod_var); bool L_17 = V_2; InputManager_PerformLayoutPostRegistration_m65C9103D91E7AA542B7CDF20655703368E10A420(__this, L_14, L_16, L_17, (bool)0, (bool)0, /*hidden argument*/NULL); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::PerformLayoutPostRegistration(UnityEngine.InputSystem.Utilities.InternedString,UnityEngine.InputSystem.Utilities.InlinedArray`1,System.Boolean,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_PerformLayoutPostRegistration_m65C9103D91E7AA542B7CDF20655703368E10A420 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___layoutName0, InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB ___baseLayouts1, bool ___isReplacement2, bool ___isKnownToBeDeviceLayout3, bool ___isOverride4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DelegateHelpers_InvokeCallbacksSafe_TisString_t_TisInputControlLayoutChange_tE5631ED390D3B861F06F45893369D3E67C90291A_m503B6ED6A7016E0FA0849F986757218D724D001A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Remove_m45E84D946995F17227E04DF2D32A7A01C5B0CA5A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Count_mF781BD47155E1FD53A8B5F590ECA083143D48CC5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m733F4D7CC7AA69207084F6670637C330C2629459_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Keys_m7A818D2B12B3E3204B17DCDCD6A88434D77FA1E8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m73D39E3B6AD90D8E65A792BD405FEDA2F922831A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_ToArray_TisInternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_mCBDD219E3CD8E6A836DED802188AB3D29C9EB9DA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_get_Item_m63A5AB84323894345D9D8A01807C53CEC0219D12_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5742AB535A524B7E9D2BBC75E3B43257D3C75064); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_1; memset((&V_1), 0, sizeof(V_1)); InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* V_2 = NULL; int32_t V_3 = 0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_4; memset((&V_4), 0, sizeof(V_4)); String_t* V_5 = NULL; int32_t V_6 = 0; int32_t V_7 = 0; int32_t G_B29_0 = 0; { // ++m_LayoutRegistrationVersion; int32_t L_0 = __this->get_m_LayoutRegistrationVersion_0(); __this->set_m_LayoutRegistrationVersion_0(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1))); // InputControlLayout.s_CacheInstance.Clear(); IL2CPP_RUNTIME_CLASS_INIT(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_il2cpp_TypeInfo_var); Cache_Clear_m6410DF9E00C5A373BABD352C25C33FB80854B3B1((Cache_tCCC71FFB1DEF56FF815ED5B09BB764EDB00EE82E *)(((InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_StaticFields*)il2cpp_codegen_static_fields_for(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_il2cpp_TypeInfo_var))->get_address_of_s_CacheInstance_16()), /*hidden argument*/NULL); // if (!isOverride && baseLayouts.length > 0) bool L_1 = ___isOverride4; if (L_1) { goto IL_0068; } } { InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB L_2 = ___baseLayouts1; int32_t L_3 = L_2.get_length_0(); if ((((int32_t)L_3) <= ((int32_t)0))) { goto IL_0068; } } { // if (baseLayouts.length > 1) InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB L_4 = ___baseLayouts1; int32_t L_5 = L_4.get_length_0(); if ((((int32_t)L_5) <= ((int32_t)1))) { goto IL_0044; } } { // throw new NotSupportedException( // $"Layout '{layoutName}' has multiple base layouts; this is only supported on layout overrides"); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_6 = ___layoutName0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_7 = L_6; RuntimeObject * L_8 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_il2cpp_TypeInfo_var)), &L_7); String_t* L_9; L_9 = String_Format_m5A16F3ABC59A3E9804E0CB2636849CCD74CEC994(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE8CDEE792623E01A9FD833B1BAFB0659BC63C1C0)), L_8, /*hidden argument*/NULL); NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_10 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_10, L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_PerformLayoutPostRegistration_m65C9103D91E7AA542B7CDF20655703368E10A420_RuntimeMethod_var))); } IL_0044: { // var baseLayoutName = baseLayouts[0]; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_11; L_11 = InlinedArray_1_get_Item_m63A5AB84323894345D9D8A01807C53CEC0219D12((InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB *)(&___baseLayouts1), 0, /*hidden argument*/InlinedArray_1_get_Item_m63A5AB84323894345D9D8A01807C53CEC0219D12_RuntimeMethod_var); V_1 = L_11; // if (!baseLayoutName.IsEmpty()) bool L_12; L_12 = InternedString_IsEmpty_mDC1F123EBDF899AB57EDDCFFC3F67DA84A2CC2AD((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&V_1), /*hidden argument*/NULL); if (L_12) { goto IL_0068; } } { // m_Layouts.baseLayoutTable[layoutName] = baseLayoutName; Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_13 = __this->get_address_of_m_Layouts_2(); Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540 * L_14 = L_13->get_baseLayoutTable_4(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_15 = ___layoutName0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_16 = V_1; NullCheck(L_14); Dictionary_2_set_Item_m73D39E3B6AD90D8E65A792BD405FEDA2F922831A(L_14, L_15, L_16, /*hidden argument*/Dictionary_2_set_Item_m73D39E3B6AD90D8E65A792BD405FEDA2F922831A_RuntimeMethod_var); } IL_0068: { // m_Layouts.precompiledLayouts.Remove(layoutName); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_17 = __this->get_address_of_m_Layouts_2(); Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE * L_18 = L_17->get_precompiledLayouts_7(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_19 = ___layoutName0; NullCheck(L_18); bool L_20; L_20 = Dictionary_2_Remove_m45E84D946995F17227E04DF2D32A7A01C5B0CA5A(L_18, L_19, /*hidden argument*/Dictionary_2_Remove_m45E84D946995F17227E04DF2D32A7A01C5B0CA5A_RuntimeMethod_var); // if (m_Layouts.precompiledLayouts.Count > 0) Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_21 = __this->get_address_of_m_Layouts_2(); Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE * L_22 = L_21->get_precompiledLayouts_7(); NullCheck(L_22); int32_t L_23; L_23 = Dictionary_2_get_Count_mF781BD47155E1FD53A8B5F590ECA083143D48CC5(L_22, /*hidden argument*/Dictionary_2_get_Count_mF781BD47155E1FD53A8B5F590ECA083143D48CC5_RuntimeMethod_var); if ((((int32_t)L_23) <= ((int32_t)0))) { goto IL_0159; } } { // foreach (var layout in m_Layouts.precompiledLayouts.Keys.ToArray()) Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_24 = __this->get_address_of_m_Layouts_2(); Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE * L_25 = L_24->get_precompiledLayouts_7(); NullCheck(L_25); KeyCollection_t957197774A5B992291BD30CAA0D5D9CCFA3DCAE9 * L_26; L_26 = Dictionary_2_get_Keys_m7A818D2B12B3E3204B17DCDCD6A88434D77FA1E8(L_25, /*hidden argument*/Dictionary_2_get_Keys_m7A818D2B12B3E3204B17DCDCD6A88434D77FA1E8_RuntimeMethod_var); InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* L_27; L_27 = Enumerable_ToArray_TisInternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_mCBDD219E3CD8E6A836DED802188AB3D29C9EB9DA(L_26, /*hidden argument*/Enumerable_ToArray_TisInternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_mCBDD219E3CD8E6A836DED802188AB3D29C9EB9DA_RuntimeMethod_var); V_2 = L_27; V_3 = 0; goto IL_0150; } IL_00ad: { // foreach (var layout in m_Layouts.precompiledLayouts.Keys.ToArray()) InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* L_28 = V_2; int32_t L_29 = V_3; NullCheck(L_28); int32_t L_30 = L_29; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_31 = (L_28)->GetAt(static_cast(L_30)); V_4 = L_31; // var metadata = m_Layouts.precompiledLayouts[layout].metadata; Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_32 = __this->get_address_of_m_Layouts_2(); Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE * L_33 = L_32->get_precompiledLayouts_7(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_34 = V_4; NullCheck(L_33); PrecompiledLayout_t87B15ED374C6DA9C0C0D9333A1BDAC4F40E548CB L_35; L_35 = Dictionary_2_get_Item_m733F4D7CC7AA69207084F6670637C330C2629459(L_33, L_34, /*hidden argument*/Dictionary_2_get_Item_m733F4D7CC7AA69207084F6670637C330C2629459_RuntimeMethod_var); String_t* L_36 = L_35.get_metadata_1(); V_5 = L_36; // if (isOverride) bool L_37 = ___isOverride4; if (!L_37) { goto IL_0128; } } { // for (var i = 0; i < baseLayouts.length; ++i) V_6 = 0; goto IL_011c; } IL_00d8: { // if (layout == baseLayouts[i] || // StringHelpers.CharacterSeparatedListsHaveAtLeastOneCommonElement(metadata, // baseLayouts[i], ';')) InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_38 = V_4; int32_t L_39 = V_6; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_40; L_40 = InlinedArray_1_get_Item_m63A5AB84323894345D9D8A01807C53CEC0219D12((InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB *)(&___baseLayouts1), L_39, /*hidden argument*/InlinedArray_1_get_Item_m63A5AB84323894345D9D8A01807C53CEC0219D12_RuntimeMethod_var); bool L_41; L_41 = InternedString_op_Equality_m0D791451F3BDC84D2EBA0F98EA847F781D1F4FA0(L_38, L_40, /*hidden argument*/NULL); if (L_41) { goto IL_0103; } } { String_t* L_42 = V_5; int32_t L_43 = V_6; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_44; L_44 = InlinedArray_1_get_Item_m63A5AB84323894345D9D8A01807C53CEC0219D12((InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB *)(&___baseLayouts1), L_43, /*hidden argument*/InlinedArray_1_get_Item_m63A5AB84323894345D9D8A01807C53CEC0219D12_RuntimeMethod_var); String_t* L_45; L_45 = InternedString_op_Implicit_m5C5E28D59A0F856D52E38C0C147176E4B306D6BD(L_44, /*hidden argument*/NULL); bool L_46; L_46 = StringHelpers_CharacterSeparatedListsHaveAtLeastOneCommonElement_mB6291B57AF545D35A0463D6CF8B70A58684D9057(L_42, L_45, ((int32_t)59), /*hidden argument*/NULL); if (!L_46) { goto IL_0116; } } IL_0103: { // m_Layouts.precompiledLayouts.Remove(layout); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_47 = __this->get_address_of_m_Layouts_2(); Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE * L_48 = L_47->get_precompiledLayouts_7(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_49 = V_4; NullCheck(L_48); bool L_50; L_50 = Dictionary_2_Remove_m45E84D946995F17227E04DF2D32A7A01C5B0CA5A(L_48, L_49, /*hidden argument*/Dictionary_2_Remove_m45E84D946995F17227E04DF2D32A7A01C5B0CA5A_RuntimeMethod_var); } IL_0116: { // for (var i = 0; i < baseLayouts.length; ++i) int32_t L_51 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_51, (int32_t)1)); } IL_011c: { // for (var i = 0; i < baseLayouts.length; ++i) int32_t L_52 = V_6; InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB L_53 = ___baseLayouts1; int32_t L_54 = L_53.get_length_0(); if ((((int32_t)L_52) < ((int32_t)L_54))) { goto IL_00d8; } } { // } goto IL_014c; } IL_0128: { // if (StringHelpers.CharacterSeparatedListsHaveAtLeastOneCommonElement(metadata, // layoutName, ';')) String_t* L_55 = V_5; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_56 = ___layoutName0; String_t* L_57; L_57 = InternedString_op_Implicit_m5C5E28D59A0F856D52E38C0C147176E4B306D6BD(L_56, /*hidden argument*/NULL); bool L_58; L_58 = StringHelpers_CharacterSeparatedListsHaveAtLeastOneCommonElement_mB6291B57AF545D35A0463D6CF8B70A58684D9057(L_55, L_57, ((int32_t)59), /*hidden argument*/NULL); if (!L_58) { goto IL_014c; } } { // m_Layouts.precompiledLayouts.Remove(layout); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_59 = __this->get_address_of_m_Layouts_2(); Dictionary_2_tBF35F5A68A67D19B3685A61CE0EECA8A7DD19DFE * L_60 = L_59->get_precompiledLayouts_7(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_61 = V_4; NullCheck(L_60); bool L_62; L_62 = Dictionary_2_Remove_m45E84D946995F17227E04DF2D32A7A01C5B0CA5A(L_60, L_61, /*hidden argument*/Dictionary_2_Remove_m45E84D946995F17227E04DF2D32A7A01C5B0CA5A_RuntimeMethod_var); } IL_014c: { int32_t L_63 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_63, (int32_t)1)); } IL_0150: { // foreach (var layout in m_Layouts.precompiledLayouts.Keys.ToArray()) int32_t L_64 = V_3; InternedStringU5BU5D_t1EAE8433C8EF7C76894673801EE0EE9F6833E9A4* L_65 = V_2; NullCheck(L_65); if ((((int32_t)L_64) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_65)->max_length)))))) { goto IL_00ad; } } IL_0159: { // if (isOverride) bool L_66 = ___isOverride4; if (!L_66) { goto IL_0185; } } { // for (var i = 0; i < baseLayouts.length; ++i) V_7 = 0; goto IL_0179; } IL_0162: { // RecreateDevicesUsingLayout(baseLayouts[i], isKnownToBeDeviceLayout: isKnownToBeDeviceLayout); int32_t L_67 = V_7; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_68; L_68 = InlinedArray_1_get_Item_m63A5AB84323894345D9D8A01807C53CEC0219D12((InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB *)(&___baseLayouts1), L_67, /*hidden argument*/InlinedArray_1_get_Item_m63A5AB84323894345D9D8A01807C53CEC0219D12_RuntimeMethod_var); bool L_69 = ___isKnownToBeDeviceLayout3; InputManager_RecreateDevicesUsingLayout_m5E5B4E9D5228BA6B17F49AECB68B8030211E685F(__this, L_68, L_69, /*hidden argument*/NULL); // for (var i = 0; i < baseLayouts.length; ++i) int32_t L_70 = V_7; V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_70, (int32_t)1)); } IL_0179: { // for (var i = 0; i < baseLayouts.length; ++i) int32_t L_71 = V_7; InlinedArray_1_t62979DFB1C567F611655F27BEF4B8E8288F4E5FB L_72 = ___baseLayouts1; int32_t L_73 = L_72.get_length_0(); if ((((int32_t)L_71) < ((int32_t)L_73))) { goto IL_0162; } } { // } goto IL_018e; } IL_0185: { // RecreateDevicesUsingLayout(layoutName, isKnownToBeDeviceLayout: isKnownToBeDeviceLayout); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_74 = ___layoutName0; bool L_75 = ___isKnownToBeDeviceLayout3; InputManager_RecreateDevicesUsingLayout_m5E5B4E9D5228BA6B17F49AECB68B8030211E685F(__this, L_74, L_75, /*hidden argument*/NULL); } IL_018e: { // var change = isReplacement ? InputControlLayoutChange.Replaced : InputControlLayoutChange.Added; bool L_76 = ___isReplacement2; if (L_76) { goto IL_0194; } } { G_B29_0 = 0; goto IL_0195; } IL_0194: { G_B29_0 = 2; } IL_0195: { V_0 = G_B29_0; // DelegateHelpers.InvokeCallbacksSafe(ref m_LayoutChangeListeners, layoutName.ToString(), change, "InputSystem.onLayoutChange"); CallbackArray_1_t506D5A43E1BA50974832B6281CE0E05C835BD3A9 * L_77 = __this->get_address_of_m_LayoutChangeListeners_20(); String_t* L_78; L_78 = InternedString_ToString_m1C5D47E8AB1F840D23F79E06D6F27BF6AAFD1D39((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&___layoutName0), /*hidden argument*/NULL); int32_t L_79 = V_0; DelegateHelpers_InvokeCallbacksSafe_TisString_t_TisInputControlLayoutChange_tE5631ED390D3B861F06F45893369D3E67C90291A_m503B6ED6A7016E0FA0849F986757218D724D001A((CallbackArray_1_t506D5A43E1BA50974832B6281CE0E05C835BD3A9 *)L_77, L_78, L_79, _stringLiteral5742AB535A524B7E9D2BBC75E3B43257D3C75064, NULL, /*hidden argument*/DelegateHelpers_InvokeCallbacksSafe_TisString_t_TisInputControlLayoutChange_tE5631ED390D3B861F06F45893369D3E67C90291A_m503B6ED6A7016E0FA0849F986757218D724D001A_RuntimeMethod_var); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::RecreateDevicesUsingLayout(UnityEngine.InputSystem.Utilities.InternedString,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_RecreateDevicesUsingLayout_m5E5B4E9D5228BA6B17F49AECB68B8030211E685F (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___layout0, bool ___isKnownToBeDeviceLayout1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0F8FEDDD5B5FDD9CF2D36743082DFAF1D90BF1A6_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mBCF1F1F20B1F9F3EB04E94A0B05FB9AD544CC66E_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m9B020E4038F641C1B06E0BEB2915A1F69BA1DF22_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mB382A8E60BA27DF8C55823C4273C825A432EA956_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tD6947050802043C1EF83E27C7D278C8790D69D83_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } List_1_tD6947050802043C1EF83E27C7D278C8790D69D83 * V_0 = NULL; int32_t V_1 = 0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * V_2 = NULL; bool V_3 = false; RefInstance_t644EB29D353013AE02C53F47A026FFEEBA232E6F V_4; memset((&V_4), 0, sizeof(V_4)); int32_t V_5 = 0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * V_6 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { // if (m_DevicesCount == 0) int32_t L_0 = __this->get_m_DevicesCount_6(); if (L_0) { goto IL_0009; } } { // return; return; } IL_0009: { // List devicesUsingLayout = null; V_0 = (List_1_tD6947050802043C1EF83E27C7D278C8790D69D83 *)NULL; // for (var i = 0; i < m_DevicesCount; ++i) V_1 = 0; goto IL_0046; } IL_000f: { // var device = m_Devices[i]; InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* L_1 = __this->get_m_Devices_7(); int32_t L_2 = V_1; NullCheck(L_1); int32_t L_3 = L_2; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_4 = (L_1)->GetAt(static_cast(L_3)); V_2 = L_4; // if (isKnownToBeDeviceLayout) bool L_5 = ___isKnownToBeDeviceLayout1; if (!L_5) { goto IL_0026; } } { // usesLayout = IsControlUsingLayout(device, layout); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_6 = V_2; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_7 = ___layout0; bool L_8; L_8 = InputManager_IsControlUsingLayout_mEB5197615C51BC5C9F2663DF04228CD61C3CBDC4(__this, L_6, L_7, /*hidden argument*/NULL); V_3 = L_8; goto IL_002f; } IL_0026: { // usesLayout = IsControlOrChildUsingLayoutRecursive(device, layout); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_9 = V_2; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_10 = ___layout0; bool L_11; L_11 = InputManager_IsControlOrChildUsingLayoutRecursive_m7E722729D9FCA899B15A237F46657892D7D8D44E(__this, L_9, L_10, /*hidden argument*/NULL); V_3 = L_11; } IL_002f: { // if (usesLayout) bool L_12 = V_3; if (!L_12) { goto IL_0042; } } { // if (devicesUsingLayout == null) List_1_tD6947050802043C1EF83E27C7D278C8790D69D83 * L_13 = V_0; if (L_13) { goto IL_003b; } } { // devicesUsingLayout = new List(); List_1_tD6947050802043C1EF83E27C7D278C8790D69D83 * L_14 = (List_1_tD6947050802043C1EF83E27C7D278C8790D69D83 *)il2cpp_codegen_object_new(List_1_tD6947050802043C1EF83E27C7D278C8790D69D83_il2cpp_TypeInfo_var); List_1__ctor_mBCF1F1F20B1F9F3EB04E94A0B05FB9AD544CC66E(L_14, /*hidden argument*/List_1__ctor_mBCF1F1F20B1F9F3EB04E94A0B05FB9AD544CC66E_RuntimeMethod_var); V_0 = L_14; } IL_003b: { // devicesUsingLayout.Add(device); List_1_tD6947050802043C1EF83E27C7D278C8790D69D83 * L_15 = V_0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_16 = V_2; NullCheck(L_15); List_1_Add_m0F8FEDDD5B5FDD9CF2D36743082DFAF1D90BF1A6(L_15, L_16, /*hidden argument*/List_1_Add_m0F8FEDDD5B5FDD9CF2D36743082DFAF1D90BF1A6_RuntimeMethod_var); } IL_0042: { // for (var i = 0; i < m_DevicesCount; ++i) int32_t L_17 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)); } IL_0046: { // for (var i = 0; i < m_DevicesCount; ++i) int32_t L_18 = V_1; int32_t L_19 = __this->get_m_DevicesCount_6(); if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_000f; } } { // if (devicesUsingLayout == null) List_1_tD6947050802043C1EF83E27C7D278C8790D69D83 * L_20 = V_0; if (L_20) { goto IL_0053; } } { // return; return; } IL_0053: { // using (InputDeviceBuilder.Ref()) RefInstance_t644EB29D353013AE02C53F47A026FFEEBA232E6F L_21; L_21 = InputDeviceBuilder_Ref_m922869C2A486DD2106ACAED966AC768B0B8DE837(/*hidden argument*/NULL); V_4 = L_21; } IL_005a: try { // begin try (depth: 1) { // for (var i = 0; i < devicesUsingLayout.Count; ++i) V_5 = 0; goto IL_007e; } IL_005f: { // var device = devicesUsingLayout[i]; List_1_tD6947050802043C1EF83E27C7D278C8790D69D83 * L_22 = V_0; int32_t L_23 = V_5; NullCheck(L_22); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_24; L_24 = List_1_get_Item_mB382A8E60BA27DF8C55823C4273C825A432EA956_inline(L_22, L_23, /*hidden argument*/List_1_get_Item_mB382A8E60BA27DF8C55823C4273C825A432EA956_RuntimeMethod_var); V_6 = L_24; // RecreateDevice(device, device.m_Layout); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_25 = V_6; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_26 = V_6; NullCheck(L_26); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_27 = ((InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *)L_26)->get_m_Layout_7(); InputManager_RecreateDevice_m872A5709870E0FB7D8B517D9A6822ED6D0B0E7B6(__this, L_25, L_27, /*hidden argument*/NULL); // for (var i = 0; i < devicesUsingLayout.Count; ++i) int32_t L_28 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); } IL_007e: { // for (var i = 0; i < devicesUsingLayout.Count; ++i) int32_t L_29 = V_5; List_1_tD6947050802043C1EF83E27C7D278C8790D69D83 * L_30 = V_0; NullCheck(L_30); int32_t L_31; L_31 = List_1_get_Count_m9B020E4038F641C1B06E0BEB2915A1F69BA1DF22_inline(L_30, /*hidden argument*/List_1_get_Count_m9B020E4038F641C1B06E0BEB2915A1F69BA1DF22_RuntimeMethod_var); if ((((int32_t)L_29) < ((int32_t)L_31))) { goto IL_005f; } } IL_0088: { // } IL2CPP_LEAVE(0x98, FINALLY_008a); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_008a; } FINALLY_008a: { // begin finally (depth: 1) RefInstance_Dispose_m78EC838639BF9D789D41763BE97E01B2AE557A4F((RefInstance_t644EB29D353013AE02C53F47A026FFEEBA232E6F *)(&V_4), /*hidden argument*/NULL); IL2CPP_END_FINALLY(138) } // end finally (depth: 1) IL2CPP_CLEANUP(138) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x98, IL_0098) } IL_0098: { // } return; } } // System.Boolean UnityEngine.InputSystem.InputManager::IsControlOrChildUsingLayoutRecursive(UnityEngine.InputSystem.InputControl,UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_IsControlOrChildUsingLayoutRecursive_m7E722729D9FCA899B15A237F46657892D7D8D44E (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * ___control0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___layout1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Count_mC17382AC83BBF147C47E7A21A628F51F082E92DA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Item_m8E38E64671229D35FA708BF0B650FE3F846189FC_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; { // if (IsControlUsingLayout(control, layout)) InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_0 = ___control0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_1 = ___layout1; bool L_2; L_2 = InputManager_IsControlUsingLayout_mEB5197615C51BC5C9F2663DF04228CD61C3CBDC4(__this, L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_000c; } } { // return true; return (bool)1; } IL_000c: { // var children = control.children; InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_3 = ___control0; NullCheck(L_3); ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 L_4; L_4 = InputControl_get_children_mE498FA37DACEC312AA60A7A5A7F6CF146EFC5A9A(L_3, /*hidden argument*/NULL); V_0 = L_4; // for (var i = 0; i < children.Count; ++i) V_1 = 0; goto IL_002e; } IL_0017: { // if (IsControlOrChildUsingLayoutRecursive(children[i], layout)) int32_t L_5 = V_1; InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_6; L_6 = ReadOnlyArray_1_get_Item_m8E38E64671229D35FA708BF0B650FE3F846189FC((ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 *)(&V_0), L_5, /*hidden argument*/ReadOnlyArray_1_get_Item_m8E38E64671229D35FA708BF0B650FE3F846189FC_RuntimeMethod_var); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_7 = ___layout1; bool L_8; L_8 = InputManager_IsControlOrChildUsingLayoutRecursive_m7E722729D9FCA899B15A237F46657892D7D8D44E(__this, L_6, L_7, /*hidden argument*/NULL); if (!L_8) { goto IL_002a; } } { // return true; return (bool)1; } IL_002a: { // for (var i = 0; i < children.Count; ++i) int32_t L_9 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)); } IL_002e: { // for (var i = 0; i < children.Count; ++i) int32_t L_10 = V_1; int32_t L_11; L_11 = ReadOnlyArray_1_get_Count_mC17382AC83BBF147C47E7A21A628F51F082E92DA_inline((ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 *)(&V_0), /*hidden argument*/ReadOnlyArray_1_get_Count_mC17382AC83BBF147C47E7A21A628F51F082E92DA_RuntimeMethod_var); if ((((int32_t)L_10) < ((int32_t)L_11))) { goto IL_0017; } } { // return false; return (bool)0; } } // System.Boolean UnityEngine.InputSystem.InputManager::IsControlUsingLayout(UnityEngine.InputSystem.InputControl,UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_IsControlUsingLayout_mEB5197615C51BC5C9F2663DF04228CD61C3CBDC4 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * ___control0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___layout1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_mD3954C657979AD880C781BAC9CFBD461A9FF7A75_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_0; memset((&V_0), 0, sizeof(V_0)); { // if (control.layout == layout) InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_0 = ___control0; NullCheck(L_0); String_t* L_1; L_1 = InputControl_get_layout_m6A38EE2D15A5FCFDEE94B4056DD1565E17378454(L_0, /*hidden argument*/NULL); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_2 = ___layout1; bool L_3; L_3 = InternedString_op_Equality_mE3E3FDA44003AE8A7A81647CBFB85C03945AD6F4(L_1, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0010; } } { // return true; return (bool)1; } IL_0010: { // var baseLayout = control.m_Layout; InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_4 = ___control0; NullCheck(L_4); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_5 = L_4->get_m_Layout_7(); V_0 = L_5; goto IL_0024; } IL_0019: { // if (baseLayout == layout) InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_6 = V_0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_7 = ___layout1; bool L_8; L_8 = InternedString_op_Equality_m0D791451F3BDC84D2EBA0F98EA847F781D1F4FA0(L_6, L_7, /*hidden argument*/NULL); if (!L_8) { goto IL_0024; } } { // return true; return (bool)1; } IL_0024: { // while (m_Layouts.baseLayoutTable.TryGetValue(baseLayout, out baseLayout)) Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_9 = __this->get_address_of_m_Layouts_2(); Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540 * L_10 = L_9->get_baseLayoutTable_4(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_11 = V_0; NullCheck(L_10); bool L_12; L_12 = Dictionary_2_TryGetValue_mD3954C657979AD880C781BAC9CFBD461A9FF7A75(L_10, L_11, (InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_mD3954C657979AD880C781BAC9CFBD461A9FF7A75_RuntimeMethod_var); if (L_12) { goto IL_0019; } } { // return false; return (bool)0; } } // System.Void UnityEngine.InputSystem.InputManager::RegisterControlLayoutMatcher(System.String,UnityEngine.InputSystem.Layouts.InputDeviceMatcher) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_RegisterControlLayoutMatcher_m2D32C93B9C897BD6E23A0A9E512A0BAADACD9B90 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, String_t* ___layoutName0, InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 ___matcher1, const RuntimeMethod* method) { InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_0; memset((&V_0), 0, sizeof(V_0)); { // if (string.IsNullOrEmpty(layoutName)) String_t* L_0 = ___layoutName0; bool L_1; L_1 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0013; } } { // throw new ArgumentNullException(nameof(layoutName)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD3405336B22171B2B1D27A70CEA528CE3E5F192C)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_RegisterControlLayoutMatcher_m2D32C93B9C897BD6E23A0A9E512A0BAADACD9B90_RuntimeMethod_var))); } IL_0013: { // if (matcher.empty) bool L_3; L_3 = InputDeviceMatcher_get_empty_m3F46CDE753F731D060E5669A8A1CFEC59CC5D21F((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 *)(&___matcher1), /*hidden argument*/NULL); if (!L_3) { goto IL_002c; } } { // throw new ArgumentException("Matcher cannot be empty", nameof(matcher)); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral765048730869F67925B9AB47A2AA4E6BDD4B2165)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6A397A13C56ABA13CCA4A3459884871DB40F7F7E)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_RegisterControlLayoutMatcher_m2D32C93B9C897BD6E23A0A9E512A0BAADACD9B90_RuntimeMethod_var))); } IL_002c: { // var internedLayoutName = new InternedString(layoutName); String_t* L_5 = ___layoutName0; InternedString__ctor_mE81A2A4EA05081A96717682ACF38746482E3CF62((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&V_0), L_5, /*hidden argument*/NULL); // m_Layouts.AddMatcher(internedLayoutName, matcher); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_6 = __this->get_address_of_m_Layouts_2(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_7 = V_0; InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_8 = ___matcher1; Collection_AddMatcher_mD9CF93319D4D18F1DEEE2D06999D31D33BF46CA4((Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F *)L_6, L_7, L_8, /*hidden argument*/NULL); // RecreateDevicesUsingLayoutWithInferiorMatch(matcher); InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_9 = ___matcher1; InputManager_RecreateDevicesUsingLayoutWithInferiorMatch_m117677AE70656729DE16FBE06476DADBDB3482D9(__this, L_9, /*hidden argument*/NULL); // AddAvailableDevicesMatchingDescription(matcher, internedLayoutName); InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_10 = ___matcher1; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_11 = V_0; InputManager_AddAvailableDevicesMatchingDescription_m656E5E99F204E27447801478E4234975750E61A2(__this, L_10, L_11, /*hidden argument*/NULL); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::RegisterControlLayoutMatcher(System.Type,UnityEngine.InputSystem.Layouts.InputDeviceMatcher) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_RegisterControlLayoutMatcher_m7CAE8078F618B0CEBEECFA0805682648B7D1DB1A (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Type_t * ___type0, InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 ___matcher1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_0; memset((&V_0), 0, sizeof(V_0)); { // if (type == null) Type_t * L_0 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { // throw new ArgumentNullException(nameof(type)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_RegisterControlLayoutMatcher_m7CAE8078F618B0CEBEECFA0805682648B7D1DB1A_RuntimeMethod_var))); } IL_0014: { // if (matcher.empty) bool L_3; L_3 = InputDeviceMatcher_get_empty_m3F46CDE753F731D060E5669A8A1CFEC59CC5D21F((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 *)(&___matcher1), /*hidden argument*/NULL); if (!L_3) { goto IL_002d; } } { // throw new ArgumentException("Matcher cannot be empty", nameof(matcher)); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral765048730869F67925B9AB47A2AA4E6BDD4B2165)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6A397A13C56ABA13CCA4A3459884871DB40F7F7E)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_RegisterControlLayoutMatcher_m7CAE8078F618B0CEBEECFA0805682648B7D1DB1A_RuntimeMethod_var))); } IL_002d: { // var layoutName = m_Layouts.TryFindLayoutForType(type); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_5 = __this->get_address_of_m_Layouts_2(); Type_t * L_6 = ___type0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_7; L_7 = Collection_TryFindLayoutForType_mC84D3FC044E2F243F888F3335424CCCA07072AC9((Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F *)L_5, L_6, /*hidden argument*/NULL); V_0 = L_7; // if (layoutName.IsEmpty()) bool L_8; L_8 = InternedString_IsEmpty_mDC1F123EBDF899AB57EDDCFFC3F67DA84A2CC2AD((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&V_0), /*hidden argument*/NULL); if (!L_8) { goto IL_0063; } } { // throw new ArgumentException( // $"Type '{type.Name}' has not been registered as a control layout", nameof(type)); Type_t * L_9 = ___type0; NullCheck(L_9); String_t* L_10; L_10 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_9); String_t* L_11; L_11 = String_Concat_mC41740F000A5A48F8D313FB4CEE0E35E207A2632(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3C686C624D22B0C45E4FADFB00FA535DDDC88AD7)), L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral86186031B6A596FFFE4131DF258F8F1FF70E4951)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_12 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_12, L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_RegisterControlLayoutMatcher_m7CAE8078F618B0CEBEECFA0805682648B7D1DB1A_RuntimeMethod_var))); } IL_0063: { // RegisterControlLayoutMatcher(layoutName, matcher); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_13 = V_0; String_t* L_14; L_14 = InternedString_op_Implicit_m5C5E28D59A0F856D52E38C0C147176E4B306D6BD(L_13, /*hidden argument*/NULL); InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 L_15 = ___matcher1; InputManager_RegisterControlLayoutMatcher_m2D32C93B9C897BD6E23A0A9E512A0BAADACD9B90(__this, L_14, L_15, /*hidden argument*/NULL); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::RecreateDevicesUsingLayoutWithInferiorMatch(UnityEngine.InputSystem.Layouts.InputDeviceMatcher) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_RecreateDevicesUsingLayoutWithInferiorMatch_m117677AE70656729DE16FBE06476DADBDB3482D9 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 ___deviceMatcher0, const RuntimeMethod* method) { RefInstance_t644EB29D353013AE02C53F47A026FFEEBA232E6F V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; int32_t V_2 = 0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * V_3 = NULL; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 V_4; memset((&V_4), 0, sizeof(V_4)); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_5; memset((&V_5), 0, sizeof(V_5)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { // if (m_DevicesCount == 0) int32_t L_0 = __this->get_m_DevicesCount_6(); if (L_0) { goto IL_0009; } } { // return; return; } IL_0009: { // using (InputDeviceBuilder.Ref()) RefInstance_t644EB29D353013AE02C53F47A026FFEEBA232E6F L_1; L_1 = InputDeviceBuilder_Ref_m922869C2A486DD2106ACAED966AC768B0B8DE837(/*hidden argument*/NULL); V_0 = L_1; } IL_000f: try { // begin try (depth: 1) { // var deviceCount = m_DevicesCount; int32_t L_2 = __this->get_m_DevicesCount_6(); V_1 = L_2; // for (var i = 0; i < deviceCount; ++i) V_2 = 0; goto IL_0080; } IL_001a: { // var device = m_Devices[i]; InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* L_3 = __this->get_m_Devices_7(); int32_t L_4 = V_2; NullCheck(L_3); int32_t L_5 = L_4; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_6 = (L_3)->GetAt(static_cast(L_5)); V_3 = L_6; // var deviceDescription = device.description; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_7 = V_3; NullCheck(L_7); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_8; L_8 = InputDevice_get_description_m3F54BB4D6E85ADD8CDBB2906821A9D828CAC8305_inline(L_7, /*hidden argument*/NULL); V_4 = L_8; // if (deviceDescription.empty || !(deviceMatcher.MatchPercentage(deviceDescription) > 0)) bool L_9; L_9 = InputDeviceDescription_get_empty_mD22F9DFAC45C892B0883899DF0D473B211A92EE7((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&V_4), /*hidden argument*/NULL); if (L_9) { goto IL_007c; } } IL_0034: { InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_10 = V_4; float L_11; L_11 = InputDeviceMatcher_MatchPercentage_m68081E99E1CCD963DEB980EB439BECAB338A62FB((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 *)(&___deviceMatcher0), L_10, /*hidden argument*/NULL); if ((!(((float)L_11) > ((float)(0.0f))))) { goto IL_007c; } } IL_0044: { // var layoutName = TryFindMatchingControlLayout(ref deviceDescription, device.deviceId); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_12 = V_3; NullCheck(L_12); int32_t L_13; L_13 = InputDevice_get_deviceId_mDDE1531F7B9A1E03B17094C7AC37E58177E4AA0D_inline(L_12, /*hidden argument*/NULL); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_14; L_14 = InputManager_TryFindMatchingControlLayout_mF1C449D35DF64AD63A3A8D45080DA7F592B38945(__this, (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&V_4), L_13, /*hidden argument*/NULL); V_5 = L_14; // if (layoutName != device.m_Layout) InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_15 = V_5; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_16 = V_3; NullCheck(L_16); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_17 = ((InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *)L_16)->get_m_Layout_7(); bool L_18; L_18 = InternedString_op_Inequality_mFCB6E922167245A53F016079F13B8A0E6FBC1D98(L_15, L_17, /*hidden argument*/NULL); if (!L_18) { goto IL_007c; } } IL_0063: { // device.m_Description = deviceDescription; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_19 = V_3; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_20 = V_4; NullCheck(L_19); L_19->set_m_Description_28(L_20); // RecreateDevice(device, layoutName); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_21 = V_3; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_22 = V_5; InputManager_RecreateDevice_m872A5709870E0FB7D8B517D9A6822ED6D0B0E7B6(__this, L_21, L_22, /*hidden argument*/NULL); // --i; int32_t L_23 = V_2; V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)1)); // --deviceCount; int32_t L_24 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1)); } IL_007c: { // for (var i = 0; i < deviceCount; ++i) int32_t L_25 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1)); } IL_0080: { // for (var i = 0; i < deviceCount; ++i) int32_t L_26 = V_2; int32_t L_27 = V_1; if ((((int32_t)L_26) < ((int32_t)L_27))) { goto IL_001a; } } IL_0084: { // } IL2CPP_LEAVE(0x94, FINALLY_0086); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0086; } FINALLY_0086: { // begin finally (depth: 1) RefInstance_Dispose_m78EC838639BF9D789D41763BE97E01B2AE557A4F((RefInstance_t644EB29D353013AE02C53F47A026FFEEBA232E6F *)(&V_0), /*hidden argument*/NULL); IL2CPP_END_FINALLY(134) } // end finally (depth: 1) IL2CPP_CLEANUP(134) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x94, IL_0094) } IL_0094: { // } return; } } // System.Void UnityEngine.InputSystem.InputManager::RecreateDevice(UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_RecreateDevice_m872A5709870E0FB7D8B517D9A6822ED6D0B0E7B6 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___oldDevice0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___newLayout1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDevice_Build_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_m40E08FFE91FCD1BF977448865B23798106F79A40_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * V_0 = NULL; { // RemoveDevice(oldDevice, keepOnListOfAvailableDevices: true); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_0 = ___oldDevice0; InputManager_RemoveDevice_m078BD5E7310B7B57E282ECDD0972A6641F66C2C0(__this, L_0, (bool)1, /*hidden argument*/NULL); // var newDevice = InputDevice.Build(newLayout, oldDevice.m_Variants, // deviceDescription: oldDevice.m_Description); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_1 = ___newLayout1; String_t* L_2; L_2 = InternedString_op_Implicit_m5C5E28D59A0F856D52E38C0C147176E4B306D6BD(L_1, /*hidden argument*/NULL); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_3 = ___oldDevice0; NullCheck(L_3); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_4 = ((InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *)L_3)->get_m_Variants_8(); String_t* L_5; L_5 = InternedString_op_Implicit_m5C5E28D59A0F856D52E38C0C147176E4B306D6BD(L_4, /*hidden argument*/NULL); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_6 = ___oldDevice0; NullCheck(L_6); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_7 = L_6->get_m_Description_28(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_8; L_8 = InputDevice_Build_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_m40E08FFE91FCD1BF977448865B23798106F79A40(L_2, L_5, L_7, (bool)0, /*hidden argument*/InputDevice_Build_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_m40E08FFE91FCD1BF977448865B23798106F79A40_RuntimeMethod_var); V_0 = L_8; // newDevice.m_DeviceId = oldDevice.m_DeviceId; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_9 = V_0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_10 = ___oldDevice0; NullCheck(L_10); int32_t L_11 = L_10->get_m_DeviceId_25(); NullCheck(L_9); L_9->set_m_DeviceId_25(L_11); // newDevice.m_Description = oldDevice.m_Description; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_12 = V_0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_13 = ___oldDevice0; NullCheck(L_13); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_14 = L_13->get_m_Description_28(); NullCheck(L_12); L_12->set_m_Description_28(L_14); // if (oldDevice.native) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_15 = ___oldDevice0; NullCheck(L_15); bool L_16; L_16 = InputDevice_get_native_m480C408308E3B4FAB47D7551025D405E250C0F78(L_15, /*hidden argument*/NULL); if (!L_16) { goto IL_0055; } } { // newDevice.m_DeviceFlags |= InputDevice.DeviceFlags.Native; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_17 = V_0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_18 = L_17; NullCheck(L_18); int32_t L_19 = L_18->get_m_DeviceFlags_24(); NullCheck(L_18); L_18->set_m_DeviceFlags_24(((int32_t)((int32_t)L_19|(int32_t)((int32_t)16)))); } IL_0055: { // if (oldDevice.remote) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_20 = ___oldDevice0; NullCheck(L_20); bool L_21; L_21 = InputDevice_get_remote_mC1C2A5CB87863CFD667C57ECA5D5847A93101832(L_20, /*hidden argument*/NULL); if (!L_21) { goto IL_006b; } } { // newDevice.m_DeviceFlags |= InputDevice.DeviceFlags.Remote; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_22 = V_0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_23 = L_22; NullCheck(L_23); int32_t L_24 = L_23->get_m_DeviceFlags_24(); NullCheck(L_23); L_23->set_m_DeviceFlags_24(((int32_t)((int32_t)L_24|(int32_t)8))); } IL_006b: { // if (!oldDevice.enabled) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_25 = ___oldDevice0; NullCheck(L_25); bool L_26; L_26 = InputDevice_get_enabled_m9804D43CD889D2D99E778707FE7BC00F4B54C70E(L_25, /*hidden argument*/NULL); if (L_26) { goto IL_0091; } } { // newDevice.m_DeviceFlags |= InputDevice.DeviceFlags.DisabledStateHasBeenQueriedFromRuntime; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_27 = V_0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_28 = L_27; NullCheck(L_28); int32_t L_29 = L_28->get_m_DeviceFlags_24(); NullCheck(L_28); L_28->set_m_DeviceFlags_24(((int32_t)((int32_t)L_29|(int32_t)((int32_t)64)))); // newDevice.m_DeviceFlags |= InputDevice.DeviceFlags.DisabledInFrontend; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_30 = V_0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_31 = L_30; NullCheck(L_31); int32_t L_32 = L_31->get_m_DeviceFlags_24(); NullCheck(L_31); L_31->set_m_DeviceFlags_24(((int32_t)((int32_t)L_32|(int32_t)((int32_t)32)))); } IL_0091: { // AddDevice(newDevice); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_33 = V_0; InputManager_AddDevice_m46C38DC839860EE2EB54FFD22557FBCB6249CCD8(__this, L_33, /*hidden argument*/NULL); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::AddAvailableDevicesMatchingDescription(UnityEngine.InputSystem.Layouts.InputDeviceMatcher,UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_AddAvailableDevicesMatchingDescription_m656E5E99F204E27447801478E4234975750E61A2 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 ___matcher0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___layout1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntimeExtensions_DeviceCommand_TisEnableDeviceCommand_tB57B3D3EDA2CD18BF45CCDB5132C993C6FBFA613_m6DA0519E09D540313D30CAF703C46549C6C788FF_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; EnableDeviceCommand_tB57B3D3EDA2CD18BF45CCDB5132C993C6FBFA613 V_2; memset((&V_2), 0, sizeof(V_2)); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_3; memset((&V_3), 0, sizeof(V_3)); Exception_t * V_4 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 G_B6_0; memset((&G_B6_0), 0, sizeof(G_B6_0)); RuntimeObject * G_B6_1 = NULL; int32_t G_B6_2 = 0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED G_B6_3; memset((&G_B6_3), 0, sizeof(G_B6_3)); InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * G_B6_4 = NULL; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 G_B5_0; memset((&G_B5_0), 0, sizeof(G_B5_0)); RuntimeObject * G_B5_1 = NULL; int32_t G_B5_2 = 0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED G_B5_3; memset((&G_B5_3), 0, sizeof(G_B5_3)); InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * G_B5_4 = NULL; int32_t G_B7_0 = 0; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 G_B7_1; memset((&G_B7_1), 0, sizeof(G_B7_1)); RuntimeObject * G_B7_2 = NULL; int32_t G_B7_3 = 0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED G_B7_4; memset((&G_B7_4), 0, sizeof(G_B7_4)); InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * G_B7_5 = NULL; { // for (var i = 0; i < m_AvailableDeviceCount; ++i) V_0 = 0; goto IL_00ec; } IL_0007: { // if (m_AvailableDevices[i].isRemoved) AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330* L_0 = __this->get_m_AvailableDevices_10(); int32_t L_1 = V_0; NullCheck(L_0); bool L_2 = ((L_0)->GetAddressAt(static_cast(L_1)))->get_isRemoved_3(); if (L_2) { goto IL_00e8; } } { // var deviceId = m_AvailableDevices[i].deviceId; AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330* L_3 = __this->get_m_AvailableDevices_10(); int32_t L_4 = V_0; NullCheck(L_3); int32_t L_5 = ((L_3)->GetAddressAt(static_cast(L_4)))->get_deviceId_1(); V_1 = L_5; // if (TryGetDeviceById(deviceId) != null) int32_t L_6 = V_1; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_7; L_7 = InputManager_TryGetDeviceById_m04896C1A02E97E7B7322C28FDC002823CDB6167B(__this, L_6, /*hidden argument*/NULL); if (L_7) { goto IL_00e8; } } { // if (matcher.MatchPercentage(m_AvailableDevices[i].description) > 0f) AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330* L_8 = __this->get_m_AvailableDevices_10(); int32_t L_9 = V_0; NullCheck(L_8); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_10 = ((L_8)->GetAddressAt(static_cast(L_9)))->get_description_0(); float L_11; L_11 = InputDeviceMatcher_MatchPercentage_m68081E99E1CCD963DEB980EB439BECAB338A62FB((InputDeviceMatcher_tFC41EBE6D273378A154C6DFD759DD75D23C99E57 *)(&___matcher0), L_10, /*hidden argument*/NULL); if ((!(((float)L_11) > ((float)(0.0f))))) { goto IL_00e8; } } IL_005d: try { // begin try (depth: 1) { // AddDevice(layout, deviceId, deviceDescription: m_AvailableDevices[i].description, // deviceFlags: m_AvailableDevices[i].isNative ? InputDevice.DeviceFlags.Native : 0); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_12 = ___layout1; int32_t L_13 = V_1; AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330* L_14 = __this->get_m_AvailableDevices_10(); int32_t L_15 = V_0; NullCheck(L_14); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_16 = ((L_14)->GetAddressAt(static_cast(L_15)))->get_description_0(); AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330* L_17 = __this->get_m_AvailableDevices_10(); int32_t L_18 = V_0; NullCheck(L_17); bool L_19 = ((L_17)->GetAddressAt(static_cast(L_18)))->get_isNative_2(); G_B5_0 = L_16; G_B5_1 = NULL; G_B5_2 = L_13; G_B5_3 = L_12; G_B5_4 = __this; if (L_19) { G_B6_0 = L_16; G_B6_1 = NULL; G_B6_2 = L_13; G_B6_3 = L_12; G_B6_4 = __this; goto IL_0088; } } IL_0085: { G_B7_0 = 0; G_B7_1 = G_B5_0; G_B7_2 = G_B5_1; G_B7_3 = G_B5_2; G_B7_4 = G_B5_3; G_B7_5 = G_B5_4; goto IL_008a; } IL_0088: { G_B7_0 = ((int32_t)16); G_B7_1 = G_B6_0; G_B7_2 = G_B6_1; G_B7_3 = G_B6_2; G_B7_4 = G_B6_3; G_B7_5 = G_B6_4; } IL_008a: { il2cpp_codegen_initobj((&V_3), sizeof(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED )); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_20 = V_3; NullCheck(G_B7_5); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_21; L_21 = InputManager_AddDevice_m10EE44C62BCA48C746ED6EC0E16FB6FFF6ED0328(G_B7_5, G_B7_4, G_B7_3, (String_t*)G_B7_2, G_B7_1, G_B7_0, L_20, /*hidden argument*/NULL); // } goto IL_00d3; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_009b; } throw e; } CATCH_009b: { // begin catch(System.Exception) // catch (Exception exception) V_4 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)); // Debug.LogError( // $"Layout '{layout}' matches existing device '{m_AvailableDevices[i].description}' but failed to instantiate: {exception}"); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_22 = ___layout1; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_23 = L_22; RuntimeObject * L_24 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_il2cpp_TypeInfo_var)), &L_23); AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330* L_25 = __this->get_m_AvailableDevices_10(); int32_t L_26 = V_0; NullCheck(L_25); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_27 = ((L_25)->GetAddressAt(static_cast(L_26)))->get_description_0(); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_28 = L_27; RuntimeObject * L_29 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_il2cpp_TypeInfo_var)), &L_28); Exception_t * L_30 = V_4; String_t* L_31; L_31 = String_Format_mD0D523A440845BA7F58E68187E029DC9AB821CED(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA634EF069D76C47E8C027E49D022346C000C167B)), L_24, L_29, L_30, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var))); Debug_LogError_m5952BCE5DC0EF798B31FA983B9CE42A5A1F82DE1(L_31, /*hidden argument*/NULL); // Debug.LogException(exception); Exception_t * L_32 = V_4; Debug_LogException_m418B8879895C54AF03169B53DAA24EE9067E3DC7(L_32, /*hidden argument*/NULL); // continue; IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_00e8; } // end catch (depth: 1) IL_00d3: { // var command = EnableDeviceCommand.Create(); EnableDeviceCommand_tB57B3D3EDA2CD18BF45CCDB5132C993C6FBFA613 L_33; L_33 = EnableDeviceCommand_Create_m8A9E610496B41B0E9209C6A3D29C9AC956AB3206(/*hidden argument*/NULL); V_2 = L_33; // m_Runtime.DeviceCommand(deviceId, ref command); RuntimeObject* L_34 = __this->get_m_Runtime_31(); int32_t L_35 = V_1; int64_t L_36; L_36 = InputRuntimeExtensions_DeviceCommand_TisEnableDeviceCommand_tB57B3D3EDA2CD18BF45CCDB5132C993C6FBFA613_m6DA0519E09D540313D30CAF703C46549C6C788FF(L_34, L_35, (EnableDeviceCommand_tB57B3D3EDA2CD18BF45CCDB5132C993C6FBFA613 *)(&V_2), /*hidden argument*/InputRuntimeExtensions_DeviceCommand_TisEnableDeviceCommand_tB57B3D3EDA2CD18BF45CCDB5132C993C6FBFA613_m6DA0519E09D540313D30CAF703C46549C6C788FF_RuntimeMethod_var); } IL_00e8: { // for (var i = 0; i < m_AvailableDeviceCount; ++i) int32_t L_37 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_37, (int32_t)1)); } IL_00ec: { // for (var i = 0; i < m_AvailableDeviceCount; ++i) int32_t L_38 = V_0; int32_t L_39 = __this->get_m_AvailableDeviceCount_9(); if ((((int32_t)L_38) < ((int32_t)L_39))) { goto IL_0007; } } { // } return; } } // System.Void UnityEngine.InputSystem.InputManager::RemoveControlLayout(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_RemoveControlLayout_m043168AAF28DF49E069AA1117B5152C1965C2961 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, String_t* ___name0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DelegateHelpers_InvokeCallbacksSafe_TisString_t_TisInputControlLayoutChange_tE5631ED390D3B861F06F45893369D3E67C90291A_m503B6ED6A7016E0FA0849F986757218D724D001A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Remove_m53A76BB8418223DACDB6F8F02A0B2EFE29B7F732_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Remove_m947D65A5DF070987EB824FD37FB2A9386DB8D3D3_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Remove_mBDE1B0F245A6B9191F016A1F381917EB331C9F9B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Remove_mCB615177BD1FE54FDAF26B44BC9A59954F6C4257_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5742AB535A524B7E9D2BBC75E3B43257D3C75064); s_Il2CppMethodInitialized = true; } InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * V_2 = NULL; { // if (string.IsNullOrEmpty(name)) String_t* L_0 = ___name0; bool L_1; L_1 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0013; } } { // throw new ArgumentNullException(nameof(name)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_RemoveControlLayout_m043168AAF28DF49E069AA1117B5152C1965C2961_RuntimeMethod_var))); } IL_0013: { // var internedName = new InternedString(name); String_t* L_3 = ___name0; InternedString__ctor_mE81A2A4EA05081A96717682ACF38746482E3CF62((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&V_0), L_3, /*hidden argument*/NULL); // for (var i = 0; i < m_DevicesCount;) V_1 = 0; goto IL_0040; } IL_001f: { // var device = m_Devices[i]; InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* L_4 = __this->get_m_Devices_7(); int32_t L_5 = V_1; NullCheck(L_4); int32_t L_6 = L_5; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_7 = (L_4)->GetAt(static_cast(L_6)); V_2 = L_7; // if (IsControlOrChildUsingLayoutRecursive(device, internedName)) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_8 = V_2; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_9 = V_0; bool L_10; L_10 = InputManager_IsControlOrChildUsingLayoutRecursive_m7E722729D9FCA899B15A237F46657892D7D8D44E(__this, L_8, L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_003c; } } { // RemoveDevice(device, keepOnListOfAvailableDevices: true); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_11 = V_2; InputManager_RemoveDevice_m078BD5E7310B7B57E282ECDD0972A6641F66C2C0(__this, L_11, (bool)1, /*hidden argument*/NULL); // } goto IL_0040; } IL_003c: { // ++i; int32_t L_12 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_0040: { // for (var i = 0; i < m_DevicesCount;) int32_t L_13 = V_1; int32_t L_14 = __this->get_m_DevicesCount_6(); if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_001f; } } { // m_Layouts.layoutTypes.Remove(internedName); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_15 = __this->get_address_of_m_Layouts_2(); Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * L_16 = L_15->get_layoutTypes_1(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_17 = V_0; NullCheck(L_16); bool L_18; L_18 = Dictionary_2_Remove_mBDE1B0F245A6B9191F016A1F381917EB331C9F9B(L_16, L_17, /*hidden argument*/Dictionary_2_Remove_mBDE1B0F245A6B9191F016A1F381917EB331C9F9B_RuntimeMethod_var); // m_Layouts.layoutStrings.Remove(internedName); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_19 = __this->get_address_of_m_Layouts_2(); Dictionary_2_tEF69AB24B90083667848FA18EB11001609E77E9E * L_20 = L_19->get_layoutStrings_2(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_21 = V_0; NullCheck(L_20); bool L_22; L_22 = Dictionary_2_Remove_mCB615177BD1FE54FDAF26B44BC9A59954F6C4257(L_20, L_21, /*hidden argument*/Dictionary_2_Remove_mCB615177BD1FE54FDAF26B44BC9A59954F6C4257_RuntimeMethod_var); // m_Layouts.layoutBuilders.Remove(internedName); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_23 = __this->get_address_of_m_Layouts_2(); Dictionary_2_tAABCF01104CEF2E181F1448D23A29A42D7B120A9 * L_24 = L_23->get_layoutBuilders_3(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_25 = V_0; NullCheck(L_24); bool L_26; L_26 = Dictionary_2_Remove_m53A76BB8418223DACDB6F8F02A0B2EFE29B7F732(L_24, L_25, /*hidden argument*/Dictionary_2_Remove_m53A76BB8418223DACDB6F8F02A0B2EFE29B7F732_RuntimeMethod_var); // m_Layouts.baseLayoutTable.Remove(internedName); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_27 = __this->get_address_of_m_Layouts_2(); Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540 * L_28 = L_27->get_baseLayoutTable_4(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_29 = V_0; NullCheck(L_28); bool L_30; L_30 = Dictionary_2_Remove_m947D65A5DF070987EB824FD37FB2A9386DB8D3D3(L_28, L_29, /*hidden argument*/Dictionary_2_Remove_m947D65A5DF070987EB824FD37FB2A9386DB8D3D3_RuntimeMethod_var); // ++m_LayoutRegistrationVersion; int32_t L_31 = __this->get_m_LayoutRegistrationVersion_0(); __this->set_m_LayoutRegistrationVersion_0(((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1))); // DelegateHelpers.InvokeCallbacksSafe(ref m_LayoutChangeListeners, name, InputControlLayoutChange.Removed, "InputSystem.onLayoutChange"); CallbackArray_1_t506D5A43E1BA50974832B6281CE0E05C835BD3A9 * L_32 = __this->get_address_of_m_LayoutChangeListeners_20(); String_t* L_33 = ___name0; DelegateHelpers_InvokeCallbacksSafe_TisString_t_TisInputControlLayoutChange_tE5631ED390D3B861F06F45893369D3E67C90291A_m503B6ED6A7016E0FA0849F986757218D724D001A((CallbackArray_1_t506D5A43E1BA50974832B6281CE0E05C835BD3A9 *)L_32, L_33, 1, _stringLiteral5742AB535A524B7E9D2BBC75E3B43257D3C75064, NULL, /*hidden argument*/DelegateHelpers_InvokeCallbacksSafe_TisString_t_TisInputControlLayoutChange_tE5631ED390D3B861F06F45893369D3E67C90291A_m503B6ED6A7016E0FA0849F986757218D724D001A_RuntimeMethod_var); // } return; } } // UnityEngine.InputSystem.Layouts.InputControlLayout UnityEngine.InputSystem.InputManager::TryLoadControlLayout(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741 * InputManager_TryLoadControlLayout_mD6C96C49C4381A28D51665EDC5C8169633C44B06 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_0; memset((&V_0), 0, sizeof(V_0)); { // if (type == null) Type_t * L_0 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { // throw new ArgumentNullException(nameof(type)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_TryLoadControlLayout_mD6C96C49C4381A28D51665EDC5C8169633C44B06_RuntimeMethod_var))); } IL_0014: { // if (!typeof(InputControl).IsAssignableFrom(type)) RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast (InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4; L_4 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_3, /*hidden argument*/NULL); Type_t * L_5 = ___type0; NullCheck(L_4); bool L_6; L_6 = VirtFuncInvoker1< bool, Type_t * >::Invoke(115 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_4, L_5); if (L_6) { goto IL_0046; } } { // throw new ArgumentException($"Type '{type.Name}' is not an InputControl", nameof(type)); Type_t * L_7 = ___type0; NullCheck(L_7); String_t* L_8; L_8 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_7); String_t* L_9; L_9 = String_Concat_mC41740F000A5A48F8D313FB4CEE0E35E207A2632(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3C686C624D22B0C45E4FADFB00FA535DDDC88AD7)), L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral92B8E551EF78EA21EABB85995C1DDDF9474CD320)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_10 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_10, L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_TryLoadControlLayout_mD6C96C49C4381A28D51665EDC5C8169633C44B06_RuntimeMethod_var))); } IL_0046: { // var layoutName = m_Layouts.TryFindLayoutForType(type); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_11 = __this->get_address_of_m_Layouts_2(); Type_t * L_12 = ___type0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_13; L_13 = Collection_TryFindLayoutForType_mC84D3FC044E2F243F888F3335424CCCA07072AC9((Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F *)L_11, L_12, /*hidden argument*/NULL); V_0 = L_13; // if (layoutName.IsEmpty()) bool L_14; L_14 = InternedString_IsEmpty_mDC1F123EBDF899AB57EDDCFFC3F67DA84A2CC2AD((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&V_0), /*hidden argument*/NULL); if (!L_14) { goto IL_007c; } } { // throw new ArgumentException( // $"Type '{type.Name}' has not been registered as a control layout", nameof(type)); Type_t * L_15 = ___type0; NullCheck(L_15); String_t* L_16; L_16 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_15); String_t* L_17; L_17 = String_Concat_mC41740F000A5A48F8D313FB4CEE0E35E207A2632(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3C686C624D22B0C45E4FADFB00FA535DDDC88AD7)), L_16, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral86186031B6A596FFFE4131DF258F8F1FF70E4951)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_18 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_18, L_17, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_TryLoadControlLayout_mD6C96C49C4381A28D51665EDC5C8169633C44B06_RuntimeMethod_var))); } IL_007c: { // return m_Layouts.TryLoadLayout(layoutName); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_19 = __this->get_address_of_m_Layouts_2(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_20 = V_0; InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741 * L_21; L_21 = Collection_TryLoadLayout_m541F8A3B3636CEAF527E49926F71365C179E09B1((Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F *)L_19, L_20, (Dictionary_2_t5CDE7C1F4CCF20D97AD81FE47A410DD3383EFB65 *)NULL, /*hidden argument*/NULL); return L_21; } } // UnityEngine.InputSystem.Layouts.InputControlLayout UnityEngine.InputSystem.InputManager::TryLoadControlLayout(UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741 * InputManager_TryLoadControlLayout_m0AD74BBF15B296CA7058B337E3DC7665D2F719E6 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___name0, const RuntimeMethod* method) { { // return m_Layouts.TryLoadLayout(name); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_0 = __this->get_address_of_m_Layouts_2(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_1 = ___name0; InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741 * L_2; L_2 = Collection_TryLoadLayout_m541F8A3B3636CEAF527E49926F71365C179E09B1((Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F *)L_0, L_1, (Dictionary_2_t5CDE7C1F4CCF20D97AD81FE47A410DD3383EFB65 *)NULL, /*hidden argument*/NULL); return L_2; } } // UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.InputManager::TryFindMatchingControlLayout(UnityEngine.InputSystem.Layouts.InputDeviceDescription&,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED InputManager_TryFindMatchingControlLayout_mF1C449D35DF64AD63A3A8D45080DA7F592B38945 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * ___deviceDescription0, int32_t ___deviceId1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_LockForChanges_m34F8D18AD56D842C0F334D4BEFAC48F76C292B20_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_UnlockForChanges_mE6D18559C032E4643DB6FEC235577360EC6EC1CD_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_get_Item_m495347129AF9025FE046E4DEABC0D841FD5D4CE9_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_get_length_mEC75AEA8B81974DD2F978C30B46B7C3935C25E6F_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputManager_U3CTryFindMatchingControlLayoutU3Eb__72_0_m9782F997CC2BF5AD783CEE16DEDFDA81447136FA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_0; memset((&V_0), 0, sizeof(V_0)); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_1; memset((&V_1), 0, sizeof(V_1)); Type_t * V_2 = NULL; bool V_3 = false; int32_t V_4 = 0; String_t* V_5 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // var layoutName = m_Layouts.TryFindMatchingLayout(deviceDescription); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_0 = __this->get_address_of_m_Layouts_2(); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * L_1 = ___deviceDescription0; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_2 = (*(InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)L_1); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_3; L_3 = Collection_TryFindMatchingLayout_m2B4AA3663CB2A2306B172426C02F9C8C42B09AC3((Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F *)L_0, L_2, /*hidden argument*/NULL); V_0 = L_3; // if (layoutName.IsEmpty()) bool L_4; L_4 = InternedString_IsEmpty_mDC1F123EBDF899AB57EDDCFFC3F67DA84A2CC2AD((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&V_0), /*hidden argument*/NULL); if (!L_4) { goto IL_006a; } } { // if (!string.IsNullOrEmpty(deviceDescription.deviceClass)) InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * L_5 = ___deviceDescription0; String_t* L_6; L_6 = InputDeviceDescription_get_deviceClass_m04BB88F15F817900CF7457A2E7FC65F5618AD1AF_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)L_5, /*hidden argument*/NULL); bool L_7; L_7 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_6, /*hidden argument*/NULL); if (L_7) { goto IL_006a; } } { // var deviceClassLowerCase = new InternedString(deviceDescription.deviceClass); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * L_8 = ___deviceDescription0; String_t* L_9; L_9 = InputDeviceDescription_get_deviceClass_m04BB88F15F817900CF7457A2E7FC65F5618AD1AF_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)L_8, /*hidden argument*/NULL); InternedString__ctor_mE81A2A4EA05081A96717682ACF38746482E3CF62((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&V_1), L_9, /*hidden argument*/NULL); // var type = m_Layouts.GetControlTypeForLayout(deviceClassLowerCase); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_10 = __this->get_address_of_m_Layouts_2(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_11 = V_1; Type_t * L_12; L_12 = Collection_GetControlTypeForLayout_mBBADAF614756399C63F958B83124F2DC7E98AC5C((Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F *)L_10, L_11, /*hidden argument*/NULL); V_2 = L_12; // if (type != null && typeof(InputDevice).IsAssignableFrom(type)) Type_t * L_13 = V_2; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_14; L_14 = Type_op_Inequality_m519B1E8F2F1E2101ADF863401FCAE38210395368(L_13, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_14) { goto IL_006a; } } { RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_15 = { reinterpret_cast (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_16; L_16 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_15, /*hidden argument*/NULL); Type_t * L_17 = V_2; NullCheck(L_16); bool L_18; L_18 = VirtFuncInvoker1< bool, Type_t * >::Invoke(115 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_16, L_17); if (!L_18) { goto IL_006a; } } { // layoutName = new InternedString(deviceDescription.deviceClass); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * L_19 = ___deviceDescription0; String_t* L_20; L_20 = InputDeviceDescription_get_deviceClass_m04BB88F15F817900CF7457A2E7FC65F5618AD1AF_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)L_19, /*hidden argument*/NULL); InternedString__ctor_mE81A2A4EA05081A96717682ACF38746482E3CF62((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&V_0), L_20, /*hidden argument*/NULL); } IL_006a: { // if (m_DeviceFindLayoutCallbacks.length > 0) CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 * L_21 = __this->get_address_of_m_DeviceFindLayoutCallbacks_18(); int32_t L_22; L_22 = CallbackArray_1_get_length_mEC75AEA8B81974DD2F978C30B46B7C3935C25E6F((CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 *)L_21, /*hidden argument*/CallbackArray_1_get_length_mEC75AEA8B81974DD2F978C30B46B7C3935C25E6F_RuntimeMethod_var); if ((((int32_t)L_22) <= ((int32_t)0))) { goto IL_0129; } } { // if (m_DeviceFindExecuteCommandDelegate == null) InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D * L_23 = __this->get_m_DeviceFindExecuteCommandDelegate_29(); if (L_23) { goto IL_0095; } } { // m_DeviceFindExecuteCommandDelegate = // (ref InputDeviceCommand commandRef) => // { // if (m_DeviceFindExecuteCommandDeviceId == InputDevice.InvalidDeviceId) // return InputDeviceCommand.GenericFailure; // return m_Runtime.DeviceCommand(m_DeviceFindExecuteCommandDeviceId, ref commandRef); // }; InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D * L_24 = (InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D *)il2cpp_codegen_object_new(InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D_il2cpp_TypeInfo_var); InputDeviceExecuteCommandDelegate__ctor_m5810591B3A01F4C5C0F075DC1971FA0C1101E86F(L_24, __this, (intptr_t)((intptr_t)InputManager_U3CTryFindMatchingControlLayoutU3Eb__72_0_m9782F997CC2BF5AD783CEE16DEDFDA81447136FA_RuntimeMethod_var), /*hidden argument*/NULL); __this->set_m_DeviceFindExecuteCommandDelegate_29(L_24); } IL_0095: { // m_DeviceFindExecuteCommandDeviceId = deviceId; int32_t L_25 = ___deviceId1; __this->set_m_DeviceFindExecuteCommandDeviceId_30(L_25); // var haveOverriddenLayoutName = false; V_3 = (bool)0; // m_DeviceFindLayoutCallbacks.LockForChanges(); CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 * L_26 = __this->get_address_of_m_DeviceFindLayoutCallbacks_18(); CallbackArray_1_LockForChanges_m34F8D18AD56D842C0F334D4BEFAC48F76C292B20((CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 *)L_26, /*hidden argument*/CallbackArray_1_LockForChanges_m34F8D18AD56D842C0F334D4BEFAC48F76C292B20_RuntimeMethod_var); // for (var i = 0; i < m_DeviceFindLayoutCallbacks.length; ++i) V_4 = 0; goto IL_010f; } IL_00ae: { } IL_00af: try { // begin try (depth: 1) { // var newLayout = m_DeviceFindLayoutCallbacks[i](ref deviceDescription, layoutName, m_DeviceFindExecuteCommandDelegate); CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 * L_27 = __this->get_address_of_m_DeviceFindLayoutCallbacks_18(); int32_t L_28 = V_4; InputDeviceFindControlLayoutDelegate_tE30412E20D6F6870BF090C6D6C4CA9B4CFD0978F * L_29; L_29 = CallbackArray_1_get_Item_m495347129AF9025FE046E4DEABC0D841FD5D4CE9((CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 *)L_27, L_28, /*hidden argument*/CallbackArray_1_get_Item_m495347129AF9025FE046E4DEABC0D841FD5D4CE9_RuntimeMethod_var); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * L_30 = ___deviceDescription0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_31 = V_0; String_t* L_32; L_32 = InternedString_op_Implicit_m5C5E28D59A0F856D52E38C0C147176E4B306D6BD(L_31, /*hidden argument*/NULL); InputDeviceExecuteCommandDelegate_tF81A7031A4D6D74BFB08C8CF4D1BA120DC47822D * L_33 = __this->get_m_DeviceFindExecuteCommandDelegate_29(); NullCheck(L_29); String_t* L_34; L_34 = InputDeviceFindControlLayoutDelegate_Invoke_mB36B7B8A0168707534771FBADBF2EE3E0E9C80FE(L_29, (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)L_30, L_32, L_33, /*hidden argument*/NULL); V_5 = L_34; // if (!string.IsNullOrEmpty(newLayout) && !haveOverriddenLayoutName) String_t* L_35 = V_5; bool L_36; L_36 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_35, /*hidden argument*/NULL); if (L_36) { goto IL_00e6; } } IL_00d9: { bool L_37 = V_3; if (L_37) { goto IL_00e6; } } IL_00dc: { // layoutName = new InternedString(newLayout); String_t* L_38 = V_5; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_39; memset((&L_39), 0, sizeof(L_39)); InternedString__ctor_mE81A2A4EA05081A96717682ACF38746482E3CF62((&L_39), L_38, /*hidden argument*/NULL); V_0 = L_39; // haveOverriddenLayoutName = true; V_3 = (bool)1; } IL_00e6: { // } goto IL_0109; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00e8; } throw e; } CATCH_00e8: { // begin catch(System.Exception) // Debug.LogError($"{exception.GetType().Name} while executing 'InputSystem.onFindLayoutForDevice' callbacks"); Exception_t * L_40 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)); NullCheck(L_40); Type_t * L_41; L_41 = Exception_GetType_mC5B8B5C944B326B751282AB0E8C25A7F85457D9F(L_40, /*hidden argument*/NULL); NullCheck(L_41); String_t* L_42; L_42 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_41); String_t* L_43; L_43 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(L_42, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1AC853141D7454B4C667A91DBE770D9B7EFB2538)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var))); Debug_LogError_m5952BCE5DC0EF798B31FA983B9CE42A5A1F82DE1(L_43, /*hidden argument*/NULL); // Debug.LogException(exception); Debug_LogException_m418B8879895C54AF03169B53DAA24EE9067E3DC7(L_40, /*hidden argument*/NULL); // } IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0109; } // end catch (depth: 1) IL_0109: { // for (var i = 0; i < m_DeviceFindLayoutCallbacks.length; ++i) int32_t L_44 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1)); } IL_010f: { // for (var i = 0; i < m_DeviceFindLayoutCallbacks.length; ++i) int32_t L_45 = V_4; CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 * L_46 = __this->get_address_of_m_DeviceFindLayoutCallbacks_18(); int32_t L_47; L_47 = CallbackArray_1_get_length_mEC75AEA8B81974DD2F978C30B46B7C3935C25E6F((CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 *)L_46, /*hidden argument*/CallbackArray_1_get_length_mEC75AEA8B81974DD2F978C30B46B7C3935C25E6F_RuntimeMethod_var); if ((((int32_t)L_45) < ((int32_t)L_47))) { goto IL_00ae; } } { // m_DeviceFindLayoutCallbacks.UnlockForChanges(); CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 * L_48 = __this->get_address_of_m_DeviceFindLayoutCallbacks_18(); CallbackArray_1_UnlockForChanges_mE6D18559C032E4643DB6FEC235577360EC6EC1CD((CallbackArray_1_t93E9EAE4A3E6A2C408A9BE7E5D49BC3C6211F0D8 *)L_48, /*hidden argument*/CallbackArray_1_UnlockForChanges_mE6D18559C032E4643DB6FEC235577360EC6EC1CD_RuntimeMethod_var); } IL_0129: { // return layoutName; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_49 = V_0; return L_49; } } // UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.InputManager::FindOrRegisterDeviceLayoutForType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED InputManager_FindOrRegisterDeviceLayoutForType_m835054747AC47CD4D0D7EB2410A83F947DD2C4BD (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Type_t * ___type0, const RuntimeMethod* method) { InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_0; memset((&V_0), 0, sizeof(V_0)); { // var layoutName = m_Layouts.TryFindLayoutForType(type); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_0 = __this->get_address_of_m_Layouts_2(); Type_t * L_1 = ___type0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_2; L_2 = Collection_TryFindLayoutForType_mC84D3FC044E2F243F888F3335424CCCA07072AC9((Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F *)L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; // if (layoutName.IsEmpty()) bool L_3; L_3 = InternedString_IsEmpty_mDC1F123EBDF899AB57EDDCFFC3F67DA84A2CC2AD((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&V_0), /*hidden argument*/NULL); if (!L_3) { goto IL_0039; } } { // if (layoutName.IsEmpty()) bool L_4; L_4 = InternedString_IsEmpty_mDC1F123EBDF899AB57EDDCFFC3F67DA84A2CC2AD((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&V_0), /*hidden argument*/NULL); if (!L_4) { goto IL_0039; } } { // layoutName = new InternedString(type.Name); Type_t * L_5 = ___type0; NullCheck(L_5); String_t* L_6; L_6 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_5); InternedString__ctor_mE81A2A4EA05081A96717682ACF38746482E3CF62((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&V_0), L_6, /*hidden argument*/NULL); // RegisterControlLayout(type.Name, type); Type_t * L_7 = ___type0; NullCheck(L_7); String_t* L_8; L_8 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_7); Type_t * L_9 = ___type0; InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, L_8, L_9, /*hidden argument*/NULL); } IL_0039: { // return layoutName; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_10 = V_0; return L_10; } } // System.Boolean UnityEngine.InputSystem.InputManager::IsDeviceLayoutMarkedAsSupportedInSettings(UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_IsDeviceLayoutMarkedAsSupportedInSettings_mAC05AE1CC0DFEED3750D6090EFE9D24E0C5C9E98 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___layoutName0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Count_m27C66CAC40DF36D4D4322096DE84D39BE2753D33_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Item_mDD866694F03820E5166C4386797E9389D1C20277_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } ReadOnlyArray_1_t1395593458B5F4A22EB99780AA86DA049C3EACEF V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_2; memset((&V_2), 0, sizeof(V_2)); { // var supportedDevices = m_Settings.supportedDevices; InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_0 = __this->get_m_Settings_33(); NullCheck(L_0); ReadOnlyArray_1_t1395593458B5F4A22EB99780AA86DA049C3EACEF L_1; L_1 = InputSettings_get_supportedDevices_m99C6795D226E5619AEBD11AA9DB414B7DF3A8EF5(L_0, /*hidden argument*/NULL); V_0 = L_1; // if (supportedDevices.Count == 0) int32_t L_2; L_2 = ReadOnlyArray_1_get_Count_m27C66CAC40DF36D4D4322096DE84D39BE2753D33_inline((ReadOnlyArray_1_t1395593458B5F4A22EB99780AA86DA049C3EACEF *)(&V_0), /*hidden argument*/ReadOnlyArray_1_get_Count_m27C66CAC40DF36D4D4322096DE84D39BE2753D33_RuntimeMethod_var); if (L_2) { goto IL_0017; } } { // return true; return (bool)1; } IL_0017: { // for (var n = 0; n < supportedDevices.Count; ++n) V_1 = 0; goto IL_0048; } IL_001b: { // var supportedLayout = new InternedString(supportedDevices[n]); int32_t L_3 = V_1; String_t* L_4; L_4 = ReadOnlyArray_1_get_Item_mDD866694F03820E5166C4386797E9389D1C20277((ReadOnlyArray_1_t1395593458B5F4A22EB99780AA86DA049C3EACEF *)(&V_0), L_3, /*hidden argument*/ReadOnlyArray_1_get_Item_mDD866694F03820E5166C4386797E9389D1C20277_RuntimeMethod_var); InternedString__ctor_mE81A2A4EA05081A96717682ACF38746482E3CF62((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&V_2), L_4, /*hidden argument*/NULL); // if (layoutName == supportedLayout || m_Layouts.IsBasedOn(supportedLayout, layoutName)) InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_5 = ___layoutName0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_6 = V_2; bool L_7; L_7 = InternedString_op_Equality_m0D791451F3BDC84D2EBA0F98EA847F781D1F4FA0(L_5, L_6, /*hidden argument*/NULL); if (L_7) { goto IL_0042; } } { Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_8 = __this->get_address_of_m_Layouts_2(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_9 = V_2; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_10 = ___layoutName0; bool L_11; L_11 = Collection_IsBasedOn_m1098F3B9E5E29E134EB147B5A5FB2572485D15CA((Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F *)L_8, L_9, L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_0044; } } IL_0042: { // return true; return (bool)1; } IL_0044: { // for (var n = 0; n < supportedDevices.Count; ++n) int32_t L_12 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_0048: { // for (var n = 0; n < supportedDevices.Count; ++n) int32_t L_13 = V_1; int32_t L_14; L_14 = ReadOnlyArray_1_get_Count_m27C66CAC40DF36D4D4322096DE84D39BE2753D33_inline((ReadOnlyArray_1_t1395593458B5F4A22EB99780AA86DA049C3EACEF *)(&V_0), /*hidden argument*/ReadOnlyArray_1_get_Count_m27C66CAC40DF36D4D4322096DE84D39BE2753D33_RuntimeMethod_var); if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_001b; } } { // return false; return (bool)0; } } // System.Collections.Generic.IEnumerable`1 UnityEngine.InputSystem.InputManager::ListControlLayouts(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputManager_ListControlLayouts_m088CA7232345DB7E3BDE8ADC61CEE803BD301052 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, String_t* ___basedOn0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CListControlLayoutsU3Ed__75_tA3D7E50B5429656CACEB609171EC221DD2A94B89_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { U3CListControlLayoutsU3Ed__75_tA3D7E50B5429656CACEB609171EC221DD2A94B89 * L_0 = (U3CListControlLayoutsU3Ed__75_tA3D7E50B5429656CACEB609171EC221DD2A94B89 *)il2cpp_codegen_object_new(U3CListControlLayoutsU3Ed__75_tA3D7E50B5429656CACEB609171EC221DD2A94B89_il2cpp_TypeInfo_var); U3CListControlLayoutsU3Ed__75__ctor_mDC69315E5A0F2C13794E015121649C30F16CA211(L_0, ((int32_t)-2), /*hidden argument*/NULL); U3CListControlLayoutsU3Ed__75_tA3D7E50B5429656CACEB609171EC221DD2A94B89 * L_1 = L_0; NullCheck(L_1); L_1->set_U3CU3E4__this_5(__this); U3CListControlLayoutsU3Ed__75_tA3D7E50B5429656CACEB609171EC221DD2A94B89 * L_2 = L_1; String_t* L_3 = ___basedOn0; NullCheck(L_2); L_2->set_U3CU3E3__basedOn_4(L_3); return L_2; } } // System.Void UnityEngine.InputSystem.InputManager::SetDeviceUsage(UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_SetDeviceUsage_m28878E20264EFDDB81A1BAAAD8DAB0D774D23606 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___usage1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Count_mB7032E0F55BC9BAC395949F252CE4E2B00451700_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Item_mA008A6D96358A9EE19CCCE5C476367DDC58F0E51_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } ReadOnlyArray_1_t606E37DB0F1B75FCB4C4A029A0F6C2B4AE7DED75 V_0; memset((&V_0), 0, sizeof(V_0)); { // if (device == null) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_0 = ___device0; if (L_0) { goto IL_000e; } } { // throw new ArgumentNullException(nameof(device)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE847FDE91DE0DA95AFBA0EEF52C90BEB4CE621BF)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_SetDeviceUsage_m28878E20264EFDDB81A1BAAAD8DAB0D774D23606_RuntimeMethod_var))); } IL_000e: { // if (device.usages.Count == 1 && device.usages[0] == usage) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_2 = ___device0; NullCheck(L_2); ReadOnlyArray_1_t606E37DB0F1B75FCB4C4A029A0F6C2B4AE7DED75 L_3; L_3 = InputControl_get_usages_m81E30400E8947C9B5EC6A9B4892BFA8C712B11FE(L_2, /*hidden argument*/NULL); V_0 = L_3; int32_t L_4; L_4 = ReadOnlyArray_1_get_Count_mB7032E0F55BC9BAC395949F252CE4E2B00451700_inline((ReadOnlyArray_1_t606E37DB0F1B75FCB4C4A029A0F6C2B4AE7DED75 *)(&V_0), /*hidden argument*/ReadOnlyArray_1_get_Count_mB7032E0F55BC9BAC395949F252CE4E2B00451700_RuntimeMethod_var); if ((!(((uint32_t)L_4) == ((uint32_t)1)))) { goto IL_0037; } } { InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_5 = ___device0; NullCheck(L_5); ReadOnlyArray_1_t606E37DB0F1B75FCB4C4A029A0F6C2B4AE7DED75 L_6; L_6 = InputControl_get_usages_m81E30400E8947C9B5EC6A9B4892BFA8C712B11FE(L_5, /*hidden argument*/NULL); V_0 = L_6; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_7; L_7 = ReadOnlyArray_1_get_Item_mA008A6D96358A9EE19CCCE5C476367DDC58F0E51((ReadOnlyArray_1_t606E37DB0F1B75FCB4C4A029A0F6C2B4AE7DED75 *)(&V_0), 0, /*hidden argument*/ReadOnlyArray_1_get_Item_mA008A6D96358A9EE19CCCE5C476367DDC58F0E51_RuntimeMethod_var); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_8 = ___usage1; bool L_9; L_9 = InternedString_op_Equality_m0D791451F3BDC84D2EBA0F98EA847F781D1F4FA0(L_7, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_0037; } } { // return; return; } IL_0037: { // if (device.usages.Count == 0 && usage.IsEmpty()) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_10 = ___device0; NullCheck(L_10); ReadOnlyArray_1_t606E37DB0F1B75FCB4C4A029A0F6C2B4AE7DED75 L_11; L_11 = InputControl_get_usages_m81E30400E8947C9B5EC6A9B4892BFA8C712B11FE(L_10, /*hidden argument*/NULL); V_0 = L_11; int32_t L_12; L_12 = ReadOnlyArray_1_get_Count_mB7032E0F55BC9BAC395949F252CE4E2B00451700_inline((ReadOnlyArray_1_t606E37DB0F1B75FCB4C4A029A0F6C2B4AE7DED75 *)(&V_0), /*hidden argument*/ReadOnlyArray_1_get_Count_mB7032E0F55BC9BAC395949F252CE4E2B00451700_RuntimeMethod_var); if (L_12) { goto IL_0051; } } { bool L_13; L_13 = InternedString_IsEmpty_mDC1F123EBDF899AB57EDDCFFC3F67DA84A2CC2AD((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&___usage1), /*hidden argument*/NULL); if (!L_13) { goto IL_0051; } } { // return; return; } IL_0051: { // device.ClearDeviceUsages(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_14 = ___device0; NullCheck(L_14); InputDevice_ClearDeviceUsages_m5542D6506AC9250AAE4EF7C2C8D2251BBF438B9F(L_14, /*hidden argument*/NULL); // if (!usage.IsEmpty()) bool L_15; L_15 = InternedString_IsEmpty_mDC1F123EBDF899AB57EDDCFFC3F67DA84A2CC2AD((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&___usage1), /*hidden argument*/NULL); if (L_15) { goto IL_0067; } } { // device.AddDeviceUsage(usage); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_16 = ___device0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_17 = ___usage1; NullCheck(L_16); InputDevice_AddDeviceUsage_m4B3B4CF64903EDCCED4D669B4148C3D7EEF188E8(L_16, L_17, /*hidden argument*/NULL); } IL_0067: { // NotifyUsageChanged(device); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_18 = ___device0; InputManager_NotifyUsageChanged_m7D2BF8FA70610D5D5EC17FC2136C47E3799702EA(__this, L_18, /*hidden argument*/NULL); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::AddDeviceUsage(UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_AddDeviceUsage_m5C4769C436FFF76BBBB5F656977CF35A5907C5BE (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___usage1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArrayExtensions_Contains_TisInternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_m23E2471F1568258A2210D67111E1A3B892C238BF_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // if (device == null) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_0 = ___device0; if (L_0) { goto IL_000e; } } { // throw new ArgumentNullException(nameof(device)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE847FDE91DE0DA95AFBA0EEF52C90BEB4CE621BF)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_AddDeviceUsage_m5C4769C436FFF76BBBB5F656977CF35A5907C5BE_RuntimeMethod_var))); } IL_000e: { // if (usage.IsEmpty()) bool L_2; L_2 = InternedString_IsEmpty_mDC1F123EBDF899AB57EDDCFFC3F67DA84A2CC2AD((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&___usage1), /*hidden argument*/NULL); if (!L_2) { goto IL_0027; } } { // throw new ArgumentException("Usage string cannot be empty", nameof(usage)); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_3 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4B4523E5E32D17473FFCC006C3EF7B5B197C03B1)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3855E8A34957312A6449FC23FFB87754C1D0E662)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_AddDeviceUsage_m5C4769C436FFF76BBBB5F656977CF35A5907C5BE_RuntimeMethod_var))); } IL_0027: { // if (device.usages.Contains(usage)) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_4 = ___device0; NullCheck(L_4); ReadOnlyArray_1_t606E37DB0F1B75FCB4C4A029A0F6C2B4AE7DED75 L_5; L_5 = InputControl_get_usages_m81E30400E8947C9B5EC6A9B4892BFA8C712B11FE(L_4, /*hidden argument*/NULL); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_6 = ___usage1; bool L_7; L_7 = ReadOnlyArrayExtensions_Contains_TisInternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_m23E2471F1568258A2210D67111E1A3B892C238BF(L_5, L_6, /*hidden argument*/ReadOnlyArrayExtensions_Contains_TisInternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_m23E2471F1568258A2210D67111E1A3B892C238BF_RuntimeMethod_var); if (!L_7) { goto IL_0036; } } { // return; return; } IL_0036: { // device.AddDeviceUsage(usage); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_8 = ___device0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_9 = ___usage1; NullCheck(L_8); InputDevice_AddDeviceUsage_m4B3B4CF64903EDCCED4D669B4148C3D7EEF188E8(L_8, L_9, /*hidden argument*/NULL); // NotifyUsageChanged(device); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_10 = ___device0; InputManager_NotifyUsageChanged_m7D2BF8FA70610D5D5EC17FC2136C47E3799702EA(__this, L_10, /*hidden argument*/NULL); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::RemoveDeviceUsage(UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_RemoveDeviceUsage_m0B8DB9C2DAC23A9FBDC0D0ADD3628956905F0B11 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___usage1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArrayExtensions_Contains_TisInternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_m23E2471F1568258A2210D67111E1A3B892C238BF_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // if (device == null) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_0 = ___device0; if (L_0) { goto IL_000e; } } { // throw new ArgumentNullException(nameof(device)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE847FDE91DE0DA95AFBA0EEF52C90BEB4CE621BF)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_RemoveDeviceUsage_m0B8DB9C2DAC23A9FBDC0D0ADD3628956905F0B11_RuntimeMethod_var))); } IL_000e: { // if (usage.IsEmpty()) bool L_2; L_2 = InternedString_IsEmpty_mDC1F123EBDF899AB57EDDCFFC3F67DA84A2CC2AD((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&___usage1), /*hidden argument*/NULL); if (!L_2) { goto IL_0027; } } { // throw new ArgumentException("Usage string cannot be empty", nameof(usage)); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_3 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4B4523E5E32D17473FFCC006C3EF7B5B197C03B1)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3855E8A34957312A6449FC23FFB87754C1D0E662)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_RemoveDeviceUsage_m0B8DB9C2DAC23A9FBDC0D0ADD3628956905F0B11_RuntimeMethod_var))); } IL_0027: { // if (!device.usages.Contains(usage)) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_4 = ___device0; NullCheck(L_4); ReadOnlyArray_1_t606E37DB0F1B75FCB4C4A029A0F6C2B4AE7DED75 L_5; L_5 = InputControl_get_usages_m81E30400E8947C9B5EC6A9B4892BFA8C712B11FE(L_4, /*hidden argument*/NULL); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_6 = ___usage1; bool L_7; L_7 = ReadOnlyArrayExtensions_Contains_TisInternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_m23E2471F1568258A2210D67111E1A3B892C238BF(L_5, L_6, /*hidden argument*/ReadOnlyArrayExtensions_Contains_TisInternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED_m23E2471F1568258A2210D67111E1A3B892C238BF_RuntimeMethod_var); if (L_7) { goto IL_0036; } } { // return; return; } IL_0036: { // device.RemoveDeviceUsage(usage); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_8 = ___device0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_9 = ___usage1; NullCheck(L_8); InputDevice_RemoveDeviceUsage_mFD13B5EB1A60252A88055DCFD1AC662B08816E8E(L_8, L_9, /*hidden argument*/NULL); // NotifyUsageChanged(device); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_10 = ___device0; InputManager_NotifyUsageChanged_m7D2BF8FA70610D5D5EC17FC2136C47E3799702EA(__this, L_10, /*hidden argument*/NULL); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::NotifyUsageChanged(UnityEngine.InputSystem.InputDevice) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_NotifyUsageChanged_m7D2BF8FA70610D5D5EC17FC2136C47E3799702EA (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral84CAACE59D08AF4659A3A7E4D00A4514400CE96A); s_Il2CppMethodInitialized = true; } { // InputActionState.OnDeviceChange(device, InputDeviceChange.UsageChanged); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_0 = ___device0; InputActionState_OnDeviceChange_mE3D72775E04B0D3BE4F7545C51E12185CCAEFF52(L_0, 6, /*hidden argument*/NULL); // DelegateHelpers.InvokeCallbacksSafe(ref m_DeviceChangeListeners, device, InputDeviceChange.UsageChanged, "InputSystem.onDeviceChange"); CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 * L_1 = __this->get_address_of_m_DeviceChangeListeners_16(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_2 = ___device0; DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38((CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 *)L_1, L_2, 6, _stringLiteral84CAACE59D08AF4659A3A7E4D00A4514400CE96A, NULL, /*hidden argument*/DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38_RuntimeMethod_var); // device.MakeCurrent(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_3 = ___device0; NullCheck(L_3); VirtActionInvoker0::Invoke(16 /* System.Void UnityEngine.InputSystem.InputDevice::MakeCurrent() */, L_3); // } return; } } // UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputManager::AddDevice(System.Type,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * InputManager_AddDevice_m8B4E3B162C71C752B257FE4D53A9C265976E5D50 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Type_t * ___type0, String_t* ___name1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_0; memset((&V_0), 0, sizeof(V_0)); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_1; memset((&V_1), 0, sizeof(V_1)); { // if (type == null) Type_t * L_0 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { // throw new ArgumentNullException(nameof(type)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_AddDevice_m8B4E3B162C71C752B257FE4D53A9C265976E5D50_RuntimeMethod_var))); } IL_0014: { // var layoutName = FindOrRegisterDeviceLayoutForType(type); Type_t * L_3 = ___type0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_4; L_4 = InputManager_FindOrRegisterDeviceLayoutForType_m835054747AC47CD4D0D7EB2410A83F947DD2C4BD(__this, L_3, /*hidden argument*/NULL); V_0 = L_4; // return AddDevice(layoutName, name); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_5 = V_0; String_t* L_6; L_6 = InternedString_op_Implicit_m5C5E28D59A0F856D52E38C0C147176E4B306D6BD(L_5, /*hidden argument*/NULL); String_t* L_7 = ___name1; il2cpp_codegen_initobj((&V_1), sizeof(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED )); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_8 = V_1; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_9; L_9 = InputManager_AddDevice_m09F00AD0628BC61DDBA992D0977A018DA68250E6(__this, L_6, L_7, L_8, /*hidden argument*/NULL); return L_9; } } // UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputManager::AddDevice(System.String,System.String,UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * InputManager_AddDevice_m09F00AD0628BC61DDBA992D0977A018DA68250E6 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, String_t* ___layout0, String_t* ___name1, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___variants2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDevice_Build_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_m40E08FFE91FCD1BF977448865B23798106F79A40_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * V_0 = NULL; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 V_1; memset((&V_1), 0, sizeof(V_1)); { // if (string.IsNullOrEmpty(layout)) String_t* L_0 = ___layout0; bool L_1; L_1 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0013; } } { // throw new ArgumentNullException(nameof(layout)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral73F1C0DB7E67894BD0991354AA6CB2DA4A3A5D88)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_AddDevice_m09F00AD0628BC61DDBA992D0977A018DA68250E6_RuntimeMethod_var))); } IL_0013: { // var device = InputDevice.Build(layout, variants); String_t* L_3 = ___layout0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_4 = ___variants2; String_t* L_5; L_5 = InternedString_op_Implicit_m5C5E28D59A0F856D52E38C0C147176E4B306D6BD(L_4, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_1), sizeof(InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 )); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_6 = V_1; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_7; L_7 = InputDevice_Build_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_m40E08FFE91FCD1BF977448865B23798106F79A40(L_3, L_5, L_6, (bool)0, /*hidden argument*/InputDevice_Build_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_m40E08FFE91FCD1BF977448865B23798106F79A40_RuntimeMethod_var); V_0 = L_7; // if (!string.IsNullOrEmpty(name)) String_t* L_8 = ___name1; bool L_9; L_9 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_8, /*hidden argument*/NULL); if (L_9) { goto IL_003e; } } { // device.m_Name = new InternedString(name); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_10 = V_0; String_t* L_11 = ___name1; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_12; memset((&L_12), 0, sizeof(L_12)); InternedString__ctor_mE81A2A4EA05081A96717682ACF38746482E3CF62((&L_12), L_11, /*hidden argument*/NULL); NullCheck(L_10); ((InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *)L_10)->set_m_Name_1(L_12); } IL_003e: { // AddDevice(device); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_13 = V_0; InputManager_AddDevice_m46C38DC839860EE2EB54FFD22557FBCB6249CCD8(__this, L_13, /*hidden argument*/NULL); // return device; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_14 = V_0; return L_14; } } // UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputManager::AddDevice(UnityEngine.InputSystem.Utilities.InternedString,System.Int32,System.String,UnityEngine.InputSystem.Layouts.InputDeviceDescription,UnityEngine.InputSystem.InputDevice/DeviceFlags,UnityEngine.InputSystem.Utilities.InternedString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * InputManager_AddDevice_m10EE44C62BCA48C746ED6EC0E16FB6FFF6ED0328 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___layout0, int32_t ___deviceId1, String_t* ___deviceName2, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___deviceDescription3, int32_t ___deviceFlags4, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___variants5, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDevice_Build_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_m40E08FFE91FCD1BF977448865B23798106F79A40_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * V_0 = NULL; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 V_1; memset((&V_1), 0, sizeof(V_1)); { // var device = InputDevice.Build(new InternedString(layout), // deviceDescription: deviceDescription, // layoutVariants: variants); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_0 = ___layout0; String_t* L_1; L_1 = InternedString_op_Implicit_m5C5E28D59A0F856D52E38C0C147176E4B306D6BD(L_0, /*hidden argument*/NULL); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_2; memset((&L_2), 0, sizeof(L_2)); InternedString__ctor_mE81A2A4EA05081A96717682ACF38746482E3CF62((&L_2), L_1, /*hidden argument*/NULL); String_t* L_3; L_3 = InternedString_op_Implicit_m5C5E28D59A0F856D52E38C0C147176E4B306D6BD(L_2, /*hidden argument*/NULL); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_4 = ___deviceDescription3; V_1 = L_4; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_5 = ___variants5; String_t* L_6; L_6 = InternedString_op_Implicit_m5C5E28D59A0F856D52E38C0C147176E4B306D6BD(L_5, /*hidden argument*/NULL); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_7 = V_1; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_8; L_8 = InputDevice_Build_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_m40E08FFE91FCD1BF977448865B23798106F79A40(L_3, L_6, L_7, (bool)0, /*hidden argument*/InputDevice_Build_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_m40E08FFE91FCD1BF977448865B23798106F79A40_RuntimeMethod_var); V_0 = L_8; // device.m_DeviceId = deviceId; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_9 = V_0; int32_t L_10 = ___deviceId1; NullCheck(L_9); L_9->set_m_DeviceId_25(L_10); // device.m_Description = deviceDescription; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_11 = V_0; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_12 = ___deviceDescription3; NullCheck(L_11); L_11->set_m_Description_28(L_12); // device.m_DeviceFlags |= deviceFlags; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_13 = V_0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_14 = L_13; NullCheck(L_14); int32_t L_15 = L_14->get_m_DeviceFlags_24(); int32_t L_16 = ___deviceFlags4; NullCheck(L_14); L_14->set_m_DeviceFlags_24(((int32_t)((int32_t)L_15|(int32_t)L_16))); // if (!string.IsNullOrEmpty(deviceName)) String_t* L_17 = ___deviceName2; bool L_18; L_18 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_17, /*hidden argument*/NULL); if (L_18) { goto IL_0054; } } { // device.m_Name = new InternedString(deviceName); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_19 = V_0; String_t* L_20 = ___deviceName2; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_21; memset((&L_21), 0, sizeof(L_21)); InternedString__ctor_mE81A2A4EA05081A96717682ACF38746482E3CF62((&L_21), L_20, /*hidden argument*/NULL); NullCheck(L_19); ((InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *)L_19)->set_m_Name_1(L_21); } IL_0054: { // if (!string.IsNullOrEmpty(deviceDescription.product)) String_t* L_22; L_22 = InputDeviceDescription_get_product_mEECD8A9018BF8C49B89256C912EC0AAEE90D4A82_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___deviceDescription3), /*hidden argument*/NULL); bool L_23; L_23 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_22, /*hidden argument*/NULL); if (L_23) { goto IL_006f; } } { // device.m_DisplayName = deviceDescription.product; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_24 = V_0; String_t* L_25; L_25 = InputDeviceDescription_get_product_mEECD8A9018BF8C49B89256C912EC0AAEE90D4A82_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___deviceDescription3), /*hidden argument*/NULL); NullCheck(L_24); ((InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *)L_24)->set_m_DisplayName_3(L_25); } IL_006f: { // AddDevice(device); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_26 = V_0; InputManager_AddDevice_m46C38DC839860EE2EB54FFD22557FBCB6249CCD8(__this, L_26, /*hidden argument*/NULL); // return device; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_27 = V_0; return L_27; } } // System.Void UnityEngine.InputSystem.InputManager::AddDevice(UnityEngine.InputSystem.InputDevice) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_AddDevice_m46C38DC839860EE2EB54FFD22557FBCB6249CCD8 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_AppendWithCapacity_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mBAC377FA55F45B5A5F427BC00EFF2A1FB1C9F988_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_Contains_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mEB17A6E059375C43F892D29500A44FE019B2255E_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m2C27879AD01AA06188580EA811864D14A84C98E8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEventMerger_tFEA3694BDFE9987449D208603D1BABA1EE0E8913_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEventPreProcessor_t402E5A7CA363184CE8C96EE46B2E5880F40181B2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputStateCallbackReceiver_t4C5C8728DA2734584B886F3D78491E19738BC79A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputUpdateCallbackReceiver_tFFF4C988065B2A278B79D375DFA3867CDA147486_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral84CAACE59D08AF4659A3A7E4D00A4514400CE96A); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; int32_t V_1 = 0; { // if (device == null) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_0 = ___device0; if (L_0) { goto IL_000e; } } { // throw new ArgumentNullException(nameof(device)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE847FDE91DE0DA95AFBA0EEF52C90BEB4CE621BF)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_AddDevice_m46C38DC839860EE2EB54FFD22557FBCB6249CCD8_RuntimeMethod_var))); } IL_000e: { // if (string.IsNullOrEmpty(device.layout)) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_2 = ___device0; NullCheck(L_2); String_t* L_3; L_3 = InputControl_get_layout_m6A38EE2D15A5FCFDEE94B4056DD1565E17378454(L_2, /*hidden argument*/NULL); bool L_4; L_4 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_0026; } } { // throw new InvalidOperationException("Device has no associated layout"); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_5 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC25E2EABB1B5620F019225E1898740CE94023E27)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_AddDevice_m46C38DC839860EE2EB54FFD22557FBCB6249CCD8_RuntimeMethod_var))); } IL_0026: { // if (ArrayHelpers.Contains(m_Devices, device)) InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* L_6 = __this->get_m_Devices_7(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_7 = ___device0; bool L_8; L_8 = ArrayHelpers_Contains_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mEB17A6E059375C43F892D29500A44FE019B2255E(L_6, L_7, /*hidden argument*/ArrayHelpers_Contains_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mEB17A6E059375C43F892D29500A44FE019B2255E_RuntimeMethod_var); if (!L_8) { goto IL_0035; } } { // return; return; } IL_0035: { // MakeDeviceNameUnique(device); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_9 = ___device0; InputManager_MakeDeviceNameUnique_m6C64F024E906990155FDEA3DC2617A2B6A59B4B4(__this, L_9, /*hidden argument*/NULL); // AssignUniqueDeviceId(device); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_10 = ___device0; InputManager_AssignUniqueDeviceId_m6641DFB9A3E87C471FB9EAF8EAA487A618E5880D(__this, L_10, /*hidden argument*/NULL); // device.m_DeviceIndex = ArrayHelpers.AppendWithCapacity(ref m_Devices, ref m_DevicesCount, device); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_11 = ___device0; InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6** L_12 = __this->get_address_of_m_Devices_7(); int32_t* L_13 = __this->get_address_of_m_DevicesCount_6(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_14 = ___device0; int32_t L_15; L_15 = ArrayHelpers_AppendWithCapacity_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mBAC377FA55F45B5A5F427BC00EFF2A1FB1C9F988((InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6**)L_12, (int32_t*)L_13, L_14, ((int32_t)10), /*hidden argument*/ArrayHelpers_AppendWithCapacity_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mBAC377FA55F45B5A5F427BC00EFF2A1FB1C9F988_RuntimeMethod_var); NullCheck(L_11); L_11->set_m_DeviceIndex_27(L_15); // m_DevicesById[device.deviceId] = device; Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7 * L_16 = __this->get_m_DevicesById_8(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_17 = ___device0; NullCheck(L_17); int32_t L_18; L_18 = InputDevice_get_deviceId_mDDE1531F7B9A1E03B17094C7AC37E58177E4AA0D_inline(L_17, /*hidden argument*/NULL); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_19 = ___device0; NullCheck(L_16); Dictionary_2_set_Item_m2C27879AD01AA06188580EA811864D14A84C98E8(L_16, L_18, L_19, /*hidden argument*/Dictionary_2_set_Item_m2C27879AD01AA06188580EA811864D14A84C98E8_RuntimeMethod_var); // device.m_StateBlock.byteOffset = InputStateBlock.InvalidOffset; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_20 = ___device0; NullCheck(L_20); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_21 = ((InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *)L_20)->get_address_of_m_StateBlock_0(); InputStateBlock_set_byteOffset_mBDAEEE9085F06375925C28F921FC87ECA31C60DF_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_21, (-1), /*hidden argument*/NULL); // ReallocateStateBuffers(); InputManager_ReallocateStateBuffers_m310B7B6983270356571E856412C65B3233B21DF9(__this, /*hidden argument*/NULL); // InitializeDeviceState(device); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_22 = ___device0; InputManager_InitializeDeviceState_m5593C7FC3E2789C0C5EEB3794A4D0C7A9F19F8BF(__this, L_22, /*hidden argument*/NULL); // m_Metrics.maxNumDevices = Mathf.Max(m_DevicesCount, m_Metrics.maxNumDevices); InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * L_23 = __this->get_address_of_m_Metrics_32(); int32_t L_24 = __this->get_m_DevicesCount_6(); InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * L_25 = __this->get_address_of_m_Metrics_32(); int32_t L_26; L_26 = InputMetrics_get_maxNumDevices_mF480045465CDFC91FE23301300057D4B5F7716FF_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)L_25, /*hidden argument*/NULL); int32_t L_27; L_27 = Mathf_Max_mDE96ED504F75C9C7985CC49B099CF308AC52BF48(L_24, L_26, /*hidden argument*/NULL); InputMetrics_set_maxNumDevices_mD43CF4C39E736DB590117851167CD81BF09F048A_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)L_23, L_27, /*hidden argument*/NULL); // m_Metrics.maxStateSizeInBytes = Mathf.Max((int)m_StateBuffers.totalSize, m_Metrics.maxStateSizeInBytes); InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * L_28 = __this->get_address_of_m_Metrics_32(); InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA * L_29 = __this->get_address_of_m_StateBuffers_15(); uint32_t L_30 = L_29->get_totalSize_1(); InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * L_31 = __this->get_address_of_m_Metrics_32(); int32_t L_32; L_32 = InputMetrics_get_maxStateSizeInBytes_mCC4CE8BDB98FAFCF687AD7B7E47E78626CF61FC9_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)L_31, /*hidden argument*/NULL); int32_t L_33; L_33 = Mathf_Max_mDE96ED504F75C9C7985CC49B099CF308AC52BF48(L_30, L_32, /*hidden argument*/NULL); InputMetrics_set_maxStateSizeInBytes_m511A5A5BDD32D4D805D3414051A607BE712335E2_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)L_28, L_33, /*hidden argument*/NULL); // for (var i = 0; i < m_AvailableDeviceCount; ++i) V_1 = 0; goto IL_0102; } IL_00d3: { // if (m_AvailableDevices[i].deviceId == device.deviceId) AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330* L_34 = __this->get_m_AvailableDevices_10(); int32_t L_35 = V_1; NullCheck(L_34); int32_t L_36 = ((L_34)->GetAddressAt(static_cast(L_35)))->get_deviceId_1(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_37 = ___device0; NullCheck(L_37); int32_t L_38; L_38 = InputDevice_get_deviceId_mDDE1531F7B9A1E03B17094C7AC37E58177E4AA0D_inline(L_37, /*hidden argument*/NULL); if ((!(((uint32_t)L_36) == ((uint32_t)L_38)))) { goto IL_00fe; } } { // m_AvailableDevices[i].isRemoved = false; AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330* L_39 = __this->get_m_AvailableDevices_10(); int32_t L_40 = V_1; NullCheck(L_39); ((L_39)->GetAddressAt(static_cast(L_40)))->set_isRemoved_3((bool)0); } IL_00fe: { // for (var i = 0; i < m_AvailableDeviceCount; ++i) int32_t L_41 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1)); } IL_0102: { // for (var i = 0; i < m_AvailableDeviceCount; ++i) int32_t L_42 = V_1; int32_t L_43 = __this->get_m_AvailableDeviceCount_9(); if ((((int32_t)L_42) < ((int32_t)L_43))) { goto IL_00d3; } } { // var isPlaying = true; // if (isPlaying && !gameHasFocus // && m_Settings.backgroundBehavior != InputSettings.BackgroundBehavior.IgnoreFocus // && m_Runtime.runInBackground // && device.QueryEnabledStateFromRuntime() // && !ShouldRunDeviceInBackground(device)) if (!1) { goto IL_014b; } } { bool L_44; L_44 = InputManager_get_gameHasFocus_m5165C51969FCD9AC566668067F2FF38740130D18(__this, /*hidden argument*/NULL); if (L_44) { goto IL_014b; } } { InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_45 = __this->get_m_Settings_33(); NullCheck(L_45); int32_t L_46; L_46 = InputSettings_get_backgroundBehavior_mFCF311E589790630CAC71ACD0E13F8D6472B3EBE_inline(L_45, /*hidden argument*/NULL); if ((((int32_t)L_46) == ((int32_t)2))) { goto IL_014b; } } { RuntimeObject* L_47 = __this->get_m_Runtime_31(); NullCheck(L_47); bool L_48; L_48 = InterfaceFuncInvoker0< bool >::Invoke(23 /* System.Boolean UnityEngine.InputSystem.LowLevel.IInputRuntime::get_runInBackground() */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_47); if (!L_48) { goto IL_014b; } } { InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_49 = ___device0; NullCheck(L_49); bool L_50; L_50 = InputDevice_QueryEnabledStateFromRuntime_mC1EE103B877C82AB7A413F2694875CC66508B4AC(L_49, /*hidden argument*/NULL); if (!L_50) { goto IL_014b; } } { InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_51 = ___device0; bool L_52; L_52 = InputManager_ShouldRunDeviceInBackground_mCA4D4FB2236C2895EF2D70BB6DAA863A233D13C7(__this, L_51, /*hidden argument*/NULL); if (L_52) { goto IL_014b; } } { // EnableOrDisableDevice(device, false, DeviceDisableScope.TemporaryWhilePlayerIsInBackground); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_53 = ___device0; InputManager_EnableOrDisableDevice_m2A34CA6F0F721537E62BC5CDF32C051CA3FEC183(__this, L_53, (bool)0, 2, /*hidden argument*/NULL); } IL_014b: { // InputActionState.OnDeviceChange(device, InputDeviceChange.Added); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_54 = ___device0; InputActionState_OnDeviceChange_mE3D72775E04B0D3BE4F7545C51E12185CCAEFF52(L_54, 0, /*hidden argument*/NULL); // if (device is IInputUpdateCallbackReceiver beforeUpdateCallbackReceiver) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_55 = ___device0; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_55, IInputUpdateCallbackReceiver_tFFF4C988065B2A278B79D375DFA3867CDA147486_il2cpp_TypeInfo_var)); RuntimeObject* L_56 = V_0; if (!L_56) { goto IL_016f; } } { // onBeforeUpdate += beforeUpdateCallbackReceiver.OnUpdate; RuntimeObject* L_57 = V_0; RuntimeObject* L_58 = L_57; Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_59 = (Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 *)il2cpp_codegen_object_new(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var); Action__ctor_m07BE5EE8A629FBBA52AE6356D57A0D371BE2574B(L_59, L_58, (intptr_t)((intptr_t)GetInterfaceMethodInfo(L_58, 0, IInputUpdateCallbackReceiver_tFFF4C988065B2A278B79D375DFA3867CDA147486_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); InputManager_add_onBeforeUpdate_m502B9A8DAA2F06E61843275F351A72D289D461FF(__this, L_59, /*hidden argument*/NULL); } IL_016f: { // if (device is IInputStateCallbackReceiver) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_60 = ___device0; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_60, IInputStateCallbackReceiver_t4C5C8728DA2734584B886F3D78491E19738BC79A_il2cpp_TypeInfo_var))) { goto IL_0192; } } { // InstallBeforeUpdateHookIfNecessary(); InputManager_InstallBeforeUpdateHookIfNecessary_m0B1B1F9F035537BD5D337CA60EBB9F8CCDBDC58B(__this, /*hidden argument*/NULL); // device.m_DeviceFlags |= InputDevice.DeviceFlags.HasStateCallbacks; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_61 = ___device0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_62 = L_61; NullCheck(L_62); int32_t L_63 = L_62->get_m_DeviceFlags_24(); NullCheck(L_62); L_62->set_m_DeviceFlags_24(((int32_t)((int32_t)L_63|(int32_t)2))); // m_HaveDevicesWithStateCallbackReceivers = true; __this->set_m_HaveDevicesWithStateCallbackReceivers_26((bool)1); } IL_0192: { // if (device is IEventMerger) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_64 = ___device0; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_64, IEventMerger_tFEA3694BDFE9987449D208603D1BABA1EE0E8913_il2cpp_TypeInfo_var))) { goto IL_01a1; } } { // device.hasEventMerger = true; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_65 = ___device0; NullCheck(L_65); InputDevice_set_hasEventMerger_m847E74F1E47AA361E3CC2AD15A87A2D60513DB42(L_65, (bool)1, /*hidden argument*/NULL); } IL_01a1: { // if (device is IEventPreProcessor) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_66 = ___device0; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_66, IEventPreProcessor_t402E5A7CA363184CE8C96EE46B2E5880F40181B2_il2cpp_TypeInfo_var))) { goto IL_01b0; } } { // device.hasEventPreProcessor = true; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_67 = ___device0; NullCheck(L_67); InputDevice_set_hasEventPreProcessor_m35AFC9BD219CF73F8284D2E63CA07B43F030806E(L_67, (bool)1, /*hidden argument*/NULL); } IL_01b0: { // if (device.updateBeforeRender) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_68 = ___device0; NullCheck(L_68); bool L_69; L_69 = InputDevice_get_updateBeforeRender_m8B0830820DF38D0D8682EA88EBC3A8094340DBE8(L_68, /*hidden argument*/NULL); if (!L_69) { goto IL_01c6; } } { // updateMask |= InputUpdateType.BeforeRender; int32_t L_70; L_70 = InputManager_get_updateMask_mF3D4D0E3E4AC121A3DECFD25A8BAFB7EC25FB312_inline(__this, /*hidden argument*/NULL); InputManager_set_updateMask_m84A72CF7C05D03B1A10E960F36FA562B3EF22032(__this, ((int32_t)((int32_t)L_70|(int32_t)4)), /*hidden argument*/NULL); } IL_01c6: { // device.NotifyAdded(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_71 = ___device0; NullCheck(L_71); InputDevice_NotifyAdded_m8A786359B5B811B1EB48991489EB9C349FCAD94A(L_71, /*hidden argument*/NULL); // device.MakeCurrent(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_72 = ___device0; NullCheck(L_72); VirtActionInvoker0::Invoke(16 /* System.Void UnityEngine.InputSystem.InputDevice::MakeCurrent() */, L_72); // DelegateHelpers.InvokeCallbacksSafe(ref m_DeviceChangeListeners, device, InputDeviceChange.Added, "InputSystem.onDeviceChange"); CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 * L_73 = __this->get_address_of_m_DeviceChangeListeners_16(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_74 = ___device0; DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38((CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 *)L_73, L_74, 0, _stringLiteral84CAACE59D08AF4659A3A7E4D00A4514400CE96A, NULL, /*hidden argument*/DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38_RuntimeMethod_var); // if (device.enabled) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_75 = ___device0; NullCheck(L_75); bool L_76; L_76 = InputDevice_get_enabled_m9804D43CD889D2D99E778707FE7BC00F4B54C70E(L_75, /*hidden argument*/NULL); if (!L_76) { goto IL_01f4; } } { // device.RequestSync(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_77 = ___device0; NullCheck(L_77); bool L_78; L_78 = InputDevice_RequestSync_mFE6A5CFDE65109D527ED21DB498E6826A296C4BB(L_77, /*hidden argument*/NULL); } IL_01f4: { // } return; } } // UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputManager::AddDevice(UnityEngine.InputSystem.Layouts.InputDeviceDescription) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * InputManager_AddDevice_m46AC4E8ADB91C6FA58CE1B991C81BEAA9EC52AD7 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___description0, const RuntimeMethod* method) { { // return AddDevice(description, throwIfNoLayoutFound: true); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_0 = ___description0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_1; L_1 = InputManager_AddDevice_mB7C1C7D58C39D5C9D80FBBF47AACA3CC6451E235(__this, L_0, (bool)1, (String_t*)NULL, 0, 0, /*hidden argument*/NULL); return L_1; } } // UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputManager::AddDevice(UnityEngine.InputSystem.Layouts.InputDeviceDescription,System.Boolean,System.String,System.Int32,UnityEngine.InputSystem.InputDevice/DeviceFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * InputManager_AddDevice_mB7C1C7D58C39D5C9D80FBBF47AACA3CC6451E235 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___description0, bool ___throwIfNoLayoutFound1, String_t* ___deviceName2, int32_t ___deviceId3, int32_t ___deviceFlags4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntimeExtensions_DeviceCommand_TisDisableDeviceCommand_tB2F65EF65EBE67BF06541CD04C81BB31EE208FD5_m0E4A8423F3F6957D74340A32940213ED6937E649_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_0; memset((&V_0), 0, sizeof(V_0)); DisableDeviceCommand_tB2F65EF65EBE67BF06541CD04C81BB31EE208FD5 V_1; memset((&V_1), 0, sizeof(V_1)); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_2; memset((&V_2), 0, sizeof(V_2)); { // var layout = TryFindMatchingControlLayout(ref description, deviceId); int32_t L_0 = ___deviceId3; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_1; L_1 = InputManager_TryFindMatchingControlLayout_mF1C449D35DF64AD63A3A8D45080DA7F592B38945(__this, (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&___description0), L_0, /*hidden argument*/NULL); V_0 = L_1; // if (layout.IsEmpty()) bool L_2; L_2 = InternedString_IsEmpty_mDC1F123EBDF899AB57EDDCFFC3F67DA84A2CC2AD((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&V_0), /*hidden argument*/NULL); if (!L_2) { goto IL_004e; } } { // if (throwIfNoLayoutFound) bool L_3 = ___throwIfNoLayoutFound1; if (!L_3) { goto IL_0032; } } { // throw new ArgumentException($"Cannot find layout matching device description '{description}'", nameof(description)); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_4 = ___description0; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_5 = L_4; RuntimeObject * L_6 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_il2cpp_TypeInfo_var)), &L_5); String_t* L_7; L_7 = String_Format_m5A16F3ABC59A3E9804E0CB2636849CCD74CEC994(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB0137C14351739242DAD12026279F13C12B38B14)), L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEB534843932D1025EEE09575458F840C63DC1063)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_AddDevice_mB7C1C7D58C39D5C9D80FBBF47AACA3CC6451E235_RuntimeMethod_var))); } IL_0032: { // if (deviceId != InputDevice.InvalidDeviceId) int32_t L_9 = ___deviceId3; if (!L_9) { goto IL_004c; } } { // var command = DisableDeviceCommand.Create(); DisableDeviceCommand_tB2F65EF65EBE67BF06541CD04C81BB31EE208FD5 L_10; L_10 = DisableDeviceCommand_Create_m8B26D925D5598017AA0A3D1EA319554A1C409923(/*hidden argument*/NULL); V_1 = L_10; // m_Runtime.DeviceCommand(deviceId, ref command); RuntimeObject* L_11 = __this->get_m_Runtime_31(); int32_t L_12 = ___deviceId3; int64_t L_13; L_13 = InputRuntimeExtensions_DeviceCommand_TisDisableDeviceCommand_tB2F65EF65EBE67BF06541CD04C81BB31EE208FD5_m0E4A8423F3F6957D74340A32940213ED6937E649(L_11, L_12, (DisableDeviceCommand_tB2F65EF65EBE67BF06541CD04C81BB31EE208FD5 *)(&V_1), /*hidden argument*/InputRuntimeExtensions_DeviceCommand_TisDisableDeviceCommand_tB2F65EF65EBE67BF06541CD04C81BB31EE208FD5_m0E4A8423F3F6957D74340A32940213ED6937E649_RuntimeMethod_var); } IL_004c: { // return null; return (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *)NULL; } IL_004e: { // var device = AddDevice(layout, deviceId, deviceName, description, deviceFlags); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_14 = V_0; int32_t L_15 = ___deviceId3; String_t* L_16 = ___deviceName2; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_17 = ___description0; int32_t L_18 = ___deviceFlags4; il2cpp_codegen_initobj((&V_2), sizeof(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED )); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_19 = V_2; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_20; L_20 = InputManager_AddDevice_m10EE44C62BCA48C746ED6EC0E16FB6FFF6ED0328(__this, L_14, L_15, L_16, L_17, L_18, L_19, /*hidden argument*/NULL); // device.m_Description = description; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_21 = L_20; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_22 = ___description0; NullCheck(L_21); L_21->set_m_Description_28(L_22); // return device; return L_21; } } // UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputManager::AddDevice(UnityEngine.InputSystem.Layouts.InputDeviceDescription,UnityEngine.InputSystem.Utilities.InternedString,System.String,System.Int32,UnityEngine.InputSystem.InputDevice/DeviceFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * InputManager_AddDevice_m67FE410A737FDE88F169F11CCEF61782EFF3571C (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 ___description0, InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED ___layout1, String_t* ___deviceName2, int32_t ___deviceId3, int32_t ___deviceFlags4, const RuntimeMethod* method) { InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_0; memset((&V_0), 0, sizeof(V_0)); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try { // begin try (depth: 1) // var device = AddDevice(layout, deviceId, deviceName, description, deviceFlags); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_0 = ___layout1; int32_t L_1 = ___deviceId3; String_t* L_2 = ___deviceName2; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_3 = ___description0; int32_t L_4 = ___deviceFlags4; il2cpp_codegen_initobj((&V_0), sizeof(InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED )); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_5 = V_0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_6; L_6 = InputManager_AddDevice_m10EE44C62BCA48C746ED6EC0E16FB6FFF6ED0328(__this, L_0, L_1, L_2, L_3, L_4, L_5, /*hidden argument*/NULL); // device.m_Description = description; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_7 = L_6; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_8 = ___description0; NullCheck(L_7); L_7->set_m_Description_28(L_8); // return device; V_1 = L_7; IL2CPP_LEAVE(0x21, FINALLY_0020); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0020; } FINALLY_0020: { // begin finally (depth: 1) // } IL2CPP_END_FINALLY(32) } // end finally (depth: 1) IL2CPP_CLEANUP(32) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x21, IL_0021) } IL_0021: { // } InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_9 = V_1; return L_9; } } // System.Void UnityEngine.InputSystem.InputManager::RemoveDevice(UnityEngine.InputSystem.InputDevice,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_RemoveDevice_m078BD5E7310B7B57E282ECDD0972A6641F66C2C0 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, bool ___keepOnListOfAvailableDevices1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_EraseAtWithCapacity_TisAvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D_mC10F77228033C2ECC47DEBAA7EF45C5861758982_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_EraseAtWithCapacity_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mEA807EF2CA95E277837869AA2396028B41A8CCA6_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_EraseAtWithCapacity_TisStateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_mFD30A7FB5FCDAC45EA4F3388F8AB79D9E295ED6F_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_LengthSafe_TisStateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_mEF0C8691912F12B19C9BF503E38175BDAEA8A4AA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Remove_m662F1788161601D187CECE948C789559880E36DD_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputUpdateCallbackReceiver_tFFF4C988065B2A278B79D375DFA3867CDA147486_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral84CAACE59D08AF4659A3A7E4D00A4514400CE96A); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; RuntimeObject* V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; bool V_6 = false; int32_t V_7 = 0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * G_B31_0 = NULL; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * G_B30_0 = NULL; { // if (device == null) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_0 = ___device0; if (L_0) { goto IL_000e; } } { // throw new ArgumentNullException(nameof(device)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE847FDE91DE0DA95AFBA0EEF52C90BEB4CE621BF)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_RemoveDevice_m078BD5E7310B7B57E282ECDD0972A6641F66C2C0_RuntimeMethod_var))); } IL_000e: { // if (device.m_DeviceIndex == InputDevice.kInvalidDeviceIndex) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_2 = ___device0; NullCheck(L_2); int32_t L_3 = L_2->get_m_DeviceIndex_27(); if ((!(((uint32_t)L_3) == ((uint32_t)(-1))))) { goto IL_0018; } } { // return; return; } IL_0018: { // RemoveStateChangeMonitors(device); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_4 = ___device0; InputManager_RemoveStateChangeMonitors_m5CB5F66F6D3DB0F07272C6491A008707101D7A39(__this, L_4, /*hidden argument*/NULL); // var deviceIndex = device.m_DeviceIndex; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_5 = ___device0; NullCheck(L_5); int32_t L_6 = L_5->get_m_DeviceIndex_27(); V_0 = L_6; // var deviceId = device.deviceId; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_7 = ___device0; NullCheck(L_7); int32_t L_8; L_8 = InputDevice_get_deviceId_mDDE1531F7B9A1E03B17094C7AC37E58177E4AA0D_inline(L_7, /*hidden argument*/NULL); V_1 = L_8; // if (deviceIndex < m_StateChangeMonitors.LengthSafe()) int32_t L_9 = V_0; StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_10 = __this->get_m_StateChangeMonitors_34(); int32_t L_11; L_11 = ArrayHelpers_LengthSafe_TisStateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_mEF0C8691912F12B19C9BF503E38175BDAEA8A4AA(L_10, /*hidden argument*/ArrayHelpers_LengthSafe_TisStateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_mEF0C8691912F12B19C9BF503E38175BDAEA8A4AA_RuntimeMethod_var); if ((((int32_t)L_9) >= ((int32_t)L_11))) { goto IL_0052; } } { // var count = m_StateChangeMonitors.Length; StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_12 = __this->get_m_StateChangeMonitors_34(); NullCheck(L_12); V_3 = ((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length))); // ArrayHelpers.EraseAtWithCapacity(m_StateChangeMonitors, ref count, deviceIndex); StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_13 = __this->get_m_StateChangeMonitors_34(); int32_t L_14 = V_0; ArrayHelpers_EraseAtWithCapacity_TisStateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_mFD30A7FB5FCDAC45EA4F3388F8AB79D9E295ED6F(L_13, (int32_t*)(&V_3), L_14, /*hidden argument*/ArrayHelpers_EraseAtWithCapacity_TisStateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_mFD30A7FB5FCDAC45EA4F3388F8AB79D9E295ED6F_RuntimeMethod_var); } IL_0052: { // ArrayHelpers.EraseAtWithCapacity(m_Devices, ref m_DevicesCount, deviceIndex); InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* L_15 = __this->get_m_Devices_7(); int32_t* L_16 = __this->get_address_of_m_DevicesCount_6(); int32_t L_17 = V_0; ArrayHelpers_EraseAtWithCapacity_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mEA807EF2CA95E277837869AA2396028B41A8CCA6(L_15, (int32_t*)L_16, L_17, /*hidden argument*/ArrayHelpers_EraseAtWithCapacity_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mEA807EF2CA95E277837869AA2396028B41A8CCA6_RuntimeMethod_var); // m_DevicesById.Remove(deviceId); Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7 * L_18 = __this->get_m_DevicesById_8(); int32_t L_19 = V_1; NullCheck(L_18); bool L_20; L_20 = Dictionary_2_Remove_m662F1788161601D187CECE948C789559880E36DD(L_18, L_19, /*hidden argument*/Dictionary_2_Remove_m662F1788161601D187CECE948C789559880E36DD_RuntimeMethod_var); // if (m_Devices != null) InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* L_21 = __this->get_m_Devices_7(); if (!L_21) { goto IL_0081; } } { // ReallocateStateBuffers(); InputManager_ReallocateStateBuffers_m310B7B6983270356571E856412C65B3233B21DF9(__this, /*hidden argument*/NULL); // } goto IL_008c; } IL_0081: { // m_StateBuffers.FreeAll(); InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA * L_22 = __this->get_address_of_m_StateBuffers_15(); InputStateBuffers_FreeAll_m6E5BFFDB30EEFE25ACCDF9D299C1C3516D8AEDB4((InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA *)L_22, /*hidden argument*/NULL); } IL_008c: { // for (var i = deviceIndex; i < m_DevicesCount; ++i) int32_t L_23 = V_0; V_4 = L_23; goto IL_00ad; } IL_0091: { // --m_Devices[i].m_DeviceIndex; // Indices have shifted down by one. InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* L_24 = __this->get_m_Devices_7(); int32_t L_25 = V_4; NullCheck(L_24); int32_t L_26 = L_25; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_27 = (L_24)->GetAt(static_cast(L_26)); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_28 = L_27; NullCheck(L_28); int32_t L_29 = L_28->get_m_DeviceIndex_27(); NullCheck(L_28); L_28->set_m_DeviceIndex_27(((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)1))); // for (var i = deviceIndex; i < m_DevicesCount; ++i) int32_t L_30 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1)); } IL_00ad: { // for (var i = deviceIndex; i < m_DevicesCount; ++i) int32_t L_31 = V_4; int32_t L_32 = __this->get_m_DevicesCount_6(); if ((((int32_t)L_31) < ((int32_t)L_32))) { goto IL_0091; } } { // device.m_DeviceIndex = InputDevice.kInvalidDeviceIndex; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_33 = ___device0; NullCheck(L_33); L_33->set_m_DeviceIndex_27((-1)); // for (var i = 0; i < m_AvailableDeviceCount; ++i) V_5 = 0; goto IL_010b; } IL_00c3: { // if (m_AvailableDevices[i].deviceId == deviceId) AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330* L_34 = __this->get_m_AvailableDevices_10(); int32_t L_35 = V_5; NullCheck(L_34); int32_t L_36 = ((L_34)->GetAddressAt(static_cast(L_35)))->get_deviceId_1(); int32_t L_37 = V_1; if ((!(((uint32_t)L_36) == ((uint32_t)L_37)))) { goto IL_0105; } } { // if (keepOnListOfAvailableDevices) bool L_38 = ___keepOnListOfAvailableDevices1; if (!L_38) { goto IL_00f0; } } { // m_AvailableDevices[i].isRemoved = true; AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330* L_39 = __this->get_m_AvailableDevices_10(); int32_t L_40 = V_5; NullCheck(L_39); ((L_39)->GetAddressAt(static_cast(L_40)))->set_isRemoved_3((bool)1); goto IL_0115; } IL_00f0: { // ArrayHelpers.EraseAtWithCapacity(m_AvailableDevices, ref m_AvailableDeviceCount, i); AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330* L_41 = __this->get_m_AvailableDevices_10(); int32_t* L_42 = __this->get_address_of_m_AvailableDeviceCount_9(); int32_t L_43 = V_5; ArrayHelpers_EraseAtWithCapacity_TisAvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D_mC10F77228033C2ECC47DEBAA7EF45C5861758982(L_41, (int32_t*)L_42, L_43, /*hidden argument*/ArrayHelpers_EraseAtWithCapacity_TisAvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D_mC10F77228033C2ECC47DEBAA7EF45C5861758982_RuntimeMethod_var); // break; goto IL_0115; } IL_0105: { // for (var i = 0; i < m_AvailableDeviceCount; ++i) int32_t L_44 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1)); } IL_010b: { // for (var i = 0; i < m_AvailableDeviceCount; ++i) int32_t L_45 = V_5; int32_t L_46 = __this->get_m_AvailableDeviceCount_9(); if ((((int32_t)L_45) < ((int32_t)L_46))) { goto IL_00c3; } } IL_0115: { // device.BakeOffsetIntoStateBlockRecursive((uint)-device.m_StateBlock.byteOffset); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_47 = ___device0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_48 = ___device0; NullCheck(L_48); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_49 = ((InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *)L_48)->get_address_of_m_StateBlock_0(); uint32_t L_50; L_50 = InputStateBlock_get_byteOffset_m68EF162227DEB77FFCA5C46605780C3387ADC019_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_49, /*hidden argument*/NULL); NullCheck(L_47); InputControl_BakeOffsetIntoStateBlockRecursive_m711ADB2CA8BBDE69B11B4FE52B0C08B3B6D95FE2(L_47, ((int32_t)((uint32_t)((-((int64_t)((uint64_t)L_50)))))), /*hidden argument*/NULL); // InputActionState.OnDeviceChange(device, InputDeviceChange.Removed); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_51 = ___device0; InputActionState_OnDeviceChange_mE3D72775E04B0D3BE4F7545C51E12185CCAEFF52(L_51, 1, /*hidden argument*/NULL); // if (device is IInputUpdateCallbackReceiver beforeUpdateCallbackReceiver) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_52 = ___device0; V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_52, IInputUpdateCallbackReceiver_tFFF4C988065B2A278B79D375DFA3867CDA147486_il2cpp_TypeInfo_var)); RuntimeObject* L_53 = V_2; if (!L_53) { goto IL_014d; } } { // onBeforeUpdate -= beforeUpdateCallbackReceiver.OnUpdate; RuntimeObject* L_54 = V_2; RuntimeObject* L_55 = L_54; Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_56 = (Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 *)il2cpp_codegen_object_new(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var); Action__ctor_m07BE5EE8A629FBBA52AE6356D57A0D371BE2574B(L_56, L_55, (intptr_t)((intptr_t)GetInterfaceMethodInfo(L_55, 0, IInputUpdateCallbackReceiver_tFFF4C988065B2A278B79D375DFA3867CDA147486_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); InputManager_remove_onBeforeUpdate_m5CE346EC8D9BCE18CF10EDEB11448BDB667A8691(__this, L_56, /*hidden argument*/NULL); } IL_014d: { // if (device.updateBeforeRender) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_57 = ___device0; NullCheck(L_57); bool L_58; L_58 = InputDevice_get_updateBeforeRender_m8B0830820DF38D0D8682EA88EBC3A8094340DBE8(L_57, /*hidden argument*/NULL); if (!L_58) { goto IL_0195; } } { // var haveDeviceRequiringBeforeRender = false; V_6 = (bool)0; // for (var i = 0; i < m_DevicesCount; ++i) V_7 = 0; goto IL_0178; } IL_015d: { // if (m_Devices[i].updateBeforeRender) InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* L_59 = __this->get_m_Devices_7(); int32_t L_60 = V_7; NullCheck(L_59); int32_t L_61 = L_60; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_62 = (L_59)->GetAt(static_cast(L_61)); NullCheck(L_62); bool L_63; L_63 = InputDevice_get_updateBeforeRender_m8B0830820DF38D0D8682EA88EBC3A8094340DBE8(L_62, /*hidden argument*/NULL); if (!L_63) { goto IL_0172; } } { // haveDeviceRequiringBeforeRender = true; V_6 = (bool)1; // break; goto IL_0182; } IL_0172: { // for (var i = 0; i < m_DevicesCount; ++i) int32_t L_64 = V_7; V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_64, (int32_t)1)); } IL_0178: { // for (var i = 0; i < m_DevicesCount; ++i) int32_t L_65 = V_7; int32_t L_66 = __this->get_m_DevicesCount_6(); if ((((int32_t)L_65) < ((int32_t)L_66))) { goto IL_015d; } } IL_0182: { // if (!haveDeviceRequiringBeforeRender) bool L_67 = V_6; if (L_67) { goto IL_0195; } } { // updateMask &= ~InputUpdateType.BeforeRender; int32_t L_68; L_68 = InputManager_get_updateMask_mF3D4D0E3E4AC121A3DECFD25A8BAFB7EC25FB312_inline(__this, /*hidden argument*/NULL); InputManager_set_updateMask_m84A72CF7C05D03B1A10E960F36FA562B3EF22032(__this, ((int32_t)((int32_t)L_68&(int32_t)((int32_t)-5))), /*hidden argument*/NULL); } IL_0195: { // device.NotifyRemoved(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_69 = ___device0; NullCheck(L_69); InputDevice_NotifyRemoved_mB46C1B6528A3314DC4D98E54423BDB490CD04E0B(L_69, /*hidden argument*/NULL); // DelegateHelpers.InvokeCallbacksSafe(ref m_DeviceChangeListeners, device, InputDeviceChange.Removed, "InputSystem.onDeviceChange"); CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 * L_70 = __this->get_address_of_m_DeviceChangeListeners_16(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_71 = ___device0; DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38((CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 *)L_70, L_71, 1, _stringLiteral84CAACE59D08AF4659A3A7E4D00A4514400CE96A, NULL, /*hidden argument*/DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38_RuntimeMethod_var); // InputSystem.GetDevice(device.GetType())?.MakeCurrent(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_72 = ___device0; NullCheck(L_72); Type_t * L_73; L_73 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_72, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_74; L_74 = InputSystem_GetDevice_m402ADC9477F1B49993FACC4C62069507B4D86C4B(L_73, /*hidden argument*/NULL); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_75 = L_74; G_B30_0 = L_75; if (L_75) { G_B31_0 = L_75; goto IL_01be; } } { return; } IL_01be: { NullCheck(G_B31_0); VirtActionInvoker0::Invoke(16 /* System.Void UnityEngine.InputSystem.InputDevice::MakeCurrent() */, G_B31_0); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::FlushDisconnectedDevices() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_FlushDisconnectedDevices_m1BEB7A3495275B52F2B25323355C6806A744EC80 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_Clear_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mD823D23E104DD81E4D1C18113F4A97131F52FAA3_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // m_DisconnectedDevices.Clear(m_DisconnectedDevicesCount); InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* L_0 = __this->get_m_DisconnectedDevices_12(); int32_t L_1 = __this->get_m_DisconnectedDevicesCount_11(); ArrayHelpers_Clear_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mD823D23E104DD81E4D1C18113F4A97131F52FAA3(L_0, L_1, /*hidden argument*/ArrayHelpers_Clear_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mD823D23E104DD81E4D1C18113F4A97131F52FAA3_RuntimeMethod_var); // m_DisconnectedDevicesCount = 0; __this->set_m_DisconnectedDevicesCount_11(0); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::ResetDevice(UnityEngine.InputSystem.InputDevice,System.Boolean,System.Nullable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_ResetDevice_m161F0EA740DED1C72CB96E573E86C13656C990D2 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, bool ___alsoResetDontResetControls1, Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___issueResetCommand2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICustomDeviceReset_tA7D367F100EC4EF9240244C08FFFC60B62BB6086_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mE8961C891F379BB648D8CDB9F514FFB65A58EACF_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mD88EDF062EFB4B0E6C8F925B5A4E47E97E687342_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_mED2AEAAEFBBE3F20D8E424582434019D3F94F9EF_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m52F33C6963C9A76A14F54B4B2C30CEF580DB1EB7_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_mC9A7615EA5EDA84F8B8055BE43CF91D74820C378_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC182FAC9EDD38C759DB18C15C7171207EB92ED14); s_Il2CppMethodInitialized = true; } bool V_0 = false; int32_t V_1 = 0; RuntimeObject* V_2 = NULL; bool V_3 = false; void* V_4 = NULL; uint32_t V_5 = 0; InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B V_6; memset((&V_6), 0, sizeof(V_6)); NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 V_7; memset((&V_7), 0, sizeof(V_7)); StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 * V_8 = NULL; void* V_9 = NULL; double V_10 = 0.0; InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * V_11 = NULL; void* V_12 = NULL; void* V_13 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; int32_t G_B7_0 = 0; int32_t G_B10_0 = 0; { // if (device == null) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_0 = ___device0; if (L_0) { goto IL_000e; } } { // throw new ArgumentNullException(nameof(device)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE847FDE91DE0DA95AFBA0EEF52C90BEB4CE621BF)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_ResetDevice_m161F0EA740DED1C72CB96E573E86C13656C990D2_RuntimeMethod_var))); } IL_000e: { // if (!device.added) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_2 = ___device0; NullCheck(L_2); bool L_3; L_3 = InputDevice_get_added_m6228E4D9FD11390012BA1693DE2EC3ECF55AD255(L_2, /*hidden argument*/NULL); if (L_3) { goto IL_0027; } } { // throw new InvalidOperationException($"Device '{device}' has not been added to the system"); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_4 = ___device0; String_t* L_5; L_5 = String_Format_m5A16F3ABC59A3E9804E0CB2636849CCD74CEC994(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral09C996CC26308F014A8C3CD22845AE1081C2803C)), L_4, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_6 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_6, L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_ResetDevice_m161F0EA740DED1C72CB96E573E86C13656C990D2_RuntimeMethod_var))); } IL_0027: { // var isHardReset = alsoResetDontResetControls || !device.hasDontResetControls; bool L_7 = ___alsoResetDontResetControls1; if (L_7) { goto IL_0035; } } { InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_8 = ___device0; NullCheck(L_8); bool L_9; L_9 = InputDevice_get_hasDontResetControls_m6639662CF6D0DCD07762BD7C4C95AE52C43E2275(L_8, /*hidden argument*/NULL); G_B7_0 = ((((int32_t)L_9) == ((int32_t)0))? 1 : 0); goto IL_0036; } IL_0035: { G_B7_0 = 1; } IL_0036: { V_0 = (bool)G_B7_0; // var change = isHardReset ? InputDeviceChange.HardReset : InputDeviceChange.SoftReset; bool L_10 = V_0; if (L_10) { goto IL_003d; } } { G_B10_0 = 8; goto IL_003f; } IL_003d: { G_B10_0 = ((int32_t)9); } IL_003f: { V_1 = G_B10_0; // InputActionState.OnDeviceChange(device, change); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_11 = ___device0; int32_t L_12 = V_1; InputActionState_OnDeviceChange_mE3D72775E04B0D3BE4F7545C51E12185CCAEFF52(L_11, L_12, /*hidden argument*/NULL); // DelegateHelpers.InvokeCallbacksSafe(ref m_DeviceChangeListeners, device, change, "onDeviceChange"); CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 * L_13 = __this->get_address_of_m_DeviceChangeListeners_16(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_14 = ___device0; int32_t L_15 = V_1; DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38((CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 *)L_13, L_14, L_15, _stringLiteralC182FAC9EDD38C759DB18C15C7171207EB92ED14, NULL, /*hidden argument*/DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38_RuntimeMethod_var); // if (!alsoResetDontResetControls && device is ICustomDeviceReset customReset) bool L_16 = ___alsoResetDontResetControls1; if (L_16) { goto IL_0072; } } { InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_17 = ___device0; V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_17, ICustomDeviceReset_tA7D367F100EC4EF9240244C08FFFC60B62BB6086_il2cpp_TypeInfo_var)); RuntimeObject* L_18 = V_2; if (!L_18) { goto IL_0072; } } { // customReset.Reset(); RuntimeObject* L_19 = V_2; NullCheck(L_19); InterfaceActionInvoker0::Invoke(0 /* System.Void UnityEngine.InputSystem.LowLevel.ICustomDeviceReset::Reset() */, ICustomDeviceReset_tA7D367F100EC4EF9240244C08FFFC60B62BB6086_il2cpp_TypeInfo_var, L_19); // } goto IL_01b5; } IL_0072: { // var defaultStatePtr = device.defaultStatePtr; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_20 = ___device0; NullCheck(L_20); void* L_21; L_21 = InputControl_get_defaultStatePtr_m37116C9D7D2F799DC929E931364954D8895854C1_inline(L_20, /*hidden argument*/NULL); V_4 = (void*)L_21; // var deviceStateBlockSize = device.stateBlock.alignedSizeInBytes; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_22 = ___device0; NullCheck(L_22); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B L_23; L_23 = InputControl_get_stateBlock_m0ECA3324A1A42DDE5085EAE0A82D7C0447143252_inline(L_22, /*hidden argument*/NULL); V_6 = L_23; uint32_t L_24; L_24 = InputStateBlock_get_alignedSizeInBytes_m0A9650F80120683F6336427F2A8C9639109738D8((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)(&V_6), /*hidden argument*/NULL); V_5 = L_24; // using (var tempBuffer = // new NativeArray(InputEvent.kBaseEventSize + sizeof(int) + (int)deviceStateBlockSize, Allocator.Temp)) uint32_t L_25 = V_5; NativeArray_1__ctor_mED2AEAAEFBBE3F20D8E424582434019D3F94F9EF((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)(&V_7), ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)24), (int32_t)L_25)), 2, 1, /*hidden argument*/NativeArray_1__ctor_mED2AEAAEFBBE3F20D8E424582434019D3F94F9EF_RuntimeMethod_var); } IL_0099: try { // begin try (depth: 1) { // var stateEventPtr = (StateEvent*)tempBuffer.GetUnsafePtr(); NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_26 = V_7; void* L_27; L_27 = NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mE8961C891F379BB648D8CDB9F514FFB65A58EACF(L_26, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mE8961C891F379BB648D8CDB9F514FFB65A58EACF_RuntimeMethod_var); V_8 = (StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 *)L_27; // var statePtr = stateEventPtr->state; StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 * L_28 = V_8; void* L_29; L_29 = StateEvent_get_state_mFAD2786AB2A030B34EA4B23A0111289F67B16B2B((StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 *)(StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 *)L_28, /*hidden argument*/NULL); V_9 = (void*)L_29; // var currentTime = m_Runtime.currentTime; RuntimeObject* L_30 = __this->get_m_Runtime_31(); NullCheck(L_30); double L_31; L_31 = InterfaceFuncInvoker0< double >::Invoke(19 /* System.Double UnityEngine.InputSystem.LowLevel.IInputRuntime::get_currentTime() */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_30); V_10 = L_31; // ref var stateBlock = ref device.m_StateBlock; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_32 = ___device0; NullCheck(L_32); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_33 = ((InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *)L_32)->get_address_of_m_StateBlock_0(); V_11 = (InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_33; // stateEventPtr->baseEvent.type = StateEvent.Type; StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 * L_34 = V_8; NullCheck(L_34); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_35 = L_34->get_address_of_baseEvent_2(); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_36; L_36 = FourCC_op_Implicit_m1EF35613D75316DA0F135114B72093EBB3D04356(((int32_t)1398030676), /*hidden argument*/NULL); InputEvent_set_type_mA59021B1AC85CEA52E1DB983D42FB3E01F6D8233((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_35, L_36, /*hidden argument*/NULL); // stateEventPtr->baseEvent.sizeInBytes = InputEvent.kBaseEventSize + sizeof(int) + deviceStateBlockSize; StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 * L_37 = V_8; NullCheck(L_37); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_38 = L_37->get_address_of_baseEvent_2(); uint32_t L_39 = V_5; InputEvent_set_sizeInBytes_m9352C705F40BF3648701BFCAAF3C202C8462EA99((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_38, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)24), (int32_t)L_39)), /*hidden argument*/NULL); // stateEventPtr->baseEvent.time = currentTime; StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 * L_40 = V_8; NullCheck(L_40); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_41 = L_40->get_address_of_baseEvent_2(); double L_42 = V_10; InputEvent_set_time_m026DE5343264E144044FB92A15264BDCDF79B962((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_41, L_42, /*hidden argument*/NULL); // stateEventPtr->baseEvent.deviceId = device.deviceId; StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 * L_43 = V_8; NullCheck(L_43); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_44 = L_43->get_address_of_baseEvent_2(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_45 = ___device0; NullCheck(L_45); int32_t L_46; L_46 = InputDevice_get_deviceId_mDDE1531F7B9A1E03B17094C7AC37E58177E4AA0D_inline(L_45, /*hidden argument*/NULL); InputEvent_set_deviceId_m7B19E7F9572351E200808B688AD1D3BD192D966C((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_44, L_46, /*hidden argument*/NULL); // stateEventPtr->baseEvent.eventId = -1; StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 * L_47 = V_8; NullCheck(L_47); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_48 = L_47->get_address_of_baseEvent_2(); InputEvent_set_eventId_m14193345A631832F1933EC51A08F622E432B7385((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_48, (-1), /*hidden argument*/NULL); // stateEventPtr->stateFormat = device.m_StateBlock.format; StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 * L_49 = V_8; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_50 = ___device0; NullCheck(L_50); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_51 = ((InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *)L_50)->get_address_of_m_StateBlock_0(); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_52; L_52 = InputStateBlock_get_format_m99B8AE2CD603AC198E543FA369ACEADB725E2689_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_51, /*hidden argument*/NULL); NullCheck(L_49); L_49->set_stateFormat_3(L_52); // if (isHardReset) bool L_53 = V_0; if (!L_53) { goto IL_0140; } } IL_0129: { // UnsafeUtility.MemCpy(statePtr, // (byte*)defaultStatePtr + stateBlock.byteOffset, // deviceStateBlockSize); void* L_54 = V_9; void* L_55 = V_4; InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_56 = V_11; uint32_t L_57; L_57 = InputStateBlock_get_byteOffset_m68EF162227DEB77FFCA5C46605780C3387ADC019_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_56, /*hidden argument*/NULL); uint32_t L_58 = V_5; UnsafeUtility_MemCpy_mA8E186A63FE9CE463F95E5C5FF1C5F1B4E84F90E((void*)(void*)L_54, (void*)(void*)((void*)il2cpp_codegen_add((intptr_t)L_55, (intptr_t)((uintptr_t)L_57))), ((int64_t)((uint64_t)L_58)), /*hidden argument*/NULL); // } goto IL_0189; } IL_0140: { // var currentStatePtr = device.currentStatePtr; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_59 = ___device0; NullCheck(L_59); void* L_60; L_60 = InputControl_get_currentStatePtr_m069609EF2EEE5BD33A09A697690CE09FB618F693(L_59, /*hidden argument*/NULL); V_12 = (void*)L_60; // var resetMaskPtr = m_StateBuffers.resetMaskBuffer; InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA * L_61 = __this->get_address_of_m_StateBuffers_15(); void* L_62 = L_61->get_resetMaskBuffer_4(); V_13 = (void*)L_62; // UnsafeUtility.MemCpy(statePtr, // (byte*)currentStatePtr + stateBlock.byteOffset, // deviceStateBlockSize); void* L_63 = V_9; void* L_64 = V_12; InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_65 = V_11; uint32_t L_66; L_66 = InputStateBlock_get_byteOffset_m68EF162227DEB77FFCA5C46605780C3387ADC019_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_65, /*hidden argument*/NULL); uint32_t L_67 = V_5; UnsafeUtility_MemCpy_mA8E186A63FE9CE463F95E5C5FF1C5F1B4E84F90E((void*)(void*)L_63, (void*)(void*)((void*)il2cpp_codegen_add((intptr_t)L_64, (intptr_t)((uintptr_t)L_66))), ((int64_t)((uint64_t)L_67)), /*hidden argument*/NULL); // MemoryHelpers.MemCpyMasked(statePtr, // (byte*)defaultStatePtr + stateBlock.byteOffset, // (int)deviceStateBlockSize, // (byte*)resetMaskPtr + stateBlock.byteOffset); void* L_68 = V_9; void* L_69 = V_4; InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_70 = V_11; uint32_t L_71; L_71 = InputStateBlock_get_byteOffset_m68EF162227DEB77FFCA5C46605780C3387ADC019_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_70, /*hidden argument*/NULL); uint32_t L_72 = V_5; void* L_73 = V_13; InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_74 = V_11; uint32_t L_75; L_75 = InputStateBlock_get_byteOffset_m68EF162227DEB77FFCA5C46605780C3387ADC019_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_74, /*hidden argument*/NULL); MemoryHelpers_MemCpyMasked_m9B4280A0A3E45D9B2AA4F8C6A85A9354119C3FBA((void*)(void*)L_68, (void*)(void*)((void*)il2cpp_codegen_add((intptr_t)L_69, (intptr_t)((uintptr_t)L_71))), L_72, (void*)(void*)((void*)il2cpp_codegen_add((intptr_t)L_73, (intptr_t)((uintptr_t)L_75))), /*hidden argument*/NULL); } IL_0189: { // UpdateState(device, defaultUpdateType, statePtr, 0, deviceStateBlockSize, currentTime, // new InputEventPtr((InputEvent*)stateEventPtr)); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_76 = ___device0; int32_t L_77; L_77 = InputManager_get_defaultUpdateType_m42567EB68373890616C0D95CCE3F40098CE731BE(__this, /*hidden argument*/NULL); void* L_78 = V_9; uint32_t L_79 = V_5; double L_80 = V_10; StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 * L_81 = V_8; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_82; memset((&L_82), 0, sizeof(L_82)); InputEventPtr__ctor_m9EBF5134C7CC18F85542C146674EAE1BF7F29110_inline((&L_82), (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_81, /*hidden argument*/NULL); bool L_83; L_83 = InputManager_UpdateState_mFE9F65AD171FE4A2C9CCFC0138D888AC1BC43021(__this, L_76, L_77, (void*)(void*)L_78, 0, L_79, L_80, L_82, /*hidden argument*/NULL); // } IL2CPP_LEAVE(0x1B5, FINALLY_01a7); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_01a7; } FINALLY_01a7: { // begin finally (depth: 1) NativeArray_1_Dispose_mD88EDF062EFB4B0E6C8F925B5A4E47E97E687342((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)(&V_7), /*hidden argument*/NativeArray_1_Dispose_mD88EDF062EFB4B0E6C8F925B5A4E47E97E687342_RuntimeMethod_var); IL2CPP_END_FINALLY(423) } // end finally (depth: 1) IL2CPP_CLEANUP(423) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x1B5, IL_01b5) } IL_01b5: { // var doIssueResetCommand = isHardReset; bool L_84 = V_0; V_3 = L_84; // if (issueResetCommand != null) bool L_85; L_85 = Nullable_1_get_HasValue_m52F33C6963C9A76A14F54B4B2C30CEF580DB1EB7_inline((Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 *)(&___issueResetCommand2), /*hidden argument*/Nullable_1_get_HasValue_m52F33C6963C9A76A14F54B4B2C30CEF580DB1EB7_RuntimeMethod_var); if (!L_85) { goto IL_01c8; } } { // doIssueResetCommand = issueResetCommand.Value; bool L_86; L_86 = Nullable_1_get_Value_mC9A7615EA5EDA84F8B8055BE43CF91D74820C378((Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 *)(&___issueResetCommand2), /*hidden argument*/Nullable_1_get_Value_mC9A7615EA5EDA84F8B8055BE43CF91D74820C378_RuntimeMethod_var); V_3 = L_86; } IL_01c8: { // if (doIssueResetCommand) bool L_87 = V_3; if (!L_87) { goto IL_01d2; } } { // device.RequestReset(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_88 = ___device0; NullCheck(L_88); bool L_89; L_89 = InputDevice_RequestReset_mE1773E09FED3E0849059426264897AB8BC091F8D(L_88, /*hidden argument*/NULL); } IL_01d2: { // } return; } } // UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputManager::TryGetDevice(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * InputManager_TryGetDevice_m25BCD84E40F77E410BA6965DDC9294B61BE8E757 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, String_t* ___nameOrLayout0, const RuntimeMethod* method) { String_t* V_0 = NULL; int32_t V_1 = 0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * V_2 = NULL; { // if (string.IsNullOrEmpty(nameOrLayout)) String_t* L_0 = ___nameOrLayout0; bool L_1; L_1 = String_IsNullOrEmpty_m57429705D977ACD5EE7E210A858EED6F348C36B3(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0018; } } { // throw new ArgumentException("Name is null or empty.", nameof(nameOrLayout)); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_2 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEF36F39692DD586E96311B1D3C60C08F82908495)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral92D63F42D5F24A04F46CF0B3820441D11C905B48)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_TryGetDevice_m25BCD84E40F77E410BA6965DDC9294B61BE8E757_RuntimeMethod_var))); } IL_0018: { // if (m_DevicesCount == 0) int32_t L_3 = __this->get_m_DevicesCount_6(); if (L_3) { goto IL_0022; } } { // return null; return (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *)NULL; } IL_0022: { // var nameOrLayoutLowerCase = nameOrLayout.ToLower(); String_t* L_4 = ___nameOrLayout0; NullCheck(L_4); String_t* L_5; L_5 = String_ToLower_m7875A49FE166D0A68F3F6B6E70C0C056EBEFD31D(L_4, /*hidden argument*/NULL); V_0 = L_5; // for (var i = 0; i < m_DevicesCount; ++i) V_1 = 0; goto IL_0062; } IL_002d: { // var device = m_Devices[i]; InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* L_6 = __this->get_m_Devices_7(); int32_t L_7 = V_1; NullCheck(L_6); int32_t L_8 = L_7; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_9 = (L_6)->GetAt(static_cast(L_8)); V_2 = L_9; // if (device.m_Name.ToLower() == nameOrLayoutLowerCase || // device.m_Layout.ToLower() == nameOrLayoutLowerCase) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_10 = V_2; NullCheck(L_10); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * L_11 = ((InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *)L_10)->get_address_of_m_Name_1(); String_t* L_12; L_12 = InternedString_ToLower_m3A1313A6EC45A43C5627D661669E434CA519F3E0_inline((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)L_11, /*hidden argument*/NULL); String_t* L_13 = V_0; bool L_14; L_14 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_12, L_13, /*hidden argument*/NULL); if (L_14) { goto IL_005c; } } { InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_15 = V_2; NullCheck(L_15); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * L_16 = ((InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *)L_15)->get_address_of_m_Layout_7(); String_t* L_17; L_17 = InternedString_ToLower_m3A1313A6EC45A43C5627D661669E434CA519F3E0_inline((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)L_16, /*hidden argument*/NULL); String_t* L_18 = V_0; bool L_19; L_19 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_17, L_18, /*hidden argument*/NULL); if (!L_19) { goto IL_005e; } } IL_005c: { // return device; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_20 = V_2; return L_20; } IL_005e: { // for (var i = 0; i < m_DevicesCount; ++i) int32_t L_21 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1)); } IL_0062: { // for (var i = 0; i < m_DevicesCount; ++i) int32_t L_22 = V_1; int32_t L_23 = __this->get_m_DevicesCount_6(); if ((((int32_t)L_22) < ((int32_t)L_23))) { goto IL_002d; } } { // return null; return (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *)NULL; } } // UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputManager::GetDevice(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * InputManager_GetDevice_m5B7916A4ED9117C53BE60B4B8635FAC3F488D6C0 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, String_t* ___nameOrLayout0, const RuntimeMethod* method) { InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * G_B2_0 = NULL; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * G_B1_0 = NULL; { // var device = TryGetDevice(nameOrLayout); String_t* L_0 = ___nameOrLayout0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_1; L_1 = InputManager_TryGetDevice_m25BCD84E40F77E410BA6965DDC9294B61BE8E757(__this, L_0, /*hidden argument*/NULL); // if (device == null) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_2 = L_1; G_B1_0 = L_2; if (L_2) { G_B2_0 = L_2; goto IL_0025; } } { // throw new ArgumentException($"Cannot find device with name or layout '{nameOrLayout}'", nameof(nameOrLayout)); String_t* L_3 = ___nameOrLayout0; String_t* L_4; L_4 = String_Concat_mC41740F000A5A48F8D313FB4CEE0E35E207A2632(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA522C29D98B1F10D9DF031D9DE44DA2292D7DE53)), L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_5 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_5, L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral92D63F42D5F24A04F46CF0B3820441D11C905B48)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_GetDevice_m5B7916A4ED9117C53BE60B4B8635FAC3F488D6C0_RuntimeMethod_var))); } IL_0025: { // return device; return G_B2_0; } } // UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputManager::TryGetDevice(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * InputManager_TryGetDevice_m644B03906FE3E68E6F2D8DEC11DF48CB571DC2D7 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, Type_t * ___layoutType0, const RuntimeMethod* method) { InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_0; memset((&V_0), 0, sizeof(V_0)); { // var layoutName = m_Layouts.TryFindLayoutForType(layoutType); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_0 = __this->get_address_of_m_Layouts_2(); Type_t * L_1 = ___layoutType0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_2; L_2 = Collection_TryFindLayoutForType_mC84D3FC044E2F243F888F3335424CCCA07072AC9((Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F *)L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; // if (layoutName.IsEmpty()) bool L_3; L_3 = InternedString_IsEmpty_mDC1F123EBDF899AB57EDDCFFC3F67DA84A2CC2AD((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&V_0), /*hidden argument*/NULL); if (!L_3) { goto IL_0018; } } { // return null; return (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *)NULL; } IL_0018: { // return TryGetDevice(layoutName); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_4 = V_0; String_t* L_5; L_5 = InternedString_op_Implicit_m5C5E28D59A0F856D52E38C0C147176E4B306D6BD(L_4, /*hidden argument*/NULL); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_6; L_6 = InputManager_TryGetDevice_m25BCD84E40F77E410BA6965DDC9294B61BE8E757(__this, L_5, /*hidden argument*/NULL); return L_6; } } // UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputManager::TryGetDeviceById(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * InputManager_TryGetDeviceById_m04896C1A02E97E7B7322C28FDC002823CDB6167B (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, int32_t ___id0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m4C7810EB420DB7FC0BC4DB22BDE91569085096F2_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * V_0 = NULL; { // if (m_DevicesById.TryGetValue(id, out var result)) Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7 * L_0 = __this->get_m_DevicesById_8(); int32_t L_1 = ___id0; NullCheck(L_0); bool L_2; L_2 = Dictionary_2_TryGetValue_m4C7810EB420DB7FC0BC4DB22BDE91569085096F2(L_0, L_1, (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 **)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m4C7810EB420DB7FC0BC4DB22BDE91569085096F2_RuntimeMethod_var); if (!L_2) { goto IL_0012; } } { // return result; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_3 = V_0; return L_3; } IL_0012: { // return null; return (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *)NULL; } } // System.Int32 UnityEngine.InputSystem.InputManager::GetUnsupportedDevices(System.Collections.Generic.List`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputManager_GetUnsupportedDevices_m4C6559B7E89FF589040BC5C898BC2C39EC5E5463 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, List_1_tAC9866130CCE9F688E2E8D1782F54217E5E3A32F * ___descriptions0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m3BC6C2081F0B7141ADA19126352232251A342682_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { // if (descriptions == null) List_1_tAC9866130CCE9F688E2E8D1782F54217E5E3A32F * L_0 = ___descriptions0; if (L_0) { goto IL_000e; } } { // throw new ArgumentNullException(nameof(descriptions)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral75FF844BBE586082C7FA1D317EAFCB2B4AB53D9C)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_GetUnsupportedDevices_m4C6559B7E89FF589040BC5C898BC2C39EC5E5463_RuntimeMethod_var))); } IL_000e: { // var numFound = 0; V_0 = 0; // for (var i = 0; i < m_AvailableDeviceCount; ++i) V_1 = 0; goto IL_004c; } IL_0014: { // if (TryGetDeviceById(m_AvailableDevices[i].deviceId) != null) AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330* L_2 = __this->get_m_AvailableDevices_10(); int32_t L_3 = V_1; NullCheck(L_2); int32_t L_4 = ((L_2)->GetAddressAt(static_cast(L_3)))->get_deviceId_1(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_5; L_5 = InputManager_TryGetDeviceById_m04896C1A02E97E7B7322C28FDC002823CDB6167B(__this, L_4, /*hidden argument*/NULL); if (L_5) { goto IL_0048; } } { // descriptions.Add(m_AvailableDevices[i].description); List_1_tAC9866130CCE9F688E2E8D1782F54217E5E3A32F * L_6 = ___descriptions0; AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330* L_7 = __this->get_m_AvailableDevices_10(); int32_t L_8 = V_1; NullCheck(L_7); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_9 = ((L_7)->GetAddressAt(static_cast(L_8)))->get_description_0(); NullCheck(L_6); List_1_Add_m3BC6C2081F0B7141ADA19126352232251A342682(L_6, L_9, /*hidden argument*/List_1_Add_m3BC6C2081F0B7141ADA19126352232251A342682_RuntimeMethod_var); // ++numFound; int32_t L_10 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_0048: { // for (var i = 0; i < m_AvailableDeviceCount; ++i) int32_t L_11 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_004c: { // for (var i = 0; i < m_AvailableDeviceCount; ++i) int32_t L_12 = V_1; int32_t L_13 = __this->get_m_AvailableDeviceCount_9(); if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0014; } } { // return numFound; int32_t L_14 = V_0; return L_14; } } // System.Void UnityEngine.InputSystem.InputManager::EnableOrDisableDevice(UnityEngine.InputSystem.InputDevice,System.Boolean,UnityEngine.InputSystem.InputManager/DeviceDisableScope) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_EnableOrDisableDevice_m2A34CA6F0F721537E62BC5CDF32C051CA3FEC183 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, bool ___enable1, int32_t ___scope2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m402A94AC9070B345C95919DCFFFF627252B3E67A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral84CAACE59D08AF4659A3A7E4D00A4514400CE96A); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 V_1; memset((&V_1), 0, sizeof(V_1)); int32_t G_B52_0 = 0; { // if (device == null) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_0 = ___device0; if (L_0) { goto IL_000e; } } { // throw new ArgumentNullException(nameof(device)); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE847FDE91DE0DA95AFBA0EEF52C90BEB4CE621BF)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_EnableOrDisableDevice_m2A34CA6F0F721537E62BC5CDF32C051CA3FEC183_RuntimeMethod_var))); } IL_000e: { // if (enable) bool L_2 = ___enable1; if (!L_2) { goto IL_012d; } } { int32_t L_3 = ___scope2; switch (L_3) { case 0: { goto IL_002b; } case 1: { goto IL_0089; } case 2: { goto IL_00e7; } } } { goto IL_0218; } IL_002b: { // device.disabledWhileInBackground = false; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_4 = ___device0; NullCheck(L_4); InputDevice_set_disabledWhileInBackground_mDDEA05B48B000CC0FDF299D1351EAAF85DB9E6C4(L_4, (bool)0, /*hidden argument*/NULL); // if (!device.disabledInFrontend && !device.disabledInRuntime) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_5 = ___device0; NullCheck(L_5); bool L_6; L_6 = InputDevice_get_disabledInFrontend_mC033F07E789663FEA0A2F1EFF647676444C088EB(L_5, /*hidden argument*/NULL); if (L_6) { goto IL_0043; } } { InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_7 = ___device0; NullCheck(L_7); bool L_8; L_8 = InputDevice_get_disabledInRuntime_m0C48E5186775F12FE5FD995DEF5012EB8FC6A34B(L_7, /*hidden argument*/NULL); if (L_8) { goto IL_0043; } } { // return; return; } IL_0043: { // if (device.disabledInRuntime) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_9 = ___device0; NullCheck(L_9); bool L_10; L_10 = InputDevice_get_disabledInRuntime_m0C48E5186775F12FE5FD995DEF5012EB8FC6A34B(L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0059; } } { // device.ExecuteEnableCommand(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_11 = ___device0; NullCheck(L_11); bool L_12; L_12 = InputDevice_ExecuteEnableCommand_m0327C2A773CFC5F7136CEABA65F4E6A7BC08B979(L_11, /*hidden argument*/NULL); // device.disabledInRuntime = false; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_13 = ___device0; NullCheck(L_13); InputDevice_set_disabledInRuntime_mBDDF48CA5E3D065CDB07AA229B22CE6BF57ADA52(L_13, (bool)0, /*hidden argument*/NULL); } IL_0059: { // if (device.disabledInFrontend) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_14 = ___device0; NullCheck(L_14); bool L_15; L_15 = InputDevice_get_disabledInFrontend_mC033F07E789663FEA0A2F1EFF647676444C088EB(L_14, /*hidden argument*/NULL); if (!L_15) { goto IL_0218; } } { // if (!device.RequestSync()) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_16 = ___device0; NullCheck(L_16); bool L_17; L_17 = InputDevice_RequestSync_mFE6A5CFDE65109D527ED21DB498E6826A296C4BB(L_16, /*hidden argument*/NULL); if (L_17) { goto IL_007d; } } { // ResetDevice(device); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_18 = ___device0; il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 )); Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_19 = V_1; InputManager_ResetDevice_m161F0EA740DED1C72CB96E573E86C13656C990D2(__this, L_18, (bool)0, L_19, /*hidden argument*/NULL); } IL_007d: { // device.disabledInFrontend = false; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_20 = ___device0; NullCheck(L_20); InputDevice_set_disabledInFrontend_m08F06A6271017BC472335FC456D730677DC4B97D(L_20, (bool)0, /*hidden argument*/NULL); // break; goto IL_0218; } IL_0089: { // device.disabledWhileInBackground = false; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_21 = ___device0; NullCheck(L_21); InputDevice_set_disabledWhileInBackground_mDDEA05B48B000CC0FDF299D1351EAAF85DB9E6C4(L_21, (bool)0, /*hidden argument*/NULL); // if (!device.disabledInFrontend && device.disabledInRuntime) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_22 = ___device0; NullCheck(L_22); bool L_23; L_23 = InputDevice_get_disabledInFrontend_mC033F07E789663FEA0A2F1EFF647676444C088EB(L_22, /*hidden argument*/NULL); if (L_23) { goto IL_00a1; } } { InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_24 = ___device0; NullCheck(L_24); bool L_25; L_25 = InputDevice_get_disabledInRuntime_m0C48E5186775F12FE5FD995DEF5012EB8FC6A34B(L_24, /*hidden argument*/NULL); if (!L_25) { goto IL_00a1; } } { // return; return; } IL_00a1: { // if (!device.disabledInRuntime) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_26 = ___device0; NullCheck(L_26); bool L_27; L_27 = InputDevice_get_disabledInRuntime_m0C48E5186775F12FE5FD995DEF5012EB8FC6A34B(L_26, /*hidden argument*/NULL); if (L_27) { goto IL_00b7; } } { // device.ExecuteDisableCommand(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_28 = ___device0; NullCheck(L_28); bool L_29; L_29 = InputDevice_ExecuteDisableCommand_m90C167B490FF4D0282A0D5955459932AA1510BFE(L_28, /*hidden argument*/NULL); // device.disabledInRuntime = true; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_30 = ___device0; NullCheck(L_30); InputDevice_set_disabledInRuntime_mBDDF48CA5E3D065CDB07AA229B22CE6BF57ADA52(L_30, (bool)1, /*hidden argument*/NULL); } IL_00b7: { // if (device.disabledInFrontend) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_31 = ___device0; NullCheck(L_31); bool L_32; L_32 = InputDevice_get_disabledInFrontend_mC033F07E789663FEA0A2F1EFF647676444C088EB(L_31, /*hidden argument*/NULL); if (!L_32) { goto IL_0218; } } { // if (!device.RequestSync()) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_33 = ___device0; NullCheck(L_33); bool L_34; L_34 = InputDevice_RequestSync_mFE6A5CFDE65109D527ED21DB498E6826A296C4BB(L_33, /*hidden argument*/NULL); if (L_34) { goto IL_00db; } } { // ResetDevice(device); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_35 = ___device0; il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 )); Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_36 = V_1; InputManager_ResetDevice_m161F0EA740DED1C72CB96E573E86C13656C990D2(__this, L_35, (bool)0, L_36, /*hidden argument*/NULL); } IL_00db: { // device.disabledInFrontend = false; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_37 = ___device0; NullCheck(L_37); InputDevice_set_disabledInFrontend_m08F06A6271017BC472335FC456D730677DC4B97D(L_37, (bool)0, /*hidden argument*/NULL); // break; goto IL_0218; } IL_00e7: { // if (device.disabledWhileInBackground) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_38 = ___device0; NullCheck(L_38); bool L_39; L_39 = InputDevice_get_disabledWhileInBackground_mC5A011EACEBCF0E40DD4F82ED364FF5D10D9E8BB(L_38, /*hidden argument*/NULL); if (!L_39) { goto IL_0218; } } { // if (device.disabledInRuntime) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_40 = ___device0; NullCheck(L_40); bool L_41; L_41 = InputDevice_get_disabledInRuntime_m0C48E5186775F12FE5FD995DEF5012EB8FC6A34B(L_40, /*hidden argument*/NULL); if (!L_41) { goto IL_0108; } } { // device.ExecuteEnableCommand(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_42 = ___device0; NullCheck(L_42); bool L_43; L_43 = InputDevice_ExecuteEnableCommand_m0327C2A773CFC5F7136CEABA65F4E6A7BC08B979(L_42, /*hidden argument*/NULL); // device.disabledInRuntime = false; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_44 = ___device0; NullCheck(L_44); InputDevice_set_disabledInRuntime_mBDDF48CA5E3D065CDB07AA229B22CE6BF57ADA52(L_44, (bool)0, /*hidden argument*/NULL); } IL_0108: { // if (!device.RequestSync()) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_45 = ___device0; NullCheck(L_45); bool L_46; L_46 = InputDevice_RequestSync_mFE6A5CFDE65109D527ED21DB498E6826A296C4BB(L_45, /*hidden argument*/NULL); if (L_46) { goto IL_0121; } } { // ResetDevice(device); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_47 = ___device0; il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 )); Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_48 = V_1; InputManager_ResetDevice_m161F0EA740DED1C72CB96E573E86C13656C990D2(__this, L_47, (bool)0, L_48, /*hidden argument*/NULL); } IL_0121: { // device.disabledWhileInBackground = false; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_49 = ___device0; NullCheck(L_49); InputDevice_set_disabledWhileInBackground_mDDEA05B48B000CC0FDF299D1351EAAF85DB9E6C4(L_49, (bool)0, /*hidden argument*/NULL); // break; goto IL_0218; } IL_012d: { int32_t L_50 = ___scope2; switch (L_50) { case 0: { goto IL_0144; } case 1: { goto IL_0197; } case 2: { goto IL_01e4; } } } { goto IL_0218; } IL_0144: { // device.disabledWhileInBackground = false; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_51 = ___device0; NullCheck(L_51); InputDevice_set_disabledWhileInBackground_mDDEA05B48B000CC0FDF299D1351EAAF85DB9E6C4(L_51, (bool)0, /*hidden argument*/NULL); // if (device.disabledInFrontend && device.disabledInRuntime) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_52 = ___device0; NullCheck(L_52); bool L_53; L_53 = InputDevice_get_disabledInFrontend_mC033F07E789663FEA0A2F1EFF647676444C088EB(L_52, /*hidden argument*/NULL); if (!L_53) { goto IL_015c; } } { InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_54 = ___device0; NullCheck(L_54); bool L_55; L_55 = InputDevice_get_disabledInRuntime_m0C48E5186775F12FE5FD995DEF5012EB8FC6A34B(L_54, /*hidden argument*/NULL); if (!L_55) { goto IL_015c; } } { // return; return; } IL_015c: { // if (!device.disabledInRuntime) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_56 = ___device0; NullCheck(L_56); bool L_57; L_57 = InputDevice_get_disabledInRuntime_m0C48E5186775F12FE5FD995DEF5012EB8FC6A34B(L_56, /*hidden argument*/NULL); if (L_57) { goto IL_0172; } } { // device.ExecuteDisableCommand(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_58 = ___device0; NullCheck(L_58); bool L_59; L_59 = InputDevice_ExecuteDisableCommand_m90C167B490FF4D0282A0D5955459932AA1510BFE(L_58, /*hidden argument*/NULL); // device.disabledInRuntime = true; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_60 = ___device0; NullCheck(L_60); InputDevice_set_disabledInRuntime_mBDDF48CA5E3D065CDB07AA229B22CE6BF57ADA52(L_60, (bool)1, /*hidden argument*/NULL); } IL_0172: { // if (!device.disabledInFrontend) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_61 = ___device0; NullCheck(L_61); bool L_62; L_62 = InputDevice_get_disabledInFrontend_mC033F07E789663FEA0A2F1EFF647676444C088EB(L_61, /*hidden argument*/NULL); if (L_62) { goto IL_0218; } } { // ResetDevice(device, issueResetCommand: false); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_63 = ___device0; Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_64; memset((&L_64), 0, sizeof(L_64)); Nullable_1__ctor_m402A94AC9070B345C95919DCFFFF627252B3E67A((&L_64), (bool)0, /*hidden argument*/Nullable_1__ctor_m402A94AC9070B345C95919DCFFFF627252B3E67A_RuntimeMethod_var); InputManager_ResetDevice_m161F0EA740DED1C72CB96E573E86C13656C990D2(__this, L_63, (bool)0, L_64, /*hidden argument*/NULL); // device.disabledInFrontend = true; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_65 = ___device0; NullCheck(L_65); InputDevice_set_disabledInFrontend_m08F06A6271017BC472335FC456D730677DC4B97D(L_65, (bool)1, /*hidden argument*/NULL); // break; goto IL_0218; } IL_0197: { // device.disabledWhileInBackground = false; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_66 = ___device0; NullCheck(L_66); InputDevice_set_disabledWhileInBackground_mDDEA05B48B000CC0FDF299D1351EAAF85DB9E6C4(L_66, (bool)0, /*hidden argument*/NULL); // if (!device.disabledInRuntime && device.disabledInFrontend) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_67 = ___device0; NullCheck(L_67); bool L_68; L_68 = InputDevice_get_disabledInRuntime_m0C48E5186775F12FE5FD995DEF5012EB8FC6A34B(L_67, /*hidden argument*/NULL); if (L_68) { goto IL_01af; } } { InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_69 = ___device0; NullCheck(L_69); bool L_70; L_70 = InputDevice_get_disabledInFrontend_mC033F07E789663FEA0A2F1EFF647676444C088EB(L_69, /*hidden argument*/NULL); if (!L_70) { goto IL_01af; } } { // return; return; } IL_01af: { // if (device.disabledInRuntime) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_71 = ___device0; NullCheck(L_71); bool L_72; L_72 = InputDevice_get_disabledInRuntime_m0C48E5186775F12FE5FD995DEF5012EB8FC6A34B(L_71, /*hidden argument*/NULL); if (!L_72) { goto IL_01c5; } } { // device.ExecuteEnableCommand(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_73 = ___device0; NullCheck(L_73); bool L_74; L_74 = InputDevice_ExecuteEnableCommand_m0327C2A773CFC5F7136CEABA65F4E6A7BC08B979(L_73, /*hidden argument*/NULL); // device.disabledInRuntime = false; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_75 = ___device0; NullCheck(L_75); InputDevice_set_disabledInRuntime_mBDDF48CA5E3D065CDB07AA229B22CE6BF57ADA52(L_75, (bool)0, /*hidden argument*/NULL); } IL_01c5: { // if (!device.disabledInFrontend) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_76 = ___device0; NullCheck(L_76); bool L_77; L_77 = InputDevice_get_disabledInFrontend_mC033F07E789663FEA0A2F1EFF647676444C088EB(L_76, /*hidden argument*/NULL); if (L_77) { goto IL_0218; } } { // ResetDevice(device, issueResetCommand: false); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_78 = ___device0; Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_79; memset((&L_79), 0, sizeof(L_79)); Nullable_1__ctor_m402A94AC9070B345C95919DCFFFF627252B3E67A((&L_79), (bool)0, /*hidden argument*/Nullable_1__ctor_m402A94AC9070B345C95919DCFFFF627252B3E67A_RuntimeMethod_var); InputManager_ResetDevice_m161F0EA740DED1C72CB96E573E86C13656C990D2(__this, L_78, (bool)0, L_79, /*hidden argument*/NULL); // device.disabledInFrontend = true; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_80 = ___device0; NullCheck(L_80); InputDevice_set_disabledInFrontend_m08F06A6271017BC472335FC456D730677DC4B97D(L_80, (bool)1, /*hidden argument*/NULL); // break; goto IL_0218; } IL_01e4: { // if (device.disabledInFrontend || device.disabledWhileInBackground) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_81 = ___device0; NullCheck(L_81); bool L_82; L_82 = InputDevice_get_disabledInFrontend_mC033F07E789663FEA0A2F1EFF647676444C088EB(L_81, /*hidden argument*/NULL); if (L_82) { goto IL_01f4; } } { InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_83 = ___device0; NullCheck(L_83); bool L_84; L_84 = InputDevice_get_disabledWhileInBackground_mC5A011EACEBCF0E40DD4F82ED364FF5D10D9E8BB(L_83, /*hidden argument*/NULL); if (!L_84) { goto IL_01f5; } } IL_01f4: { // return; return; } IL_01f5: { // device.disabledWhileInBackground = true; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_85 = ___device0; NullCheck(L_85); InputDevice_set_disabledWhileInBackground_mDDEA05B48B000CC0FDF299D1351EAAF85DB9E6C4(L_85, (bool)1, /*hidden argument*/NULL); // ResetDevice(device, issueResetCommand: false); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_86 = ___device0; Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_87; memset((&L_87), 0, sizeof(L_87)); Nullable_1__ctor_m402A94AC9070B345C95919DCFFFF627252B3E67A((&L_87), (bool)0, /*hidden argument*/Nullable_1__ctor_m402A94AC9070B345C95919DCFFFF627252B3E67A_RuntimeMethod_var); InputManager_ResetDevice_m161F0EA740DED1C72CB96E573E86C13656C990D2(__this, L_86, (bool)0, L_87, /*hidden argument*/NULL); // device.ExecuteDisableCommand(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_88 = ___device0; NullCheck(L_88); bool L_89; L_89 = InputDevice_ExecuteDisableCommand_m90C167B490FF4D0282A0D5955459932AA1510BFE(L_88, /*hidden argument*/NULL); // device.disabledInRuntime = true; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_90 = ___device0; NullCheck(L_90); InputDevice_set_disabledInRuntime_mBDDF48CA5E3D065CDB07AA229B22CE6BF57ADA52(L_90, (bool)1, /*hidden argument*/NULL); } IL_0218: { // var deviceChange = enable ? InputDeviceChange.Enabled : InputDeviceChange.Disabled; bool L_91 = ___enable1; if (L_91) { goto IL_021e; } } { G_B52_0 = 5; goto IL_021f; } IL_021e: { G_B52_0 = 4; } IL_021f: { V_0 = G_B52_0; // DelegateHelpers.InvokeCallbacksSafe(ref m_DeviceChangeListeners, device, deviceChange, "InputSystem.onDeviceChange"); CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 * L_92 = __this->get_address_of_m_DeviceChangeListeners_16(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_93 = ___device0; int32_t L_94 = V_0; DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38((CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 *)L_92, L_93, L_94, _stringLiteral84CAACE59D08AF4659A3A7E4D00A4514400CE96A, NULL, /*hidden argument*/DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38_RuntimeMethod_var); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::QueueEvent(UnityEngine.InputSystem.LowLevel.InputEvent*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_QueueEvent_m28C7A2B99010D148EB518DEDE7821B1B697D0ECD (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (m_InputEventStream.isOpen) InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * L_0 = __this->get_address_of_m_InputEventStream_28(); bool L_1; L_1 = InputEventStream_get_isOpen_m6813A58E116448D4957B213FA9FD7DAA57D7B8D4_inline((InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 *)L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_001a; } } { // m_InputEventStream.Write(eventPtr); InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * L_2 = __this->get_address_of_m_InputEventStream_28(); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_3 = ___eventPtr0; InputEventStream_Write_mE21DBB2F56BCAD00DC2D2BE5939FCE874206C109((InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 *)L_2, (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_3, /*hidden argument*/NULL); // return; return; } IL_001a: { // m_Runtime.QueueEvent(eventPtr); RuntimeObject* L_4 = __this->get_m_Runtime_31(); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_5 = ___eventPtr0; NullCheck(L_4); InterfaceActionInvoker1< InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * >::Invoke(2 /* System.Void UnityEngine.InputSystem.LowLevel.IInputRuntime::QueueEvent(UnityEngine.InputSystem.LowLevel.InputEvent*) */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_4, (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_5); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::QueueEvent(UnityEngine.InputSystem.LowLevel.InputEventPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_QueueEvent_m0CDAB0C85D7EDD8B77C11566C8A2A10130314912 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___ptr0, const RuntimeMethod* method) { { // QueueEvent(ptr.data); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_0; L_0 = InputEventPtr_get_data_m23324B1E4068E48168D6D06CEF9CC061D1E2D694_inline((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&___ptr0), /*hidden argument*/NULL); InputManager_QueueEvent_m28C7A2B99010D148EB518DEDE7821B1B697D0ECD(__this, (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_0, /*hidden argument*/NULL); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_Update_mA3D47EA9935DF5EE62C970C36B687A0B02354F79 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { { // Update(defaultUpdateType); int32_t L_0; L_0 = InputManager_get_defaultUpdateType_m42567EB68373890616C0D95CCE3F40098CE731BE(__this, /*hidden argument*/NULL); InputManager_Update_m0229B60808D13C87D95CE604719BE9EE675288C4(__this, L_0, /*hidden argument*/NULL); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::Update(UnityEngine.InputSystem.LowLevel.InputUpdateType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_Update_m0229B60808D13C87D95CE604719BE9EE675288C4 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, int32_t ___updateType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // m_Runtime.Update(updateType); RuntimeObject* L_0 = __this->get_m_Runtime_31(); int32_t L_1 = ___updateType0; NullCheck(L_0); InterfaceActionInvoker1< int32_t >::Invoke(1 /* System.Void UnityEngine.InputSystem.LowLevel.IInputRuntime::Update(UnityEngine.InputSystem.LowLevel.InputUpdateType) */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_0, L_1); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::Initialize(UnityEngine.InputSystem.LowLevel.IInputRuntime,UnityEngine.InputSystem.InputSettings) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_Initialize_mCD5C8BC25B2756F68C15C6ED6D886B9F90A07F94 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, RuntimeObject* ___runtime0, InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * ___settings1, const RuntimeMethod* method) { { // m_Settings = settings; InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_0 = ___settings1; __this->set_m_Settings_33(L_0); // InitializeData(); InputManager_InitializeData_m825A76EEEB51EE056BE7D28E1DC0DDB8EB71530D(__this, /*hidden argument*/NULL); // InstallRuntime(runtime); RuntimeObject* L_1 = ___runtime0; InputManager_InstallRuntime_m697DFE86190C9F51B60F5BE6114E54B11B399A67(__this, L_1, /*hidden argument*/NULL); // InstallGlobals(); InputManager_InstallGlobals_m84915F68FAFED587CE408DA1C6F0C3B03C7F8274(__this, /*hidden argument*/NULL); // ApplySettings(); InputManager_ApplySettings_mEF00E3EDCFEE9C9311B3016A22F478DC1A56E446(__this, /*hidden argument*/NULL); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::Destroy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_Destroy_m18F7D8E58EE8C765ABBA9CDA56ECEA0E39C2453B (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { // for (var i = 0; i < m_DevicesCount; ++i) V_0 = 0; goto IL_0015; } IL_0004: { // m_Devices[i].NotifyRemoved(); InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* L_0 = __this->get_m_Devices_7(); int32_t L_1 = V_0; NullCheck(L_0); int32_t L_2 = L_1; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_3 = (L_0)->GetAt(static_cast(L_2)); NullCheck(L_3); InputDevice_NotifyRemoved_mB46C1B6528A3314DC4D98E54423BDB490CD04E0B(L_3, /*hidden argument*/NULL); // for (var i = 0; i < m_DevicesCount; ++i) int32_t L_4 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); } IL_0015: { // for (var i = 0; i < m_DevicesCount; ++i) int32_t L_5 = V_0; int32_t L_6 = __this->get_m_DevicesCount_6(); if ((((int32_t)L_5) < ((int32_t)L_6))) { goto IL_0004; } } { // m_StateBuffers.FreeAll(); InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA * L_7 = __this->get_address_of_m_StateBuffers_15(); InputStateBuffers_FreeAll_m6E5BFFDB30EEFE25ACCDF9D299C1C3516D8AEDB4((InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA *)L_7, /*hidden argument*/NULL); // UninstallGlobals(); InputManager_UninstallGlobals_m54D03B977F407830C8E42CFEA4B7652DA0A27FEE(__this, /*hidden argument*/NULL); // if (m_Settings != null && m_Settings.hideFlags == HideFlags.HideAndDontSave) InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_8 = __this->get_m_Settings_33(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_9; L_9 = Object_op_Inequality_mDCB4E958808E725D0612CCABF340B284085F03D6(L_8, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_9) { goto IL_0057; } } { InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_10 = __this->get_m_Settings_33(); NullCheck(L_10); int32_t L_11; L_11 = Object_get_hideFlags_m0F6495E1FB440A08314B7D74CCA99C897FAC05D1(L_10, /*hidden argument*/NULL); if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)61))))) { goto IL_0057; } } { // Object.DestroyImmediate(m_Settings); InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_12 = __this->get_m_Settings_33(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); Object_DestroyImmediate_m7E408D4287F169F714A91F4D823A0BEF6090C11F(L_12, /*hidden argument*/NULL); } IL_0057: { // } return; } } // System.Void UnityEngine.InputSystem.InputManager::InitializeData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_InitializeData_m825A76EEEB51EE056BE7D28E1DC0DDB8EB71530D (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Accelerometer_t2B89DD1E2532854163FFE3820BF63F7F245F5375_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AmbientTemperatureSensor_t73671258243FCE903E2995A700494FD9FA63643F_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AnyKeyControl_t6934B34139C3CEB23A94217CF11A9CCDFDFF028E_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AttitudeSensor_tDA93C489EFD4C950A037AA69FDDAE8842B18E983_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AxisComposite_tEA5A791DE6B114D0C57946F4CD1CE90EEDAC84FD_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AxisControl_tA997FF52442F7B08C7E13B7028393B4117248680_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AxisDeadzoneProcessor_tA19F11FE10087B103BF9A97DCDF4700779F5BA0B_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ButtonControl_t3918D56D674854AF9DFEB8CCF130919AAD9FCA68_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ButtonWithOneModifier_t95358FA0B5C76062E3BC5C20D969096D6E2241CA_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ButtonWithTwoModifiers_tF4727487D00EE4B443913F718D5C5F5729369149_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ClampProcessor_t0A29CDD7A199068E41E5D134B10A2E55C32C3BF9_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CompensateDirectionProcessor_tF5382582028A7D6624A52ABD9BB19F51CC7D7627_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CompensateRotationProcessor_t4C80A9D68C28B0CFA2F6215B4AA36DD983A61D86_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DeltaControl_t8A924CCBD9CC326D8375AD18A2AC1B62C45ECE10_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m1D3F721E49992BDAC658A4A4B6327AD0627AB926_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DiscreteButtonControl_tA658F3DC5ED555FA86194D216636B89D74A00544_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DoubleControl_t273946F2F448608F2EFD3D64A8273E7966911FF7_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DpadAxisControl_t8A4E36ABEC1F6993F164C8DAB0E45181039BF6DD_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DpadControl_t2429BF5A4D80829583D35E8DADE07C9B17E7BB1D_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Gamepad_t3C6642E1BBB303694097939CC8C223B1550C78F2_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GravitySensor_t4948EDC793CF7B05D9609AFE5DEF1BC96DBE53B7_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Gyroscope_t784181C4153A45D187F7C9977CCA2D4212AC681E_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HoldInteraction_t715CE494CFF68BC626B4D35D87BC2813C4119F72_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HumiditySensor_tB455ACFE8646FAC5FB6043666674F62C6B3A5095_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputManager_RegisterPrecompiledLayout_TisFastKeyboard_t641334EB58D7348C955C8DC003C1EBD56911142E_m52E01A0E2F4B92EF460D48AE86D026C8AD9312B0_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputManager_RegisterPrecompiledLayout_TisFastMouse_t4C65EF9E0660D75C177F0FF96CE76E59AE55E9A9_m30AA9938F471C3721E9FEC922C386A5413C4A415_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputManager_RegisterPrecompiledLayout_TisFastTouchscreen_tFDFEADAF2C3D76D13928E26557351A13CC36B98A_m82C8FC812A50331DB9675612427EDFAAA31387DF_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntegerControl_t68534DE7D89FBFC2952062997BB54680FE7DCCA4_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InvertProcessor_t18093EF6056E33DDD45E766EED7BCB86A53B2B03_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InvertVector2Processor_t27C8678979E9655DE37418DE0948BD5DF11765E4_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InvertVector3Processor_tC51163FAEF5239EFD918C393A7528D0D441AE5C1_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Joystick_tBAE58C422209B0F926486E4D064EB9253AB0837D_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyControl_tA7DD03A589164F77312F49223F3FA521CA7726CC_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Keyboard_tF4E5FAB1E6473B4EF811A1F77A6980FEF6B81207_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LightSensor_tB1B20573FA20BDEB2A88A72C420037274C97CF7B_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LinearAccelerationSensor_t30A28809A97B60C7E403CE8DA2266366AFE4FF89_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MagneticFieldSensor_t75CB788D509128B180202D910E5E53BFA2751DF7_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Mouse_tA93D10559A83D9DEED5B5736B527447951B0CF56_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MultiTapInteraction_t012F12E478E89C14B3805DC23B6AB8D9070CB267_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NormalizeProcessor_tBBEA186BBF9A3B849E081BEC79ECE057E75B3F69_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NormalizeVector2Processor_t418136A3EB68DCE7701363983AA982B1AA398511_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NormalizeVector3Processor_t2FEDF6C7258346B986AC32F20D69969336B7CA96_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OneModifierComposite_t29D6BED0988595E03D55EB7D9892BB5473EA2601_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Pen_t23C0C87078C5B2A7E29D97BEC4D170538F16BC99_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Pointer_t1E3BB2A6B6127C10002D78A2219A2F5083671FE5_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PressInteraction_tC7D6764556FB2E5C2832FB3A099A3BDC822C8A2F_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PressureSensor_t6FD4DD380BD33AB72DFC50AC4877FC20BD235684_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&QuaternionControl_t7BEFE3CFC03CC5CE3F779DDCB5AA2C011F5C7A48_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScaleProcessor_tBA12090BE747DB5D2A96A6EF03D654C81EBDE93E_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScaleVector2Processor_tF3294B2B41B169DB4DB4AE7357BB37C71E291C0F_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScaleVector3Processor_t69E0332D0B4C730E7F0F55EAA5ADDA2099A42841_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Sensor_t678877D11C0ECA0F2777419ED5C0EDC98959C453_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SlowTapInteraction_tD5D9C469F5DD1F184FD964485D666E14DD7A5E29_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StepCounter_t6CD3F5F32B86DCF951CB5403C06A513C841842AF_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StickControl_t19F09532D745275BC8ADB06AB2F1B1AE091AB79D_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StickDeadzoneProcessor_t33BB440B36435E547F63B4F8579210EF96246564_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TapInteraction_tBB569D70C3BB827E3E08EE62111F856CB4F39997_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchControl_t6E5C91937E6811635891F0FE85B96BA3338E0EFD_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchPhaseControl_t66BED8DE667F790E5A5FC49B822EB5AC82362432_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchPressControl_t7F7FA827A9ED616193A901BDA9125A2EBB0E2AF9_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touchscreen_tE679C4B2C2D8C5979EAC5A2002603672A202E3EB_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackedDevice_tDF5E09C055D0CA92DF8930A7B45EDA3BBA14ED71_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TwoModifiersComposite_t87E532EC1E7BAA93F9A2DBD51679B6F7C4F0624C_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2Composite_t1794D7A394A419502CE3B00A004429F6A08DF49F_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2Control_t271CA458D56BCA875642853132733D774B009A96_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3Composite_t04588F75A128E3F879BC4ED3C6B3C70C2F638C82_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3Control_t915A3DA3C3E367B6F5587853E96EAD5215D328AE_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral07A7681C0883AD72CB90C3265BE2DD9E3E8828C8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral09261B946DE10847F29FF64038746325ECC698FD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0970CF2FD3560786B3DFD69BC3EE83E1A9521103); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0C81413ADA26B9D9FB5559F6B8F00B6E297D84E1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0F074ACDA6A7CA1AB7A1168EDD7678BD05D5F651); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral11163885D674201194ABAB5054B7E0C366771C7B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1350F8DDC655DCB4BFCF3A9B1BEE6066B862DA49); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1B84978472E4222D49620AB99A8EFD2722C5F5FE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1D1CBD8D6012C682C7CCDFC1C225306E8558C078); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral27D9B7EF612AEB12509925B54604A1C6C9199F88); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral294F098A1D5E681EDEE8F43BFA8F45CFBA5798A7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3ED7B4C473E85E5A3870A4498B52AE1C0FA74132); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3EDED5759235CBBAF206D4FA859DCF807AA71BE1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral418C62912EB8A58FC3E9F514737466D07C4EA081); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral42066FD93A228D005178621FEC41EE10A0840BCF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral45EDE4DB19150515241E2FE6610B1490B1DED5C7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral480D2996F0237C983BBBCC925098492AFCFE152D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral497D04A9F12484A2B579045305317D824B392B5E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4D3D7302987C2B4D5F8093A5DAF6AC713B851CFC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4F724051E2D28B18765B679F5E4D93AED1FD6821); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral53341CC24F9A1C8120B54B4F417C8EF87B0CBCE1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5B53FF4BB90F17D124F1FA7197FF553B59B98F68); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral61225B335304C6BE91EE0EC8CF385BBE9B633F17); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral656C470468DF1309A8BC07ED38CE5FF1ACE64DBD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral65C06B538C43A32891E65BAB5E8DB3892D8BF2C2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral68F88088656B9923480FE618B4D5AEFBB1224599); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B1251A4A4D247E27F776167F1A9EA4D5A6E8497); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral70E56B100C48B1B56DB8AFFAC26B6F1BF92DDA11); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7348E969150769A75AF7801C5E009E8E6EC276EF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7D832450EB8F529B98D1D7829EE23B628D4FD794); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7DE03E5EBA0308517D1762F2C0DF3B9E2A2F1870); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral81E80EA114E7CD2B970C5BA3E85B8F9E93C46DC4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral841967C9F7417326D9B6354E4FE3FC45CE3634EA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral84C8BF6DDBDDEC3A92AEA77ABF46CD671944B758); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral871C50B2EA6F82F09B5B9A7EF8B17FDCA2EEE958); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral88F147D7F5EACCD41D1B500D3DF7155CB616B837); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8DACB0EDC7D405E158353E192C49915CD4031B83); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9223FB63DD1FD9CCF33683A7C5C87DA3F7CE1A9A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral98FEE36F66DDCF5ACCF066A4411E436B2EC27A78); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9A2E3F49549FF8BFC0C269B134528503D38A0399); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9B6F8A34098BC8FE5056EE7965F537F9FCD7445D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9D99959EC8130DC909F67BC3E4D542E221D60B3F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9DF256B62E2C231754E1C65A5601804CEBB90F9E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3A4CE0F9A828A57CABF00CD1C33D92A9A5773CF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA5030F91418E56823C7D2FC359BF27CC5AAD8E3B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA99DCC00443D797894F4B10607C716D806A9105F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAE9446031FCBCF6F39C5F3EEAC0C4BE4F0896F7F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAFB113C946693ED775D34DA089051C083C7A245E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB375D52F58ABA319072C6F9F1880BCB36A59233C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB502A186982A83A6C402B5753C1120061504E6EB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB720A9AE58815DFF5576319E5228D318E7899C07); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBB3F223896EC30F7292484479FB732D822BBDFBE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC068740B1398F61F47B7773BB27A4A828FA47A6F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC08ECADB105D30F2AA1FB05B93D1A8B5E1A69232); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC099423F69D278B508E17A8BA5BDA35BB6E29C08); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC4387C589D541CE3E405045B6594295A394F40C9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCA2622A958C0A5EDF1EE3688414144E43F12E29E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCFA73882EBCB16AE44454CACF911EC21EF0A579C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDDB8F4B49C528E0C3D5DA902B1F5423F84BCDC2B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE1569DA1D36D14A9B13F031EA09AC8CF93678F31); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE566E6091771397A8847DE9F0E5AF31E5E383CA7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE6C38AF488A8F495D24AC1B032C5CEA28D606CC5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE8F0495147FA58FE0F70B56DAC055C9129035987); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE9B2C4B73C4357A8FA4CCAF19BD43878882AB8C3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE9D638FD2B23E7A3CC06EE181F1A35A711C05D72); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEE71910C7E19B0D89B96AF6011CDFDAF6EA1CF1C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF0546BC9F3587B9EAC1F1B1ECC07BF7228DCDE8D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF13E4BFF086D4E511E68B0617B76ACC5BD5AFFE7); s_Il2CppMethodInitialized = true; } TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F V_0; memset((&V_0), 0, sizeof(V_0)); { // m_Layouts.Allocate(); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_0 = __this->get_address_of_m_Layouts_2(); Collection_Allocate_m09BF924CD889635F12F4DC54170F4B99DC5B4B14((Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F *)L_0, /*hidden argument*/NULL); // m_Processors.Initialize(); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F * L_1 = __this->get_address_of_m_Processors_3(); TypeTable_Initialize_mF7F937AB7B20B92A8D4D3EDE1352405CA19986EC((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)L_1, /*hidden argument*/NULL); // m_Interactions.Initialize(); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F * L_2 = __this->get_address_of_m_Interactions_4(); TypeTable_Initialize_mF7F937AB7B20B92A8D4D3EDE1352405CA19986EC((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)L_2, /*hidden argument*/NULL); // m_Composites.Initialize(); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F * L_3 = __this->get_address_of_m_Composites_5(); TypeTable_Initialize_mF7F937AB7B20B92A8D4D3EDE1352405CA19986EC((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)L_3, /*hidden argument*/NULL); // m_DevicesById = new Dictionary(); Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7 * L_4 = (Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7 *)il2cpp_codegen_object_new(Dictionary_2_t8806482C2146F52C36A8CED3F9F5BAB0A8207EE7_il2cpp_TypeInfo_var); Dictionary_2__ctor_m1D3F721E49992BDAC658A4A4B6327AD0627AB926(L_4, /*hidden argument*/Dictionary_2__ctor_m1D3F721E49992BDAC658A4A4B6327AD0627AB926_RuntimeMethod_var); __this->set_m_DevicesById_8(L_4); // m_UpdateMask = InputUpdateType.Dynamic | InputUpdateType.Fixed; __this->set_m_UpdateMask_13(3); // m_HasFocus = Application.isFocused; bool L_5; L_5 = Application_get_isFocused_m88A0B2DCBCD89F750E13748AA10F13469EED3C63(/*hidden argument*/NULL); __this->set_m_HasFocus_27(L_5); // m_PollingFrequency = 60; __this->set_m_PollingFrequency_1((60.0f)); // RegisterControlLayout("Axis", typeof(AxisControl)); // Controls. RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_6 = { reinterpret_cast (AxisControl_tA997FF52442F7B08C7E13B7028393B4117248680_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7; L_7 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_6, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteralEE71910C7E19B0D89B96AF6011CDFDAF6EA1CF1C, L_7, /*hidden argument*/NULL); // RegisterControlLayout("Button", typeof(ButtonControl)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_8 = { reinterpret_cast (ButtonControl_t3918D56D674854AF9DFEB8CCF130919AAD9FCA68_0_0_0_var) }; Type_t * L_9; L_9 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_8, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteral7DE03E5EBA0308517D1762F2C0DF3B9E2A2F1870, L_9, /*hidden argument*/NULL); // RegisterControlLayout("DiscreteButton", typeof(DiscreteButtonControl)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_10 = { reinterpret_cast (DiscreteButtonControl_tA658F3DC5ED555FA86194D216636B89D74A00544_0_0_0_var) }; Type_t * L_11; L_11 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_10, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteralC099423F69D278B508E17A8BA5BDA35BB6E29C08, L_11, /*hidden argument*/NULL); // RegisterControlLayout("Key", typeof(KeyControl)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_12 = { reinterpret_cast (KeyControl_tA7DD03A589164F77312F49223F3FA521CA7726CC_0_0_0_var) }; Type_t * L_13; L_13 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_12, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteralB720A9AE58815DFF5576319E5228D318E7899C07, L_13, /*hidden argument*/NULL); // RegisterControlLayout("Analog", typeof(AxisControl)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_14 = { reinterpret_cast (AxisControl_tA997FF52442F7B08C7E13B7028393B4117248680_0_0_0_var) }; Type_t * L_15; L_15 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_14, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteral0C81413ADA26B9D9FB5559F6B8F00B6E297D84E1, L_15, /*hidden argument*/NULL); // RegisterControlLayout("Integer", typeof(IntegerControl)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_16 = { reinterpret_cast (IntegerControl_t68534DE7D89FBFC2952062997BB54680FE7DCCA4_0_0_0_var) }; Type_t * L_17; L_17 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_16, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteralE566E6091771397A8847DE9F0E5AF31E5E383CA7, L_17, /*hidden argument*/NULL); // RegisterControlLayout("Digital", typeof(IntegerControl)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_18 = { reinterpret_cast (IntegerControl_t68534DE7D89FBFC2952062997BB54680FE7DCCA4_0_0_0_var) }; Type_t * L_19; L_19 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_18, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteral418C62912EB8A58FC3E9F514737466D07C4EA081, L_19, /*hidden argument*/NULL); // RegisterControlLayout("Double", typeof(DoubleControl)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_20 = { reinterpret_cast (DoubleControl_t273946F2F448608F2EFD3D64A8273E7966911FF7_0_0_0_var) }; Type_t * L_21; L_21 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_20, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteralF13E4BFF086D4E511E68B0617B76ACC5BD5AFFE7, L_21, /*hidden argument*/NULL); // RegisterControlLayout("Vector2", typeof(Vector2Control)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_22 = { reinterpret_cast (Vector2Control_t271CA458D56BCA875642853132733D774B009A96_0_0_0_var) }; Type_t * L_23; L_23 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_22, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteralCFA73882EBCB16AE44454CACF911EC21EF0A579C, L_23, /*hidden argument*/NULL); // RegisterControlLayout("Vector3", typeof(Vector3Control)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_24 = { reinterpret_cast (Vector3Control_t915A3DA3C3E367B6F5587853E96EAD5215D328AE_0_0_0_var) }; Type_t * L_25; L_25 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_24, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteralB375D52F58ABA319072C6F9F1880BCB36A59233C, L_25, /*hidden argument*/NULL); // RegisterControlLayout("Delta", typeof(DeltaControl)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_26 = { reinterpret_cast (DeltaControl_t8A924CCBD9CC326D8375AD18A2AC1B62C45ECE10_0_0_0_var) }; Type_t * L_27; L_27 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_26, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteralBB3F223896EC30F7292484479FB732D822BBDFBE, L_27, /*hidden argument*/NULL); // RegisterControlLayout("Quaternion", typeof(QuaternionControl)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_28 = { reinterpret_cast (QuaternionControl_t7BEFE3CFC03CC5CE3F779DDCB5AA2C011F5C7A48_0_0_0_var) }; Type_t * L_29; L_29 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_28, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteral27D9B7EF612AEB12509925B54604A1C6C9199F88, L_29, /*hidden argument*/NULL); // RegisterControlLayout("Stick", typeof(StickControl)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_30 = { reinterpret_cast (StickControl_t19F09532D745275BC8ADB06AB2F1B1AE091AB79D_0_0_0_var) }; Type_t * L_31; L_31 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_30, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteral656C470468DF1309A8BC07ED38CE5FF1ACE64DBD, L_31, /*hidden argument*/NULL); // RegisterControlLayout("Dpad", typeof(DpadControl)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_32 = { reinterpret_cast (DpadControl_t2429BF5A4D80829583D35E8DADE07C9B17E7BB1D_0_0_0_var) }; Type_t * L_33; L_33 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_32, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteralE9B2C4B73C4357A8FA4CCAF19BD43878882AB8C3, L_33, /*hidden argument*/NULL); // RegisterControlLayout("DpadAxis", typeof(DpadControl.DpadAxisControl)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_34 = { reinterpret_cast (DpadAxisControl_t8A4E36ABEC1F6993F164C8DAB0E45181039BF6DD_0_0_0_var) }; Type_t * L_35; L_35 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_34, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteral9223FB63DD1FD9CCF33683A7C5C87DA3F7CE1A9A, L_35, /*hidden argument*/NULL); // RegisterControlLayout("AnyKey", typeof(AnyKeyControl)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_36 = { reinterpret_cast (AnyKeyControl_t6934B34139C3CEB23A94217CF11A9CCDFDFF028E_0_0_0_var) }; Type_t * L_37; L_37 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_36, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteral7348E969150769A75AF7801C5E009E8E6EC276EF, L_37, /*hidden argument*/NULL); // RegisterControlLayout("Touch", typeof(TouchControl)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_38 = { reinterpret_cast (TouchControl_t6E5C91937E6811635891F0FE85B96BA3338E0EFD_0_0_0_var) }; Type_t * L_39; L_39 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_38, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteral45EDE4DB19150515241E2FE6610B1490B1DED5C7, L_39, /*hidden argument*/NULL); // RegisterControlLayout("TouchPhase", typeof(TouchPhaseControl)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_40 = { reinterpret_cast (TouchPhaseControl_t66BED8DE667F790E5A5FC49B822EB5AC82362432_0_0_0_var) }; Type_t * L_41; L_41 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_40, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteral841967C9F7417326D9B6354E4FE3FC45CE3634EA, L_41, /*hidden argument*/NULL); // RegisterControlLayout("TouchPress", typeof(TouchPressControl)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_42 = { reinterpret_cast (TouchPressControl_t7F7FA827A9ED616193A901BDA9125A2EBB0E2AF9_0_0_0_var) }; Type_t * L_43; L_43 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_42, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteral497D04A9F12484A2B579045305317D824B392B5E, L_43, /*hidden argument*/NULL); // RegisterControlLayout("Gamepad", typeof(Gamepad)); // Devices. RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_44 = { reinterpret_cast (Gamepad_t3C6642E1BBB303694097939CC8C223B1550C78F2_0_0_0_var) }; Type_t * L_45; L_45 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_44, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteral61225B335304C6BE91EE0EC8CF385BBE9B633F17, L_45, /*hidden argument*/NULL); // RegisterControlLayout("Joystick", typeof(Joystick)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_46 = { reinterpret_cast (Joystick_tBAE58C422209B0F926486E4D064EB9253AB0837D_0_0_0_var) }; Type_t * L_47; L_47 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_46, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteralB502A186982A83A6C402B5753C1120061504E6EB, L_47, /*hidden argument*/NULL); // RegisterControlLayout("Keyboard", typeof(Keyboard)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_48 = { reinterpret_cast (Keyboard_tF4E5FAB1E6473B4EF811A1F77A6980FEF6B81207_0_0_0_var) }; Type_t * L_49; L_49 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_48, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteralC068740B1398F61F47B7773BB27A4A828FA47A6F, L_49, /*hidden argument*/NULL); // RegisterControlLayout("Pointer", typeof(Pointer)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_50 = { reinterpret_cast (Pointer_t1E3BB2A6B6127C10002D78A2219A2F5083671FE5_0_0_0_var) }; Type_t * L_51; L_51 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_50, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteral871C50B2EA6F82F09B5B9A7EF8B17FDCA2EEE958, L_51, /*hidden argument*/NULL); // RegisterControlLayout("Mouse", typeof(Mouse)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_52 = { reinterpret_cast (Mouse_tA93D10559A83D9DEED5B5736B527447951B0CF56_0_0_0_var) }; Type_t * L_53; L_53 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_52, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteral294F098A1D5E681EDEE8F43BFA8F45CFBA5798A7, L_53, /*hidden argument*/NULL); // RegisterControlLayout("Pen", typeof(Pen)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_54 = { reinterpret_cast (Pen_t23C0C87078C5B2A7E29D97BEC4D170538F16BC99_0_0_0_var) }; Type_t * L_55; L_55 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_54, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteralA5030F91418E56823C7D2FC359BF27CC5AAD8E3B, L_55, /*hidden argument*/NULL); // RegisterControlLayout("Touchscreen", typeof(Touchscreen)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_56 = { reinterpret_cast (Touchscreen_tE679C4B2C2D8C5979EAC5A2002603672A202E3EB_0_0_0_var) }; Type_t * L_57; L_57 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_56, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteral3EDED5759235CBBAF206D4FA859DCF807AA71BE1, L_57, /*hidden argument*/NULL); // RegisterControlLayout("Sensor", typeof(Sensor)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_58 = { reinterpret_cast (Sensor_t678877D11C0ECA0F2777419ED5C0EDC98959C453_0_0_0_var) }; Type_t * L_59; L_59 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_58, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteralAE9446031FCBCF6F39C5F3EEAC0C4BE4F0896F7F, L_59, /*hidden argument*/NULL); // RegisterControlLayout("Accelerometer", typeof(Accelerometer)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_60 = { reinterpret_cast (Accelerometer_t2B89DD1E2532854163FFE3820BF63F7F245F5375_0_0_0_var) }; Type_t * L_61; L_61 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_60, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteral1350F8DDC655DCB4BFCF3A9B1BEE6066B862DA49, L_61, /*hidden argument*/NULL); // RegisterControlLayout("Gyroscope", typeof(Gyroscope)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_62 = { reinterpret_cast (Gyroscope_t784181C4153A45D187F7C9977CCA2D4212AC681E_0_0_0_var) }; Type_t * L_63; L_63 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_62, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteral81E80EA114E7CD2B970C5BA3E85B8F9E93C46DC4, L_63, /*hidden argument*/NULL); // RegisterControlLayout("GravitySensor", typeof(GravitySensor)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_64 = { reinterpret_cast (GravitySensor_t4948EDC793CF7B05D9609AFE5DEF1BC96DBE53B7_0_0_0_var) }; Type_t * L_65; L_65 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_64, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteral42066FD93A228D005178621FEC41EE10A0840BCF, L_65, /*hidden argument*/NULL); // RegisterControlLayout("AttitudeSensor", typeof(AttitudeSensor)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_66 = { reinterpret_cast (AttitudeSensor_tDA93C489EFD4C950A037AA69FDDAE8842B18E983_0_0_0_var) }; Type_t * L_67; L_67 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_66, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteral68F88088656B9923480FE618B4D5AEFBB1224599, L_67, /*hidden argument*/NULL); // RegisterControlLayout("LinearAccelerationSensor", typeof(LinearAccelerationSensor)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_68 = { reinterpret_cast (LinearAccelerationSensor_t30A28809A97B60C7E403CE8DA2266366AFE4FF89_0_0_0_var) }; Type_t * L_69; L_69 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_68, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteralCA2622A958C0A5EDF1EE3688414144E43F12E29E, L_69, /*hidden argument*/NULL); // RegisterControlLayout("MagneticFieldSensor", typeof(MagneticFieldSensor)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_70 = { reinterpret_cast (MagneticFieldSensor_t75CB788D509128B180202D910E5E53BFA2751DF7_0_0_0_var) }; Type_t * L_71; L_71 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_70, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteralE6C38AF488A8F495D24AC1B032C5CEA28D606CC5, L_71, /*hidden argument*/NULL); // RegisterControlLayout("LightSensor", typeof(LightSensor)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_72 = { reinterpret_cast (LightSensor_tB1B20573FA20BDEB2A88A72C420037274C97CF7B_0_0_0_var) }; Type_t * L_73; L_73 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_72, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteral9B6F8A34098BC8FE5056EE7965F537F9FCD7445D, L_73, /*hidden argument*/NULL); // RegisterControlLayout("PressureSensor", typeof(PressureSensor)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_74 = { reinterpret_cast (PressureSensor_t6FD4DD380BD33AB72DFC50AC4877FC20BD235684_0_0_0_var) }; Type_t * L_75; L_75 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_74, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteral8DACB0EDC7D405E158353E192C49915CD4031B83, L_75, /*hidden argument*/NULL); // RegisterControlLayout("HumiditySensor", typeof(HumiditySensor)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_76 = { reinterpret_cast (HumiditySensor_tB455ACFE8646FAC5FB6043666674F62C6B3A5095_0_0_0_var) }; Type_t * L_77; L_77 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_76, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteralC08ECADB105D30F2AA1FB05B93D1A8B5E1A69232, L_77, /*hidden argument*/NULL); // RegisterControlLayout("AmbientTemperatureSensor", typeof(AmbientTemperatureSensor)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_78 = { reinterpret_cast (AmbientTemperatureSensor_t73671258243FCE903E2995A700494FD9FA63643F_0_0_0_var) }; Type_t * L_79; L_79 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_78, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteralAFB113C946693ED775D34DA089051C083C7A245E, L_79, /*hidden argument*/NULL); // RegisterControlLayout("StepCounter", typeof(StepCounter)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_80 = { reinterpret_cast (StepCounter_t6CD3F5F32B86DCF951CB5403C06A513C841842AF_0_0_0_var) }; Type_t * L_81; L_81 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_80, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteral70E56B100C48B1B56DB8AFFAC26B6F1BF92DDA11, L_81, /*hidden argument*/NULL); // RegisterControlLayout("TrackedDevice", typeof(TrackedDevice)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_82 = { reinterpret_cast (TrackedDevice_tDF5E09C055D0CA92DF8930A7B45EDA3BBA14ED71_0_0_0_var) }; Type_t * L_83; L_83 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_82, /*hidden argument*/NULL); InputManager_RegisterControlLayout_mFF6E6526DC6FC24131D42732BF5D7D229E118634(__this, _stringLiteral11163885D674201194ABAB5054B7E0C366771C7B, L_83, /*hidden argument*/NULL); // RegisterPrecompiledLayout(FastKeyboard.metadata); InputManager_RegisterPrecompiledLayout_TisFastKeyboard_t641334EB58D7348C955C8DC003C1EBD56911142E_m52E01A0E2F4B92EF460D48AE86D026C8AD9312B0(__this, _stringLiteral1D1CBD8D6012C682C7CCDFC1C225306E8558C078, /*hidden argument*/InputManager_RegisterPrecompiledLayout_TisFastKeyboard_t641334EB58D7348C955C8DC003C1EBD56911142E_m52E01A0E2F4B92EF460D48AE86D026C8AD9312B0_RuntimeMethod_var); // RegisterPrecompiledLayout(FastTouchscreen.metadata); InputManager_RegisterPrecompiledLayout_TisFastTouchscreen_tFDFEADAF2C3D76D13928E26557351A13CC36B98A_m82C8FC812A50331DB9675612427EDFAAA31387DF(__this, _stringLiteral65C06B538C43A32891E65BAB5E8DB3892D8BF2C2, /*hidden argument*/InputManager_RegisterPrecompiledLayout_TisFastTouchscreen_tFDFEADAF2C3D76D13928E26557351A13CC36B98A_m82C8FC812A50331DB9675612427EDFAAA31387DF_RuntimeMethod_var); // RegisterPrecompiledLayout(FastMouse.metadata); InputManager_RegisterPrecompiledLayout_TisFastMouse_t4C65EF9E0660D75C177F0FF96CE76E59AE55E9A9_m30AA9938F471C3721E9FEC922C386A5413C4A415(__this, _stringLiteral9A2E3F49549FF8BFC0C269B134528503D38A0399, /*hidden argument*/InputManager_RegisterPrecompiledLayout_TisFastMouse_t4C65EF9E0660D75C177F0FF96CE76E59AE55E9A9_m30AA9938F471C3721E9FEC922C386A5413C4A415_RuntimeMethod_var); // processors.AddTypeRegistration("Invert", typeof(InvertProcessor)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_84; L_84 = InputManager_get_processors_mE2E7DCBCB385B48AFA5B8EF95B35504E6BBD872E_inline(__this, /*hidden argument*/NULL); V_0 = L_84; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_85 = { reinterpret_cast (InvertProcessor_t18093EF6056E33DDD45E766EED7BCB86A53B2B03_0_0_0_var) }; Type_t * L_86; L_86 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_85, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteral9D99959EC8130DC909F67BC3E4D542E221D60B3F, L_86, /*hidden argument*/NULL); // processors.AddTypeRegistration("InvertVector2", typeof(InvertVector2Processor)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_87; L_87 = InputManager_get_processors_mE2E7DCBCB385B48AFA5B8EF95B35504E6BBD872E_inline(__this, /*hidden argument*/NULL); V_0 = L_87; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_88 = { reinterpret_cast (InvertVector2Processor_t27C8678979E9655DE37418DE0948BD5DF11765E4_0_0_0_var) }; Type_t * L_89; L_89 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_88, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteral5B53FF4BB90F17D124F1FA7197FF553B59B98F68, L_89, /*hidden argument*/NULL); // processors.AddTypeRegistration("InvertVector3", typeof(InvertVector3Processor)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_90; L_90 = InputManager_get_processors_mE2E7DCBCB385B48AFA5B8EF95B35504E6BBD872E_inline(__this, /*hidden argument*/NULL); V_0 = L_90; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_91 = { reinterpret_cast (InvertVector3Processor_tC51163FAEF5239EFD918C393A7528D0D441AE5C1_0_0_0_var) }; Type_t * L_92; L_92 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_91, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteralF0546BC9F3587B9EAC1F1B1ECC07BF7228DCDE8D, L_92, /*hidden argument*/NULL); // processors.AddTypeRegistration("Clamp", typeof(ClampProcessor)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_93; L_93 = InputManager_get_processors_mE2E7DCBCB385B48AFA5B8EF95B35504E6BBD872E_inline(__this, /*hidden argument*/NULL); V_0 = L_93; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_94 = { reinterpret_cast (ClampProcessor_t0A29CDD7A199068E41E5D134B10A2E55C32C3BF9_0_0_0_var) }; Type_t * L_95; L_95 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_94, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteral09261B946DE10847F29FF64038746325ECC698FD, L_95, /*hidden argument*/NULL); // processors.AddTypeRegistration("Normalize", typeof(NormalizeProcessor)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_96; L_96 = InputManager_get_processors_mE2E7DCBCB385B48AFA5B8EF95B35504E6BBD872E_inline(__this, /*hidden argument*/NULL); V_0 = L_96; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_97 = { reinterpret_cast (NormalizeProcessor_tBBEA186BBF9A3B849E081BEC79ECE057E75B3F69_0_0_0_var) }; Type_t * L_98; L_98 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_97, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteral3ED7B4C473E85E5A3870A4498B52AE1C0FA74132, L_98, /*hidden argument*/NULL); // processors.AddTypeRegistration("NormalizeVector2", typeof(NormalizeVector2Processor)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_99; L_99 = InputManager_get_processors_mE2E7DCBCB385B48AFA5B8EF95B35504E6BBD872E_inline(__this, /*hidden argument*/NULL); V_0 = L_99; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_100 = { reinterpret_cast (NormalizeVector2Processor_t418136A3EB68DCE7701363983AA982B1AA398511_0_0_0_var) }; Type_t * L_101; L_101 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_100, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteral4F724051E2D28B18765B679F5E4D93AED1FD6821, L_101, /*hidden argument*/NULL); // processors.AddTypeRegistration("NormalizeVector3", typeof(NormalizeVector3Processor)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_102; L_102 = InputManager_get_processors_mE2E7DCBCB385B48AFA5B8EF95B35504E6BBD872E_inline(__this, /*hidden argument*/NULL); V_0 = L_102; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_103 = { reinterpret_cast (NormalizeVector3Processor_t2FEDF6C7258346B986AC32F20D69969336B7CA96_0_0_0_var) }; Type_t * L_104; L_104 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_103, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteralDDB8F4B49C528E0C3D5DA902B1F5423F84BCDC2B, L_104, /*hidden argument*/NULL); // processors.AddTypeRegistration("Scale", typeof(ScaleProcessor)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_105; L_105 = InputManager_get_processors_mE2E7DCBCB385B48AFA5B8EF95B35504E6BBD872E_inline(__this, /*hidden argument*/NULL); V_0 = L_105; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_106 = { reinterpret_cast (ScaleProcessor_tBA12090BE747DB5D2A96A6EF03D654C81EBDE93E_0_0_0_var) }; Type_t * L_107; L_107 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_106, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteral0970CF2FD3560786B3DFD69BC3EE83E1A9521103, L_107, /*hidden argument*/NULL); // processors.AddTypeRegistration("ScaleVector2", typeof(ScaleVector2Processor)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_108; L_108 = InputManager_get_processors_mE2E7DCBCB385B48AFA5B8EF95B35504E6BBD872E_inline(__this, /*hidden argument*/NULL); V_0 = L_108; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_109 = { reinterpret_cast (ScaleVector2Processor_tF3294B2B41B169DB4DB4AE7357BB37C71E291C0F_0_0_0_var) }; Type_t * L_110; L_110 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_109, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteralC4387C589D541CE3E405045B6594295A394F40C9, L_110, /*hidden argument*/NULL); // processors.AddTypeRegistration("ScaleVector3", typeof(ScaleVector3Processor)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_111; L_111 = InputManager_get_processors_mE2E7DCBCB385B48AFA5B8EF95B35504E6BBD872E_inline(__this, /*hidden argument*/NULL); V_0 = L_111; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_112 = { reinterpret_cast (ScaleVector3Processor_t69E0332D0B4C730E7F0F55EAA5ADDA2099A42841_0_0_0_var) }; Type_t * L_113; L_113 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_112, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteralA3A4CE0F9A828A57CABF00CD1C33D92A9A5773CF, L_113, /*hidden argument*/NULL); // processors.AddTypeRegistration("StickDeadzone", typeof(StickDeadzoneProcessor)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_114; L_114 = InputManager_get_processors_mE2E7DCBCB385B48AFA5B8EF95B35504E6BBD872E_inline(__this, /*hidden argument*/NULL); V_0 = L_114; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_115 = { reinterpret_cast (StickDeadzoneProcessor_t33BB440B36435E547F63B4F8579210EF96246564_0_0_0_var) }; Type_t * L_116; L_116 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_115, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteral0F074ACDA6A7CA1AB7A1168EDD7678BD05D5F651, L_116, /*hidden argument*/NULL); // processors.AddTypeRegistration("AxisDeadzone", typeof(AxisDeadzoneProcessor)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_117; L_117 = InputManager_get_processors_mE2E7DCBCB385B48AFA5B8EF95B35504E6BBD872E_inline(__this, /*hidden argument*/NULL); V_0 = L_117; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_118 = { reinterpret_cast (AxisDeadzoneProcessor_tA19F11FE10087B103BF9A97DCDF4700779F5BA0B_0_0_0_var) }; Type_t * L_119; L_119 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_118, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteral6B1251A4A4D247E27F776167F1A9EA4D5A6E8497, L_119, /*hidden argument*/NULL); // processors.AddTypeRegistration("CompensateDirection", typeof(CompensateDirectionProcessor)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_120; L_120 = InputManager_get_processors_mE2E7DCBCB385B48AFA5B8EF95B35504E6BBD872E_inline(__this, /*hidden argument*/NULL); V_0 = L_120; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_121 = { reinterpret_cast (CompensateDirectionProcessor_tF5382582028A7D6624A52ABD9BB19F51CC7D7627_0_0_0_var) }; Type_t * L_122; L_122 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_121, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteralE1569DA1D36D14A9B13F031EA09AC8CF93678F31, L_122, /*hidden argument*/NULL); // processors.AddTypeRegistration("CompensateRotation", typeof(CompensateRotationProcessor)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_123; L_123 = InputManager_get_processors_mE2E7DCBCB385B48AFA5B8EF95B35504E6BBD872E_inline(__this, /*hidden argument*/NULL); V_0 = L_123; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_124 = { reinterpret_cast (CompensateRotationProcessor_t4C80A9D68C28B0CFA2F6215B4AA36DD983A61D86_0_0_0_var) }; Type_t * L_125; L_125 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_124, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteral480D2996F0237C983BBBCC925098492AFCFE152D, L_125, /*hidden argument*/NULL); // interactions.AddTypeRegistration("Hold", typeof(HoldInteraction)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_126; L_126 = InputManager_get_interactions_m82239AA93F8937149018A1CC8114BCAB00E27FA1_inline(__this, /*hidden argument*/NULL); V_0 = L_126; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_127 = { reinterpret_cast (HoldInteraction_t715CE494CFF68BC626B4D35D87BC2813C4119F72_0_0_0_var) }; Type_t * L_128; L_128 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_127, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteral7D832450EB8F529B98D1D7829EE23B628D4FD794, L_128, /*hidden argument*/NULL); // interactions.AddTypeRegistration("Tap", typeof(TapInteraction)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_129; L_129 = InputManager_get_interactions_m82239AA93F8937149018A1CC8114BCAB00E27FA1_inline(__this, /*hidden argument*/NULL); V_0 = L_129; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_130 = { reinterpret_cast (TapInteraction_tBB569D70C3BB827E3E08EE62111F856CB4F39997_0_0_0_var) }; Type_t * L_131; L_131 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_130, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteral84C8BF6DDBDDEC3A92AEA77ABF46CD671944B758, L_131, /*hidden argument*/NULL); // interactions.AddTypeRegistration("SlowTap", typeof(SlowTapInteraction)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_132; L_132 = InputManager_get_interactions_m82239AA93F8937149018A1CC8114BCAB00E27FA1_inline(__this, /*hidden argument*/NULL); V_0 = L_132; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_133 = { reinterpret_cast (SlowTapInteraction_tD5D9C469F5DD1F184FD964485D666E14DD7A5E29_0_0_0_var) }; Type_t * L_134; L_134 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_133, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteralE9D638FD2B23E7A3CC06EE181F1A35A711C05D72, L_134, /*hidden argument*/NULL); // interactions.AddTypeRegistration("MultiTap", typeof(MultiTapInteraction)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_135; L_135 = InputManager_get_interactions_m82239AA93F8937149018A1CC8114BCAB00E27FA1_inline(__this, /*hidden argument*/NULL); V_0 = L_135; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_136 = { reinterpret_cast (MultiTapInteraction_t012F12E478E89C14B3805DC23B6AB8D9070CB267_0_0_0_var) }; Type_t * L_137; L_137 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_136, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteral53341CC24F9A1C8120B54B4F417C8EF87B0CBCE1, L_137, /*hidden argument*/NULL); // interactions.AddTypeRegistration("Press", typeof(PressInteraction)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_138; L_138 = InputManager_get_interactions_m82239AA93F8937149018A1CC8114BCAB00E27FA1_inline(__this, /*hidden argument*/NULL); V_0 = L_138; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_139 = { reinterpret_cast (PressInteraction_tC7D6764556FB2E5C2832FB3A099A3BDC822C8A2F_0_0_0_var) }; Type_t * L_140; L_140 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_139, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteralA99DCC00443D797894F4B10607C716D806A9105F, L_140, /*hidden argument*/NULL); // composites.AddTypeRegistration("1DAxis", typeof(AxisComposite)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_141; L_141 = InputManager_get_composites_m8CE950CB9C8AA8AA8C69F17363908C87196CD6A5_inline(__this, /*hidden argument*/NULL); V_0 = L_141; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_142 = { reinterpret_cast (AxisComposite_tEA5A791DE6B114D0C57946F4CD1CE90EEDAC84FD_0_0_0_var) }; Type_t * L_143; L_143 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_142, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteral07A7681C0883AD72CB90C3265BE2DD9E3E8828C8, L_143, /*hidden argument*/NULL); // composites.AddTypeRegistration("2DVector", typeof(Vector2Composite)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_144; L_144 = InputManager_get_composites_m8CE950CB9C8AA8AA8C69F17363908C87196CD6A5_inline(__this, /*hidden argument*/NULL); V_0 = L_144; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_145 = { reinterpret_cast (Vector2Composite_t1794D7A394A419502CE3B00A004429F6A08DF49F_0_0_0_var) }; Type_t * L_146; L_146 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_145, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteralE8F0495147FA58FE0F70B56DAC055C9129035987, L_146, /*hidden argument*/NULL); // composites.AddTypeRegistration("3DVector", typeof(Vector3Composite)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_147; L_147 = InputManager_get_composites_m8CE950CB9C8AA8AA8C69F17363908C87196CD6A5_inline(__this, /*hidden argument*/NULL); V_0 = L_147; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_148 = { reinterpret_cast (Vector3Composite_t04588F75A128E3F879BC4ED3C6B3C70C2F638C82_0_0_0_var) }; Type_t * L_149; L_149 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_148, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteral98FEE36F66DDCF5ACCF066A4411E436B2EC27A78, L_149, /*hidden argument*/NULL); // composites.AddTypeRegistration("Axis", typeof(AxisComposite));// Alias for pre-0.2 name. TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_150; L_150 = InputManager_get_composites_m8CE950CB9C8AA8AA8C69F17363908C87196CD6A5_inline(__this, /*hidden argument*/NULL); V_0 = L_150; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_151 = { reinterpret_cast (AxisComposite_tEA5A791DE6B114D0C57946F4CD1CE90EEDAC84FD_0_0_0_var) }; Type_t * L_152; L_152 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_151, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteralEE71910C7E19B0D89B96AF6011CDFDAF6EA1CF1C, L_152, /*hidden argument*/NULL); // composites.AddTypeRegistration("Dpad", typeof(Vector2Composite));// Alias for pre-0.2 name. TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_153; L_153 = InputManager_get_composites_m8CE950CB9C8AA8AA8C69F17363908C87196CD6A5_inline(__this, /*hidden argument*/NULL); V_0 = L_153; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_154 = { reinterpret_cast (Vector2Composite_t1794D7A394A419502CE3B00A004429F6A08DF49F_0_0_0_var) }; Type_t * L_155; L_155 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_154, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteralE9B2C4B73C4357A8FA4CCAF19BD43878882AB8C3, L_155, /*hidden argument*/NULL); // composites.AddTypeRegistration("ButtonWithOneModifier", typeof(ButtonWithOneModifier)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_156; L_156 = InputManager_get_composites_m8CE950CB9C8AA8AA8C69F17363908C87196CD6A5_inline(__this, /*hidden argument*/NULL); V_0 = L_156; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_157 = { reinterpret_cast (ButtonWithOneModifier_t95358FA0B5C76062E3BC5C20D969096D6E2241CA_0_0_0_var) }; Type_t * L_158; L_158 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_157, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteral4D3D7302987C2B4D5F8093A5DAF6AC713B851CFC, L_158, /*hidden argument*/NULL); // composites.AddTypeRegistration("ButtonWithTwoModifiers", typeof(ButtonWithTwoModifiers)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_159; L_159 = InputManager_get_composites_m8CE950CB9C8AA8AA8C69F17363908C87196CD6A5_inline(__this, /*hidden argument*/NULL); V_0 = L_159; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_160 = { reinterpret_cast (ButtonWithTwoModifiers_tF4727487D00EE4B443913F718D5C5F5729369149_0_0_0_var) }; Type_t * L_161; L_161 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_160, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteral88F147D7F5EACCD41D1B500D3DF7155CB616B837, L_161, /*hidden argument*/NULL); // composites.AddTypeRegistration("OneModifier", typeof(OneModifierComposite)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_162; L_162 = InputManager_get_composites_m8CE950CB9C8AA8AA8C69F17363908C87196CD6A5_inline(__this, /*hidden argument*/NULL); V_0 = L_162; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_163 = { reinterpret_cast (OneModifierComposite_t29D6BED0988595E03D55EB7D9892BB5473EA2601_0_0_0_var) }; Type_t * L_164; L_164 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_163, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteral1B84978472E4222D49620AB99A8EFD2722C5F5FE, L_164, /*hidden argument*/NULL); // composites.AddTypeRegistration("TwoModifiers", typeof(TwoModifiersComposite)); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_165; L_165 = InputManager_get_composites_m8CE950CB9C8AA8AA8C69F17363908C87196CD6A5_inline(__this, /*hidden argument*/NULL); V_0 = L_165; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_166 = { reinterpret_cast (TwoModifiersComposite_t87E532EC1E7BAA93F9A2DBD51679B6F7C4F0624C_0_0_0_var) }; Type_t * L_167; L_167 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_166, /*hidden argument*/NULL); TypeTable_AddTypeRegistration_m2B2D4C630392BE5ACBBBD606CC54CD48C4B7493D((TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F *)(&V_0), _stringLiteral9DF256B62E2C231754E1C65A5601804CEBB90F9E, L_167, /*hidden argument*/NULL); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::InstallRuntime(UnityEngine.InputSystem.LowLevel.IInputRuntime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_InstallRuntime_m697DFE86190C9F51B60F5BE6114E54B11B399A67 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, RuntimeObject* ___runtime0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1__ctor_m2A1B34C27CAE6ED7FD924E5F59C0A1ACBBF22C38_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1__ctor_mE5AFF6D7BDD05183BBAB61367AE0B922B690C57D_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tC6AEC56D51A701342DD5D9DEEE77C063945AE4DC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2__ctor_m3BA2B0E7AD3290E3BFECFA10EEA81D930348CA2E_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t0359A210F354A728FCD80F275D8CF192D61A98C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_get_length_mAE3E679A0CB92BF0748894D87E5D67CBE6AC7EE5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2__ctor_mCB10D8F827AFE67BF877C43772FFD19C1394670D_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t22C5BAC876F4C9C77BF9B2631852275B10FE99EC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputManager_OnBeforeUpdate_m5914D092ED103F451FC32409D999ED020087649E_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputManager_OnFocusChanged_mCD81BDED29193416F0BE6E2F9277B7D5003069EA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputManager_OnNativeDeviceDiscovered_m0CA227EDA4A73B6203AB4ED518AB74440A0A4BA1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputManager_OnUpdate_mBD0757E2A0BCD0A2BDD0D6AF36ADAE4B137BBA3D_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputManager_ShouldRunUpdate_mA7F77F1D0530C07876F0C9B87DC721E17692C361_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputUpdateDelegate_t3193D229360F70BB8E2781DED27A71B0F5355045_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (m_Runtime != null) RuntimeObject* L_0 = __this->get_m_Runtime_31(); if (!L_0) { goto IL_0044; } } { // m_Runtime.onUpdate = null; RuntimeObject* L_1 = __this->get_m_Runtime_31(); NullCheck(L_1); InterfaceActionInvoker1< InputUpdateDelegate_t3193D229360F70BB8E2781DED27A71B0F5355045 * >::Invoke(5 /* System.Void UnityEngine.InputSystem.LowLevel.IInputRuntime::set_onUpdate(UnityEngine.InputSystem.LowLevel.InputUpdateDelegate) */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_1, (InputUpdateDelegate_t3193D229360F70BB8E2781DED27A71B0F5355045 *)NULL); // m_Runtime.onBeforeUpdate = null; RuntimeObject* L_2 = __this->get_m_Runtime_31(); NullCheck(L_2); InterfaceActionInvoker1< Action_1_tC6AEC56D51A701342DD5D9DEEE77C063945AE4DC * >::Invoke(7 /* System.Void UnityEngine.InputSystem.LowLevel.IInputRuntime::set_onBeforeUpdate(System.Action`1) */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_2, (Action_1_tC6AEC56D51A701342DD5D9DEEE77C063945AE4DC *)NULL); // m_Runtime.onDeviceDiscovered = null; RuntimeObject* L_3 = __this->get_m_Runtime_31(); NullCheck(L_3); InterfaceActionInvoker1< Action_2_t0359A210F354A728FCD80F275D8CF192D61A98C5 * >::Invoke(11 /* System.Void UnityEngine.InputSystem.LowLevel.IInputRuntime::set_onDeviceDiscovered(System.Action`2) */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_3, (Action_2_t0359A210F354A728FCD80F275D8CF192D61A98C5 *)NULL); // m_Runtime.onPlayerFocusChanged = null; RuntimeObject* L_4 = __this->get_m_Runtime_31(); NullCheck(L_4); InterfaceActionInvoker1< Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83 * >::Invoke(13 /* System.Void UnityEngine.InputSystem.LowLevel.IInputRuntime::set_onPlayerFocusChanged(System.Action`1) */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_4, (Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83 *)NULL); // m_Runtime.onShouldRunUpdate = null; RuntimeObject* L_5 = __this->get_m_Runtime_31(); NullCheck(L_5); InterfaceActionInvoker1< Func_2_t22C5BAC876F4C9C77BF9B2631852275B10FE99EC * >::Invoke(9 /* System.Void UnityEngine.InputSystem.LowLevel.IInputRuntime::set_onShouldRunUpdate(System.Func`2) */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_5, (Func_2_t22C5BAC876F4C9C77BF9B2631852275B10FE99EC *)NULL); } IL_0044: { // m_Runtime = runtime; RuntimeObject* L_6 = ___runtime0; __this->set_m_Runtime_31(L_6); // m_Runtime.onUpdate = OnUpdate; RuntimeObject* L_7 = __this->get_m_Runtime_31(); InputUpdateDelegate_t3193D229360F70BB8E2781DED27A71B0F5355045 * L_8 = (InputUpdateDelegate_t3193D229360F70BB8E2781DED27A71B0F5355045 *)il2cpp_codegen_object_new(InputUpdateDelegate_t3193D229360F70BB8E2781DED27A71B0F5355045_il2cpp_TypeInfo_var); InputUpdateDelegate__ctor_m08C0C4A723120B14487860648FE077C3F153552A(L_8, __this, (intptr_t)((intptr_t)InputManager_OnUpdate_mBD0757E2A0BCD0A2BDD0D6AF36ADAE4B137BBA3D_RuntimeMethod_var), /*hidden argument*/NULL); NullCheck(L_7); InterfaceActionInvoker1< InputUpdateDelegate_t3193D229360F70BB8E2781DED27A71B0F5355045 * >::Invoke(5 /* System.Void UnityEngine.InputSystem.LowLevel.IInputRuntime::set_onUpdate(UnityEngine.InputSystem.LowLevel.InputUpdateDelegate) */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_7, L_8); // m_Runtime.onDeviceDiscovered = OnNativeDeviceDiscovered; RuntimeObject* L_9 = __this->get_m_Runtime_31(); Action_2_t0359A210F354A728FCD80F275D8CF192D61A98C5 * L_10 = (Action_2_t0359A210F354A728FCD80F275D8CF192D61A98C5 *)il2cpp_codegen_object_new(Action_2_t0359A210F354A728FCD80F275D8CF192D61A98C5_il2cpp_TypeInfo_var); Action_2__ctor_m3BA2B0E7AD3290E3BFECFA10EEA81D930348CA2E(L_10, __this, (intptr_t)((intptr_t)InputManager_OnNativeDeviceDiscovered_m0CA227EDA4A73B6203AB4ED518AB74440A0A4BA1_RuntimeMethod_var), /*hidden argument*/Action_2__ctor_m3BA2B0E7AD3290E3BFECFA10EEA81D930348CA2E_RuntimeMethod_var); NullCheck(L_9); InterfaceActionInvoker1< Action_2_t0359A210F354A728FCD80F275D8CF192D61A98C5 * >::Invoke(11 /* System.Void UnityEngine.InputSystem.LowLevel.IInputRuntime::set_onDeviceDiscovered(System.Action`2) */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_9, L_10); // m_Runtime.onPlayerFocusChanged = OnFocusChanged; RuntimeObject* L_11 = __this->get_m_Runtime_31(); Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83 * L_12 = (Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83 *)il2cpp_codegen_object_new(Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83_il2cpp_TypeInfo_var); Action_1__ctor_m2A1B34C27CAE6ED7FD924E5F59C0A1ACBBF22C38(L_12, __this, (intptr_t)((intptr_t)InputManager_OnFocusChanged_mCD81BDED29193416F0BE6E2F9277B7D5003069EA_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_m2A1B34C27CAE6ED7FD924E5F59C0A1ACBBF22C38_RuntimeMethod_var); NullCheck(L_11); InterfaceActionInvoker1< Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83 * >::Invoke(13 /* System.Void UnityEngine.InputSystem.LowLevel.IInputRuntime::set_onPlayerFocusChanged(System.Action`1) */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_11, L_12); // m_Runtime.onShouldRunUpdate = ShouldRunUpdate; RuntimeObject* L_13 = __this->get_m_Runtime_31(); Func_2_t22C5BAC876F4C9C77BF9B2631852275B10FE99EC * L_14 = (Func_2_t22C5BAC876F4C9C77BF9B2631852275B10FE99EC *)il2cpp_codegen_object_new(Func_2_t22C5BAC876F4C9C77BF9B2631852275B10FE99EC_il2cpp_TypeInfo_var); Func_2__ctor_mCB10D8F827AFE67BF877C43772FFD19C1394670D(L_14, __this, (intptr_t)((intptr_t)InputManager_ShouldRunUpdate_mA7F77F1D0530C07876F0C9B87DC721E17692C361_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_mCB10D8F827AFE67BF877C43772FFD19C1394670D_RuntimeMethod_var); NullCheck(L_13); InterfaceActionInvoker1< Func_2_t22C5BAC876F4C9C77BF9B2631852275B10FE99EC * >::Invoke(9 /* System.Void UnityEngine.InputSystem.LowLevel.IInputRuntime::set_onShouldRunUpdate(System.Func`2) */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_13, L_14); // m_Runtime.pollingFrequency = pollingFrequency; RuntimeObject* L_15 = __this->get_m_Runtime_31(); float L_16; L_16 = InputManager_get_pollingFrequency_m428EF9D329371C89836EAFDD89E8D0C707DE7B56_inline(__this, /*hidden argument*/NULL); NullCheck(L_15); InterfaceActionInvoker1< float >::Invoke(18 /* System.Void UnityEngine.InputSystem.LowLevel.IInputRuntime::set_pollingFrequency(System.Single) */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_15, L_16); // m_HasFocus = m_Runtime.isPlayerFocused; RuntimeObject* L_17 = __this->get_m_Runtime_31(); NullCheck(L_17); bool L_18; L_18 = InterfaceFuncInvoker0< bool >::Invoke(14 /* System.Boolean UnityEngine.InputSystem.LowLevel.IInputRuntime::get_isPlayerFocused() */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_17); __this->set_m_HasFocus_27(L_18); // if (m_BeforeUpdateListeners.length > 0 || m_HaveDevicesWithStateCallbackReceivers) CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 * L_19 = __this->get_address_of_m_BeforeUpdateListeners_22(); int32_t L_20; L_20 = CallbackArray_1_get_length_mAE3E679A0CB92BF0748894D87E5D67CBE6AC7EE5((CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 *)L_19, /*hidden argument*/CallbackArray_1_get_length_mAE3E679A0CB92BF0748894D87E5D67CBE6AC7EE5_RuntimeMethod_var); if ((((int32_t)L_20) > ((int32_t)0))) { goto IL_00df; } } { bool L_21 = __this->get_m_HaveDevicesWithStateCallbackReceivers_26(); if (!L_21) { goto IL_00fd; } } IL_00df: { // m_Runtime.onBeforeUpdate = OnBeforeUpdate; RuntimeObject* L_22 = __this->get_m_Runtime_31(); Action_1_tC6AEC56D51A701342DD5D9DEEE77C063945AE4DC * L_23 = (Action_1_tC6AEC56D51A701342DD5D9DEEE77C063945AE4DC *)il2cpp_codegen_object_new(Action_1_tC6AEC56D51A701342DD5D9DEEE77C063945AE4DC_il2cpp_TypeInfo_var); Action_1__ctor_mE5AFF6D7BDD05183BBAB61367AE0B922B690C57D(L_23, __this, (intptr_t)((intptr_t)InputManager_OnBeforeUpdate_m5914D092ED103F451FC32409D999ED020087649E_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_mE5AFF6D7BDD05183BBAB61367AE0B922B690C57D_RuntimeMethod_var); NullCheck(L_22); InterfaceActionInvoker1< Action_1_tC6AEC56D51A701342DD5D9DEEE77C063945AE4DC * >::Invoke(7 /* System.Void UnityEngine.InputSystem.LowLevel.IInputRuntime::set_onBeforeUpdate(System.Action`1) */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_22, L_23); // m_NativeBeforeUpdateHooked = true; __this->set_m_NativeBeforeUpdateHooked_25((bool)1); } IL_00fd: { // } return; } } // System.Void UnityEngine.InputSystem.InputManager::InstallGlobals() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_InstallGlobals_m84915F68FAFED587CE408DA1C6F0C3B03C7F8274 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputBindingComposite_tFCCB9AFDBA6503C51555C9C5904186D990D36565_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputInteraction_t7BAD5F994214A465B34D56FB86391F9181113F78_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputProcessor_t245C316DEE36AA1BC9558F838B3B7A0223813A1D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } SerializedState_t542737D41B915A28FA67E1A2C7EA7CCA67660462 V_0; memset((&V_0), 0, sizeof(V_0)); { // InputControlLayout.s_Layouts = m_Layouts; Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F L_0 = __this->get_m_Layouts_2(); IL2CPP_RUNTIME_CLASS_INIT(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_il2cpp_TypeInfo_var); ((InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_StaticFields*)il2cpp_codegen_static_fields_for(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_il2cpp_TypeInfo_var))->set_s_Layouts_15(L_0); // InputProcessor.s_Processors = m_Processors; TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_1 = __this->get_m_Processors_3(); ((InputProcessor_t245C316DEE36AA1BC9558F838B3B7A0223813A1D_StaticFields*)il2cpp_codegen_static_fields_for(InputProcessor_t245C316DEE36AA1BC9558F838B3B7A0223813A1D_il2cpp_TypeInfo_var))->set_s_Processors_0(L_1); // InputInteraction.s_Interactions = m_Interactions; TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_2 = __this->get_m_Interactions_4(); ((InputInteraction_t7BAD5F994214A465B34D56FB86391F9181113F78_StaticFields*)il2cpp_codegen_static_fields_for(InputInteraction_t7BAD5F994214A465B34D56FB86391F9181113F78_il2cpp_TypeInfo_var))->set_s_Interactions_0(L_2); // InputBindingComposite.s_Composites = m_Composites; TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_3 = __this->get_m_Composites_5(); ((InputBindingComposite_tFCCB9AFDBA6503C51555C9C5904186D990D36565_StaticFields*)il2cpp_codegen_static_fields_for(InputBindingComposite_tFCCB9AFDBA6503C51555C9C5904186D990D36565_il2cpp_TypeInfo_var))->set_s_Composites_0(L_3); // InputRuntime.s_Instance = m_Runtime; RuntimeObject* L_4 = __this->get_m_Runtime_31(); ((InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_il2cpp_TypeInfo_var))->set_s_Instance_0(L_4); // InputRuntime.s_CurrentTimeOffsetToRealtimeSinceStartup = // m_Runtime.currentTimeOffsetToRealtimeSinceStartup; RuntimeObject* L_5 = __this->get_m_Runtime_31(); NullCheck(L_5); double L_6; L_6 = InterfaceFuncInvoker0< double >::Invoke(22 /* System.Double UnityEngine.InputSystem.LowLevel.IInputRuntime::get_currentTimeOffsetToRealtimeSinceStartup() */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_5); ((InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_il2cpp_TypeInfo_var))->set_s_CurrentTimeOffsetToRealtimeSinceStartup_1(L_6); // InputUpdate.Restore(new InputUpdate.SerializedState()); il2cpp_codegen_initobj((&V_0), sizeof(SerializedState_t542737D41B915A28FA67E1A2C7EA7CCA67660462 )); SerializedState_t542737D41B915A28FA67E1A2C7EA7CCA67660462 L_7 = V_0; InputUpdate_Restore_mAE2F78797358457C5B68CAA8651ED6168707D979(L_7, /*hidden argument*/NULL); // InputStateBuffers.SwitchTo(m_StateBuffers, InputUpdateType.Dynamic); InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA L_8 = __this->get_m_StateBuffers_15(); InputStateBuffers_SwitchTo_m4AD65E34033B2D3146474212969EF700225308BD(L_8, 1, /*hidden argument*/NULL); // InputStateBuffers.s_DefaultStateBuffer = m_StateBuffers.defaultStateBuffer; InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA * L_9 = __this->get_address_of_m_StateBuffers_15(); void* L_10 = L_9->get_defaultStateBuffer_2(); ((InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_StaticFields*)il2cpp_codegen_static_fields_for(InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_il2cpp_TypeInfo_var))->set_s_DefaultStateBuffer_7((void*)L_10); // InputStateBuffers.s_NoiseMaskBuffer = m_StateBuffers.noiseMaskBuffer; InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA * L_11 = __this->get_address_of_m_StateBuffers_15(); void* L_12 = L_11->get_noiseMaskBuffer_3(); ((InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_StaticFields*)il2cpp_codegen_static_fields_for(InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_il2cpp_TypeInfo_var))->set_s_NoiseMaskBuffer_8((void*)L_12); // InputStateBuffers.s_ResetMaskBuffer = m_StateBuffers.resetMaskBuffer; InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA * L_13 = __this->get_address_of_m_StateBuffers_15(); void* L_14 = L_13->get_resetMaskBuffer_4(); ((InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_StaticFields*)il2cpp_codegen_static_fields_for(InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_il2cpp_TypeInfo_var))->set_s_ResetMaskBuffer_9((void*)L_14); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::UninstallGlobals() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_UninstallGlobals_m54D03B977F407830C8E42CFEA4B7652DA0A27FEE (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputBindingComposite_tFCCB9AFDBA6503C51555C9C5904186D990D36565_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputInteraction_t7BAD5F994214A465B34D56FB86391F9181113F78_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputProcessor_t245C316DEE36AA1BC9558F838B3B7A0223813A1D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (ReferenceEquals(InputControlLayout.s_Layouts.baseLayoutTable, m_Layouts.baseLayoutTable)) IL2CPP_RUNTIME_CLASS_INIT(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_il2cpp_TypeInfo_var); Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540 * L_0 = (((InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_StaticFields*)il2cpp_codegen_static_fields_for(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_il2cpp_TypeInfo_var))->get_address_of_s_Layouts_15())->get_baseLayoutTable_4(); Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F * L_1 = __this->get_address_of_m_Layouts_2(); Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540 * L_2 = L_1->get_baseLayoutTable_4(); if ((!(((RuntimeObject*)(Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540 *)L_0) == ((RuntimeObject*)(Dictionary_2_tD3132CDE19A98160EC17AE2285A89480809DD540 *)L_2)))) { goto IL_0022; } } { // InputControlLayout.s_Layouts = new InputControlLayout.Collection(); IL2CPP_RUNTIME_CLASS_INIT(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_il2cpp_TypeInfo_var); il2cpp_codegen_initobj((((InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_StaticFields*)il2cpp_codegen_static_fields_for(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_il2cpp_TypeInfo_var))->get_address_of_s_Layouts_15()), sizeof(Collection_tE4D2860D7319AE2B62163AFBA0A549B87DB0B97F )); } IL_0022: { // if (ReferenceEquals(InputProcessor.s_Processors.table, m_Processors.table)) Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * L_3 = (((InputProcessor_t245C316DEE36AA1BC9558F838B3B7A0223813A1D_StaticFields*)il2cpp_codegen_static_fields_for(InputProcessor_t245C316DEE36AA1BC9558F838B3B7A0223813A1D_il2cpp_TypeInfo_var))->get_address_of_s_Processors_0())->get_table_0(); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F * L_4 = __this->get_address_of_m_Processors_3(); Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * L_5 = L_4->get_table_0(); if ((!(((RuntimeObject*)(Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E *)L_3) == ((RuntimeObject*)(Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E *)L_5)))) { goto IL_0044; } } { // InputProcessor.s_Processors = new TypeTable(); il2cpp_codegen_initobj((((InputProcessor_t245C316DEE36AA1BC9558F838B3B7A0223813A1D_StaticFields*)il2cpp_codegen_static_fields_for(InputProcessor_t245C316DEE36AA1BC9558F838B3B7A0223813A1D_il2cpp_TypeInfo_var))->get_address_of_s_Processors_0()), sizeof(TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F )); } IL_0044: { // if (ReferenceEquals(InputInteraction.s_Interactions.table, m_Interactions.table)) Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * L_6 = (((InputInteraction_t7BAD5F994214A465B34D56FB86391F9181113F78_StaticFields*)il2cpp_codegen_static_fields_for(InputInteraction_t7BAD5F994214A465B34D56FB86391F9181113F78_il2cpp_TypeInfo_var))->get_address_of_s_Interactions_0())->get_table_0(); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F * L_7 = __this->get_address_of_m_Interactions_4(); Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * L_8 = L_7->get_table_0(); if ((!(((RuntimeObject*)(Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E *)L_6) == ((RuntimeObject*)(Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E *)L_8)))) { goto IL_0066; } } { // InputInteraction.s_Interactions = new TypeTable(); il2cpp_codegen_initobj((((InputInteraction_t7BAD5F994214A465B34D56FB86391F9181113F78_StaticFields*)il2cpp_codegen_static_fields_for(InputInteraction_t7BAD5F994214A465B34D56FB86391F9181113F78_il2cpp_TypeInfo_var))->get_address_of_s_Interactions_0()), sizeof(TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F )); } IL_0066: { // if (ReferenceEquals(InputBindingComposite.s_Composites.table, m_Composites.table)) Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * L_9 = (((InputBindingComposite_tFCCB9AFDBA6503C51555C9C5904186D990D36565_StaticFields*)il2cpp_codegen_static_fields_for(InputBindingComposite_tFCCB9AFDBA6503C51555C9C5904186D990D36565_il2cpp_TypeInfo_var))->get_address_of_s_Composites_0())->get_table_0(); TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F * L_10 = __this->get_address_of_m_Composites_5(); Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E * L_11 = L_10->get_table_0(); if ((!(((RuntimeObject*)(Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E *)L_9) == ((RuntimeObject*)(Dictionary_2_tBA40388A060E3B4AEE59780F047938A6FB3C566E *)L_11)))) { goto IL_0088; } } { // InputBindingComposite.s_Composites = new TypeTable(); il2cpp_codegen_initobj((((InputBindingComposite_tFCCB9AFDBA6503C51555C9C5904186D990D36565_StaticFields*)il2cpp_codegen_static_fields_for(InputBindingComposite_tFCCB9AFDBA6503C51555C9C5904186D990D36565_il2cpp_TypeInfo_var))->get_address_of_s_Composites_0()), sizeof(TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F )); } IL_0088: { // InputControlLayout.s_CacheInstance = default; IL2CPP_RUNTIME_CLASS_INIT(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_il2cpp_TypeInfo_var); il2cpp_codegen_initobj((((InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_StaticFields*)il2cpp_codegen_static_fields_for(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_il2cpp_TypeInfo_var))->get_address_of_s_CacheInstance_16()), sizeof(Cache_tCCC71FFB1DEF56FF815ED5B09BB764EDB00EE82E )); // InputControlLayout.s_CacheInstanceRef = 0; ((InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_StaticFields*)il2cpp_codegen_static_fields_for(InputControlLayout_tE6B3ECA665209114AFF079155BF9F2FA79A03741_il2cpp_TypeInfo_var))->set_s_CacheInstanceRef_17(0); // if (m_Runtime != null) RuntimeObject* L_12 = __this->get_m_Runtime_31(); if (!L_12) { goto IL_00f0; } } { // m_Runtime.onUpdate = null; RuntimeObject* L_13 = __this->get_m_Runtime_31(); NullCheck(L_13); InterfaceActionInvoker1< InputUpdateDelegate_t3193D229360F70BB8E2781DED27A71B0F5355045 * >::Invoke(5 /* System.Void UnityEngine.InputSystem.LowLevel.IInputRuntime::set_onUpdate(UnityEngine.InputSystem.LowLevel.InputUpdateDelegate) */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_13, (InputUpdateDelegate_t3193D229360F70BB8E2781DED27A71B0F5355045 *)NULL); // m_Runtime.onDeviceDiscovered = null; RuntimeObject* L_14 = __this->get_m_Runtime_31(); NullCheck(L_14); InterfaceActionInvoker1< Action_2_t0359A210F354A728FCD80F275D8CF192D61A98C5 * >::Invoke(11 /* System.Void UnityEngine.InputSystem.LowLevel.IInputRuntime::set_onDeviceDiscovered(System.Action`2) */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_14, (Action_2_t0359A210F354A728FCD80F275D8CF192D61A98C5 *)NULL); // m_Runtime.onBeforeUpdate = null; RuntimeObject* L_15 = __this->get_m_Runtime_31(); NullCheck(L_15); InterfaceActionInvoker1< Action_1_tC6AEC56D51A701342DD5D9DEEE77C063945AE4DC * >::Invoke(7 /* System.Void UnityEngine.InputSystem.LowLevel.IInputRuntime::set_onBeforeUpdate(System.Action`1) */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_15, (Action_1_tC6AEC56D51A701342DD5D9DEEE77C063945AE4DC *)NULL); // m_Runtime.onPlayerFocusChanged = null; RuntimeObject* L_16 = __this->get_m_Runtime_31(); NullCheck(L_16); InterfaceActionInvoker1< Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83 * >::Invoke(13 /* System.Void UnityEngine.InputSystem.LowLevel.IInputRuntime::set_onPlayerFocusChanged(System.Action`1) */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_16, (Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83 *)NULL); // m_Runtime.onShouldRunUpdate = null; RuntimeObject* L_17 = __this->get_m_Runtime_31(); NullCheck(L_17); InterfaceActionInvoker1< Func_2_t22C5BAC876F4C9C77BF9B2631852275B10FE99EC * >::Invoke(9 /* System.Void UnityEngine.InputSystem.LowLevel.IInputRuntime::set_onShouldRunUpdate(System.Func`2) */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_17, (Func_2_t22C5BAC876F4C9C77BF9B2631852275B10FE99EC *)NULL); // if (ReferenceEquals(InputRuntime.s_Instance, m_Runtime)) RuntimeObject* L_18 = ((InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_il2cpp_TypeInfo_var))->get_s_Instance_0(); RuntimeObject* L_19 = __this->get_m_Runtime_31(); if ((!(((RuntimeObject*)(RuntimeObject*)L_18) == ((RuntimeObject*)(RuntimeObject*)L_19)))) { goto IL_00f0; } } { // InputRuntime.s_Instance = null; ((InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_il2cpp_TypeInfo_var))->set_s_Instance_0((RuntimeObject*)NULL); } IL_00f0: { // } return; } } // System.Void UnityEngine.InputSystem.InputManager::MakeDeviceNameUnique(UnityEngine.InputSystem.InputDevice) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_MakeDeviceNameUnique_m6C64F024E906990155FDEA3DC2617A2B6A59B4B4 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2__ctor_mE1B7BCFCE36D43D67ADADD1A4A4B97AFF84D98B0_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t42D51CF507A4D7E5E1BB1ADA2AD1B58BD47C50C9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringHelpers_MakeUniqueName_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_m617C4E4C073330FC6103C06516F73E10211F6A26_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CMakeDeviceNameUniqueU3Eb__144_0_mCA8AB92192B0E07D57D72DCF8602E74213436CA3_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tA14A9657912D2AB6AA361CE3720B2DFDC8F69CDF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; Func_2_t42D51CF507A4D7E5E1BB1ADA2AD1B58BD47C50C9 * G_B4_0 = NULL; InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* G_B4_1 = NULL; String_t* G_B4_2 = NULL; Func_2_t42D51CF507A4D7E5E1BB1ADA2AD1B58BD47C50C9 * G_B3_0 = NULL; InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* G_B3_1 = NULL; String_t* G_B3_2 = NULL; { // if (m_DevicesCount == 0) int32_t L_0 = __this->get_m_DevicesCount_6(); if (L_0) { goto IL_0009; } } { // return; return; } IL_0009: { // var deviceName = StringHelpers.MakeUniqueName(device.name, m_Devices, x => x != null ? x.name : string.Empty); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_1 = ___device0; NullCheck(L_1); String_t* L_2; L_2 = InputControl_get_name_mE259B1306F7E4F865D127B30939A70E9492EAFB2(L_1, /*hidden argument*/NULL); InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* L_3 = __this->get_m_Devices_7(); IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tA14A9657912D2AB6AA361CE3720B2DFDC8F69CDF_il2cpp_TypeInfo_var); Func_2_t42D51CF507A4D7E5E1BB1ADA2AD1B58BD47C50C9 * L_4 = ((U3CU3Ec_tA14A9657912D2AB6AA361CE3720B2DFDC8F69CDF_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tA14A9657912D2AB6AA361CE3720B2DFDC8F69CDF_il2cpp_TypeInfo_var))->get_U3CU3E9__144_0_1(); Func_2_t42D51CF507A4D7E5E1BB1ADA2AD1B58BD47C50C9 * L_5 = L_4; G_B3_0 = L_5; G_B3_1 = L_3; G_B3_2 = L_2; if (L_5) { G_B4_0 = L_5; G_B4_1 = L_3; G_B4_2 = L_2; goto IL_0034; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tA14A9657912D2AB6AA361CE3720B2DFDC8F69CDF_il2cpp_TypeInfo_var); U3CU3Ec_tA14A9657912D2AB6AA361CE3720B2DFDC8F69CDF * L_6 = ((U3CU3Ec_tA14A9657912D2AB6AA361CE3720B2DFDC8F69CDF_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tA14A9657912D2AB6AA361CE3720B2DFDC8F69CDF_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); Func_2_t42D51CF507A4D7E5E1BB1ADA2AD1B58BD47C50C9 * L_7 = (Func_2_t42D51CF507A4D7E5E1BB1ADA2AD1B58BD47C50C9 *)il2cpp_codegen_object_new(Func_2_t42D51CF507A4D7E5E1BB1ADA2AD1B58BD47C50C9_il2cpp_TypeInfo_var); Func_2__ctor_mE1B7BCFCE36D43D67ADADD1A4A4B97AFF84D98B0(L_7, L_6, (intptr_t)((intptr_t)U3CU3Ec_U3CMakeDeviceNameUniqueU3Eb__144_0_mCA8AB92192B0E07D57D72DCF8602E74213436CA3_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_mE1B7BCFCE36D43D67ADADD1A4A4B97AFF84D98B0_RuntimeMethod_var); Func_2_t42D51CF507A4D7E5E1BB1ADA2AD1B58BD47C50C9 * L_8 = L_7; ((U3CU3Ec_tA14A9657912D2AB6AA361CE3720B2DFDC8F69CDF_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tA14A9657912D2AB6AA361CE3720B2DFDC8F69CDF_il2cpp_TypeInfo_var))->set_U3CU3E9__144_0_1(L_8); G_B4_0 = L_8; G_B4_1 = G_B3_1; G_B4_2 = G_B3_2; } IL_0034: { String_t* L_9; L_9 = StringHelpers_MakeUniqueName_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_m617C4E4C073330FC6103C06516F73E10211F6A26(G_B4_2, (RuntimeObject*)(RuntimeObject*)G_B4_1, G_B4_0, /*hidden argument*/StringHelpers_MakeUniqueName_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_m617C4E4C073330FC6103C06516F73E10211F6A26_RuntimeMethod_var); V_0 = L_9; // if (deviceName != device.name) String_t* L_10 = V_0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_11 = ___device0; NullCheck(L_11); String_t* L_12; L_12 = InputControl_get_name_mE259B1306F7E4F865D127B30939A70E9492EAFB2(L_11, /*hidden argument*/NULL); bool L_13; L_13 = String_op_Inequality_m45BEBD9C59D474454BD0F4AB6C9A8A2D05D40DBE(L_10, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_005a; } } { // ResetControlPathsRecursive(device); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_14 = ___device0; InputManager_ResetControlPathsRecursive_mB0D97F7DA65A28C278C647EB98C809D79B1CA931(L_14, /*hidden argument*/NULL); // device.m_Name = new InternedString(deviceName); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_15 = ___device0; String_t* L_16 = V_0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_17; memset((&L_17), 0, sizeof(L_17)); InternedString__ctor_mE81A2A4EA05081A96717682ACF38746482E3CF62((&L_17), L_16, /*hidden argument*/NULL); NullCheck(L_15); ((InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *)L_15)->set_m_Name_1(L_17); } IL_005a: { // } return; } } // System.Void UnityEngine.InputSystem.InputManager::ResetControlPathsRecursive(UnityEngine.InputSystem.InputControl) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_ResetControlPathsRecursive_mB0D97F7DA65A28C278C647EB98C809D79B1CA931 (InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * ___control0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Count_mC17382AC83BBF147C47E7A21A628F51F082E92DA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Item_m8E38E64671229D35FA708BF0B650FE3F846189FC_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; int32_t V_2 = 0; { // control.m_Path = null; InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_0 = ___control0; NullCheck(L_0); L_0->set_m_Path_2((String_t*)NULL); // var children = control.children; InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_1 = ___control0; NullCheck(L_1); ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 L_2; L_2 = InputControl_get_children_mE498FA37DACEC312AA60A7A5A7F6CF146EFC5A9A(L_1, /*hidden argument*/NULL); V_0 = L_2; // var childCount = children.Count; int32_t L_3; L_3 = ReadOnlyArray_1_get_Count_mC17382AC83BBF147C47E7A21A628F51F082E92DA_inline((ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 *)(&V_0), /*hidden argument*/ReadOnlyArray_1_get_Count_mC17382AC83BBF147C47E7A21A628F51F082E92DA_RuntimeMethod_var); V_1 = L_3; // for (var i = 0; i < childCount; ++i) V_2 = 0; goto IL_002b; } IL_001a: { // ResetControlPathsRecursive(children[i]); int32_t L_4 = V_2; InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_5; L_5 = ReadOnlyArray_1_get_Item_m8E38E64671229D35FA708BF0B650FE3F846189FC((ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 *)(&V_0), L_4, /*hidden argument*/ReadOnlyArray_1_get_Item_m8E38E64671229D35FA708BF0B650FE3F846189FC_RuntimeMethod_var); InputManager_ResetControlPathsRecursive_mB0D97F7DA65A28C278C647EB98C809D79B1CA931(L_5, /*hidden argument*/NULL); // for (var i = 0; i < childCount; ++i) int32_t L_6 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_002b: { // for (var i = 0; i < childCount; ++i) int32_t L_7 = V_2; int32_t L_8 = V_1; if ((((int32_t)L_7) < ((int32_t)L_8))) { goto IL_001a; } } { // } return; } } // System.Void UnityEngine.InputSystem.InputManager::AssignUniqueDeviceId(UnityEngine.InputSystem.InputDevice) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_AssignUniqueDeviceId_m6641DFB9A3E87C471FB9EAF8EAA487A618E5880D (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * V_0 = NULL; { // if (device.deviceId != InputDevice.InvalidDeviceId) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_0 = ___device0; NullCheck(L_0); int32_t L_1; L_1 = InputDevice_get_deviceId_mDDE1531F7B9A1E03B17094C7AC37E58177E4AA0D_inline(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_003f; } } { // var existingDeviceWithId = TryGetDeviceById(device.deviceId); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_2 = ___device0; NullCheck(L_2); int32_t L_3; L_3 = InputDevice_get_deviceId_mDDE1531F7B9A1E03B17094C7AC37E58177E4AA0D_inline(L_2, /*hidden argument*/NULL); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_4; L_4 = InputManager_TryGetDeviceById_m04896C1A02E97E7B7322C28FDC002823CDB6167B(__this, L_3, /*hidden argument*/NULL); V_0 = L_4; // if (existingDeviceWithId != null) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_5 = V_0; if (!L_5) { goto IL_0050; } } { // throw new InvalidOperationException( // $"Duplicate device ID {device.deviceId} detected for devices '{device.name}' and '{existingDeviceWithId.name}'"); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_6 = ___device0; NullCheck(L_6); int32_t L_7; L_7 = InputDevice_get_deviceId_mDDE1531F7B9A1E03B17094C7AC37E58177E4AA0D_inline(L_6, /*hidden argument*/NULL); int32_t L_8 = L_7; RuntimeObject * L_9 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_8); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_10 = ___device0; NullCheck(L_10); String_t* L_11; L_11 = InputControl_get_name_mE259B1306F7E4F865D127B30939A70E9492EAFB2(L_10, /*hidden argument*/NULL); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_12 = V_0; NullCheck(L_12); String_t* L_13; L_13 = InputControl_get_name_mE259B1306F7E4F865D127B30939A70E9492EAFB2(L_12, /*hidden argument*/NULL); String_t* L_14; L_14 = String_Format_mD0D523A440845BA7F58E68187E029DC9AB821CED(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC0113547B4691AD4D904D0667F396188E1117475)), L_9, L_11, L_13, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_15 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_15, L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_AssignUniqueDeviceId_m6641DFB9A3E87C471FB9EAF8EAA487A618E5880D_RuntimeMethod_var))); } IL_003f: { // device.m_DeviceId = m_Runtime.AllocateDeviceId(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_16 = ___device0; RuntimeObject* L_17 = __this->get_m_Runtime_31(); NullCheck(L_17); int32_t L_18; L_18 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 UnityEngine.InputSystem.LowLevel.IInputRuntime::AllocateDeviceId() */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_17); NullCheck(L_16); L_16->set_m_DeviceId_25(L_18); } IL_0050: { // } return; } } // System.Void UnityEngine.InputSystem.InputManager::ReallocateStateBuffers() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_ReallocateStateBuffers_m310B7B6983270356571E856412C65B3233B21DF9 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputUpdate_t16159151984D134E806E18584FE12416F7A6DA57_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA V_0; memset((&V_0), 0, sizeof(V_0)); InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA V_1; memset((&V_1), 0, sizeof(V_1)); InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA G_B2_0; memset((&G_B2_0), 0, sizeof(G_B2_0)); InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA G_B1_0; memset((&G_B1_0), 0, sizeof(G_B1_0)); int32_t G_B3_0 = 0; InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA G_B3_1; memset((&G_B3_1), 0, sizeof(G_B3_1)); { // var oldBuffers = m_StateBuffers; InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA L_0 = __this->get_m_StateBuffers_15(); V_0 = L_0; // var newBuffers = new InputStateBuffers(); il2cpp_codegen_initobj((&V_1), sizeof(InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA )); // newBuffers.AllocateAll(m_Devices, m_DevicesCount); InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* L_1 = __this->get_m_Devices_7(); int32_t L_2 = __this->get_m_DevicesCount_6(); InputStateBuffers_AllocateAll_m2E229FA20DCFB8C44339ABE09E3F1074E00D974A((InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA *)(&V_1), L_1, L_2, /*hidden argument*/NULL); // newBuffers.MigrateAll(m_Devices, m_DevicesCount, oldBuffers); InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* L_3 = __this->get_m_Devices_7(); int32_t L_4 = __this->get_m_DevicesCount_6(); InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA L_5 = V_0; InputStateBuffers_MigrateAll_mEE6B5CC18F08C213C690C26933E9CF4088F87E58((InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA *)(&V_1), L_3, L_4, L_5, /*hidden argument*/NULL); // oldBuffers.FreeAll(); InputStateBuffers_FreeAll_m6E5BFFDB30EEFE25ACCDF9D299C1C3516D8AEDB4((InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA *)(&V_0), /*hidden argument*/NULL); // m_StateBuffers = newBuffers; InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA L_6 = V_1; __this->set_m_StateBuffers_15(L_6); // InputStateBuffers.s_DefaultStateBuffer = newBuffers.defaultStateBuffer; InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA L_7 = V_1; void* L_8 = L_7.get_defaultStateBuffer_2(); ((InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_StaticFields*)il2cpp_codegen_static_fields_for(InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_il2cpp_TypeInfo_var))->set_s_DefaultStateBuffer_7((void*)L_8); // InputStateBuffers.s_NoiseMaskBuffer = newBuffers.noiseMaskBuffer; InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA L_9 = V_1; void* L_10 = L_9.get_noiseMaskBuffer_3(); ((InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_StaticFields*)il2cpp_codegen_static_fields_for(InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_il2cpp_TypeInfo_var))->set_s_NoiseMaskBuffer_8((void*)L_10); // InputStateBuffers.s_ResetMaskBuffer = newBuffers.resetMaskBuffer; InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA L_11 = V_1; void* L_12 = L_11.get_resetMaskBuffer_4(); ((InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_StaticFields*)il2cpp_codegen_static_fields_for(InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_il2cpp_TypeInfo_var))->set_s_ResetMaskBuffer_9((void*)L_12); // InputStateBuffers.SwitchTo(m_StateBuffers, // InputUpdate.s_LatestUpdateType != InputUpdateType.None ? InputUpdate.s_LatestUpdateType : defaultUpdateType); InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA L_13 = __this->get_m_StateBuffers_15(); int32_t L_14 = ((InputUpdate_t16159151984D134E806E18584FE12416F7A6DA57_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t16159151984D134E806E18584FE12416F7A6DA57_il2cpp_TypeInfo_var))->get_s_LatestUpdateType_1(); G_B1_0 = L_13; if (L_14) { G_B2_0 = L_13; goto IL_007a; } } { int32_t L_15; L_15 = InputManager_get_defaultUpdateType_m42567EB68373890616C0D95CCE3F40098CE731BE(__this, /*hidden argument*/NULL); G_B3_0 = L_15; G_B3_1 = G_B1_0; goto IL_007f; } IL_007a: { int32_t L_16 = ((InputUpdate_t16159151984D134E806E18584FE12416F7A6DA57_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t16159151984D134E806E18584FE12416F7A6DA57_il2cpp_TypeInfo_var))->get_s_LatestUpdateType_1(); G_B3_0 = L_16; G_B3_1 = G_B2_0; } IL_007f: { InputStateBuffers_SwitchTo_m4AD65E34033B2D3146474212969EF700225308BD(G_B3_1, G_B3_0, /*hidden argument*/NULL); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::InitializeDefaultState(UnityEngine.InputSystem.InputDevice) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_InitializeDefaultState_mC752A8F433D85963EE2E98D0B88BB7F8D31E5666 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Count_mC17382AC83BBF147C47E7A21A628F51F082E92DA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Item_m8E38E64671229D35FA708BF0B650FE3F846189FC_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; void* V_2 = NULL; InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B V_3; memset((&V_3), 0, sizeof(V_3)); int32_t V_4 = 0; int32_t V_5 = 0; InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * V_6 = NULL; { // if (!device.hasControlsWithDefaultState) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_0 = ___device0; NullCheck(L_0); bool L_1; L_1 = InputDevice_get_hasControlsWithDefaultState_m3F44707B9901B62B7331EF24E2A4FF67EE6C0010(L_0, /*hidden argument*/NULL); if (L_1) { goto IL_0009; } } { // return; return; } IL_0009: { // var controls = device.allControls; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_2 = ___device0; NullCheck(L_2); ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 L_3; L_3 = InputDevice_get_allControls_mD986E92DCF42FBA62A009692D7B7E51CDC55175B(L_2, /*hidden argument*/NULL); V_0 = L_3; // var controlCount = controls.Count; int32_t L_4; L_4 = ReadOnlyArray_1_get_Count_mC17382AC83BBF147C47E7A21A628F51F082E92DA_inline((ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 *)(&V_0), /*hidden argument*/ReadOnlyArray_1_get_Count_mC17382AC83BBF147C47E7A21A628F51F082E92DA_RuntimeMethod_var); V_1 = L_4; // var defaultStateBuffer = m_StateBuffers.defaultStateBuffer; InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA * L_5 = __this->get_address_of_m_StateBuffers_15(); void* L_6 = L_5->get_defaultStateBuffer_2(); V_2 = (void*)L_6; // for (var n = 0; n < controlCount; ++n) V_5 = 0; goto IL_0057; } IL_0029: { // var control = controls[n]; int32_t L_7 = V_5; InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_8; L_8 = ReadOnlyArray_1_get_Item_m8E38E64671229D35FA708BF0B650FE3F846189FC((ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 *)(&V_0), L_7, /*hidden argument*/ReadOnlyArray_1_get_Item_m8E38E64671229D35FA708BF0B650FE3F846189FC_RuntimeMethod_var); V_6 = L_8; // if (!control.hasDefaultState) InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_9 = V_6; NullCheck(L_9); bool L_10; L_10 = InputControl_get_hasDefaultState_m71C8065BD0541051571EA9230AB8EF135F1FC2A7(L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0051; } } { // control.m_StateBlock.Write(defaultStateBuffer, control.m_DefaultState); InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_11 = V_6; NullCheck(L_11); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_12 = L_11->get_address_of_m_StateBlock_0(); void* L_13 = V_2; InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_14 = V_6; NullCheck(L_14); PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8 L_15 = L_14->get_m_DefaultState_18(); InputStateBlock_Write_m6C42F8AF86218D59BB5C76A02E2C268333567782((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_12, (void*)(void*)L_13, L_15, /*hidden argument*/NULL); } IL_0051: { // for (var n = 0; n < controlCount; ++n) int32_t L_16 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_0057: { // for (var n = 0; n < controlCount; ++n) int32_t L_17 = V_5; int32_t L_18 = V_1; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0029; } } { // var stateBlock = device.m_StateBlock; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_19 = ___device0; NullCheck(L_19); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B L_20 = ((InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *)L_19)->get_m_StateBlock_0(); V_3 = L_20; // var deviceIndex = device.m_DeviceIndex; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_21 = ___device0; NullCheck(L_21); int32_t L_22 = L_21->get_m_DeviceIndex_27(); V_4 = L_22; // if (m_StateBuffers.m_PlayerStateBuffers.valid) InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA * L_23 = __this->get_address_of_m_StateBuffers_15(); DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B * L_24 = L_23->get_address_of_m_PlayerStateBuffers_6(); bool L_25; L_25 = DoubleBuffers_get_valid_mF2401B428799FCD5A18603DBF14A6D405B31218B((DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B *)L_24, /*hidden argument*/NULL); if (!L_25) { goto IL_00b1; } } { // stateBlock.CopyToFrom(m_StateBuffers.m_PlayerStateBuffers.GetFrontBuffer(deviceIndex), defaultStateBuffer); InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA * L_26 = __this->get_address_of_m_StateBuffers_15(); DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B * L_27 = L_26->get_address_of_m_PlayerStateBuffers_6(); int32_t L_28 = V_4; void* L_29; L_29 = DoubleBuffers_GetFrontBuffer_m2B03B9E7BC47E041D8BF7D78756B5A95FCDF4A4C((DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B *)L_27, L_28, /*hidden argument*/NULL); void* L_30 = V_2; InputStateBlock_CopyToFrom_m1EFC7C9A4CEB2287D0D06EBEF9023C41CC8D765C((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)(&V_3), (void*)(void*)L_29, (void*)(void*)L_30, /*hidden argument*/NULL); // stateBlock.CopyToFrom(m_StateBuffers.m_PlayerStateBuffers.GetBackBuffer(deviceIndex), defaultStateBuffer); InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA * L_31 = __this->get_address_of_m_StateBuffers_15(); DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B * L_32 = L_31->get_address_of_m_PlayerStateBuffers_6(); int32_t L_33 = V_4; void* L_34; L_34 = DoubleBuffers_GetBackBuffer_m8BA8EF0C2764AF5DF6C62175CA7A079DE2D55293((DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B *)L_32, L_33, /*hidden argument*/NULL); void* L_35 = V_2; InputStateBlock_CopyToFrom_m1EFC7C9A4CEB2287D0D06EBEF9023C41CC8D765C((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)(&V_3), (void*)(void*)L_34, (void*)(void*)L_35, /*hidden argument*/NULL); } IL_00b1: { // } return; } } // System.Void UnityEngine.InputSystem.InputManager::InitializeDeviceState(UnityEngine.InputSystem.InputDevice) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_InitializeDeviceState_m5593C7FC3E2789C0C5EEB3794A4D0C7A9F19F8BF (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Count_mC17382AC83BBF147C47E7A21A628F51F082E92DA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Item_m8E38E64671229D35FA708BF0B650FE3F846189FC_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; void* V_2 = NULL; bool V_3 = false; void* V_4 = NULL; void* V_5 = NULL; InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B V_6; memset((&V_6), 0, sizeof(V_6)); int32_t V_7 = 0; InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * V_8 = NULL; InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * V_9 = NULL; InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * V_10 = NULL; int32_t V_11 = 0; { // var controls = device.allControls; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_0 = ___device0; NullCheck(L_0); ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 L_1; L_1 = InputDevice_get_allControls_mD986E92DCF42FBA62A009692D7B7E51CDC55175B(L_0, /*hidden argument*/NULL); V_0 = L_1; // var controlCount = controls.Count; int32_t L_2; L_2 = ReadOnlyArray_1_get_Count_mC17382AC83BBF147C47E7A21A628F51F082E92DA_inline((ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 *)(&V_0), /*hidden argument*/ReadOnlyArray_1_get_Count_mC17382AC83BBF147C47E7A21A628F51F082E92DA_RuntimeMethod_var); V_1 = L_2; // var resetMaskBuffer = m_StateBuffers.resetMaskBuffer; InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA * L_3 = __this->get_address_of_m_StateBuffers_15(); void* L_4 = L_3->get_resetMaskBuffer_4(); V_2 = (void*)L_4; // var haveControlsWithDefaultState = device.hasControlsWithDefaultState; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_5 = ___device0; NullCheck(L_5); bool L_6; L_6 = InputDevice_get_hasControlsWithDefaultState_m3F44707B9901B62B7331EF24E2A4FF67EE6C0010(L_5, /*hidden argument*/NULL); V_3 = L_6; // var noiseMaskBuffer = m_StateBuffers.noiseMaskBuffer; InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA * L_7 = __this->get_address_of_m_StateBuffers_15(); void* L_8 = L_7->get_noiseMaskBuffer_3(); V_4 = (void*)L_8; // MemoryHelpers.SetBitsInBuffer(noiseMaskBuffer, (int)device.stateBlock.byteOffset, 0, (int)device.stateBlock.sizeInBits, false); void* L_9 = V_4; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_10 = ___device0; NullCheck(L_10); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B L_11; L_11 = InputControl_get_stateBlock_m0ECA3324A1A42DDE5085EAE0A82D7C0447143252_inline(L_10, /*hidden argument*/NULL); V_6 = L_11; uint32_t L_12; L_12 = InputStateBlock_get_byteOffset_m68EF162227DEB77FFCA5C46605780C3387ADC019_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)(&V_6), /*hidden argument*/NULL); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_13 = ___device0; NullCheck(L_13); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B L_14; L_14 = InputControl_get_stateBlock_m0ECA3324A1A42DDE5085EAE0A82D7C0447143252_inline(L_13, /*hidden argument*/NULL); V_6 = L_14; uint32_t L_15; L_15 = InputStateBlock_get_sizeInBits_mFA7DECC1FDC31AB8E7E9E773B096FEE1844FE21D_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)(&V_6), /*hidden argument*/NULL); MemoryHelpers_SetBitsInBuffer_m3821CA0CC6CD492743F4E79B85C26FE04ED757B8((void*)(void*)L_9, L_12, 0, L_15, (bool)0, /*hidden argument*/NULL); // MemoryHelpers.SetBitsInBuffer(resetMaskBuffer, (int)device.stateBlock.byteOffset, 0, (int)device.stateBlock.sizeInBits, true); void* L_16 = V_2; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_17 = ___device0; NullCheck(L_17); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B L_18; L_18 = InputControl_get_stateBlock_m0ECA3324A1A42DDE5085EAE0A82D7C0447143252_inline(L_17, /*hidden argument*/NULL); V_6 = L_18; uint32_t L_19; L_19 = InputStateBlock_get_byteOffset_m68EF162227DEB77FFCA5C46605780C3387ADC019_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)(&V_6), /*hidden argument*/NULL); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_20 = ___device0; NullCheck(L_20); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B L_21; L_21 = InputControl_get_stateBlock_m0ECA3324A1A42DDE5085EAE0A82D7C0447143252_inline(L_20, /*hidden argument*/NULL); V_6 = L_21; uint32_t L_22; L_22 = InputStateBlock_get_sizeInBits_mFA7DECC1FDC31AB8E7E9E773B096FEE1844FE21D_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)(&V_6), /*hidden argument*/NULL); MemoryHelpers_SetBitsInBuffer_m3821CA0CC6CD492743F4E79B85C26FE04ED757B8((void*)(void*)L_16, L_19, 0, L_22, (bool)1, /*hidden argument*/NULL); // var defaultStateBuffer = m_StateBuffers.defaultStateBuffer; InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA * L_23 = __this->get_address_of_m_StateBuffers_15(); void* L_24 = L_23->get_defaultStateBuffer_2(); V_5 = (void*)L_24; // for (var n = 0; n < controlCount; ++n) V_7 = 0; goto IL_0135; } IL_0091: { // var control = controls[n]; int32_t L_25 = V_7; InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_26; L_26 = ReadOnlyArray_1_get_Item_m8E38E64671229D35FA708BF0B650FE3F846189FC((ReadOnlyArray_1_t51E12EEA961178973D364D9C1D86150BC4FF6811 *)(&V_0), L_25, /*hidden argument*/ReadOnlyArray_1_get_Item_m8E38E64671229D35FA708BF0B650FE3F846189FC_RuntimeMethod_var); V_8 = L_26; // if (control.usesStateFromOtherControl) InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_27 = V_8; NullCheck(L_27); bool L_28; L_28 = InputControl_get_usesStateFromOtherControl_mF8BB494214A289DCD94A6230422AE344DEE875F8(L_27, /*hidden argument*/NULL); if (L_28) { goto IL_012f; } } { // if (!control.noisy || control.dontReset) InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_29 = V_8; NullCheck(L_29); bool L_30; L_30 = InputControl_get_noisy_m75E27EA55EB0C920F1BA11F11427BAF3CF6FC840(L_29, /*hidden argument*/NULL); if (!L_30) { goto IL_00ba; } } { InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_31 = V_8; NullCheck(L_31); bool L_32; L_32 = InputControl_get_dontReset_m0722B71B9454D082AE46C399A5556FCFD2CF25E8(L_31, /*hidden argument*/NULL); if (!L_32) { goto IL_010e; } } IL_00ba: { // ref var stateBlock = ref control.m_StateBlock; InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_33 = V_8; NullCheck(L_33); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_34 = L_33->get_address_of_m_StateBlock_0(); V_9 = (InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_34; // if (!control.noisy) InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_35 = V_8; NullCheck(L_35); bool L_36; L_36 = InputControl_get_noisy_m75E27EA55EB0C920F1BA11F11427BAF3CF6FC840(L_35, /*hidden argument*/NULL); if (L_36) { goto IL_00e9; } } { // MemoryHelpers.SetBitsInBuffer(noiseMaskBuffer, (int)stateBlock.byteOffset, (int)stateBlock.bitOffset, // (int)stateBlock.sizeInBits, true); void* L_37 = V_4; InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_38 = V_9; uint32_t L_39; L_39 = InputStateBlock_get_byteOffset_m68EF162227DEB77FFCA5C46605780C3387ADC019_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_38, /*hidden argument*/NULL); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_40 = V_9; uint32_t L_41; L_41 = InputStateBlock_get_bitOffset_m27E4210E69D0E10CC6FFBFEF43BBF3E7ED8C02FC_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_40, /*hidden argument*/NULL); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_42 = V_9; uint32_t L_43; L_43 = InputStateBlock_get_sizeInBits_mFA7DECC1FDC31AB8E7E9E773B096FEE1844FE21D_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_42, /*hidden argument*/NULL); MemoryHelpers_SetBitsInBuffer_m3821CA0CC6CD492743F4E79B85C26FE04ED757B8((void*)(void*)L_37, L_39, L_41, L_43, (bool)1, /*hidden argument*/NULL); } IL_00e9: { // if (control.dontReset) InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_44 = V_8; NullCheck(L_44); bool L_45; L_45 = InputControl_get_dontReset_m0722B71B9454D082AE46C399A5556FCFD2CF25E8(L_44, /*hidden argument*/NULL); if (!L_45) { goto IL_010e; } } { // MemoryHelpers.SetBitsInBuffer(resetMaskBuffer, (int)stateBlock.byteOffset, (int)stateBlock.bitOffset, // (int)stateBlock.sizeInBits, false); void* L_46 = V_2; InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_47 = V_9; uint32_t L_48; L_48 = InputStateBlock_get_byteOffset_m68EF162227DEB77FFCA5C46605780C3387ADC019_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_47, /*hidden argument*/NULL); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_49 = V_9; uint32_t L_50; L_50 = InputStateBlock_get_bitOffset_m27E4210E69D0E10CC6FFBFEF43BBF3E7ED8C02FC_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_49, /*hidden argument*/NULL); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_51 = V_9; uint32_t L_52; L_52 = InputStateBlock_get_sizeInBits_mFA7DECC1FDC31AB8E7E9E773B096FEE1844FE21D_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_51, /*hidden argument*/NULL); MemoryHelpers_SetBitsInBuffer_m3821CA0CC6CD492743F4E79B85C26FE04ED757B8((void*)(void*)L_46, L_48, L_50, L_52, (bool)0, /*hidden argument*/NULL); } IL_010e: { // if (haveControlsWithDefaultState && control.hasDefaultState) bool L_53 = V_3; if (!L_53) { goto IL_012f; } } { InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_54 = V_8; NullCheck(L_54); bool L_55; L_55 = InputControl_get_hasDefaultState_m71C8065BD0541051571EA9230AB8EF135F1FC2A7(L_54, /*hidden argument*/NULL); if (!L_55) { goto IL_012f; } } { // control.m_StateBlock.Write(defaultStateBuffer, control.m_DefaultState); InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_56 = V_8; NullCheck(L_56); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_57 = L_56->get_address_of_m_StateBlock_0(); void* L_58 = V_5; InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_59 = V_8; NullCheck(L_59); PrimitiveValue_t70D8365A1CB2217C466D27D6820362EF4331A0C8 L_60 = L_59->get_m_DefaultState_18(); InputStateBlock_Write_m6C42F8AF86218D59BB5C76A02E2C268333567782((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_57, (void*)(void*)L_58, L_60, /*hidden argument*/NULL); } IL_012f: { // for (var n = 0; n < controlCount; ++n) int32_t L_61 = V_7; V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_61, (int32_t)1)); } IL_0135: { // for (var n = 0; n < controlCount; ++n) int32_t L_62 = V_7; int32_t L_63 = V_1; if ((((int32_t)L_62) < ((int32_t)L_63))) { goto IL_0091; } } { // if (haveControlsWithDefaultState) bool L_64 = V_3; if (!L_64) { goto IL_0198; } } { // ref var deviceStateBlock = ref device.m_StateBlock; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_65 = ___device0; NullCheck(L_65); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_66 = ((InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *)L_65)->get_address_of_m_StateBlock_0(); V_10 = (InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_66; // var deviceIndex = device.m_DeviceIndex; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_67 = ___device0; NullCheck(L_67); int32_t L_68 = L_67->get_m_DeviceIndex_27(); V_11 = L_68; // if (m_StateBuffers.m_PlayerStateBuffers.valid) InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA * L_69 = __this->get_address_of_m_StateBuffers_15(); DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B * L_70 = L_69->get_address_of_m_PlayerStateBuffers_6(); bool L_71; L_71 = DoubleBuffers_get_valid_mF2401B428799FCD5A18603DBF14A6D405B31218B((DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B *)L_70, /*hidden argument*/NULL); if (!L_71) { goto IL_0198; } } { // deviceStateBlock.CopyToFrom(m_StateBuffers.m_PlayerStateBuffers.GetFrontBuffer(deviceIndex), defaultStateBuffer); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_72 = V_10; InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA * L_73 = __this->get_address_of_m_StateBuffers_15(); DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B * L_74 = L_73->get_address_of_m_PlayerStateBuffers_6(); int32_t L_75 = V_11; void* L_76; L_76 = DoubleBuffers_GetFrontBuffer_m2B03B9E7BC47E041D8BF7D78756B5A95FCDF4A4C((DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B *)L_74, L_75, /*hidden argument*/NULL); void* L_77 = V_5; InputStateBlock_CopyToFrom_m1EFC7C9A4CEB2287D0D06EBEF9023C41CC8D765C((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_72, (void*)(void*)L_76, (void*)(void*)L_77, /*hidden argument*/NULL); // deviceStateBlock.CopyToFrom(m_StateBuffers.m_PlayerStateBuffers.GetBackBuffer(deviceIndex), defaultStateBuffer); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_78 = V_10; InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA * L_79 = __this->get_address_of_m_StateBuffers_15(); DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B * L_80 = L_79->get_address_of_m_PlayerStateBuffers_6(); int32_t L_81 = V_11; void* L_82; L_82 = DoubleBuffers_GetBackBuffer_m8BA8EF0C2764AF5DF6C62175CA7A079DE2D55293((DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B *)L_80, L_81, /*hidden argument*/NULL); void* L_83 = V_5; InputStateBlock_CopyToFrom_m1EFC7C9A4CEB2287D0D06EBEF9023C41CC8D765C((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_78, (void*)(void*)L_82, (void*)(void*)L_83, /*hidden argument*/NULL); } IL_0198: { // } return; } } // System.Void UnityEngine.InputSystem.InputManager::OnNativeDeviceDiscovered(System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_OnNativeDeviceDiscovered_m0CA227EDA4A73B6203AB4ED518AB74440A0A4BA1 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, int32_t ___deviceId0, String_t* ___deviceDescriptor1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_AppendWithCapacity_TisAvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D_m19AA1ED8172E03B3B409D8B55E8961BB98EFAEF7_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Count_m27C66CAC40DF36D4D4322096DE84D39BE2753D33_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral84CAACE59D08AF4659A3A7E4D00A4514400CE96A); s_Il2CppMethodInitialized = true; } InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * V_0 = NULL; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 V_1; memset((&V_1), 0, sizeof(V_1)); bool V_2 = false; ReadOnlyArray_1_t1395593458B5F4A22EB99780AA86DA049C3EACEF V_3; memset((&V_3), 0, sizeof(V_3)); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_4; memset((&V_4), 0, sizeof(V_4)); Exception_t * V_5 = NULL; AvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D V_6; memset((&V_6), 0, sizeof(V_6)); Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 G_B3_0; memset((&G_B3_0), 0, sizeof(G_B3_0)); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED G_B8_0; memset((&G_B8_0), 0, sizeof(G_B8_0)); { // RestoreDevicesAfterDomainReloadIfNecessary(); InputManager_RestoreDevicesAfterDomainReloadIfNecessary_m4C49191682691090DBC76DD6CEEA02E32D9E11C5(__this, /*hidden argument*/NULL); // var device = TryMatchDisconnectedDevice(deviceDescriptor); String_t* L_0 = ___deviceDescriptor1; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_1; L_1 = InputManager_TryMatchDisconnectedDevice_m6DDB31F20494BCB00C062FDBDFB2C2AEA7EA14F3(__this, L_0, /*hidden argument*/NULL); V_0 = L_1; // var description = device?.description ?? InputDeviceDescription.FromJson(deviceDescriptor); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_2 = V_0; if (L_2) { goto IL_0019; } } { String_t* L_3 = ___deviceDescriptor1; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_4; L_4 = InputDeviceDescription_FromJson_m016A57DA58C9B7EB31C9269AF99604778E8BC011(L_3, /*hidden argument*/NULL); G_B3_0 = L_4; goto IL_001f; } IL_0019: { InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_5 = V_0; NullCheck(L_5); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_6; L_6 = InputDevice_get_description_m3F54BB4D6E85ADD8CDBB2906821A9D828CAC8305_inline(L_5, /*hidden argument*/NULL); G_B3_0 = L_6; } IL_001f: { V_1 = G_B3_0; // var markAsRemoved = false; V_2 = (bool)0; } IL_0022: try { // begin try (depth: 1) try { // begin try (depth: 2) { // if (m_Settings.supportedDevices.Count > 0) InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_7 = __this->get_m_Settings_33(); NullCheck(L_7); ReadOnlyArray_1_t1395593458B5F4A22EB99780AA86DA049C3EACEF L_8; L_8 = InputSettings_get_supportedDevices_m99C6795D226E5619AEBD11AA9DB414B7DF3A8EF5(L_7, /*hidden argument*/NULL); V_3 = L_8; int32_t L_9; L_9 = ReadOnlyArray_1_get_Count_m27C66CAC40DF36D4D4322096DE84D39BE2753D33_inline((ReadOnlyArray_1_t1395593458B5F4A22EB99780AA86DA049C3EACEF *)(&V_3), /*hidden argument*/ReadOnlyArray_1_get_Count_m27C66CAC40DF36D4D4322096DE84D39BE2753D33_RuntimeMethod_var); if ((((int32_t)L_9) <= ((int32_t)0))) { goto IL_005f; } } IL_0038: { // var layout = device != null ? device.m_Layout : TryFindMatchingControlLayout(ref description, deviceId); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_10 = V_0; if (L_10) { goto IL_0046; } } IL_003b: { int32_t L_11 = ___deviceId0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_12; L_12 = InputManager_TryFindMatchingControlLayout_mF1C449D35DF64AD63A3A8D45080DA7F592B38945(__this, (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&V_1), L_11, /*hidden argument*/NULL); G_B8_0 = L_12; goto IL_004c; } IL_0046: { InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_13 = V_0; NullCheck(L_13); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_14 = ((InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *)L_13)->get_m_Layout_7(); G_B8_0 = L_14; } IL_004c: { V_4 = G_B8_0; // if (!IsDeviceLayoutMarkedAsSupportedInSettings(layout)) InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_15 = V_4; bool L_16; L_16 = InputManager_IsDeviceLayoutMarkedAsSupportedInSettings_mAC05AE1CC0DFEED3750D6090EFE9D24E0C5C9E98(__this, L_15, /*hidden argument*/NULL); if (L_16) { goto IL_005f; } } IL_0058: { // markAsRemoved = true; V_2 = (bool)1; // return; IL2CPP_LEAVE(0x12D, FINALLY_00ee); } IL_005f: { // if (device != null) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_17 = V_0; if (!L_17) { goto IL_00c4; } } IL_0062: { // device.m_DeviceId = deviceId; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_18 = V_0; int32_t L_19 = ___deviceId0; NullCheck(L_18); L_18->set_m_DeviceId_25(L_19); // device.m_DeviceFlags |= InputDevice.DeviceFlags.Native; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_20 = V_0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_21 = L_20; NullCheck(L_21); int32_t L_22 = L_21->get_m_DeviceFlags_24(); NullCheck(L_21); L_21->set_m_DeviceFlags_24(((int32_t)((int32_t)L_22|(int32_t)((int32_t)16)))); // device.m_DeviceFlags &= ~InputDevice.DeviceFlags.DisabledInFrontend; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_23 = V_0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_24 = L_23; NullCheck(L_24); int32_t L_25 = L_24->get_m_DeviceFlags_24(); NullCheck(L_24); L_24->set_m_DeviceFlags_24(((int32_t)((int32_t)L_25&(int32_t)((int32_t)-33)))); // device.m_DeviceFlags &= ~InputDevice.DeviceFlags.DisabledWhileInBackground; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_26 = V_0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_27 = L_26; NullCheck(L_27); int32_t L_28 = L_27->get_m_DeviceFlags_24(); NullCheck(L_27); L_27->set_m_DeviceFlags_24(((int32_t)((int32_t)L_28&(int32_t)((int32_t)-257)))); // device.m_DeviceFlags &= ~InputDevice.DeviceFlags.DisabledStateHasBeenQueriedFromRuntime; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_29 = V_0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_30 = L_29; NullCheck(L_30); int32_t L_31 = L_30->get_m_DeviceFlags_24(); NullCheck(L_30); L_30->set_m_DeviceFlags_24(((int32_t)((int32_t)L_31&(int32_t)((int32_t)-65)))); // AddDevice(device); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_32 = V_0; InputManager_AddDevice_m46C38DC839860EE2EB54FFD22557FBCB6249CCD8(__this, L_32, /*hidden argument*/NULL); // DelegateHelpers.InvokeCallbacksSafe(ref m_DeviceChangeListeners, device, InputDeviceChange.Reconnected, // "InputSystem.onDeviceChange"); CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 * L_33 = __this->get_address_of_m_DeviceChangeListeners_16(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_34 = V_0; DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38((CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 *)L_33, L_34, 3, _stringLiteral84CAACE59D08AF4659A3A7E4D00A4514400CE96A, NULL, /*hidden argument*/DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38_RuntimeMethod_var); // } goto IL_00d1; } IL_00c4: { // AddDevice(description, throwIfNoLayoutFound: false, deviceId: deviceId, // deviceFlags: InputDevice.DeviceFlags.Native); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_35 = V_1; int32_t L_36 = ___deviceId0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_37; L_37 = InputManager_AddDevice_mB7C1C7D58C39D5C9D80FBBF47AACA3CC6451E235(__this, L_35, (bool)0, (String_t*)NULL, L_36, ((int32_t)16), /*hidden argument*/NULL); } IL_00d1: { // } IL2CPP_LEAVE(0x12D, FINALLY_00ee); } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00d3; } throw e; } CATCH_00d3: { // begin catch(System.Exception) // catch (Exception exception) V_5 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)); // Debug.LogError($"Could not create a device for '{description}' (exception: {exception})"); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_38 = V_1; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_39 = L_38; RuntimeObject * L_40 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58_il2cpp_TypeInfo_var)), &L_39); Exception_t * L_41 = V_5; String_t* L_42; L_42 = String_Format_m8464C6DD7299114954DA87FC39FCD129F3E2ACA2(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0BA5468134AAC3438B5940C44AFD45FE8669FCEB)), L_40, L_41, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var))); Debug_LogError_m5952BCE5DC0EF798B31FA983B9CE42A5A1F82DE1(L_42, /*hidden argument*/NULL); // } IL2CPP_POP_ACTIVE_EXCEPTION(); IL2CPP_LEAVE(0x12D, FINALLY_00ee); } // end catch (depth: 2) } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00ee; } FINALLY_00ee: { // begin finally (depth: 1) // ArrayHelpers.AppendWithCapacity(ref m_AvailableDevices, ref m_AvailableDeviceCount, // new AvailableDevice // { // description = description, // deviceId = deviceId, // isNative = true, // isRemoved = markAsRemoved, // }); AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330** L_43 = __this->get_address_of_m_AvailableDevices_10(); int32_t* L_44 = __this->get_address_of_m_AvailableDeviceCount_9(); il2cpp_codegen_initobj((&V_6), sizeof(AvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D )); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_45 = V_1; (&V_6)->set_description_0(L_45); int32_t L_46 = ___deviceId0; (&V_6)->set_deviceId_1(L_46); (&V_6)->set_isNative_2((bool)1); bool L_47 = V_2; (&V_6)->set_isRemoved_3(L_47); AvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D L_48 = V_6; int32_t L_49; L_49 = ArrayHelpers_AppendWithCapacity_TisAvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D_m19AA1ED8172E03B3B409D8B55E8961BB98EFAEF7((AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330**)L_43, (int32_t*)L_44, L_48, ((int32_t)10), /*hidden argument*/ArrayHelpers_AppendWithCapacity_TisAvailableDevice_tE0BCFEA231DCDD7389B02316CF442D9AD92B6B7D_m19AA1ED8172E03B3B409D8B55E8961BB98EFAEF7_RuntimeMethod_var); // } IL2CPP_END_FINALLY(238) } // end finally (depth: 1) IL2CPP_CLEANUP(238) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x12D, IL_012d) } IL_012d: { // } return; } } // UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputManager::TryMatchDisconnectedDevice(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * InputManager_TryMatchDisconnectedDevice_m6DDB31F20494BCB00C062FDBDFB2C2AEA7EA14F3 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, String_t* ___deviceDescriptor0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_EraseAtWithCapacity_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mEA807EF2CA95E277837869AA2396028B41A8CCA6_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1630E6A6E4B065CB228F2BB0735FC4EB04ADCF98); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1EEB75795CB6B2FEB03B506A6ABF63E6EB891D3A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral75C123F6B54703295CFE76238B415DDAFB9698C9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8DAE0371884040CFA6CE09831807D3D5D255F5D6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF49AECB5A7A9C87D4D672BA9D06F6929E0895580); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * V_1 = NULL; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 V_2; memset((&V_2), 0, sizeof(V_2)); { // for (var i = 0; i < m_DisconnectedDevicesCount; ++i) V_0 = 0; goto IL_00a7; } IL_0007: { // var device = m_DisconnectedDevices[i]; InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* L_0 = __this->get_m_DisconnectedDevices_12(); int32_t L_1 = V_0; NullCheck(L_0); int32_t L_2 = L_1; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_3 = (L_0)->GetAt(static_cast(L_2)); V_1 = L_3; // var description = device.description; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_4 = V_1; NullCheck(L_4); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_5; L_5 = InputDevice_get_description_m3F54BB4D6E85ADD8CDBB2906821A9D828CAC8305_inline(L_4, /*hidden argument*/NULL); V_2 = L_5; // if (!InputDeviceDescription.ComparePropertyToDeviceDescriptor("interface", description.interfaceName, deviceDescriptor)) String_t* L_6; L_6 = InputDeviceDescription_get_interfaceName_mCEBA87B35556BD0D03EADDD724B08266120BE761_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&V_2), /*hidden argument*/NULL); String_t* L_7 = ___deviceDescriptor0; bool L_8; L_8 = InputDeviceDescription_ComparePropertyToDeviceDescriptor_mCDE56F9A2EC603ED7D7E0F83B2F12FA44A995369(_stringLiteralF49AECB5A7A9C87D4D672BA9D06F6929E0895580, L_6, L_7, /*hidden argument*/NULL); if (!L_8) { goto IL_00a3; } } { // if (!InputDeviceDescription.ComparePropertyToDeviceDescriptor("product", description.product, deviceDescriptor)) String_t* L_9; L_9 = InputDeviceDescription_get_product_mEECD8A9018BF8C49B89256C912EC0AAEE90D4A82_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&V_2), /*hidden argument*/NULL); String_t* L_10 = ___deviceDescriptor0; bool L_11; L_11 = InputDeviceDescription_ComparePropertyToDeviceDescriptor_mCDE56F9A2EC603ED7D7E0F83B2F12FA44A995369(_stringLiteral1630E6A6E4B065CB228F2BB0735FC4EB04ADCF98, L_9, L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_00a3; } } { // if (!InputDeviceDescription.ComparePropertyToDeviceDescriptor("manufacturer", description.manufacturer, deviceDescriptor)) String_t* L_12; L_12 = InputDeviceDescription_get_manufacturer_m42C503D82A264C3510752BD1E726D8ED3111E869_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&V_2), /*hidden argument*/NULL); String_t* L_13 = ___deviceDescriptor0; bool L_14; L_14 = InputDeviceDescription_ComparePropertyToDeviceDescriptor_mCDE56F9A2EC603ED7D7E0F83B2F12FA44A995369(_stringLiteral8DAE0371884040CFA6CE09831807D3D5D255F5D6, L_12, L_13, /*hidden argument*/NULL); if (!L_14) { goto IL_00a3; } } { // if (!InputDeviceDescription.ComparePropertyToDeviceDescriptor("type", description.deviceClass, deviceDescriptor)) String_t* L_15; L_15 = InputDeviceDescription_get_deviceClass_m04BB88F15F817900CF7457A2E7FC65F5618AD1AF_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&V_2), /*hidden argument*/NULL); String_t* L_16 = ___deviceDescriptor0; bool L_17; L_17 = InputDeviceDescription_ComparePropertyToDeviceDescriptor_mCDE56F9A2EC603ED7D7E0F83B2F12FA44A995369(_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7, L_15, L_16, /*hidden argument*/NULL); if (!L_17) { goto IL_00a3; } } { // if (!InputDeviceDescription.ComparePropertyToDeviceDescriptor("capabilities", description.capabilities, deviceDescriptor)) String_t* L_18; L_18 = InputDeviceDescription_get_capabilities_m3871219ECAC10766CBAB256E0612674368D5C362_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&V_2), /*hidden argument*/NULL); String_t* L_19 = ___deviceDescriptor0; bool L_20; L_20 = InputDeviceDescription_ComparePropertyToDeviceDescriptor_mCDE56F9A2EC603ED7D7E0F83B2F12FA44A995369(_stringLiteral75C123F6B54703295CFE76238B415DDAFB9698C9, L_18, L_19, /*hidden argument*/NULL); if (!L_20) { goto IL_00a3; } } { // if (!InputDeviceDescription.ComparePropertyToDeviceDescriptor("serial", description.serial, deviceDescriptor)) String_t* L_21; L_21 = InputDeviceDescription_get_serial_m259412E6F7627E1310535A55FB9BE03146C54A55_inline((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&V_2), /*hidden argument*/NULL); String_t* L_22 = ___deviceDescriptor0; bool L_23; L_23 = InputDeviceDescription_ComparePropertyToDeviceDescriptor_mCDE56F9A2EC603ED7D7E0F83B2F12FA44A995369(_stringLiteral1EEB75795CB6B2FEB03B506A6ABF63E6EB891D3A, L_21, L_22, /*hidden argument*/NULL); if (!L_23) { goto IL_00a3; } } { // ArrayHelpers.EraseAtWithCapacity(m_DisconnectedDevices, ref m_DisconnectedDevicesCount, i); InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* L_24 = __this->get_m_DisconnectedDevices_12(); int32_t* L_25 = __this->get_address_of_m_DisconnectedDevicesCount_11(); int32_t L_26 = V_0; ArrayHelpers_EraseAtWithCapacity_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mEA807EF2CA95E277837869AA2396028B41A8CCA6(L_24, (int32_t*)L_25, L_26, /*hidden argument*/ArrayHelpers_EraseAtWithCapacity_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mEA807EF2CA95E277837869AA2396028B41A8CCA6_RuntimeMethod_var); // return device; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_27 = V_1; return L_27; } IL_00a3: { // for (var i = 0; i < m_DisconnectedDevicesCount; ++i) int32_t L_28 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); } IL_00a7: { // for (var i = 0; i < m_DisconnectedDevicesCount; ++i) int32_t L_29 = V_0; int32_t L_30 = __this->get_m_DisconnectedDevicesCount_11(); if ((((int32_t)L_29) < ((int32_t)L_30))) { goto IL_0007; } } { // return null; return (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *)NULL; } } // System.Void UnityEngine.InputSystem.InputManager::InstallBeforeUpdateHookIfNecessary() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_InstallBeforeUpdateHookIfNecessary_m0B1B1F9F035537BD5D337CA60EBB9F8CCDBDC58B (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1__ctor_mE5AFF6D7BDD05183BBAB61367AE0B922B690C57D_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tC6AEC56D51A701342DD5D9DEEE77C063945AE4DC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputManager_OnBeforeUpdate_m5914D092ED103F451FC32409D999ED020087649E_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // if (m_NativeBeforeUpdateHooked || m_Runtime == null) bool L_0 = __this->get_m_NativeBeforeUpdateHooked_25(); if (L_0) { goto IL_0010; } } { RuntimeObject* L_1 = __this->get_m_Runtime_31(); if (L_1) { goto IL_0011; } } IL_0010: { // return; return; } IL_0011: { // m_Runtime.onBeforeUpdate = OnBeforeUpdate; RuntimeObject* L_2 = __this->get_m_Runtime_31(); Action_1_tC6AEC56D51A701342DD5D9DEEE77C063945AE4DC * L_3 = (Action_1_tC6AEC56D51A701342DD5D9DEEE77C063945AE4DC *)il2cpp_codegen_object_new(Action_1_tC6AEC56D51A701342DD5D9DEEE77C063945AE4DC_il2cpp_TypeInfo_var); Action_1__ctor_mE5AFF6D7BDD05183BBAB61367AE0B922B690C57D(L_3, __this, (intptr_t)((intptr_t)InputManager_OnBeforeUpdate_m5914D092ED103F451FC32409D999ED020087649E_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_mE5AFF6D7BDD05183BBAB61367AE0B922B690C57D_RuntimeMethod_var); NullCheck(L_2); InterfaceActionInvoker1< Action_1_tC6AEC56D51A701342DD5D9DEEE77C063945AE4DC * >::Invoke(7 /* System.Void UnityEngine.InputSystem.LowLevel.IInputRuntime::set_onBeforeUpdate(System.Action`1) */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_2, L_3); // m_NativeBeforeUpdateHooked = true; __this->set_m_NativeBeforeUpdateHooked_25((bool)1); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::RestoreDevicesAfterDomainReloadIfNecessary() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_RestoreDevicesAfterDomainReloadIfNecessary_m4C49191682691090DBC76DD6CEEA02E32D9E11C5 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { { // } return; } } // System.Void UnityEngine.InputSystem.InputManager::WarnAboutDevicesFailingToRecreateAfterDomainReload() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_WarnAboutDevicesFailingToRecreateAfterDomainReload_mB48EB7803F4E3D3EAA5F7FAB7558D1033B093141 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { { // } return; } } // System.Void UnityEngine.InputSystem.InputManager::OnBeforeUpdate(UnityEngine.InputSystem.LowLevel.InputUpdateType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_OnBeforeUpdate_m5914D092ED103F451FC32409D999ED020087649E (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, int32_t ___updateType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputStateCallbackReceiver_t4C5C8728DA2734584B886F3D78491E19738BC79A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral74D76C7BAA4DECF9C908C2F7D020C83CB02B76B0); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * V_1 = NULL; { // RestoreDevicesAfterDomainReloadIfNecessary(); InputManager_RestoreDevicesAfterDomainReloadIfNecessary_m4C49191682691090DBC76DD6CEEA02E32D9E11C5(__this, /*hidden argument*/NULL); // if ((updateType & m_UpdateMask) == 0) int32_t L_0 = ___updateType0; int32_t L_1 = __this->get_m_UpdateMask_13(); if (((int32_t)((int32_t)L_0&(int32_t)L_1))) { goto IL_0011; } } { // return; return; } IL_0011: { // InputStateBuffers.SwitchTo(m_StateBuffers, updateType); InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA L_2 = __this->get_m_StateBuffers_15(); int32_t L_3 = ___updateType0; InputStateBuffers_SwitchTo_m4AD65E34033B2D3146474212969EF700225308BD(L_2, L_3, /*hidden argument*/NULL); // InputUpdate.OnBeforeUpdate(updateType); int32_t L_4 = ___updateType0; InputUpdate_OnBeforeUpdate_m8F106BA43D60159535340823FE1F41750161F62A(L_4, /*hidden argument*/NULL); // if (m_HaveDevicesWithStateCallbackReceivers && updateType != InputUpdateType.BeforeRender) ////REVIEW: before-render handling is probably wrong bool L_5 = __this->get_m_HaveDevicesWithStateCallbackReceivers_26(); if (!L_5) { goto IL_005c; } } { int32_t L_6 = ___updateType0; if ((((int32_t)L_6) == ((int32_t)4))) { goto IL_005c; } } { // for (var i = 0; i < m_DevicesCount; ++i) V_0 = 0; goto IL_0053; } IL_0033: { // var device = m_Devices[i]; InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* L_7 = __this->get_m_Devices_7(); int32_t L_8 = V_0; NullCheck(L_7); int32_t L_9 = L_8; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_10 = (L_7)->GetAt(static_cast(L_9)); V_1 = L_10; // if (!device.hasStateCallbacks) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_11 = V_1; NullCheck(L_11); bool L_12; L_12 = InputDevice_get_hasStateCallbacks_mD2180C045B5F2BC58EBCC491C2FE8AD0993582C8(L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_004f; } } { // ((IInputStateCallbackReceiver)device).OnNextUpdate(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_13 = V_1; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_13, IInputStateCallbackReceiver_t4C5C8728DA2734584B886F3D78491E19738BC79A_il2cpp_TypeInfo_var))); InterfaceActionInvoker0::Invoke(0 /* System.Void UnityEngine.InputSystem.LowLevel.IInputStateCallbackReceiver::OnNextUpdate() */, IInputStateCallbackReceiver_t4C5C8728DA2734584B886F3D78491E19738BC79A_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_13, IInputStateCallbackReceiver_t4C5C8728DA2734584B886F3D78491E19738BC79A_il2cpp_TypeInfo_var))); } IL_004f: { // for (var i = 0; i < m_DevicesCount; ++i) int32_t L_14 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)); } IL_0053: { // for (var i = 0; i < m_DevicesCount; ++i) int32_t L_15 = V_0; int32_t L_16 = __this->get_m_DevicesCount_6(); if ((((int32_t)L_15) < ((int32_t)L_16))) { goto IL_0033; } } IL_005c: { // DelegateHelpers.InvokeCallbacksSafe(ref m_BeforeUpdateListeners, "onBeforeUpdate"); CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 * L_17 = __this->get_address_of_m_BeforeUpdateListeners_22(); DelegateHelpers_InvokeCallbacksSafe_m1009DD029A41FCAE8AA28E604ECA57A3E865A02B((CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 *)L_17, _stringLiteral74D76C7BAA4DECF9C908C2F7D020C83CB02B76B0, NULL, /*hidden argument*/NULL); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::ApplySettings() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_ApplySettings_mEF00E3EDCFEE9C9311B3016A22F478DC1A56E446 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ButtonControl_t3918D56D674854AF9DFEB8CCF130919AAD9FCA68_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputManager_ExecuteGlobalCommand_TisUseWindowsGamingInputCommand_tB66739BB4992AB11B421FE57CFEE81FBD534C6F3_m0496412738D388718F528CB840EA03460BEC3772_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Count_m27C66CAC40DF36D4D4322096DE84D39BE2753D33_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touchscreen_tE679C4B2C2D8C5979EAC5A2002603672A202E3EB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2A2782DDF2179B23547713DD1D5AB7ED9DA9D3E0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B8CD4B6D862D3DAB73CB4E263DBAEBAFA5F49D7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F88F97D18CEE55EBB014C32A6D854CB3FBEB63C); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; ReadOnlyArray_1_t1395593458B5F4A22EB99780AA86DA049C3EACEF V_3; memset((&V_3), 0, sizeof(V_3)); int32_t V_4 = 0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * V_5 = NULL; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_6; memset((&V_6), 0, sizeof(V_6)); bool V_7 = false; int32_t V_8 = 0; UseWindowsGamingInputCommand_tB66739BB4992AB11B421FE57CFEE81FBD534C6F3 V_9; memset((&V_9), 0, sizeof(V_9)); { // var newUpdateMask = InputUpdateType.Editor; V_0 = 8; // if ((m_UpdateMask & InputUpdateType.BeforeRender) != 0) int32_t L_0 = __this->get_m_UpdateMask_13(); if (!((int32_t)((int32_t)L_0&(int32_t)4))) { goto IL_0010; } } { // newUpdateMask |= InputUpdateType.BeforeRender; int32_t L_1 = V_0; V_0 = ((int32_t)((int32_t)L_1|(int32_t)4)); } IL_0010: { // if (m_Settings.updateMode == InputSettings.s_OldUnsupportedFixedAndDynamicUpdateSetting) InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_2 = __this->get_m_Settings_33(); NullCheck(L_2); int32_t L_3; L_3 = InputSettings_get_updateMode_m139C9F1C6191E7C6209426D23BEE5C5816AC7280_inline(L_2, /*hidden argument*/NULL); if (L_3) { goto IL_0029; } } { // m_Settings.updateMode = InputSettings.UpdateMode.ProcessEventsInDynamicUpdate; InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_4 = __this->get_m_Settings_33(); NullCheck(L_4); InputSettings_set_updateMode_mD3E0AD8963A8A27559B526702EC0398664434C0B(L_4, 1, /*hidden argument*/NULL); } IL_0029: { // switch (m_Settings.updateMode) InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_5 = __this->get_m_Settings_33(); NullCheck(L_5); int32_t L_6; L_6 = InputSettings_get_updateMode_m139C9F1C6191E7C6209426D23BEE5C5816AC7280_inline(L_5, /*hidden argument*/NULL); V_1 = L_6; int32_t L_7 = V_1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)1))) { case 0: { goto IL_004b; } case 1: { goto IL_0051; } case 2: { goto IL_0057; } } } { goto IL_005e; } IL_004b: { // newUpdateMask |= InputUpdateType.Dynamic; int32_t L_8 = V_0; V_0 = ((int32_t)((int32_t)L_8|(int32_t)1)); // break; goto IL_0087; } IL_0051: { // newUpdateMask |= InputUpdateType.Fixed; int32_t L_9 = V_0; V_0 = ((int32_t)((int32_t)L_9|(int32_t)2)); // break; goto IL_0087; } IL_0057: { // newUpdateMask |= InputUpdateType.Manual; int32_t L_10 = V_0; V_0 = ((int32_t)((int32_t)L_10|(int32_t)((int32_t)16))); // break; goto IL_0087; } IL_005e: { // throw new NotSupportedException("Invalid input update mode: " + m_Settings.updateMode); InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_11 = __this->get_m_Settings_33(); NullCheck(L_11); int32_t L_12; L_12 = InputSettings_get_updateMode_m139C9F1C6191E7C6209426D23BEE5C5816AC7280_inline(L_11, /*hidden argument*/NULL); V_2 = L_12; RuntimeObject * L_13 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UpdateMode_tB1023A67A3F7862527D6797E3522EAC9DC5B00A1_il2cpp_TypeInfo_var)), (&V_2)); NullCheck(L_13); String_t* L_14; L_14 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_13); V_2 = *(int32_t*)UnBox(L_13); String_t* L_15; L_15 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5E4609AC3C6E84D2010252F67F4E72A2DBC1DC06)), L_14, /*hidden argument*/NULL); NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_16 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_16, L_15, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_ApplySettings_mEF00E3EDCFEE9C9311B3016A22F478DC1A56E446_RuntimeMethod_var))); } IL_0087: { // updateMask = newUpdateMask; int32_t L_17 = V_0; InputManager_set_updateMask_m84A72CF7C05D03B1A10E960F36FA562B3EF22032(__this, L_17, /*hidden argument*/NULL); // AddAvailableDevicesThatAreNowRecognized(); InputManager_AddAvailableDevicesThatAreNowRecognized_mAB791BABE33F529FBF87F6A90A42C521EC005527(__this, /*hidden argument*/NULL); // if (settings.supportedDevices.Count > 0) InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_18; L_18 = InputManager_get_settings_m274A9304D86B1B1E9BAAC775A9B34E0BFA502E2C_inline(__this, /*hidden argument*/NULL); NullCheck(L_18); ReadOnlyArray_1_t1395593458B5F4A22EB99780AA86DA049C3EACEF L_19; L_19 = InputSettings_get_supportedDevices_m99C6795D226E5619AEBD11AA9DB414B7DF3A8EF5(L_18, /*hidden argument*/NULL); V_3 = L_19; int32_t L_20; L_20 = ReadOnlyArray_1_get_Count_m27C66CAC40DF36D4D4322096DE84D39BE2753D33_inline((ReadOnlyArray_1_t1395593458B5F4A22EB99780AA86DA049C3EACEF *)(&V_3), /*hidden argument*/ReadOnlyArray_1_get_Count_m27C66CAC40DF36D4D4322096DE84D39BE2753D33_RuntimeMethod_var); if ((((int32_t)L_20) <= ((int32_t)0))) { goto IL_0128; } } { // for (var i = 0; i < m_DevicesCount; ++i) V_4 = 0; goto IL_011e; } IL_00af: { // var device = m_Devices[i]; InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* L_21 = __this->get_m_Devices_7(); int32_t L_22 = V_4; NullCheck(L_21); int32_t L_23 = L_22; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_24 = (L_21)->GetAt(static_cast(L_23)); V_5 = L_24; // var layout = device.m_Layout; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_25 = V_5; NullCheck(L_25); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_26 = ((InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *)L_25)->get_m_Layout_7(); V_6 = L_26; // var isInAvailableDevices = false; V_7 = (bool)0; // for (var n = 0; n < m_AvailableDeviceCount; ++n) V_8 = 0; goto IL_00f1; } IL_00cb: { // if (m_AvailableDevices[n].deviceId == device.deviceId) AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330* L_27 = __this->get_m_AvailableDevices_10(); int32_t L_28 = V_8; NullCheck(L_27); int32_t L_29 = ((L_27)->GetAddressAt(static_cast(L_28)))->get_deviceId_1(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_30 = V_5; NullCheck(L_30); int32_t L_31; L_31 = InputDevice_get_deviceId_mDDE1531F7B9A1E03B17094C7AC37E58177E4AA0D_inline(L_30, /*hidden argument*/NULL); if ((!(((uint32_t)L_29) == ((uint32_t)L_31)))) { goto IL_00eb; } } { // isInAvailableDevices = true; V_7 = (bool)1; // break; goto IL_00fb; } IL_00eb: { // for (var n = 0; n < m_AvailableDeviceCount; ++n) int32_t L_32 = V_8; V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1)); } IL_00f1: { // for (var n = 0; n < m_AvailableDeviceCount; ++n) int32_t L_33 = V_8; int32_t L_34 = __this->get_m_AvailableDeviceCount_9(); if ((((int32_t)L_33) < ((int32_t)L_34))) { goto IL_00cb; } } IL_00fb: { // if (!isInAvailableDevices) bool L_35 = V_7; if (!L_35) { goto IL_0118; } } { // if (!IsDeviceLayoutMarkedAsSupportedInSettings(layout)) InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_36 = V_6; bool L_37; L_37 = InputManager_IsDeviceLayoutMarkedAsSupportedInSettings_mAC05AE1CC0DFEED3750D6090EFE9D24E0C5C9E98(__this, L_36, /*hidden argument*/NULL); if (L_37) { goto IL_0118; } } { // RemoveDevice(device, keepOnListOfAvailableDevices: true); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_38 = V_5; InputManager_RemoveDevice_m078BD5E7310B7B57E282ECDD0972A6641F66C2C0(__this, L_38, (bool)1, /*hidden argument*/NULL); // --i; int32_t L_39 = V_4; V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_39, (int32_t)1)); } IL_0118: { // for (var i = 0; i < m_DevicesCount; ++i) int32_t L_40 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)1)); } IL_011e: { // for (var i = 0; i < m_DevicesCount; ++i) int32_t L_41 = V_4; int32_t L_42 = __this->get_m_DevicesCount_6(); if ((((int32_t)L_41) < ((int32_t)L_42))) { goto IL_00af; } } IL_0128: { // if (m_Settings.m_FeatureFlags != null) InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_43 = __this->get_m_Settings_33(); NullCheck(L_43); HashSet_1_t45F75268054D01D9E70EB33D7F6D2FA609DB9229 * L_44 = L_43->get_m_FeatureFlags_22(); if (!L_44) { goto IL_0165; } } { // if (m_Settings.IsFeatureEnabled(InputFeatureNames.kUseWindowsGamingInputBackend)) InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_45 = __this->get_m_Settings_33(); NullCheck(L_45); bool L_46; L_46 = InputSettings_IsFeatureEnabled_m25FC11D26B557BBB2A82093D5573F58CBC63C89B(L_45, _stringLiteral6F88F97D18CEE55EBB014C32A6D854CB3FBEB63C, /*hidden argument*/NULL); if (!L_46) { goto IL_0165; } } { // var command = UseWindowsGamingInputCommand.Create(true); UseWindowsGamingInputCommand_tB66739BB4992AB11B421FE57CFEE81FBD534C6F3 L_47; L_47 = UseWindowsGamingInputCommand_Create_m0486E0D1CB6ACF143D61DBFD1CAA2520310C224C((bool)1, /*hidden argument*/NULL); V_9 = L_47; // if (ExecuteGlobalCommand(ref command) < 0) int64_t L_48; L_48 = InputManager_ExecuteGlobalCommand_TisUseWindowsGamingInputCommand_tB66739BB4992AB11B421FE57CFEE81FBD534C6F3_m0496412738D388718F528CB840EA03460BEC3772(__this, (UseWindowsGamingInputCommand_tB66739BB4992AB11B421FE57CFEE81FBD534C6F3 *)(&V_9), /*hidden argument*/InputManager_ExecuteGlobalCommand_TisUseWindowsGamingInputCommand_tB66739BB4992AB11B421FE57CFEE81FBD534C6F3_m0496412738D388718F528CB840EA03460BEC3772_RuntimeMethod_var); if ((((int64_t)L_48) >= ((int64_t)((int64_t)((int64_t)0))))) { goto IL_0165; } } { // Debug.LogError($"Could not enable Windows.Gaming.Input"); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogError_m5952BCE5DC0EF798B31FA983B9CE42A5A1F82DE1(_stringLiteral6B8CD4B6D862D3DAB73CB4E263DBAEBAFA5F49D7, /*hidden argument*/NULL); } IL_0165: { // Touchscreen.s_TapTime = settings.defaultTapTime; InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_49; L_49 = InputManager_get_settings_m274A9304D86B1B1E9BAAC775A9B34E0BFA502E2C_inline(__this, /*hidden argument*/NULL); NullCheck(L_49); float L_50; L_50 = InputSettings_get_defaultTapTime_mEF8E28ABA67B76EF4EBD0DEE624DFF1BA9C6C319_inline(L_49, /*hidden argument*/NULL); ((Touchscreen_tE679C4B2C2D8C5979EAC5A2002603672A202E3EB_StaticFields*)il2cpp_codegen_static_fields_for(Touchscreen_tE679C4B2C2D8C5979EAC5A2002603672A202E3EB_il2cpp_TypeInfo_var))->set_s_TapTime_48(L_50); // Touchscreen.s_TapDelayTime = settings.multiTapDelayTime; InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_51; L_51 = InputManager_get_settings_m274A9304D86B1B1E9BAAC775A9B34E0BFA502E2C_inline(__this, /*hidden argument*/NULL); NullCheck(L_51); float L_52; L_52 = InputSettings_get_multiTapDelayTime_mA93C3E2265EA91C6007417E443A396F12EA91694_inline(L_51, /*hidden argument*/NULL); ((Touchscreen_tE679C4B2C2D8C5979EAC5A2002603672A202E3EB_StaticFields*)il2cpp_codegen_static_fields_for(Touchscreen_tE679C4B2C2D8C5979EAC5A2002603672A202E3EB_il2cpp_TypeInfo_var))->set_s_TapDelayTime_49(L_52); // Touchscreen.s_TapRadiusSquared = settings.tapRadius * settings.tapRadius; InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_53; L_53 = InputManager_get_settings_m274A9304D86B1B1E9BAAC775A9B34E0BFA502E2C_inline(__this, /*hidden argument*/NULL); NullCheck(L_53); float L_54; L_54 = InputSettings_get_tapRadius_m3273C17196793FA7182F29FE3FB101F5D8A58992_inline(L_53, /*hidden argument*/NULL); InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_55; L_55 = InputManager_get_settings_m274A9304D86B1B1E9BAAC775A9B34E0BFA502E2C_inline(__this, /*hidden argument*/NULL); NullCheck(L_55); float L_56; L_56 = InputSettings_get_tapRadius_m3273C17196793FA7182F29FE3FB101F5D8A58992_inline(L_55, /*hidden argument*/NULL); ((Touchscreen_tE679C4B2C2D8C5979EAC5A2002603672A202E3EB_StaticFields*)il2cpp_codegen_static_fields_for(Touchscreen_tE679C4B2C2D8C5979EAC5A2002603672A202E3EB_il2cpp_TypeInfo_var))->set_s_TapRadiusSquared_50(((float)il2cpp_codegen_multiply((float)L_54, (float)L_56))); // ButtonControl.s_GlobalDefaultButtonPressPoint = Mathf.Clamp(settings.defaultButtonPressPoint, ButtonControl.kMinButtonPressPoint, float.MaxValue); InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_57; L_57 = InputManager_get_settings_m274A9304D86B1B1E9BAAC775A9B34E0BFA502E2C_inline(__this, /*hidden argument*/NULL); NullCheck(L_57); float L_58; L_58 = InputSettings_get_defaultButtonPressPoint_m340ACA5AD7B0079097AF1DFEBDD90825B5FA73ED_inline(L_57, /*hidden argument*/NULL); float L_59; L_59 = Mathf_Clamp_m5EA831B060853D4246B8394A30599A0021F80AFF(L_58, (9.99999975E-05f), ((std::numeric_limits::max)()), /*hidden argument*/NULL); ((ButtonControl_t3918D56D674854AF9DFEB8CCF130919AAD9FCA68_StaticFields*)il2cpp_codegen_static_fields_for(ButtonControl_t3918D56D674854AF9DFEB8CCF130919AAD9FCA68_il2cpp_TypeInfo_var))->set_s_GlobalDefaultButtonPressPoint_34(L_59); // ButtonControl.s_GlobalDefaultButtonReleaseThreshold = settings.buttonReleaseThreshold; InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_60; L_60 = InputManager_get_settings_m274A9304D86B1B1E9BAAC775A9B34E0BFA502E2C_inline(__this, /*hidden argument*/NULL); NullCheck(L_60); float L_61; L_61 = InputSettings_get_buttonReleaseThreshold_m741CF35E58112957F384E0AFBFC5158A5DA90C25_inline(L_60, /*hidden argument*/NULL); ((ButtonControl_t3918D56D674854AF9DFEB8CCF130919AAD9FCA68_StaticFields*)il2cpp_codegen_static_fields_for(ButtonControl_t3918D56D674854AF9DFEB8CCF130919AAD9FCA68_il2cpp_TypeInfo_var))->set_s_GlobalDefaultButtonReleaseThreshold_35(L_61); // DelegateHelpers.InvokeCallbacksSafe(ref m_SettingsChangedListeners, // "InputSystem.onSettingsChange"); CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 * L_62 = __this->get_address_of_m_SettingsChangedListeners_24(); DelegateHelpers_InvokeCallbacksSafe_m1009DD029A41FCAE8AA28E604ECA57A3E865A02B((CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 *)L_62, _stringLiteral2A2782DDF2179B23547713DD1D5AB7ED9DA9D3E0, NULL, /*hidden argument*/NULL); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::AddAvailableDevicesThatAreNowRecognized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_AddAvailableDevicesThatAreNowRecognized_mAB791BABE33F529FBF87F6A90A42C521EC005527 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntimeExtensions_DeviceCommand_TisDisableDeviceCommand_tB2F65EF65EBE67BF06541CD04C81BB31EE208FD5_m0E4A8423F3F6957D74340A32940213ED6937E649_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED V_2; memset((&V_2), 0, sizeof(V_2)); DisableDeviceCommand_tB2F65EF65EBE67BF06541CD04C81BB31EE208FD5 V_3; memset((&V_3), 0, sizeof(V_3)); il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; int32_t G_B9_0 = 0; RuntimeObject * G_B9_1 = NULL; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED G_B9_2; memset((&G_B9_2), 0, sizeof(G_B9_2)); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 G_B9_3; memset((&G_B9_3), 0, sizeof(G_B9_3)); InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * G_B9_4 = NULL; int32_t G_B8_0 = 0; RuntimeObject * G_B8_1 = NULL; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED G_B8_2; memset((&G_B8_2), 0, sizeof(G_B8_2)); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 G_B8_3; memset((&G_B8_3), 0, sizeof(G_B8_3)); InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * G_B8_4 = NULL; int32_t G_B10_0 = 0; int32_t G_B10_1 = 0; RuntimeObject * G_B10_2 = NULL; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED G_B10_3; memset((&G_B10_3), 0, sizeof(G_B10_3)); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 G_B10_4; memset((&G_B10_4), 0, sizeof(G_B10_4)); InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * G_B10_5 = NULL; { // for (var i = 0; i < m_AvailableDeviceCount; ++i) V_0 = 0; goto IL_00a4; } IL_0007: { // var id = m_AvailableDevices[i].deviceId; AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330* L_0 = __this->get_m_AvailableDevices_10(); int32_t L_1 = V_0; NullCheck(L_0); int32_t L_2 = ((L_0)->GetAddressAt(static_cast(L_1)))->get_deviceId_1(); V_1 = L_2; // if (TryGetDeviceById(id) != null) int32_t L_3 = V_1; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_4; L_4 = InputManager_TryGetDeviceById_m04896C1A02E97E7B7322C28FDC002823CDB6167B(__this, L_3, /*hidden argument*/NULL); if (L_4) { goto IL_00a0; } } { // var layout = TryFindMatchingControlLayout(ref m_AvailableDevices[i].description, id); AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330* L_5 = __this->get_m_AvailableDevices_10(); int32_t L_6 = V_0; NullCheck(L_5); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * L_7 = ((L_5)->GetAddressAt(static_cast(L_6)))->get_address_of_description_0(); int32_t L_8 = V_1; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_9; L_9 = InputManager_TryFindMatchingControlLayout_mF1C449D35DF64AD63A3A8D45080DA7F592B38945(__this, (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)L_7, L_8, /*hidden argument*/NULL); V_2 = L_9; // if (!IsDeviceLayoutMarkedAsSupportedInSettings(layout)) continue; InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_10 = V_2; bool L_11; L_11 = InputManager_IsDeviceLayoutMarkedAsSupportedInSettings_mAC05AE1CC0DFEED3750D6090EFE9D24E0C5C9E98(__this, L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_00a0; } } { // if (layout.IsEmpty()) bool L_12; L_12 = InternedString_IsEmpty_mDC1F123EBDF899AB57EDDCFFC3F67DA84A2CC2AD((InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED *)(&V_2), /*hidden argument*/NULL); if (!L_12) { goto IL_0067; } } { // if (id != InputDevice.InvalidDeviceId) int32_t L_13 = V_1; if (!L_13) { goto IL_00a0; } } { // var command = DisableDeviceCommand.Create(); DisableDeviceCommand_tB2F65EF65EBE67BF06541CD04C81BB31EE208FD5 L_14; L_14 = DisableDeviceCommand_Create_m8B26D925D5598017AA0A3D1EA319554A1C409923(/*hidden argument*/NULL); V_3 = L_14; // m_Runtime.DeviceCommand(id, ref command); RuntimeObject* L_15 = __this->get_m_Runtime_31(); int32_t L_16 = V_1; int64_t L_17; L_17 = InputRuntimeExtensions_DeviceCommand_TisDisableDeviceCommand_tB2F65EF65EBE67BF06541CD04C81BB31EE208FD5_m0E4A8423F3F6957D74340A32940213ED6937E649(L_15, L_16, (DisableDeviceCommand_tB2F65EF65EBE67BF06541CD04C81BB31EE208FD5 *)(&V_3), /*hidden argument*/InputRuntimeExtensions_DeviceCommand_TisDisableDeviceCommand_tB2F65EF65EBE67BF06541CD04C81BB31EE208FD5_m0E4A8423F3F6957D74340A32940213ED6937E649_RuntimeMethod_var); // continue; goto IL_00a0; } IL_0067: { } IL_0068: try { // begin try (depth: 1) { // AddDevice(m_AvailableDevices[i].description, layout, deviceId: id, // deviceFlags: m_AvailableDevices[i].isNative ? InputDevice.DeviceFlags.Native : 0); AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330* L_18 = __this->get_m_AvailableDevices_10(); int32_t L_19 = V_0; NullCheck(L_18); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_20 = ((L_18)->GetAddressAt(static_cast(L_19)))->get_description_0(); InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_21 = V_2; int32_t L_22 = V_1; AvailableDeviceU5BU5D_tD06A367F836B46BB029A8E9DAD83C23B6144D330* L_23 = __this->get_m_AvailableDevices_10(); int32_t L_24 = V_0; NullCheck(L_23); bool L_25 = ((L_23)->GetAddressAt(static_cast(L_24)))->get_isNative_2(); G_B8_0 = L_22; G_B8_1 = NULL; G_B8_2 = L_21; G_B8_3 = L_20; G_B8_4 = __this; if (L_25) { G_B9_0 = L_22; G_B9_1 = NULL; G_B9_2 = L_21; G_B9_3 = L_20; G_B9_4 = __this; goto IL_0093; } } IL_0090: { G_B10_0 = 0; G_B10_1 = G_B8_0; G_B10_2 = G_B8_1; G_B10_3 = G_B8_2; G_B10_4 = G_B8_3; G_B10_5 = G_B8_4; goto IL_0095; } IL_0093: { G_B10_0 = ((int32_t)16); G_B10_1 = G_B9_0; G_B10_2 = G_B9_1; G_B10_3 = G_B9_2; G_B10_4 = G_B9_3; G_B10_5 = G_B9_4; } IL_0095: { NullCheck(G_B10_5); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_26; L_26 = InputManager_AddDevice_m67FE410A737FDE88F169F11CCEF61782EFF3571C(G_B10_5, G_B10_4, G_B10_3, (String_t*)G_B10_2, G_B10_1, G_B10_0, /*hidden argument*/NULL); // } goto IL_00a0; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_009d; } throw e; } CATCH_009d: { // begin catch(System.Exception) // catch (Exception) // } IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_00a0; } // end catch (depth: 1) IL_00a0: { // for (var i = 0; i < m_AvailableDeviceCount; ++i) int32_t L_27 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_00a4: { // for (var i = 0; i < m_AvailableDeviceCount; ++i) int32_t L_28 = V_0; int32_t L_29 = __this->get_m_AvailableDeviceCount_9(); if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_0007; } } { // } return; } } // System.Boolean UnityEngine.InputSystem.InputManager::ShouldRunDeviceInBackground(UnityEngine.InputSystem.InputDevice) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_ShouldRunDeviceInBackground_mCA4D4FB2236C2895EF2D70BB6DAA863A233D13C7 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, const RuntimeMethod* method) { { // var runDeviceInBackground = // m_Settings.backgroundBehavior != InputSettings.BackgroundBehavior.ResetAndDisableAllDevices && // device.canRunInBackground; InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_0 = __this->get_m_Settings_33(); NullCheck(L_0); int32_t L_1; L_1 = InputSettings_get_backgroundBehavior_mFCF311E589790630CAC71ACD0E13F8D6472B3EBE_inline(L_0, /*hidden argument*/NULL); if ((((int32_t)L_1) == ((int32_t)1))) { goto IL_0015; } } { InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_2 = ___device0; NullCheck(L_2); bool L_3; L_3 = InputDevice_get_canRunInBackground_m472778EA0CF42AD6B5C860497C8B2258124206F3(L_2, /*hidden argument*/NULL); return L_3; } IL_0015: { // return runDeviceInBackground; return (bool)0; } } // System.Void UnityEngine.InputSystem.InputManager::OnFocusChanged(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_OnFocusChanged_mCD81BDED29193416F0BE6E2F9277B7D5003069EA (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, bool ___focus0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_IndexOfReference_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mCCA425F6C5EA7C4E5AEF49F806341C46978F9CA2_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; int32_t V_1 = 0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * V_5 = NULL; Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 V_6; memset((&V_6), 0, sizeof(V_6)); { // var runInBackground = // #if UNITY_EDITOR // // In the editor, the player loop will always be run even if the Game View does not have focus. This // // amounts to runInBackground being always true in the editor, regardless of what the setting in // // the Player Settings window is. // // // // If, however, "Game View Focus" is set to "Exactly As In Player", we force code here down the same // // path as in the player. // gameViewFocus != InputSettings.EditorInputBehaviorInPlayMode.AllDeviceInputAlwaysGoesToGameView || m_Runtime.runInBackground; // #else // m_Runtime.runInBackground; RuntimeObject* L_0 = __this->get_m_Runtime_31(); NullCheck(L_0); bool L_1; L_1 = InterfaceFuncInvoker0< bool >::Invoke(23 /* System.Boolean UnityEngine.InputSystem.LowLevel.IInputRuntime::get_runInBackground() */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_0); V_0 = L_1; // var backgroundBehavior = m_Settings.backgroundBehavior; InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_2 = __this->get_m_Settings_33(); NullCheck(L_2); int32_t L_3; L_3 = InputSettings_get_backgroundBehavior_mFCF311E589790630CAC71ACD0E13F8D6472B3EBE_inline(L_2, /*hidden argument*/NULL); // if (backgroundBehavior == InputSettings.BackgroundBehavior.IgnoreFocus && runInBackground) bool L_4 = V_0; if (!((int32_t)((int32_t)((((int32_t)L_3) == ((int32_t)2))? 1 : 0)&(int32_t)L_4))) { goto IL_0026; } } { // m_HasFocus = focus; bool L_5 = ___focus0; __this->set_m_HasFocus_27(L_5); // return; return; } IL_0026: { // if (!focus) bool L_6 = ___focus0; if (L_6) { goto IL_0084; } } { // if (runInBackground) bool L_7 = V_0; if (!L_7) { goto IL_00e1; } } { // for (var i = 0; i < m_DevicesCount; ++i) V_1 = 0; goto IL_0079; } IL_0033: { // var device = m_Devices[i]; InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* L_8 = __this->get_m_Devices_7(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_11 = (L_8)->GetAt(static_cast(L_10)); V_2 = L_11; // if (!device.enabled || ShouldRunDeviceInBackground(device)) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_12 = V_2; NullCheck(L_12); bool L_13; L_13 = InputDevice_get_enabled_m9804D43CD889D2D99E778707FE7BC00F4B54C70E(L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_0075; } } { InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_14 = V_2; bool L_15; L_15 = InputManager_ShouldRunDeviceInBackground_mCA4D4FB2236C2895EF2D70BB6DAA863A233D13C7(__this, L_14, /*hidden argument*/NULL); if (L_15) { goto IL_0075; } } { // EnableOrDisableDevice(device, false, DeviceDisableScope.TemporaryWhilePlayerIsInBackground); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_16 = V_2; InputManager_EnableOrDisableDevice_m2A34CA6F0F721537E62BC5CDF32C051CA3FEC183(__this, L_16, (bool)0, 2, /*hidden argument*/NULL); // var index = m_Devices.IndexOfReference(device, m_DevicesCount); InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* L_17 = __this->get_m_Devices_7(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_18 = V_2; int32_t L_19 = __this->get_m_DevicesCount_6(); int32_t L_20; L_20 = ArrayHelpers_IndexOfReference_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mCCA425F6C5EA7C4E5AEF49F806341C46978F9CA2(L_17, L_18, L_19, /*hidden argument*/ArrayHelpers_IndexOfReference_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mCCA425F6C5EA7C4E5AEF49F806341C46978F9CA2_RuntimeMethod_var); V_3 = L_20; // if (index == -1) int32_t L_21 = V_3; if ((!(((uint32_t)L_21) == ((uint32_t)(-1))))) { goto IL_0073; } } { // --i; int32_t L_22 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_22, (int32_t)1)); goto IL_0075; } IL_0073: { // i = index; int32_t L_23 = V_3; V_1 = L_23; } IL_0075: { // for (var i = 0; i < m_DevicesCount; ++i) int32_t L_24 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)); } IL_0079: { // for (var i = 0; i < m_DevicesCount; ++i) int32_t L_25 = V_1; int32_t L_26 = __this->get_m_DevicesCount_6(); if ((((int32_t)L_25) < ((int32_t)L_26))) { goto IL_0033; } } { // } goto IL_00e1; } IL_0084: { // for (var i = 0; i < m_DevicesCount; ++i) V_4 = 0; goto IL_00d7; } IL_0089: { // var device = m_Devices[i]; InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6* L_27 = __this->get_m_Devices_7(); int32_t L_28 = V_4; NullCheck(L_27); int32_t L_29 = L_28; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_30 = (L_27)->GetAt(static_cast(L_29)); V_5 = L_30; // if (device.disabledWhileInBackground) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_31 = V_5; NullCheck(L_31); bool L_32; L_32 = InputDevice_get_disabledWhileInBackground_mC5A011EACEBCF0E40DD4F82ED364FF5D10D9E8BB(L_31, /*hidden argument*/NULL); if (!L_32) { goto IL_00a9; } } { // EnableOrDisableDevice(device, true, DeviceDisableScope.TemporaryWhilePlayerIsInBackground); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_33 = V_5; InputManager_EnableOrDisableDevice_m2A34CA6F0F721537E62BC5CDF32C051CA3FEC183(__this, L_33, (bool)1, 2, /*hidden argument*/NULL); goto IL_00d1; } IL_00a9: { // else if (device.enabled && !runInBackground && !device.RequestSync()) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_34 = V_5; NullCheck(L_34); bool L_35; L_35 = InputDevice_get_enabled_m9804D43CD889D2D99E778707FE7BC00F4B54C70E(L_34, /*hidden argument*/NULL); if (!L_35) { goto IL_00d1; } } { bool L_36 = V_0; if (L_36) { goto IL_00d1; } } { InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_37 = V_5; NullCheck(L_37); bool L_38; L_38 = InputDevice_RequestSync_mFE6A5CFDE65109D527ED21DB498E6826A296C4BB(L_37, /*hidden argument*/NULL); if (L_38) { goto IL_00d1; } } { // ResetDevice(device); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_39 = V_5; il2cpp_codegen_initobj((&V_6), sizeof(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 )); Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_40 = V_6; InputManager_ResetDevice_m161F0EA740DED1C72CB96E573E86C13656C990D2(__this, L_39, (bool)0, L_40, /*hidden argument*/NULL); } IL_00d1: { // for (var i = 0; i < m_DevicesCount; ++i) int32_t L_41 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1)); } IL_00d7: { // for (var i = 0; i < m_DevicesCount; ++i) int32_t L_42 = V_4; int32_t L_43 = __this->get_m_DevicesCount_6(); if ((((int32_t)L_42) < ((int32_t)L_43))) { goto IL_0089; } } IL_00e1: { // m_HasFocus = focus; bool L_44 = ___focus0; __this->set_m_HasFocus_27(L_44); // } return; } } // System.Boolean UnityEngine.InputSystem.InputManager::ShouldRunUpdate(UnityEngine.InputSystem.LowLevel.InputUpdateType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_ShouldRunUpdate_mA7F77F1D0530C07876F0C9B87DC721E17692C361 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, int32_t ___updateType0, const RuntimeMethod* method) { int32_t V_0 = 0; { // if (updateType == InputUpdateType.None) int32_t L_0 = ___updateType0; if (L_0) { goto IL_0005; } } { // return true; return (bool)1; } IL_0005: { // var mask = m_UpdateMask; int32_t L_1 = __this->get_m_UpdateMask_13(); V_0 = L_1; // return (updateType & mask) != 0; int32_t L_2 = ___updateType0; int32_t L_3 = V_0; return (bool)((!(((uint32_t)((int32_t)((int32_t)L_2&(int32_t)L_3))) <= ((uint32_t)0)))? 1 : 0); } } // System.Void UnityEngine.InputSystem.InputManager::OnUpdate(UnityEngine.InputSystem.LowLevel.InputUpdateType,UnityEngine.InputSystem.LowLevel.InputEventBuffer&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_OnUpdate_mBD0757E2A0BCD0A2BDD0D6AF36ADAE4B137BBA3D (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, int32_t ___updateType0, InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * ___eventBuffer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_AppendWithCapacity_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mBAC377FA55F45B5A5F427BC00EFF2A1FB1C9F988_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_get_length_m2CA6CE1FE05335C5BE0166DCC53702AE29D777B0_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mC01A4D7C2B35FAFB761DC1BC8038862ED354ABAA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEventMerger_tFEA3694BDFE9987449D208603D1BABA1EE0E8913_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEventPreProcessor_t402E5A7CA363184CE8C96EE46B2E5880F40181B2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputStateCallbackReceiver_t4C5C8728DA2734584B886F3D78491E19738BC79A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITextInputReceiver_tBC81096C84A44F364643BC70CAE107843E4486A9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral84CAACE59D08AF4659A3A7E4D00A4514400CE96A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9E492D245CF7BC396F0E56230A3575844F6A9C52); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAFCDC24487EB01F0E37EEE39BC25C177693D2EE3); s_Il2CppMethodInitialized = true; } bool V_0 = false; double V_1 = 0.0; bool V_2 = false; bool V_3 = false; int64_t V_4 = 0; double V_5 = 0.0; int32_t V_6 = 0; uint32_t V_7 = 0; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * V_8 = NULL; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * V_9 = NULL; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * V_10 = NULL; double V_11 = 0.0; FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 V_12; memset((&V_12), 0, sizeof(V_12)); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * V_13 = NULL; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 V_14; memset((&V_14), 0, sizeof(V_14)); bool V_15 = false; bool V_16 = false; InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B V_17; memset((&V_17), 0, sizeof(V_17)); TextEvent_t2939C7C6CFDD852AEAB3AB23431FB1326E29C011 * V_18 = NULL; RuntimeObject* V_19 = NULL; int32_t V_20 = 0; int32_t V_21 = 0; int32_t V_22 = 0; IMECompositionEvent_t82F313ECCD7453AF6E105059CD8F8092B5F744EA * V_23 = NULL; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 V_24; memset((&V_24), 0, sizeof(V_24)); Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 V_25; memset((&V_25), 0, sizeof(V_25)); il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; int32_t G_B7_0 = 0; double G_B10_0 = 0.0; int32_t G_B14_0 = 0; int32_t G_B17_0 = 0; int32_t G_B25_0 = 0; int32_t G_B65_0 = 0; RuntimeObject* G_B106_0 = NULL; RuntimeObject* G_B105_0 = NULL; { // if (m_InputEventStream.isOpen) InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * L_0 = __this->get_address_of_m_InputEventStream_28(); bool L_1; L_1 = InputEventStream_get_isOpen_m6813A58E116448D4957B213FA9FD7DAA57D7B8D4_inline((InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 *)L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0018; } } { // throw new InvalidOperationException("Already have an event buffer set! Was OnUpdate() called recursively?"); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_2 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE0989D34BBEA6C5990DF72C107E08157B559F106)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_OnUpdate_mBD0757E2A0BCD0A2BDD0D6AF36ADAE4B137BBA3D_RuntimeMethod_var))); } IL_0018: { // RestoreDevicesAfterDomainReloadIfNecessary(); InputManager_RestoreDevicesAfterDomainReloadIfNecessary_m4C49191682691090DBC76DD6CEEA02E32D9E11C5(__this, /*hidden argument*/NULL); // if ((updateType & m_UpdateMask) == 0) int32_t L_3 = ___updateType0; int32_t L_4 = __this->get_m_UpdateMask_13(); if (((int32_t)((int32_t)L_3&(int32_t)L_4))) { goto IL_0029; } } { // return; return; } IL_0029: { // WarnAboutDevicesFailingToRecreateAfterDomainReload(); InputManager_WarnAboutDevicesFailingToRecreateAfterDomainReload_mB48EB7803F4E3D3EAA5F7FAB7558D1033B093141(__this, /*hidden argument*/NULL); // ++m_Metrics.totalUpdateCount; InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * L_5 = __this->get_address_of_m_Metrics_32(); InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * L_6 = L_5; int32_t L_7; L_7 = InputMetrics_get_totalUpdateCount_m57DD154A08FC7CC50F7331CD376995A58FF462C2_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)L_6, /*hidden argument*/NULL); V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); int32_t L_8 = V_6; InputMetrics_set_totalUpdateCount_mEB3B729F1E6BD3F371F5F67C8B65463D5B0915E2_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)L_6, L_8, /*hidden argument*/NULL); // InputRuntime.s_CurrentTimeOffsetToRealtimeSinceStartup = m_Runtime.currentTimeOffsetToRealtimeSinceStartup; RuntimeObject* L_9 = __this->get_m_Runtime_31(); NullCheck(L_9); double L_10; L_10 = InterfaceFuncInvoker0< double >::Invoke(22 /* System.Double UnityEngine.InputSystem.LowLevel.IInputRuntime::get_currentTimeOffsetToRealtimeSinceStartup() */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_9); ((InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_il2cpp_TypeInfo_var))->set_s_CurrentTimeOffsetToRealtimeSinceStartup_1(L_10); // InputStateBuffers.SwitchTo(m_StateBuffers, updateType); InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA L_11 = __this->get_m_StateBuffers_15(); int32_t L_12 = ___updateType0; InputStateBuffers_SwitchTo_m4AD65E34033B2D3146474212969EF700225308BD(L_11, L_12, /*hidden argument*/NULL); // m_CurrentUpdate = updateType; int32_t L_13 = ___updateType0; __this->set_m_CurrentUpdate_14(L_13); // InputUpdate.OnUpdate(updateType); int32_t L_14 = ___updateType0; InputUpdate_OnUpdate_mE5556175DCA11499F896EA28AFB7BA9337058547(L_14, /*hidden argument*/NULL); // var shouldProcessActionTimeouts = updateType.IsPlayerUpdate() && gameIsPlaying; int32_t L_15 = ___updateType0; bool L_16; L_16 = InputUpdate_IsPlayerUpdate_mC6BDF634589D7B3BF6BFB12976CC99ABFF5E3863(L_15, /*hidden argument*/NULL); if (!L_16) { goto IL_007f; } } { bool L_17; L_17 = InputManager_get_gameIsPlaying_m4AE69424001E9ADED2D016DF59681FD61366D6B9(__this, /*hidden argument*/NULL); G_B7_0 = ((int32_t)(L_17)); goto IL_0080; } IL_007f: { G_B7_0 = 0; } IL_0080: { V_0 = (bool)G_B7_0; // var currentTime = updateType == InputUpdateType.Fixed ? m_Runtime.currentTimeForFixedUpdate : m_Runtime.currentTime; int32_t L_18 = ___updateType0; if ((((int32_t)L_18) == ((int32_t)2))) { goto IL_0092; } } { RuntimeObject* L_19 = __this->get_m_Runtime_31(); NullCheck(L_19); double L_20; L_20 = InterfaceFuncInvoker0< double >::Invoke(19 /* System.Double UnityEngine.InputSystem.LowLevel.IInputRuntime::get_currentTime() */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_19); G_B10_0 = L_20; goto IL_009d; } IL_0092: { RuntimeObject* L_21 = __this->get_m_Runtime_31(); NullCheck(L_21); double L_22; L_22 = InterfaceFuncInvoker0< double >::Invoke(20 /* System.Double UnityEngine.InputSystem.LowLevel.IInputRuntime::get_currentTimeForFixedUpdate() */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_21); G_B10_0 = L_22; } IL_009d: { V_1 = G_B10_0; // var timesliceEvents = (updateType == InputUpdateType.Fixed || updateType == InputUpdateType.BeforeRender) && // InputSystem.settings.updateMode == InputSettings.UpdateMode.ProcessEventsInFixedUpdate; int32_t L_23 = ___updateType0; if ((((int32_t)L_23) == ((int32_t)2))) { goto IL_00a6; } } { int32_t L_24 = ___updateType0; if ((!(((uint32_t)L_24) == ((uint32_t)4)))) { goto IL_00b5; } } IL_00a6: { IL2CPP_RUNTIME_CLASS_INIT(InputSystem_tB2E105FFA04BBFEF25E381E9FBBE7DA78BB18380_il2cpp_TypeInfo_var); InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_25; L_25 = InputSystem_get_settings_mA42EFB90BC81DD4A8E7C5B069395915157571ED8(/*hidden argument*/NULL); NullCheck(L_25); int32_t L_26; L_26 = InputSettings_get_updateMode_m139C9F1C6191E7C6209426D23BEE5C5816AC7280_inline(L_25, /*hidden argument*/NULL); G_B14_0 = ((((int32_t)L_26) == ((int32_t)2))? 1 : 0); goto IL_00b6; } IL_00b5: { G_B14_0 = 0; } IL_00b6: { V_2 = (bool)G_B14_0; // var canFlushBuffer = // false // #if UNITY_EDITOR // // If out of focus and runInBackground is off and ExactlyAsInPlayer is on, discard input. // || (!gameHasFocus && m_Settings.editorInputBehaviorInPlayMode == InputSettings.EditorInputBehaviorInPlayMode.AllDeviceInputAlwaysGoesToGameView && // (!m_Runtime.runInBackground || // m_Settings.backgroundBehavior == InputSettings.BackgroundBehavior.ResetAndDisableAllDevices)) // #else // || (!gameHasFocus && !m_Runtime.runInBackground) // #endif // ; bool L_27; L_27 = InputManager_get_gameHasFocus_m5165C51969FCD9AC566668067F2FF38740130D18(__this, /*hidden argument*/NULL); if (L_27) { goto IL_00cf; } } { RuntimeObject* L_28 = __this->get_m_Runtime_31(); NullCheck(L_28); bool L_29; L_29 = InterfaceFuncInvoker0< bool >::Invoke(23 /* System.Boolean UnityEngine.InputSystem.LowLevel.IInputRuntime::get_runInBackground() */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_28); G_B17_0 = ((((int32_t)L_29) == ((int32_t)0))? 1 : 0); goto IL_00d0; } IL_00cf: { G_B17_0 = 0; } IL_00d0: { V_3 = (bool)G_B17_0; // var canEarlyOut = // // Early out if there's no events to process. // eventBuffer.eventCount == 0 // || canFlushBuffer || // // If we're in the background and not supposed to process events in this update (but somehow // // still ended up here), we're done. // ((!gameHasFocus || gameShouldGetInputRegardlessOfFocus) && // ((m_Settings.backgroundBehavior == InputSettings.BackgroundBehavior.ResetAndDisableAllDevices && updateType != InputUpdateType.Editor) // #if UNITY_EDITOR // || (m_Settings.editorInputBehaviorInPlayMode == InputSettings.EditorInputBehaviorInPlayMode.AllDevicesRespectGameViewFocus && updateType != InputUpdateType.Editor) // || (m_Settings.backgroundBehavior == InputSettings.BackgroundBehavior.IgnoreFocus && m_Settings.editorInputBehaviorInPlayMode == InputSettings.EditorInputBehaviorInPlayMode.AllDeviceInputAlwaysGoesToGameView && updateType == InputUpdateType.Editor) // #endif // ) // #if UNITY_EDITOR // // When the game is playing and has focus, we never process input in editor updates. All we // // do is just switch to editor state buffers and then exit. // || (gameIsPlaying && gameHasFocus && updateType == InputUpdateType.Editor) // #endif // ); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_30 = ___eventBuffer1; int32_t L_31; L_31 = InputEventBuffer_get_eventCount_m50712505E0393BA3A20563E64DAA7A6D75854E3F_inline((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_30, /*hidden argument*/NULL); bool L_32 = V_3; if (((int32_t)((int32_t)((((int32_t)L_31) == ((int32_t)0))? 1 : 0)|(int32_t)L_32))) { goto IL_010b; } } { bool L_33; L_33 = InputManager_get_gameHasFocus_m5165C51969FCD9AC566668067F2FF38740130D18(__this, /*hidden argument*/NULL); if (!L_33) { goto IL_00ee; } } { bool L_34; L_34 = InputManager_get_gameShouldGetInputRegardlessOfFocus_m9BAF190125233D8BF2A835A94CB9FB8E29CFF44E(__this, /*hidden argument*/NULL); if (!L_34) { goto IL_0108; } } IL_00ee: { InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_35 = __this->get_m_Settings_33(); NullCheck(L_35); int32_t L_36; L_36 = InputSettings_get_backgroundBehavior_mFCF311E589790630CAC71ACD0E13F8D6472B3EBE_inline(L_35, /*hidden argument*/NULL); if ((!(((uint32_t)L_36) == ((uint32_t)1)))) { goto IL_0105; } } { int32_t L_37 = ___updateType0; G_B25_0 = ((((int32_t)((((int32_t)L_37) == ((int32_t)8))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_010c; } IL_0105: { G_B25_0 = 0; goto IL_010c; } IL_0108: { G_B25_0 = 0; goto IL_010c; } IL_010b: { G_B25_0 = 1; } IL_010c: { // if (canEarlyOut) if (!G_B25_0) { goto IL_012f; } } { // if (shouldProcessActionTimeouts) bool L_38 = V_0; if (!L_38) { goto IL_0117; } } { // ProcessStateChangeMonitorTimeouts(); InputManager_ProcessStateChangeMonitorTimeouts_m8CD0C1E82C9C5A59E1E342230385D9F8E319E9BD(__this, /*hidden argument*/NULL); } IL_0117: { // InvokeAfterUpdateCallback(updateType); int32_t L_39 = ___updateType0; InputManager_InvokeAfterUpdateCallback_mD02DD377093C4FCCBC9CDB5E7BFE9CB3F415F1CF(__this, L_39, /*hidden argument*/NULL); // if (canFlushBuffer) bool L_40 = V_3; if (!L_40) { goto IL_0127; } } { // eventBuffer.Reset(); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_41 = ___eventBuffer1; InputEventBuffer_Reset_m35B27C04062C1C9C0B61207995552DC7DE57037C((InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_41, /*hidden argument*/NULL); } IL_0127: { // m_CurrentUpdate = default; __this->set_m_CurrentUpdate_14(0); // return; return; } IL_012f: { // var processingStartTime = Stopwatch.GetTimestamp(); IL2CPP_RUNTIME_CLASS_INIT(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_il2cpp_TypeInfo_var); int64_t L_42; L_42 = Stopwatch_GetTimestamp_m8BDD632ACE5FF704F108290DC1864032B9B1C0BF(/*hidden argument*/NULL); V_4 = L_42; // var totalEventLag = 0.0; V_5 = (0.0); } IL_0141: try { // begin try (depth: 1) { // m_InputEventStream = new InputEventStream(ref eventBuffer, m_Settings.maxQueuedEventsPerUpdate); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_43 = ___eventBuffer1; InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_44 = __this->get_m_Settings_33(); NullCheck(L_44); int32_t L_45; L_45 = InputSettings_get_maxQueuedEventsPerUpdate_m1809C68BE71CC41E4E3C5E7511C1B632ECC1D091_inline(L_44, /*hidden argument*/NULL); InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 L_46; memset((&L_46), 0, sizeof(L_46)); InputEventStream__ctor_mD3D449973BC57E65CE6DE268E1C039309B77551B((&L_46), (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_43, L_45, /*hidden argument*/NULL); __this->set_m_InputEventStream_28(L_46); // var totalEventBytesProcessed = 0U; V_7 = 0; // InputEvent* skipEventMergingFor = null; V_8 = (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)((uintptr_t)0); goto IL_0678; } IL_0164: { // if (m_Settings.maxEventBytesPerUpdate > 0 && // totalEventBytesProcessed >= m_Settings.maxEventBytesPerUpdate) InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_47 = __this->get_m_Settings_33(); NullCheck(L_47); int32_t L_48; L_48 = InputSettings_get_maxEventBytesPerUpdate_m782AAA75751C64FFEBA1DF47C2C3E4E7DF86A32A_inline(L_47, /*hidden argument*/NULL); if ((((int32_t)L_48) <= ((int32_t)0))) { goto IL_0192; } } IL_0172: { uint32_t L_49 = V_7; InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_50 = __this->get_m_Settings_33(); NullCheck(L_50); int32_t L_51; L_51 = InputSettings_get_maxEventBytesPerUpdate_m782AAA75751C64FFEBA1DF47C2C3E4E7DF86A32A_inline(L_50, /*hidden argument*/NULL); if ((((int64_t)((int64_t)((uint64_t)L_49))) < ((int64_t)((int64_t)((int64_t)L_51))))) { goto IL_0192; } } IL_0183: { // Debug.LogError( // "Exceeded budget for maximum input event throughput per InputSystem.Update(). Discarding remaining events. " // + "Increase InputSystem.settings.maxEventBytesPerUpdate or set it to 0 to remove the limit."); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogError_m5952BCE5DC0EF798B31FA983B9CE42A5A1F82DE1(_stringLiteralAFCDC24487EB01F0E37EEE39BC25C177693D2EE3, /*hidden argument*/NULL); // break; goto IL_0689; } IL_0192: { // InputDevice device = null; V_9 = (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *)NULL; // var currentEventReadPtr = m_InputEventStream.currentEventPtr; InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * L_52 = __this->get_address_of_m_InputEventStream_28(); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_53; L_53 = InputEventStream_get_currentEventPtr_mF9ED21A01A006896DAC0BE4C2D42A36B21D4EEA9((InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 *)L_52, /*hidden argument*/NULL); V_10 = (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_53; // if (updateType == InputUpdateType.BeforeRender) int32_t L_54 = ___updateType0; if ((!(((uint32_t)L_54) == ((uint32_t)4)))) { goto IL_0210; } } IL_01a6: { goto IL_0202; } IL_01a8: { // device = TryGetDeviceById(currentEventReadPtr->deviceId); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_55 = V_10; int32_t L_56; L_56 = InputEvent_get_deviceId_mC5FAD8D65885CC6B1312EB516AA58917FD69BE1F((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_55, /*hidden argument*/NULL); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_57; L_57 = InputManager_TryGetDeviceById_m04896C1A02E97E7B7322C28FDC002823CDB6167B(__this, L_56, /*hidden argument*/NULL); V_9 = L_57; // if (device != null && device.updateBeforeRender && // (currentEventReadPtr->type == StateEvent.Type || // currentEventReadPtr->type == DeltaStateEvent.Type)) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_58 = V_9; if (!L_58) { goto IL_01f4; } } IL_01bb: { InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_59 = V_9; NullCheck(L_59); bool L_60; L_60 = InputDevice_get_updateBeforeRender_m8B0830820DF38D0D8682EA88EBC3A8094340DBE8(L_59, /*hidden argument*/NULL); if (!L_60) { goto IL_01f4; } } IL_01c4: { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_61 = V_10; FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_62; L_62 = InputEvent_get_type_mF27E6FB5A23D3E5AA01386213E9E5248CDC27993((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_61, /*hidden argument*/NULL); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_63; L_63 = FourCC_op_Implicit_m1EF35613D75316DA0F135114B72093EBB3D04356(((int32_t)1398030676), /*hidden argument*/NULL); bool L_64; L_64 = FourCC_op_Equality_mF8F9867D06AB0FE50CBB895EE0A1F5CEA211CF7C(L_62, L_63, /*hidden argument*/NULL); if (L_64) { goto IL_0210; } } IL_01dc: { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_65 = V_10; FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_66; L_66 = InputEvent_get_type_mF27E6FB5A23D3E5AA01386213E9E5248CDC27993((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_65, /*hidden argument*/NULL); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_67; L_67 = FourCC_op_Implicit_m1EF35613D75316DA0F135114B72093EBB3D04356(((int32_t)1145852993), /*hidden argument*/NULL); bool L_68; L_68 = FourCC_op_Equality_mF8F9867D06AB0FE50CBB895EE0A1F5CEA211CF7C(L_66, L_67, /*hidden argument*/NULL); if (L_68) { goto IL_0210; } } IL_01f4: { // currentEventReadPtr = m_InputEventStream.Advance(leaveEventInBuffer: true); InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * L_69 = __this->get_address_of_m_InputEventStream_28(); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_70; L_70 = InputEventStream_Advance_mA16875BDE0A84FFD19DB0062B34DA4058350565C((InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 *)L_69, (bool)1, /*hidden argument*/NULL); V_10 = (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_70; } IL_0202: { // while (m_InputEventStream.remainingEventCount > 0) InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * L_71 = __this->get_address_of_m_InputEventStream_28(); int32_t L_72; L_72 = InputEventStream_get_remainingEventCount_m98087A7B74629FA5F8AB30407DB696ECE81E6FF8((InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 *)L_71, /*hidden argument*/NULL); if ((((int32_t)L_72) > ((int32_t)0))) { goto IL_01a8; } } IL_0210: { // if (m_InputEventStream.remainingEventCount == 0) InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * L_73 = __this->get_address_of_m_InputEventStream_28(); int32_t L_74; L_74 = InputEventStream_get_remainingEventCount_m98087A7B74629FA5F8AB30407DB696ECE81E6FF8((InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 *)L_73, /*hidden argument*/NULL); if (!L_74) { goto IL_0689; } } IL_0220: { // var currentEventTimeInternal = currentEventReadPtr->internalTime; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_75 = V_10; double L_76; L_76 = InputEvent_get_internalTime_mCBF9589869296BDD0EE4093C6F3B2B359BA25BB6((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_75, /*hidden argument*/NULL); V_11 = L_76; // var currentEventType = currentEventReadPtr->type; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_77 = V_10; FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_78; L_78 = InputEvent_get_type_mF27E6FB5A23D3E5AA01386213E9E5248CDC27993((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_77, /*hidden argument*/NULL); V_12 = L_78; // if (timesliceEvents && currentEventTimeInternal >= currentTime) bool L_79 = V_2; if (!L_79) { goto IL_024c; } } IL_0235: { double L_80 = V_11; double L_81 = V_1; if ((!(((double)L_80) >= ((double)L_81)))) { goto IL_024c; } } IL_023a: { // m_InputEventStream.Advance(true); InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * L_82 = __this->get_address_of_m_InputEventStream_28(); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_83; L_83 = InputEventStream_Advance_mA16875BDE0A84FFD19DB0062B34DA4058350565C((InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 *)L_82, (bool)1, /*hidden argument*/NULL); // continue; goto IL_0678; } IL_024c: { // if (device == null) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_84 = V_9; if (L_84) { goto IL_025f; } } IL_0250: { // device = TryGetDeviceById(currentEventReadPtr->deviceId); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_85 = V_10; int32_t L_86; L_86 = InputEvent_get_deviceId_mC5FAD8D65885CC6B1312EB516AA58917FD69BE1F((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_85, /*hidden argument*/NULL); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_87; L_87 = InputManager_TryGetDeviceById_m04896C1A02E97E7B7322C28FDC002823CDB6167B(__this, L_86, /*hidden argument*/NULL); V_9 = L_87; } IL_025f: { // if (device == null) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_88 = V_9; if (L_88) { goto IL_0275; } } IL_0263: { // m_InputEventStream.Advance(false); InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * L_89 = __this->get_address_of_m_InputEventStream_28(); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_90; L_90 = InputEventStream_Advance_mA16875BDE0A84FFD19DB0062B34DA4058350565C((InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 *)L_89, (bool)0, /*hidden argument*/NULL); // continue; goto IL_0678; } IL_0275: { // if (!device.enabled && // currentEventType != DeviceRemoveEvent.Type && // currentEventType != DeviceConfigurationEvent.Type && // (device.m_DeviceFlags & (InputDevice.DeviceFlags.DisabledInRuntime | // InputDevice.DeviceFlags.DisabledWhileInBackground)) != 0) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_91 = V_9; NullCheck(L_91); bool L_92; L_92 = InputDevice_get_enabled_m9804D43CD889D2D99E778707FE7BC00F4B54C70E(L_91, /*hidden argument*/NULL); if (L_92) { goto IL_02c5; } } IL_027e: { FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_93 = V_12; FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_94; L_94 = FourCC_op_Implicit_m1EF35613D75316DA0F135114B72093EBB3D04356(((int32_t)1146242381), /*hidden argument*/NULL); bool L_95; L_95 = FourCC_op_Inequality_m1E781CB491ABFCA16991EF6F695C559068406232(L_93, L_94, /*hidden argument*/NULL); if (!L_95) { goto IL_02c5; } } IL_0291: { FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_96 = V_12; FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_97; L_97 = FourCC_op_Implicit_m1EF35613D75316DA0F135114B72093EBB3D04356(((int32_t)1145259591), /*hidden argument*/NULL); bool L_98; L_98 = FourCC_op_Inequality_m1E781CB491ABFCA16991EF6F695C559068406232(L_96, L_97, /*hidden argument*/NULL); if (!L_98) { goto IL_02c5; } } IL_02a4: { InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_99 = V_9; NullCheck(L_99); int32_t L_100 = L_99->get_m_DeviceFlags_24(); if (!((int32_t)((int32_t)L_100&(int32_t)((int32_t)384)))) { goto IL_02c5; } } IL_02b3: { // m_InputEventStream.Advance(false); InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * L_101 = __this->get_address_of_m_InputEventStream_28(); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_102; L_102 = InputEventStream_Advance_mA16875BDE0A84FFD19DB0062B34DA4058350565C((InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 *)L_101, (bool)0, /*hidden argument*/NULL); // continue; goto IL_0678; } IL_02c5: { // if (!settings.disableRedundantEventsMerging && device.hasEventMerger && currentEventReadPtr != skipEventMergingFor) InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_103; L_103 = InputManager_get_settings_m274A9304D86B1B1E9BAAC775A9B34E0BFA502E2C_inline(__this, /*hidden argument*/NULL); NullCheck(L_103); bool L_104; L_104 = InputSettings_get_disableRedundantEventsMerging_m19AEF4E360CB24B411567AD8880658928D64F163_inline(L_103, /*hidden argument*/NULL); if (L_104) { goto IL_0348; } } IL_02d2: { InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_105 = V_9; NullCheck(L_105); bool L_106; L_106 = InputDevice_get_hasEventMerger_m0C9A4328373BF1F6A455706342612DEDFEB8733A(L_105, /*hidden argument*/NULL); if (!L_106) { goto IL_0348; } } IL_02db: { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_107 = V_10; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_108 = V_8; if ((((intptr_t)L_107) == ((intptr_t)L_108))) { goto IL_0348; } } IL_02e1: { // var nextEvent = m_InputEventStream.Peek(); InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * L_109 = __this->get_address_of_m_InputEventStream_28(); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_110; L_110 = InputEventStream_Peek_mDD6536C4D3F1493B36020E3BE841F30A95236A16((InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 *)L_109, /*hidden argument*/NULL); V_13 = (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_110; // if ((nextEvent != null) // // And if next event is for the same device. // && (currentEventReadPtr->deviceId == nextEvent->deviceId) // // And if next event is in the same timeslicing slot. // && (timesliceEvents ? (nextEvent->internalTime < currentTime) : true) // ) InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_111 = V_13; if ((((intptr_t)L_111) == ((intptr_t)((uintptr_t)0)))) { goto IL_0348; } } IL_02f4: { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_112 = V_10; int32_t L_113; L_113 = InputEvent_get_deviceId_mC5FAD8D65885CC6B1312EB516AA58917FD69BE1F((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_112, /*hidden argument*/NULL); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_114 = V_13; int32_t L_115; L_115 = InputEvent_get_deviceId_mC5FAD8D65885CC6B1312EB516AA58917FD69BE1F((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_114, /*hidden argument*/NULL); if ((!(((uint32_t)L_113) == ((uint32_t)L_115)))) { goto IL_0348; } } IL_0304: { bool L_116 = V_2; if (L_116) { goto IL_030a; } } IL_0307: { G_B65_0 = 1; goto IL_0314; } IL_030a: { InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_117 = V_13; double L_118; L_118 = InputEvent_get_internalTime_mCBF9589869296BDD0EE4093C6F3B2B359BA25BB6((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_117, /*hidden argument*/NULL); double L_119 = V_1; G_B65_0 = ((((double)L_118) < ((double)L_119))? 1 : 0); } IL_0314: { if (!G_B65_0) { goto IL_0348; } } IL_0316: { // if (((IEventMerger)device).MergeForward(currentEventReadPtr, nextEvent)) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_120 = V_9; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_121 = V_10; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_122; L_122 = InputEventPtr_op_Implicit_m929BCCB27CE3B2C2BD9B2C43E49FDCB1F2933AB5((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_121, /*hidden argument*/NULL); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_123 = V_13; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_124; L_124 = InputEventPtr_op_Implicit_m929BCCB27CE3B2C2BD9B2C43E49FDCB1F2933AB5((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_123, /*hidden argument*/NULL); NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_120, IEventMerger_tFEA3694BDFE9987449D208603D1BABA1EE0E8913_il2cpp_TypeInfo_var))); bool L_125; L_125 = InterfaceFuncInvoker2< bool, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 , InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 >::Invoke(0 /* System.Boolean UnityEngine.InputSystem.LowLevel.IEventMerger::MergeForward(UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.LowLevel.InputEventPtr) */, IEventMerger_tFEA3694BDFE9987449D208603D1BABA1EE0E8913_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_120, IEventMerger_tFEA3694BDFE9987449D208603D1BABA1EE0E8913_il2cpp_TypeInfo_var)), L_122, L_124); if (!L_125) { goto IL_0344; } } IL_0332: { // m_InputEventStream.Advance(false); InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * L_126 = __this->get_address_of_m_InputEventStream_28(); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_127; L_127 = InputEventStream_Advance_mA16875BDE0A84FFD19DB0062B34DA4058350565C((InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 *)L_126, (bool)0, /*hidden argument*/NULL); // continue; goto IL_0678; } IL_0344: { // skipEventMergingFor = nextEvent; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_128 = V_13; V_8 = (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_128; } IL_0348: { // if (device.hasEventPreProcessor) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_129 = V_9; NullCheck(L_129); bool L_130; L_130 = InputDevice_get_hasEventPreProcessor_mC90B9C717FCB8C5EEC7E5231DE4D392B7FC97C57(L_129, /*hidden argument*/NULL); if (!L_130) { goto IL_0378; } } IL_0351: { // var shouldProcess = ((IEventPreProcessor)device).PreProcessEvent(currentEventReadPtr); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_131 = V_9; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_132 = V_10; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_133; L_133 = InputEventPtr_op_Implicit_m929BCCB27CE3B2C2BD9B2C43E49FDCB1F2933AB5((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_132, /*hidden argument*/NULL); NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_131, IEventPreProcessor_t402E5A7CA363184CE8C96EE46B2E5880F40181B2_il2cpp_TypeInfo_var))); bool L_134; L_134 = InterfaceFuncInvoker1< bool, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 >::Invoke(0 /* System.Boolean UnityEngine.InputSystem.LowLevel.IEventPreProcessor::PreProcessEvent(UnityEngine.InputSystem.LowLevel.InputEventPtr) */, IEventPreProcessor_t402E5A7CA363184CE8C96EE46B2E5880F40181B2_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_131, IEventPreProcessor_t402E5A7CA363184CE8C96EE46B2E5880F40181B2_il2cpp_TypeInfo_var)), L_133); // if (!shouldProcess) if (L_134) { goto IL_0378; } } IL_0366: { // m_InputEventStream.Advance(false); InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * L_135 = __this->get_address_of_m_InputEventStream_28(); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_136; L_136 = InputEventStream_Advance_mA16875BDE0A84FFD19DB0062B34DA4058350565C((InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 *)L_135, (bool)0, /*hidden argument*/NULL); // continue; goto IL_0678; } IL_0378: { // if (m_EventListeners.length > 0) CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61 * L_137 = __this->get_address_of_m_EventListeners_21(); int32_t L_138; L_138 = CallbackArray_1_get_length_m2CA6CE1FE05335C5BE0166DCC53702AE29D777B0((CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61 *)L_137, /*hidden argument*/CallbackArray_1_get_length_m2CA6CE1FE05335C5BE0166DCC53702AE29D777B0_RuntimeMethod_var); if ((((int32_t)L_138) <= ((int32_t)0))) { goto IL_03bb; } } IL_0386: { // DelegateHelpers.InvokeCallbacksSafe(ref m_EventListeners, // new InputEventPtr(currentEventReadPtr), device, "InputSystem.onEvent"); CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61 * L_139 = __this->get_address_of_m_EventListeners_21(); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_140 = V_10; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_141; memset((&L_141), 0, sizeof(L_141)); InputEventPtr__ctor_m9EBF5134C7CC18F85542C146674EAE1BF7F29110_inline((&L_141), (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_140, /*hidden argument*/NULL); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_142 = V_9; DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mC01A4D7C2B35FAFB761DC1BC8038862ED354ABAA((CallbackArray_1_tA06EC98E05F3E9C1AFCCE7893F5E5AA755C87F61 *)L_139, L_141, L_142, _stringLiteral9E492D245CF7BC396F0E56230A3575844F6A9C52, NULL, /*hidden argument*/DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mC01A4D7C2B35FAFB761DC1BC8038862ED354ABAA_RuntimeMethod_var); // if (currentEventReadPtr->handled) InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_143 = V_10; bool L_144; L_144 = InputEvent_get_handled_m99F98A3B1E3678E4EFD0B6893916F315A027E151((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_143, /*hidden argument*/NULL); if (!L_144) { goto IL_03bb; } } IL_03a9: { // m_InputEventStream.Advance(false); InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * L_145 = __this->get_address_of_m_InputEventStream_28(); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_146; L_146 = InputEventStream_Advance_mA16875BDE0A84FFD19DB0062B34DA4058350565C((InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 *)L_145, (bool)0, /*hidden argument*/NULL); // continue; goto IL_0678; } IL_03bb: { // if (currentEventTimeInternal <= currentTime) double L_147 = V_11; double L_148 = V_1; if ((!(((double)L_147) <= ((double)L_148)))) { goto IL_03c9; } } IL_03c0: { // totalEventLag += currentTime - currentEventTimeInternal; double L_149 = V_5; double L_150 = V_1; double L_151 = V_11; V_5 = ((double)il2cpp_codegen_add((double)L_149, (double)((double)il2cpp_codegen_subtract((double)L_150, (double)L_151)))); } IL_03c9: { // ++m_Metrics.totalEventCount; InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * L_152 = __this->get_address_of_m_Metrics_32(); InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * L_153 = L_152; int32_t L_154; L_154 = InputMetrics_get_totalEventCount_m84FE5F18390914A41DC10EDDBA0017A7FE78000C_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)L_153, /*hidden argument*/NULL); V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_154, (int32_t)1)); int32_t L_155 = V_6; InputMetrics_set_totalEventCount_m9911E60B15700D08F77FC1259D55C1B65C7742D5_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)L_153, L_155, /*hidden argument*/NULL); // m_Metrics.totalEventBytes += (int)currentEventReadPtr->sizeInBytes; InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * L_156 = __this->get_address_of_m_Metrics_32(); InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * L_157 = L_156; int32_t L_158; L_158 = InputMetrics_get_totalEventBytes_m181F7572666B1D2B3481B629EE1C4B4022F3F85B_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)L_157, /*hidden argument*/NULL); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_159 = V_10; uint32_t L_160; L_160 = InputEvent_get_sizeInBytes_mFF08EC52AAEB650D04AFFFA2CDCEDECBC6DB0B59((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_159, /*hidden argument*/NULL); InputMetrics_set_totalEventBytes_m3F8A9CBF8ECB085179264B1B265E8D1C4F1A76C0_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)L_157, ((int32_t)il2cpp_codegen_add((int32_t)L_158, (int32_t)L_160)), /*hidden argument*/NULL); // switch (currentEventType) FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_161 = V_12; int32_t L_162; L_162 = FourCC_op_Implicit_m31DD5572C70000C1AA4A97915EB6A7C165C53DFA_inline(L_161, /*hidden argument*/NULL); V_6 = L_162; int32_t L_163 = V_6; if ((((int32_t)L_163) > ((int32_t)((int32_t)1146242381)))) { goto IL_0431; } } IL_040b: { int32_t L_164 = V_6; if ((((int32_t)L_164) == ((int32_t)((int32_t)1145259591)))) { goto IL_062d; } } IL_0417: { int32_t L_165 = V_6; if ((((int32_t)L_165) == ((int32_t)((int32_t)1145852993)))) { goto IL_0471; } } IL_0420: { int32_t L_166 = V_6; if ((((int32_t)L_166) == ((int32_t)((int32_t)1146242381)))) { goto IL_05dd; } } IL_042c: { goto IL_066b; } IL_0431: { int32_t L_167 = V_6; if ((((int32_t)L_167) > ((int32_t)((int32_t)1229800787)))) { goto IL_0457; } } IL_043a: { int32_t L_168 = V_6; if ((((int32_t)L_168) == ((int32_t)((int32_t)1146245972)))) { goto IL_0652; } } IL_0446: { int32_t L_169 = V_6; if ((((int32_t)L_169) == ((int32_t)((int32_t)1229800787)))) { goto IL_05b8; } } IL_0452: { goto IL_066b; } IL_0457: { int32_t L_170 = V_6; if ((((int32_t)L_170) == ((int32_t)((int32_t)1398030676)))) { goto IL_0471; } } IL_0460: { int32_t L_171 = V_6; if ((((int32_t)L_171) == ((int32_t)((int32_t)1413830740)))) { goto IL_053d; } } IL_046c: { goto IL_066b; } IL_0471: { // var eventPtr = new InputEventPtr(currentEventReadPtr); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_172 = V_10; InputEventPtr__ctor_m9EBF5134C7CC18F85542C146674EAE1BF7F29110_inline((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&V_14), (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_172, /*hidden argument*/NULL); // var deviceIsStateCallbackReceiver = device.hasStateCallbacks; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_173 = V_9; NullCheck(L_173); bool L_174; L_174 = InputDevice_get_hasStateCallbacks_mD2180C045B5F2BC58EBCC491C2FE8AD0993582C8(L_173, /*hidden argument*/NULL); V_15 = L_174; // if (currentEventTimeInternal < device.m_LastUpdateTimeInternal && // !(deviceIsStateCallbackReceiver && device.stateBlock.format != eventPtr.stateFormat)) double L_175 = V_11; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_176 = V_9; NullCheck(L_176); double L_177 = L_176->get_m_LastUpdateTimeInternal_29(); if ((!(((double)L_175) < ((double)L_177)))) { goto IL_04b6; } } IL_048e: { bool L_178 = V_15; if (!L_178) { goto IL_066b; } } IL_0495: { InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_179 = V_9; NullCheck(L_179); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B L_180; L_180 = InputControl_get_stateBlock_m0ECA3324A1A42DDE5085EAE0A82D7C0447143252_inline(L_179, /*hidden argument*/NULL); V_17 = L_180; FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_181; L_181 = InputStateBlock_get_format_m99B8AE2CD603AC198E543FA369ACEADB725E2689_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)(&V_17), /*hidden argument*/NULL); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_182; L_182 = InputEventPtr_get_stateFormat_m7E15CDB67CA516425CED0D1CA7799EC65D2FD889((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&V_14), /*hidden argument*/NULL); bool L_183; L_183 = FourCC_op_Inequality_m1E781CB491ABFCA16991EF6F695C559068406232(L_181, L_182, /*hidden argument*/NULL); if (!L_183) { goto IL_066b; } } IL_04b6: { // var haveChangedStateOtherThanNoise = true; V_16 = (bool)1; // if (deviceIsStateCallbackReceiver) bool L_184 = V_15; if (!L_184) { goto IL_04cd; } } IL_04bd: { // ((IInputStateCallbackReceiver)device).OnStateEvent(eventPtr); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_185 = V_9; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_186 = V_14; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_185, IInputStateCallbackReceiver_t4C5C8728DA2734584B886F3D78491E19738BC79A_il2cpp_TypeInfo_var))); InterfaceActionInvoker1< InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 >::Invoke(1 /* System.Void UnityEngine.InputSystem.LowLevel.IInputStateCallbackReceiver::OnStateEvent(UnityEngine.InputSystem.LowLevel.InputEventPtr) */, IInputStateCallbackReceiver_t4C5C8728DA2734584B886F3D78491E19738BC79A_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_185, IInputStateCallbackReceiver_t4C5C8728DA2734584B886F3D78491E19738BC79A_il2cpp_TypeInfo_var)), L_186); // } goto IL_0500; } IL_04cd: { // if (device.stateBlock.format != eventPtr.stateFormat) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_187 = V_9; NullCheck(L_187); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B L_188; L_188 = InputControl_get_stateBlock_m0ECA3324A1A42DDE5085EAE0A82D7C0447143252_inline(L_187, /*hidden argument*/NULL); V_17 = L_188; FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_189; L_189 = InputStateBlock_get_format_m99B8AE2CD603AC198E543FA369ACEADB725E2689_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)(&V_17), /*hidden argument*/NULL); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_190; L_190 = InputEventPtr_get_stateFormat_m7E15CDB67CA516425CED0D1CA7799EC65D2FD889((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&V_14), /*hidden argument*/NULL); bool L_191; L_191 = FourCC_op_Inequality_m1E781CB491ABFCA16991EF6F695C559068406232(L_189, L_190, /*hidden argument*/NULL); if (L_191) { goto IL_066b; } } IL_04ee: { // haveChangedStateOtherThanNoise = UpdateState(device, eventPtr, updateType); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_192 = V_9; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_193 = V_14; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_194; L_194 = InputEventPtr_op_Implicit_m25CA03BF945CB766E6C8A09310269C70F9D0C948(L_193, /*hidden argument*/NULL); int32_t L_195 = ___updateType0; bool L_196; L_196 = InputManager_UpdateState_m0A40E0F97F8D5504A9201BC1C5163C953DDD3AE0(__this, L_192, (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_194, L_195, /*hidden argument*/NULL); V_16 = L_196; } IL_0500: { // totalEventBytesProcessed += eventPtr.sizeInBytes; uint32_t L_197 = V_7; uint32_t L_198; L_198 = InputEventPtr_get_sizeInBytes_m4607C53C6A41A6BE5238609D7C1E4A2C169D5712((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&V_14), /*hidden argument*/NULL); V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_197, (int32_t)L_198)); // if (device.m_LastUpdateTimeInternal <= eventPtr.internalTime // #if UNITY_EDITOR // && !(updateType == InputUpdateType.Editor && runPlayerUpdatesInEditMode) // #endif // ) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_199 = V_9; NullCheck(L_199); double L_200 = L_199->get_m_LastUpdateTimeInternal_29(); double L_201; L_201 = InputEventPtr_get_internalTime_m2EB7E0D18A1C720BCCC17363F5FEA88DD482A067((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&V_14), /*hidden argument*/NULL); if ((!(((double)L_200) <= ((double)L_201)))) { goto IL_052a; } } IL_051c: { // device.m_LastUpdateTimeInternal = eventPtr.internalTime; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_202 = V_9; double L_203; L_203 = InputEventPtr_get_internalTime_m2EB7E0D18A1C720BCCC17363F5FEA88DD482A067((InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 *)(&V_14), /*hidden argument*/NULL); NullCheck(L_202); L_202->set_m_LastUpdateTimeInternal_29(L_203); } IL_052a: { // if (haveChangedStateOtherThanNoise) bool L_204 = V_16; if (!L_204) { goto IL_066b; } } IL_0531: { // device.MakeCurrent(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_205 = V_9; NullCheck(L_205); VirtActionInvoker0::Invoke(16 /* System.Void UnityEngine.InputSystem.InputDevice::MakeCurrent() */, L_205); // break; goto IL_066b; } IL_053d: { // var textEventPtr = (TextEvent*)currentEventReadPtr; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_206 = V_10; V_18 = (TextEvent_t2939C7C6CFDD852AEAB3AB23431FB1326E29C011 *)L_206; // if (device is ITextInputReceiver textInputReceiver) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_207 = V_9; V_19 = ((RuntimeObject*)IsInst((RuntimeObject*)L_207, ITextInputReceiver_tBC81096C84A44F364643BC70CAE107843E4486A9_il2cpp_TypeInfo_var)); RuntimeObject* L_208 = V_19; if (!L_208) { goto IL_066b; } } IL_0551: { // var utf32Char = textEventPtr->character; TextEvent_t2939C7C6CFDD852AEAB3AB23431FB1326E29C011 * L_209 = V_18; NullCheck(L_209); int32_t L_210 = L_209->get_character_2(); V_20 = L_210; // if (utf32Char >= 0x10000) int32_t L_211 = V_20; if ((((int32_t)L_211) < ((int32_t)((int32_t)65536)))) { goto IL_05a9; } } IL_0563: { // utf32Char -= 0x10000; int32_t L_212 = V_20; V_20 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_212, (int32_t)((int32_t)65536))); // var highSurrogate = 0xD800 + ((utf32Char >> 10) & 0x3FF); int32_t L_213 = V_20; V_21 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)55296), (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_213>>(int32_t)((int32_t)10)))&(int32_t)((int32_t)1023))))); // var lowSurrogate = 0xDC00 + (utf32Char & 0x3FF); int32_t L_214 = V_20; V_22 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)56320), (int32_t)((int32_t)((int32_t)L_214&(int32_t)((int32_t)1023))))); // textInputReceiver.OnTextInput((char)highSurrogate); RuntimeObject* L_215 = V_19; int32_t L_216 = V_21; NullCheck(L_215); InterfaceActionInvoker1< Il2CppChar >::Invoke(0 /* System.Void UnityEngine.InputSystem.LowLevel.ITextInputReceiver::OnTextInput(System.Char) */, ITextInputReceiver_tBC81096C84A44F364643BC70CAE107843E4486A9_il2cpp_TypeInfo_var, L_215, ((int32_t)((uint16_t)L_216))); // textInputReceiver.OnTextInput((char)lowSurrogate); RuntimeObject* L_217 = V_19; int32_t L_218 = V_22; NullCheck(L_217); InterfaceActionInvoker1< Il2CppChar >::Invoke(0 /* System.Void UnityEngine.InputSystem.LowLevel.ITextInputReceiver::OnTextInput(System.Char) */, ITextInputReceiver_tBC81096C84A44F364643BC70CAE107843E4486A9_il2cpp_TypeInfo_var, L_217, ((int32_t)((uint16_t)L_218))); // } goto IL_066b; } IL_05a9: { // textInputReceiver.OnTextInput((char)utf32Char); RuntimeObject* L_219 = V_19; int32_t L_220 = V_20; NullCheck(L_219); InterfaceActionInvoker1< Il2CppChar >::Invoke(0 /* System.Void UnityEngine.InputSystem.LowLevel.ITextInputReceiver::OnTextInput(System.Char) */, ITextInputReceiver_tBC81096C84A44F364643BC70CAE107843E4486A9_il2cpp_TypeInfo_var, L_219, ((int32_t)((uint16_t)L_220))); // break; goto IL_066b; } IL_05b8: { // var imeEventPtr = (IMECompositionEvent*)currentEventReadPtr; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_221 = V_10; V_23 = (IMECompositionEvent_t82F313ECCD7453AF6E105059CD8F8092B5F744EA *)L_221; // var textInputReceiver = device as ITextInputReceiver; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_222 = V_9; // textInputReceiver?.OnIMECompositionChanged(imeEventPtr->compositionString); RuntimeObject* L_223 = ((RuntimeObject*)IsInst((RuntimeObject*)L_222, ITextInputReceiver_tBC81096C84A44F364643BC70CAE107843E4486A9_il2cpp_TypeInfo_var)); G_B105_0 = L_223; if (L_223) { G_B106_0 = L_223; goto IL_05cc; } } IL_05c6: { goto IL_066b; } IL_05cc: { IMECompositionEvent_t82F313ECCD7453AF6E105059CD8F8092B5F744EA * L_224 = V_23; NullCheck(L_224); IMECompositionString_t2FF8DD4A10EA5DF2D7023622FD79384367D4FD83 L_225 = L_224->get_compositionString_3(); NullCheck(G_B106_0); InterfaceActionInvoker1< IMECompositionString_t2FF8DD4A10EA5DF2D7023622FD79384367D4FD83 >::Invoke(1 /* System.Void UnityEngine.InputSystem.LowLevel.ITextInputReceiver::OnIMECompositionChanged(UnityEngine.InputSystem.LowLevel.IMECompositionString) */, ITextInputReceiver_tBC81096C84A44F364643BC70CAE107843E4486A9_il2cpp_TypeInfo_var, G_B106_0, L_225); // break; goto IL_066b; } IL_05dd: { // RemoveDevice(device, keepOnListOfAvailableDevices: false); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_226 = V_9; InputManager_RemoveDevice_m078BD5E7310B7B57E282ECDD0972A6641F66C2C0(__this, L_226, (bool)0, /*hidden argument*/NULL); // if (device.native && !device.description.empty) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_227 = V_9; NullCheck(L_227); bool L_228; L_228 = InputDevice_get_native_m480C408308E3B4FAB47D7551025D405E250C0F78(L_227, /*hidden argument*/NULL); if (!L_228) { goto IL_066b; } } IL_05ef: { InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_229 = V_9; NullCheck(L_229); InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_230; L_230 = InputDevice_get_description_m3F54BB4D6E85ADD8CDBB2906821A9D828CAC8305_inline(L_229, /*hidden argument*/NULL); V_24 = L_230; bool L_231; L_231 = InputDeviceDescription_get_empty_mD22F9DFAC45C892B0883899DF0D473B211A92EE7((InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 *)(&V_24), /*hidden argument*/NULL); if (L_231) { goto IL_066b; } } IL_0601: { // ArrayHelpers.AppendWithCapacity(ref m_DisconnectedDevices, // ref m_DisconnectedDevicesCount, device); InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6** L_232 = __this->get_address_of_m_DisconnectedDevices_12(); int32_t* L_233 = __this->get_address_of_m_DisconnectedDevicesCount_11(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_234 = V_9; int32_t L_235; L_235 = ArrayHelpers_AppendWithCapacity_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mBAC377FA55F45B5A5F427BC00EFF2A1FB1C9F988((InputDeviceU5BU5D_tE05D1214F0F949DC3A889F8DB4B7A68A3089F6D6**)L_232, (int32_t*)L_233, L_234, ((int32_t)10), /*hidden argument*/ArrayHelpers_AppendWithCapacity_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_mBAC377FA55F45B5A5F427BC00EFF2A1FB1C9F988_RuntimeMethod_var); // DelegateHelpers.InvokeCallbacksSafe(ref m_DeviceChangeListeners, // device, InputDeviceChange.Disconnected, "InputSystem.onDeviceChange"); CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 * L_236 = __this->get_address_of_m_DeviceChangeListeners_16(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_237 = V_9; DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38((CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 *)L_236, L_237, 2, _stringLiteral84CAACE59D08AF4659A3A7E4D00A4514400CE96A, NULL, /*hidden argument*/DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38_RuntimeMethod_var); // break; goto IL_066b; } IL_062d: { // device.NotifyConfigurationChanged(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_238 = V_9; NullCheck(L_238); InputDevice_NotifyConfigurationChanged_m58330FD298D3EFEB6E3C789512D8A9B97017AC18(L_238, /*hidden argument*/NULL); // InputActionState.OnDeviceChange(device, InputDeviceChange.ConfigurationChanged); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_239 = V_9; InputActionState_OnDeviceChange_mE3D72775E04B0D3BE4F7545C51E12185CCAEFF52(L_239, 7, /*hidden argument*/NULL); // DelegateHelpers.InvokeCallbacksSafe(ref m_DeviceChangeListeners, // device, InputDeviceChange.ConfigurationChanged, "InputSystem.onDeviceChange"); CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 * L_240 = __this->get_address_of_m_DeviceChangeListeners_16(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_241 = V_9; DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38((CallbackArray_1_t795D7D5DD5A3704BD45FEFE916C899F34DCEFC55 *)L_240, L_241, 7, _stringLiteral84CAACE59D08AF4659A3A7E4D00A4514400CE96A, NULL, /*hidden argument*/DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputDeviceChange_tB4BA2E995721074403B6D0FC3E147BDD8CBF0C3E_mB7C461D450207F9E1EEB8D8107830BCEC5847F38_RuntimeMethod_var); // break; goto IL_066b; } IL_0652: { // ResetDevice(device, // alsoResetDontResetControls: ((DeviceResetEvent*)currentEventReadPtr)->hardReset); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_242 = V_9; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_243 = V_10; NullCheck(L_243); bool L_244 = ((DeviceResetEvent_t019FD2CD6A6D9D254A93C00568626114B1ACCD81 *)L_243)->get_hardReset_2(); il2cpp_codegen_initobj((&V_25), sizeof(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 )); Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 L_245 = V_25; InputManager_ResetDevice_m161F0EA740DED1C72CB96E573E86C13656C990D2(__this, L_242, L_244, L_245, /*hidden argument*/NULL); } IL_066b: { // m_InputEventStream.Advance(leaveEventInBuffer: false); InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * L_246 = __this->get_address_of_m_InputEventStream_28(); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_247; L_247 = InputEventStream_Advance_mA16875BDE0A84FFD19DB0062B34DA4058350565C((InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 *)L_246, (bool)0, /*hidden argument*/NULL); } IL_0678: { // while (m_InputEventStream.remainingEventCount > 0) InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * L_248 = __this->get_address_of_m_InputEventStream_28(); int32_t L_249; L_249 = InputEventStream_get_remainingEventCount_m98087A7B74629FA5F8AB30407DB696ECE81E6FF8((InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 *)L_248, /*hidden argument*/NULL); if ((((int32_t)L_249) > ((int32_t)0))) { goto IL_0164; } } IL_0689: { // m_Metrics.totalEventProcessingTime += // ((double)(Stopwatch.GetTimestamp() - processingStartTime)) / Stopwatch.Frequency; InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * L_250 = __this->get_address_of_m_Metrics_32(); InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * L_251 = L_250; double L_252; L_252 = InputMetrics_get_totalEventProcessingTime_mF0D791E7FA5C9E6B9035099D85265CBE4133D470_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)L_251, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_il2cpp_TypeInfo_var); int64_t L_253; L_253 = Stopwatch_GetTimestamp_m8BDD632ACE5FF704F108290DC1864032B9B1C0BF(/*hidden argument*/NULL); int64_t L_254 = V_4; int64_t L_255 = ((Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_StaticFields*)il2cpp_codegen_static_fields_for(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_il2cpp_TypeInfo_var))->get_Frequency_0(); InputMetrics_set_totalEventProcessingTime_mC98A9F88F07A8AFF23501A02DD0B44363312DC01_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)L_251, ((double)il2cpp_codegen_add((double)L_252, (double)((double)((double)((double)((double)((int64_t)il2cpp_codegen_subtract((int64_t)L_253, (int64_t)L_254))))/(double)((double)((double)L_255)))))), /*hidden argument*/NULL); // m_Metrics.totalEventLagTime += totalEventLag; InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * L_256 = __this->get_address_of_m_Metrics_32(); InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * L_257 = L_256; double L_258; L_258 = InputMetrics_get_totalEventLagTime_m9E7430166E1DF3BD681A8FEE1EE37B79F46798BE_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)L_257, /*hidden argument*/NULL); double L_259 = V_5; InputMetrics_set_totalEventLagTime_m2F5659F8A6413F9C2E5F80D3824DE8FEDF5FBBE4_inline((InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C *)L_257, ((double)il2cpp_codegen_add((double)L_258, (double)L_259)), /*hidden argument*/NULL); // m_InputEventStream.Close(ref eventBuffer); InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * L_260 = __this->get_address_of_m_InputEventStream_28(); InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * L_261 = ___eventBuffer1; InputEventStream_Close_m65AFA3054D6B4D2BA6E59C7734482052BD9D3FAE((InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 *)L_260, (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA *)L_261, /*hidden argument*/NULL); // } goto IL_06db; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_06cd; } throw e; } CATCH_06cd: { // begin catch(System.Exception) // catch (Exception) // m_InputEventStream.CleanUpAfterException(); InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * L_262 = __this->get_address_of_m_InputEventStream_28(); InputEventStream_CleanUpAfterException_mD1220F4B41B9B5A6829DBE71367EBA7A21311CD2((InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 *)L_262, /*hidden argument*/NULL); // throw; IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputManager_OnUpdate_mBD0757E2A0BCD0A2BDD0D6AF36ADAE4B137BBA3D_RuntimeMethod_var))); } // end catch (depth: 1) IL_06db: { // if (shouldProcessActionTimeouts) bool L_263 = V_0; if (!L_263) { goto IL_06e4; } } { // ProcessStateChangeMonitorTimeouts(); InputManager_ProcessStateChangeMonitorTimeouts_m8CD0C1E82C9C5A59E1E342230385D9F8E319E9BD(__this, /*hidden argument*/NULL); } IL_06e4: { // InvokeAfterUpdateCallback(updateType); int32_t L_264 = ___updateType0; InputManager_InvokeAfterUpdateCallback_mD02DD377093C4FCCBC9CDB5E7BFE9CB3F415F1CF(__this, L_264, /*hidden argument*/NULL); // m_CurrentUpdate = default; __this->set_m_CurrentUpdate_14(0); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::InvokeAfterUpdateCallback(UnityEngine.InputSystem.LowLevel.InputUpdateType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_InvokeAfterUpdateCallback_mD02DD377093C4FCCBC9CDB5E7BFE9CB3F415F1CF (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, int32_t ___updateType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9F47ED494281564928088BD8AB756BCB0CA3D564); s_Il2CppMethodInitialized = true; } { // if (updateType == InputUpdateType.Editor && gameIsPlaying) int32_t L_0 = ___updateType0; if ((!(((uint32_t)L_0) == ((uint32_t)8)))) { goto IL_000d; } } { bool L_1; L_1 = InputManager_get_gameIsPlaying_m4AE69424001E9ADED2D016DF59681FD61366D6B9(__this, /*hidden argument*/NULL); if (!L_1) { goto IL_000d; } } { // return; return; } IL_000d: { // DelegateHelpers.InvokeCallbacksSafe(ref m_AfterUpdateListeners, // "InputSystem.onAfterUpdate"); CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 * L_2 = __this->get_address_of_m_AfterUpdateListeners_23(); DelegateHelpers_InvokeCallbacksSafe_m1009DD029A41FCAE8AA28E604ECA57A3E865A02B((CallbackArray_1_t0DD749ED472D7BAC72C349ECACECDD7329E47DF5 *)L_2, _stringLiteral9F47ED494281564928088BD8AB756BCB0CA3D564, NULL, /*hidden argument*/NULL); // } return; } } // System.Boolean UnityEngine.InputSystem.InputManager::UpdateState(UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.LowLevel.InputEvent*,UnityEngine.InputSystem.LowLevel.InputUpdateType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_UpdateState_m0A40E0F97F8D5504A9201BC1C5163C953DDD3AE0 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr1, int32_t ___updateType2, const RuntimeMethod* method) { InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B V_0; memset((&V_0), 0, sizeof(V_0)); uint32_t V_1 = 0; uint32_t V_2 = 0; uint32_t V_3 = 0; uint8_t* V_4 = NULL; StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 * V_5 = NULL; DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4 * V_6 = NULL; { // var stateBlockOfDevice = device.m_StateBlock; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_0 = ___device0; NullCheck(L_0); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B L_1 = ((InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *)L_0)->get_m_StateBlock_0(); V_0 = L_1; // var stateBlockSizeOfDevice = stateBlockOfDevice.sizeInBits / 8; // Always byte-aligned; avoid calling alignedSizeInBytes. uint32_t L_2; L_2 = InputStateBlock_get_sizeInBits_mFA7DECC1FDC31AB8E7E9E773B096FEE1844FE21D_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)(&V_0), /*hidden argument*/NULL); V_1 = ((int32_t)((uint32_t)(int32_t)L_2/(uint32_t)(int32_t)8)); // var offsetInDeviceStateToCopyTo = 0u; V_2 = 0; // if (eventPtr->type == StateEvent.Type) InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_3 = ___eventPtr1; FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_4; L_4 = InputEvent_get_type_mF27E6FB5A23D3E5AA01386213E9E5248CDC27993((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_3, /*hidden argument*/NULL); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_5; L_5 = FourCC_op_Implicit_m1EF35613D75316DA0F135114B72093EBB3D04356(((int32_t)1398030676), /*hidden argument*/NULL); bool L_6; L_6 = FourCC_op_Equality_mF8F9867D06AB0FE50CBB895EE0A1F5CEA211CF7C(L_4, L_5, /*hidden argument*/NULL); if (!L_6) { goto IL_004e; } } { // var stateEventPtr = (StateEvent*)eventPtr; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_7 = ___eventPtr1; V_5 = (StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 *)L_7; // receivedStateFormat = stateEventPtr->stateFormat; StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 * L_8 = V_5; StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 L_9 = (*(StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 *)L_8); // receivedStateSize = stateEventPtr->stateSizeInBytes; StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 * L_10 = V_5; uint32_t L_11; L_11 = StateEvent_get_stateSizeInBytes_mF7D46CB26D7C0793ED3C699357F315102093EE65((StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 *)(StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 *)L_10, /*hidden argument*/NULL); // ptrToReceivedState = (byte*)stateEventPtr->state; StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 * L_12 = V_5; void* L_13; L_13 = StateEvent_get_state_mFAD2786AB2A030B34EA4B23A0111289F67B16B2B((StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 *)(StateEvent_tD4C2AFF6E8F3807B5AED6C96BFF90092E67BE5C3 *)L_12, /*hidden argument*/NULL); V_4 = (uint8_t*)L_13; // sizeOfStateToCopy = receivedStateSize; V_3 = L_11; // if (sizeOfStateToCopy > stateBlockSizeOfDevice) uint32_t L_14 = V_3; uint32_t L_15 = V_1; if ((!(((uint32_t)L_14) > ((uint32_t)L_15)))) { goto IL_0082; } } { // sizeOfStateToCopy = stateBlockSizeOfDevice; uint32_t L_16 = V_1; V_3 = L_16; // } goto IL_0082; } IL_004e: { // var deltaEventPtr = (DeltaStateEvent*)eventPtr; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_17 = ___eventPtr1; V_6 = (DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4 *)L_17; // receivedStateFormat = deltaEventPtr->stateFormat; DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4 * L_18 = V_6; DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4 L_19 = (*(DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4 *)L_18); // receivedStateSize = deltaEventPtr->deltaStateSizeInBytes; DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4 * L_20 = V_6; uint32_t L_21; L_21 = DeltaStateEvent_get_deltaStateSizeInBytes_m9BED7AD9113828078EFB6E9271AC74055964782E((DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4 *)(DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4 *)L_20, /*hidden argument*/NULL); // ptrToReceivedState = (byte*)deltaEventPtr->deltaState; DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4 * L_22 = V_6; void* L_23; L_23 = DeltaStateEvent_get_deltaState_m57A2F01023052672A37EA8188AD16511008F5B9A((DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4 *)(DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4 *)L_22, /*hidden argument*/NULL); V_4 = (uint8_t*)L_23; // offsetInDeviceStateToCopyTo = deltaEventPtr->stateOffset; DeltaStateEvent_t761AB169B0EDF724963621FF2FCEF1860859FCF4 * L_24 = V_6; NullCheck(L_24); uint32_t L_25 = L_24->get_stateOffset_3(); V_2 = L_25; // sizeOfStateToCopy = receivedStateSize; V_3 = L_21; // if (offsetInDeviceStateToCopyTo + sizeOfStateToCopy > stateBlockSizeOfDevice) uint32_t L_26 = V_2; uint32_t L_27 = V_3; uint32_t L_28 = V_1; if ((!(((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)L_27))) > ((uint32_t)L_28)))) { goto IL_0082; } } { // if (offsetInDeviceStateToCopyTo >= stateBlockSizeOfDevice) uint32_t L_29 = V_2; uint32_t L_30 = V_1; if ((!(((uint32_t)L_29) >= ((uint32_t)L_30)))) { goto IL_007e; } } { // return false; // Entire delta state is out of range. return (bool)0; } IL_007e: { // sizeOfStateToCopy = stateBlockSizeOfDevice - offsetInDeviceStateToCopyTo; uint32_t L_31 = V_1; uint32_t L_32 = V_2; V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)L_32)); } IL_0082: { // return UpdateState(device, updateType, ptrToReceivedState, offsetInDeviceStateToCopyTo, // sizeOfStateToCopy, eventPtr->internalTime, eventPtr); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_33 = ___device0; int32_t L_34 = ___updateType2; uint8_t* L_35 = V_4; uint32_t L_36 = V_2; uint32_t L_37 = V_3; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_38 = ___eventPtr1; double L_39; L_39 = InputEvent_get_internalTime_mCBF9589869296BDD0EE4093C6F3B2B359BA25BB6((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_38, /*hidden argument*/NULL); InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_40 = ___eventPtr1; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_41; L_41 = InputEventPtr_op_Implicit_m929BCCB27CE3B2C2BD9B2C43E49FDCB1F2933AB5((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_40, /*hidden argument*/NULL); bool L_42; L_42 = InputManager_UpdateState_mFE9F65AD171FE4A2C9CCFC0138D888AC1BC43021(__this, L_33, L_34, (void*)(void*)L_35, L_36, L_37, L_39, L_41, /*hidden argument*/NULL); return L_42; } } // System.Boolean UnityEngine.InputSystem.InputManager::UpdateState(UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.LowLevel.InputUpdateType,System.Void*,System.UInt32,System.UInt32,System.Double,UnityEngine.InputSystem.LowLevel.InputEventPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_UpdateState_mFE9F65AD171FE4A2C9CCFC0138D888AC1BC43021 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, int32_t ___updateType1, void* ___statePtr2, uint32_t ___stateOffsetInDevice3, uint32_t ___stateSize4, double ___internalTime5, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 ___eventPtr6, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_m3BE9B3BBF28E8038B80439AD4804A555884EA3B4_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CB9BA6603AAA5ECCE4F3CF7D8D8EBA0FB5E6FC1); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * V_1 = NULL; uint8_t* V_2 = NULL; bool V_3 = false; uint32_t V_4 = 0; uint8_t* V_5 = NULL; bool V_6 = false; uint8_t* G_B2_0 = NULL; uint8_t* G_B1_0 = NULL; uintptr_t G_B3_0; memset((&G_B3_0), 0, sizeof(G_B3_0)); uint8_t* G_B3_1 = NULL; int32_t G_B5_0 = 0; int32_t G_B4_0 = 0; { // var deviceIndex = device.m_DeviceIndex; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_0 = ___device0; NullCheck(L_0); int32_t L_1 = L_0->get_m_DeviceIndex_27(); V_0 = L_1; // ref var stateBlockOfDevice = ref device.m_StateBlock; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_2 = ___device0; NullCheck(L_2); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_3 = ((InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *)L_2)->get_address_of_m_StateBlock_0(); V_1 = (InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_3; // var deviceBuffer = (byte*)InputStateBuffers.GetFrontBufferForDevice(deviceIndex); int32_t L_4 = V_0; void* L_5; L_5 = InputStateBuffers_GetFrontBufferForDevice_m4386695914C24C31BF87EA999554E078830366AC(L_4, /*hidden argument*/NULL); V_2 = (uint8_t*)L_5; // SortStateChangeMonitorsIfNecessary(deviceIndex); int32_t L_6 = V_0; InputManager_SortStateChangeMonitorsIfNecessary_m46F78AFEFB7AD3F42826F874C9C52136051BBCE9(__this, L_6, /*hidden argument*/NULL); // var haveSignalledMonitors = // ProcessStateChangeMonitors(deviceIndex, statePtr, // deviceBuffer + stateBlockOfDevice.byteOffset, // stateSize, stateOffsetInDevice); int32_t L_7 = V_0; void* L_8 = ___statePtr2; uint8_t* L_9 = V_2; InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_10 = V_1; uint32_t L_11; L_11 = InputStateBlock_get_byteOffset_m68EF162227DEB77FFCA5C46605780C3387ADC019_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_10, /*hidden argument*/NULL); uint32_t L_12 = ___stateSize4; uint32_t L_13 = ___stateOffsetInDevice3; bool L_14; L_14 = InputManager_ProcessStateChangeMonitors_m5D81AAAFD73F87FB4EF9C63B4751501D77E826EF(__this, L_7, (void*)(void*)L_8, (void*)(void*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (intptr_t)((uintptr_t)L_11))), L_12, L_13, /*hidden argument*/NULL); V_3 = L_14; // var deviceStateOffset = device.m_StateBlock.byteOffset + stateOffsetInDevice; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_15 = ___device0; NullCheck(L_15); InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_16 = ((InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *)L_15)->get_address_of_m_StateBlock_0(); uint32_t L_17; L_17 = InputStateBlock_get_byteOffset_m68EF162227DEB77FFCA5C46605780C3387ADC019_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_16, /*hidden argument*/NULL); uint32_t L_18 = ___stateOffsetInDevice3; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)L_18)); // var deviceStatePtr = deviceBuffer + deviceStateOffset; uint8_t* L_19 = V_2; uint32_t L_20 = V_4; // var noiseMask = device.noisy // ? (byte*)InputStateBuffers.s_NoiseMaskBuffer + deviceStateOffset // : null; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_21 = ___device0; NullCheck(L_21); bool L_22; L_22 = InputControl_get_noisy_m75E27EA55EB0C920F1BA11F11427BAF3CF6FC840(L_21, /*hidden argument*/NULL); G_B1_0 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, (intptr_t)((uintptr_t)L_20))); if (L_22) { G_B2_0 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, (intptr_t)((uintptr_t)L_20))); goto IL_0053; } } { G_B3_0 = ((uintptr_t)0); G_B3_1 = G_B1_0; goto IL_005c; } IL_0053: { void* L_23 = ((InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_StaticFields*)il2cpp_codegen_static_fields_for(InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_il2cpp_TypeInfo_var))->get_s_NoiseMaskBuffer_8(); uint32_t L_24 = V_4; G_B3_0 = ((uintptr_t)(intptr_t)(((void*)il2cpp_codegen_add((intptr_t)L_23, (intptr_t)((uintptr_t)L_24))))); G_B3_1 = G_B2_0; } IL_005c: { V_5 = (uint8_t*)G_B3_0; // var makeDeviceCurrent = !MemoryHelpers.MemCmpBitRegion(deviceStatePtr, statePtr, // 0, stateSize * 8, mask: noiseMask); void* L_25 = ___statePtr2; uint32_t L_26 = ___stateSize4; uint8_t* L_27 = V_5; bool L_28; L_28 = MemoryHelpers_MemCmpBitRegion_m7CE0F9702BDDC872ABA853E622F8406E40885FC7((void*)(void*)G_B3_1, (void*)(void*)L_25, 0, ((int32_t)il2cpp_codegen_multiply((int32_t)L_26, (int32_t)8)), (void*)(void*)L_27, /*hidden argument*/NULL); // var flipped = FlipBuffersForDeviceIfNecessary(device, updateType); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_29 = ___device0; int32_t L_30 = ___updateType1; bool L_31; L_31 = InputManager_FlipBuffersForDeviceIfNecessary_mC92073895168D73EDEAD7B67108CEF7C05124361(__this, L_29, L_30, /*hidden argument*/NULL); V_6 = L_31; // WriteStateChange(m_StateBuffers.m_PlayerStateBuffers, deviceIndex, ref stateBlockOfDevice, // stateOffsetInDevice, statePtr, stateSize, flipped); InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA * L_32 = __this->get_address_of_m_StateBuffers_15(); DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B L_33 = L_32->get_m_PlayerStateBuffers_6(); int32_t L_34 = V_0; InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_35 = V_1; uint32_t L_36 = ___stateOffsetInDevice3; void* L_37 = ___statePtr2; uint32_t L_38 = ___stateSize4; bool L_39 = V_6; InputManager_WriteStateChange_mBD7733DFE695A0689CEE5FB38B0E0EF510F54624(L_33, L_34, (InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_35, L_36, (void*)(void*)L_37, L_38, L_39, /*hidden argument*/NULL); // DelegateHelpers.InvokeCallbacksSafe(ref m_DeviceStateChangeListeners, // device, eventPtr, "InputSystem.onDeviceStateChange"); CallbackArray_1_t6B54B12C76958BFFEC586C4B69F70560884AEF34 * L_40 = __this->get_address_of_m_DeviceStateChangeListeners_17(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_41 = ___device0; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_42 = ___eventPtr6; DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_m3BE9B3BBF28E8038B80439AD4804A555884EA3B4((CallbackArray_1_t6B54B12C76958BFFEC586C4B69F70560884AEF34 *)L_40, L_41, L_42, _stringLiteral9CB9BA6603AAA5ECCE4F3CF7D8D8EBA0FB5E6FC1, NULL, /*hidden argument*/DelegateHelpers_InvokeCallbacksSafe_TisInputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87_TisInputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1_m3BE9B3BBF28E8038B80439AD4804A555884EA3B4_RuntimeMethod_var); // if (haveSignalledMonitors) bool L_43 = V_3; G_B4_0 = ((((int32_t)L_28) == ((int32_t)0))? 1 : 0); if (!L_43) { G_B5_0 = ((((int32_t)L_28) == ((int32_t)0))? 1 : 0); goto IL_00b8; } } { // FireStateChangeNotifications(deviceIndex, internalTime, eventPtr); int32_t L_44 = V_0; double L_45 = ___internalTime5; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_46 = ___eventPtr6; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_47; L_47 = InputEventPtr_op_Implicit_m25CA03BF945CB766E6C8A09310269C70F9D0C948(L_46, /*hidden argument*/NULL); InputManager_FireStateChangeNotifications_m9D195BC719E2E6EE573881342C4A5D80B9E7BA0E(__this, L_44, L_45, (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_47, /*hidden argument*/NULL); G_B5_0 = G_B4_0; } IL_00b8: { // return makeDeviceCurrent; return (bool)G_B5_0; } } // System.Void UnityEngine.InputSystem.InputManager::WriteStateChange(UnityEngine.InputSystem.LowLevel.InputStateBuffers/DoubleBuffers,System.Int32,UnityEngine.InputSystem.LowLevel.InputStateBlock&,System.UInt32,System.Void*,System.UInt32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_WriteStateChange_mBD7733DFE695A0689CEE5FB38B0E0EF510F54624 (DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B ___buffers0, int32_t ___deviceIndex1, InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * ___deviceStateBlock2, uint32_t ___stateOffsetInDevice3, void* ___statePtr4, uint32_t ___stateSizeInBytes5, bool ___flippedBuffers6, const RuntimeMethod* method) { void* V_0 = NULL; uint32_t V_1 = 0; void* V_2 = NULL; { // var frontBuffer = buffers.GetFrontBuffer(deviceIndex); int32_t L_0 = ___deviceIndex1; void* L_1; L_1 = DoubleBuffers_GetFrontBuffer_m2B03B9E7BC47E041D8BF7D78756B5A95FCDF4A4C((DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B *)(&___buffers0), L_0, /*hidden argument*/NULL); V_0 = (void*)L_1; // var deviceStateSize = deviceStateBlock.sizeInBits / 8; // Always byte-aligned; avoid calling alignedSizeInBytes. InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_2 = ___deviceStateBlock2; uint32_t L_3; L_3 = InputStateBlock_get_sizeInBits_mFA7DECC1FDC31AB8E7E9E773B096FEE1844FE21D_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_2, /*hidden argument*/NULL); V_1 = ((int32_t)((uint32_t)(int32_t)L_3/(uint32_t)(int32_t)8)); // if (flippedBuffers && deviceStateSize != stateSizeInBytes) bool L_4 = ___flippedBuffers6; if (!L_4) { goto IL_003d; } } { uint32_t L_5 = V_1; uint32_t L_6 = ___stateSizeInBytes5; if ((((int32_t)L_5) == ((int32_t)L_6))) { goto IL_003d; } } { // var backBuffer = buffers.GetBackBuffer(deviceIndex); int32_t L_7 = ___deviceIndex1; void* L_8; L_8 = DoubleBuffers_GetBackBuffer_m8BA8EF0C2764AF5DF6C62175CA7A079DE2D55293((DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B *)(&___buffers0), L_7, /*hidden argument*/NULL); V_2 = (void*)L_8; // UnsafeUtility.MemCpy( // (byte*)frontBuffer + deviceStateBlock.byteOffset, // (byte*)backBuffer + deviceStateBlock.byteOffset, // deviceStateSize); void* L_9 = V_0; InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_10 = ___deviceStateBlock2; uint32_t L_11; L_11 = InputStateBlock_get_byteOffset_m68EF162227DEB77FFCA5C46605780C3387ADC019_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_10, /*hidden argument*/NULL); void* L_12 = V_2; InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_13 = ___deviceStateBlock2; uint32_t L_14; L_14 = InputStateBlock_get_byteOffset_m68EF162227DEB77FFCA5C46605780C3387ADC019_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_13, /*hidden argument*/NULL); uint32_t L_15 = V_1; UnsafeUtility_MemCpy_mA8E186A63FE9CE463F95E5C5FF1C5F1B4E84F90E((void*)(void*)((void*)il2cpp_codegen_add((intptr_t)L_9, (intptr_t)((uintptr_t)L_11))), (void*)(void*)((void*)il2cpp_codegen_add((intptr_t)L_12, (intptr_t)((uintptr_t)L_14))), ((int64_t)((uint64_t)L_15)), /*hidden argument*/NULL); } IL_003d: { // UnsafeUtility.MemCpy((byte*)frontBuffer + deviceStateBlock.byteOffset + stateOffsetInDevice, statePtr, // stateSizeInBytes); void* L_16 = V_0; InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * L_17 = ___deviceStateBlock2; uint32_t L_18; L_18 = InputStateBlock_get_byteOffset_m68EF162227DEB77FFCA5C46605780C3387ADC019_inline((InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B *)L_17, /*hidden argument*/NULL); uint32_t L_19 = ___stateOffsetInDevice3; void* L_20 = ___statePtr4; uint32_t L_21 = ___stateSizeInBytes5; UnsafeUtility_MemCpy_mA8E186A63FE9CE463F95E5C5FF1C5F1B4E84F90E((void*)(void*)((void*)il2cpp_codegen_add((intptr_t)((void*)il2cpp_codegen_add((intptr_t)L_16, (intptr_t)((uintptr_t)L_18))), (intptr_t)((uintptr_t)L_19))), (void*)(void*)L_20, ((int64_t)((uint64_t)L_21)), /*hidden argument*/NULL); // } return; } } // System.Boolean UnityEngine.InputSystem.InputManager::FlipBuffersForDeviceIfNecessary(UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.LowLevel.InputUpdateType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_FlipBuffersForDeviceIfNecessary_mC92073895168D73EDEAD7B67108CEF7C05124361 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, int32_t ___updateType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputUpdate_t16159151984D134E806E18584FE12416F7A6DA57_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (updateType == InputUpdateType.BeforeRender) int32_t L_0 = ___updateType1; if ((!(((uint32_t)L_0) == ((uint32_t)4)))) { goto IL_0006; } } { // return false; return (bool)0; } IL_0006: { // if (device.m_CurrentUpdateStepCount != InputUpdate.s_UpdateStepCount) InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_1 = ___device0; NullCheck(L_1); uint32_t L_2 = L_1->get_m_CurrentUpdateStepCount_30(); uint32_t L_3 = ((InputUpdate_t16159151984D134E806E18584FE12416F7A6DA57_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t16159151984D134E806E18584FE12416F7A6DA57_il2cpp_TypeInfo_var))->get_s_UpdateStepCount_0(); if ((((int32_t)L_2) == ((int32_t)L_3))) { goto IL_0036; } } { // m_StateBuffers.m_PlayerStateBuffers.SwapBuffers(device.m_DeviceIndex); InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA * L_4 = __this->get_address_of_m_StateBuffers_15(); DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B * L_5 = L_4->get_address_of_m_PlayerStateBuffers_6(); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_6 = ___device0; NullCheck(L_6); int32_t L_7 = L_6->get_m_DeviceIndex_27(); DoubleBuffers_SwapBuffers_m70368F37B6F7AF933958F38140F61CE3B087ACC8((DoubleBuffers_t6EA541F84C05C0E43874EB3F6DFEAD6CFC20582B *)L_5, L_7, /*hidden argument*/NULL); // device.m_CurrentUpdateStepCount = InputUpdate.s_UpdateStepCount; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_8 = ___device0; uint32_t L_9 = ((InputUpdate_t16159151984D134E806E18584FE12416F7A6DA57_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t16159151984D134E806E18584FE12416F7A6DA57_il2cpp_TypeInfo_var))->get_s_UpdateStepCount_0(); NullCheck(L_8); L_8->set_m_CurrentUpdateStepCount_30(L_9); // return true; return (bool)1; } IL_0036: { // return false; return (bool)0; } } // System.Void UnityEngine.InputSystem.InputManager::AddStateChangeMonitor(UnityEngine.InputSystem.InputControl,UnityEngine.InputSystem.LowLevel.IInputStateChangeMonitor,System.Int64,System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_AddStateChangeMonitor_m9AC0530B9F0E88E776840DE2EA686029F34897D1 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * ___control0, RuntimeObject* ___monitor1, int64_t ___monitorIndex2, uint32_t ___groupIndex3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Resize_TisStateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_m40801FDD05A56FDAD4E49611617D191543C0DE2C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { // var device = control.device; InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_0 = ___control0; NullCheck(L_0); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_1; L_1 = InputControl_get_device_m7B8D4A5F3C7C11E4FE7239692961C434C7CCF9E1_inline(L_0, /*hidden argument*/NULL); // var deviceIndex = device.m_DeviceIndex; NullCheck(L_1); int32_t L_2 = L_1->get_m_DeviceIndex_27(); V_0 = L_2; // if (m_StateChangeMonitors == null) StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_3 = __this->get_m_StateChangeMonitors_34(); if (L_3) { goto IL_0027; } } { // m_StateChangeMonitors = new StateChangeMonitorsForDevice[m_DevicesCount]; int32_t L_4 = __this->get_m_DevicesCount_6(); StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_5 = (StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE*)(StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE*)SZArrayNew(StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE_il2cpp_TypeInfo_var, (uint32_t)L_4); __this->set_m_StateChangeMonitors_34(L_5); goto IL_0043; } IL_0027: { // else if (m_StateChangeMonitors.Length <= deviceIndex) StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_6 = __this->get_m_StateChangeMonitors_34(); NullCheck(L_6); int32_t L_7 = V_0; if ((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))) > ((int32_t)L_7))) { goto IL_0043; } } { // Array.Resize(ref m_StateChangeMonitors, m_DevicesCount); StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE** L_8 = __this->get_address_of_m_StateChangeMonitors_34(); int32_t L_9 = __this->get_m_DevicesCount_6(); Array_Resize_TisStateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_m40801FDD05A56FDAD4E49611617D191543C0DE2C((StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE**)L_8, L_9, /*hidden argument*/Array_Resize_TisStateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_m40801FDD05A56FDAD4E49611617D191543C0DE2C_RuntimeMethod_var); } IL_0043: { // if (!isProcessingEvents && m_StateChangeMonitors[deviceIndex].needToCompactArrays) bool L_10; L_10 = InputManager_get_isProcessingEvents_m0727B15A9FAAF427636B7706ABFA1E239D3F37CA(__this, /*hidden argument*/NULL); if (L_10) { goto IL_006f; } } { StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_11 = __this->get_m_StateChangeMonitors_34(); int32_t L_12 = V_0; NullCheck(L_11); bool L_13 = ((L_11)->GetAddressAt(static_cast(L_12)))->get_needToCompactArrays_4(); if (!L_13) { goto IL_006f; } } { // m_StateChangeMonitors[deviceIndex].CompactArrays(); StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_14 = __this->get_m_StateChangeMonitors_34(); int32_t L_15 = V_0; NullCheck(L_14); StateChangeMonitorsForDevice_CompactArrays_m9238D71F1A5BE3658ECD622DB30763BE5B349BD3((StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 *)((L_14)->GetAddressAt(static_cast(L_15))), /*hidden argument*/NULL); } IL_006f: { // m_StateChangeMonitors[deviceIndex].Add(control, monitor, monitorIndex, groupIndex); StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_16 = __this->get_m_StateChangeMonitors_34(); int32_t L_17 = V_0; NullCheck(L_16); InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_18 = ___control0; RuntimeObject* L_19 = ___monitor1; int64_t L_20 = ___monitorIndex2; uint32_t L_21 = ___groupIndex3; StateChangeMonitorsForDevice_Add_m9D45C6F02E6F7866FE3D14E13E4195A540A18407((StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 *)((L_16)->GetAddressAt(static_cast(L_17))), L_18, L_19, L_20, L_21, /*hidden argument*/NULL); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::RemoveStateChangeMonitors(UnityEngine.InputSystem.InputDevice) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_RemoveStateChangeMonitors_m5CB5F66F6D3DB0F07272C6491A008707101D7A39 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * ___device0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_set_Item_m2B7EE5F97EEA88C36851609313B780BB25E8096A_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 V_2; memset((&V_2), 0, sizeof(V_2)); InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * G_B7_0 = NULL; InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * G_B6_0 = NULL; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * G_B8_0 = NULL; { // if (m_StateChangeMonitors == null) StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_0 = __this->get_m_StateChangeMonitors_34(); if (L_0) { goto IL_0009; } } { // return; return; } IL_0009: { // var deviceIndex = device.m_DeviceIndex; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_1 = ___device0; NullCheck(L_1); int32_t L_2 = L_1->get_m_DeviceIndex_27(); V_0 = L_2; // if (deviceIndex >= m_StateChangeMonitors.Length) int32_t L_3 = V_0; StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_4 = __this->get_m_StateChangeMonitors_34(); NullCheck(L_4); if ((((int32_t)L_3) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))) { goto IL_001c; } } { // return; return; } IL_001c: { // m_StateChangeMonitors[deviceIndex].Clear(); StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_5 = __this->get_m_StateChangeMonitors_34(); int32_t L_6 = V_0; NullCheck(L_5); StateChangeMonitorsForDevice_Clear_m3192750DFA8EAF1A24FCEE908A7311FBFADD1FDC((StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 *)((L_5)->GetAddressAt(static_cast(L_6))), /*hidden argument*/NULL); // for (var i = 0; i < m_StateChangeMonitorTimeouts.length; ++i) V_1 = 0; goto IL_006a; } IL_0031: { // if (m_StateChangeMonitorTimeouts[i].control?.device == device) InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * L_7 = __this->get_address_of_m_StateChangeMonitorTimeouts_35(); int32_t L_8 = V_1; StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 L_9; L_9 = InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48((InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A *)L_7, L_8, /*hidden argument*/InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48_RuntimeMethod_var); InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_10 = L_9.get_control_0(); InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_11 = L_10; G_B6_0 = L_11; if (L_11) { G_B7_0 = L_11; goto IL_0049; } } { G_B8_0 = ((InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *)(NULL)); goto IL_004e; } IL_0049: { NullCheck(G_B7_0); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_12; L_12 = InputControl_get_device_m7B8D4A5F3C7C11E4FE7239692961C434C7CCF9E1_inline(G_B7_0, /*hidden argument*/NULL); G_B8_0 = L_12; } IL_004e: { InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_13 = ___device0; if ((!(((RuntimeObject*)(InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *)G_B8_0) == ((RuntimeObject*)(InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 *)L_13)))) { goto IL_0066; } } { // m_StateChangeMonitorTimeouts[i] = default; InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * L_14 = __this->get_address_of_m_StateChangeMonitorTimeouts_35(); int32_t L_15 = V_1; il2cpp_codegen_initobj((&V_2), sizeof(StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 )); StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 L_16 = V_2; InlinedArray_1_set_Item_m2B7EE5F97EEA88C36851609313B780BB25E8096A((InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A *)L_14, L_15, L_16, /*hidden argument*/InlinedArray_1_set_Item_m2B7EE5F97EEA88C36851609313B780BB25E8096A_RuntimeMethod_var); } IL_0066: { // for (var i = 0; i < m_StateChangeMonitorTimeouts.length; ++i) int32_t L_17 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)); } IL_006a: { // for (var i = 0; i < m_StateChangeMonitorTimeouts.length; ++i) int32_t L_18 = V_1; InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * L_19 = __this->get_address_of_m_StateChangeMonitorTimeouts_35(); int32_t L_20 = L_19->get_length_0(); if ((((int32_t)L_18) < ((int32_t)L_20))) { goto IL_0031; } } { // } return; } } // System.Void UnityEngine.InputSystem.InputManager::RemoveStateChangeMonitor(UnityEngine.InputSystem.InputControl,UnityEngine.InputSystem.LowLevel.IInputStateChangeMonitor,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_RemoveStateChangeMonitor_mE02E9F89875900E6A4BF051802FB17B857F9401E (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * ___control0, RuntimeObject* ___monitor1, int64_t ___monitorIndex2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_set_Item_m2B7EE5F97EEA88C36851609313B780BB25E8096A_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 V_2; memset((&V_2), 0, sizeof(V_2)); { // if (m_StateChangeMonitors == null) StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_0 = __this->get_m_StateChangeMonitors_34(); if (L_0) { goto IL_0009; } } { // return; return; } IL_0009: { // var device = control.device; InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_1 = ___control0; NullCheck(L_1); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_2; L_2 = InputControl_get_device_m7B8D4A5F3C7C11E4FE7239692961C434C7CCF9E1_inline(L_1, /*hidden argument*/NULL); // var deviceIndex = device.m_DeviceIndex; NullCheck(L_2); int32_t L_3 = L_2->get_m_DeviceIndex_27(); V_0 = L_3; // if (deviceIndex == InputDevice.kInvalidDeviceIndex) int32_t L_4 = V_0; if ((!(((uint32_t)L_4) == ((uint32_t)(-1))))) { goto IL_001a; } } { // return; return; } IL_001a: { // if (deviceIndex >= m_StateChangeMonitors.Length) int32_t L_5 = V_0; StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_6 = __this->get_m_StateChangeMonitors_34(); NullCheck(L_6); if ((((int32_t)L_5) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))))) { goto IL_0026; } } { // return; return; } IL_0026: { // m_StateChangeMonitors[deviceIndex].Remove(monitor, monitorIndex, isProcessingEvents); StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_7 = __this->get_m_StateChangeMonitors_34(); int32_t L_8 = V_0; NullCheck(L_7); RuntimeObject* L_9 = ___monitor1; int64_t L_10 = ___monitorIndex2; bool L_11; L_11 = InputManager_get_isProcessingEvents_m0727B15A9FAAF427636B7706ABFA1E239D3F37CA(__this, /*hidden argument*/NULL); StateChangeMonitorsForDevice_Remove_m3CD95DE78EED351C1AFA5BFE80CFBDF7E2F0EB0E((StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 *)((L_7)->GetAddressAt(static_cast(L_8))), L_9, L_10, L_11, /*hidden argument*/NULL); // for (var i = 0; i < m_StateChangeMonitorTimeouts.length; ++i) V_1 = 0; goto IL_0084; } IL_0043: { // if (m_StateChangeMonitorTimeouts[i].monitor == monitor && // m_StateChangeMonitorTimeouts[i].monitorIndex == monitorIndex) InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * L_12 = __this->get_address_of_m_StateChangeMonitorTimeouts_35(); int32_t L_13 = V_1; StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 L_14; L_14 = InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48((InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A *)L_12, L_13, /*hidden argument*/InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48_RuntimeMethod_var); RuntimeObject* L_15 = L_14.get_monitor_2(); RuntimeObject* L_16 = ___monitor1; if ((!(((RuntimeObject*)(RuntimeObject*)L_15) == ((RuntimeObject*)(RuntimeObject*)L_16)))) { goto IL_0080; } } { InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * L_17 = __this->get_address_of_m_StateChangeMonitorTimeouts_35(); int32_t L_18 = V_1; StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 L_19; L_19 = InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48((InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A *)L_17, L_18, /*hidden argument*/InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48_RuntimeMethod_var); int64_t L_20 = L_19.get_monitorIndex_3(); int64_t L_21 = ___monitorIndex2; if ((!(((uint64_t)L_20) == ((uint64_t)L_21)))) { goto IL_0080; } } { // m_StateChangeMonitorTimeouts[i] = default; InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * L_22 = __this->get_address_of_m_StateChangeMonitorTimeouts_35(); int32_t L_23 = V_1; il2cpp_codegen_initobj((&V_2), sizeof(StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 )); StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 L_24 = V_2; InlinedArray_1_set_Item_m2B7EE5F97EEA88C36851609313B780BB25E8096A((InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A *)L_22, L_23, L_24, /*hidden argument*/InlinedArray_1_set_Item_m2B7EE5F97EEA88C36851609313B780BB25E8096A_RuntimeMethod_var); } IL_0080: { // for (var i = 0; i < m_StateChangeMonitorTimeouts.length; ++i) int32_t L_25 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1)); } IL_0084: { // for (var i = 0; i < m_StateChangeMonitorTimeouts.length; ++i) int32_t L_26 = V_1; InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * L_27 = __this->get_address_of_m_StateChangeMonitorTimeouts_35(); int32_t L_28 = L_27->get_length_0(); if ((((int32_t)L_26) < ((int32_t)L_28))) { goto IL_0043; } } { // } return; } } // System.Void UnityEngine.InputSystem.InputManager::AddStateChangeMonitorTimeout(UnityEngine.InputSystem.InputControl,UnityEngine.InputSystem.LowLevel.IInputStateChangeMonitor,System.Double,System.Int64,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_AddStateChangeMonitorTimeout_mA6904625EAEA9ACCE5E8689503519DFC681ABFAC (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * ___control0, RuntimeObject* ___monitor1, double ___time2, int64_t ___monitorIndex3, int32_t ___timerIndex4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_Append_m5669719E259F8A1D99F53BB7E6F255E35808764C_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 V_0; memset((&V_0), 0, sizeof(V_0)); { // m_StateChangeMonitorTimeouts.Append( // new StateChangeMonitorTimeout // { // control = control, // time = time, // monitor = monitor, // monitorIndex = monitorIndex, // timerIndex = timerIndex, // }); InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * L_0 = __this->get_address_of_m_StateChangeMonitorTimeouts_35(); il2cpp_codegen_initobj((&V_0), sizeof(StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 )); InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_1 = ___control0; (&V_0)->set_control_0(L_1); double L_2 = ___time2; (&V_0)->set_time_1(L_2); RuntimeObject* L_3 = ___monitor1; (&V_0)->set_monitor_2(L_3); int64_t L_4 = ___monitorIndex3; (&V_0)->set_monitorIndex_3(L_4); int32_t L_5 = ___timerIndex4; (&V_0)->set_timerIndex_4(L_5); StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 L_6 = V_0; int32_t L_7; L_7 = InlinedArray_1_Append_m5669719E259F8A1D99F53BB7E6F255E35808764C((InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A *)L_0, L_6, /*hidden argument*/InlinedArray_1_Append_m5669719E259F8A1D99F53BB7E6F255E35808764C_RuntimeMethod_var); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::RemoveStateChangeMonitorTimeout(UnityEngine.InputSystem.LowLevel.IInputStateChangeMonitor,System.Int64,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_RemoveStateChangeMonitorTimeout_m952F79654217D58557F4347FB8568D5A678242DD (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, RuntimeObject* ___monitor0, int64_t ___monitorIndex1, int32_t ___timerIndex2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_set_Item_m2B7EE5F97EEA88C36851609313B780BB25E8096A_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 V_2; memset((&V_2), 0, sizeof(V_2)); { // var timeoutCount = m_StateChangeMonitorTimeouts.length; InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * L_0 = __this->get_address_of_m_StateChangeMonitorTimeouts_35(); int32_t L_1 = L_0->get_length_0(); V_0 = L_1; // for (var i = 0; i < timeoutCount; ++i) V_1 = 0; goto IL_0066; } IL_0010: { // if (ReferenceEquals(m_StateChangeMonitorTimeouts[i].monitor, monitor) // && m_StateChangeMonitorTimeouts[i].monitorIndex == monitorIndex // && m_StateChangeMonitorTimeouts[i].timerIndex == timerIndex) InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * L_2 = __this->get_address_of_m_StateChangeMonitorTimeouts_35(); int32_t L_3 = V_1; StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 L_4; L_4 = InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48((InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A *)L_2, L_3, /*hidden argument*/InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48_RuntimeMethod_var); RuntimeObject* L_5 = L_4.get_monitor_2(); RuntimeObject* L_6 = ___monitor0; if ((!(((RuntimeObject*)(RuntimeObject*)L_5) == ((RuntimeObject*)(RuntimeObject*)L_6)))) { goto IL_0062; } } { InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * L_7 = __this->get_address_of_m_StateChangeMonitorTimeouts_35(); int32_t L_8 = V_1; StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 L_9; L_9 = InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48((InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A *)L_7, L_8, /*hidden argument*/InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48_RuntimeMethod_var); int64_t L_10 = L_9.get_monitorIndex_3(); int64_t L_11 = ___monitorIndex1; if ((!(((uint64_t)L_10) == ((uint64_t)L_11)))) { goto IL_0062; } } { InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * L_12 = __this->get_address_of_m_StateChangeMonitorTimeouts_35(); int32_t L_13 = V_1; StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 L_14; L_14 = InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48((InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A *)L_12, L_13, /*hidden argument*/InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48_RuntimeMethod_var); int32_t L_15 = L_14.get_timerIndex_4(); int32_t L_16 = ___timerIndex2; if ((!(((uint32_t)L_15) == ((uint32_t)L_16)))) { goto IL_0062; } } { // m_StateChangeMonitorTimeouts[i] = default; InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * L_17 = __this->get_address_of_m_StateChangeMonitorTimeouts_35(); int32_t L_18 = V_1; il2cpp_codegen_initobj((&V_2), sizeof(StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 )); StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 L_19 = V_2; InlinedArray_1_set_Item_m2B7EE5F97EEA88C36851609313B780BB25E8096A((InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A *)L_17, L_18, L_19, /*hidden argument*/InlinedArray_1_set_Item_m2B7EE5F97EEA88C36851609313B780BB25E8096A_RuntimeMethod_var); // break; return; } IL_0062: { // for (var i = 0; i < timeoutCount; ++i) int32_t L_20 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); } IL_0066: { // for (var i = 0; i < timeoutCount; ++i) int32_t L_21 = V_1; int32_t L_22 = V_0; if ((((int32_t)L_21) < ((int32_t)L_22))) { goto IL_0010; } } { // } return; } } // System.Void UnityEngine.InputSystem.InputManager::SortStateChangeMonitorsIfNecessary(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_SortStateChangeMonitorsIfNecessary_m46F78AFEFB7AD3F42826F874C9C52136051BBCE9 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, int32_t ___deviceIndex0, const RuntimeMethod* method) { { // if (m_StateChangeMonitors != null && deviceIndex < m_StateChangeMonitors.Length && // m_StateChangeMonitors[deviceIndex].needToUpdateOrderingOfMonitors) StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_0 = __this->get_m_StateChangeMonitors_34(); if (!L_0) { goto IL_0037; } } { int32_t L_1 = ___deviceIndex0; StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_2 = __this->get_m_StateChangeMonitors_34(); NullCheck(L_2); if ((((int32_t)L_1) >= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))))) { goto IL_0037; } } { StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_3 = __this->get_m_StateChangeMonitors_34(); int32_t L_4 = ___deviceIndex0; NullCheck(L_3); bool L_5 = ((L_3)->GetAddressAt(static_cast(L_4)))->get_needToUpdateOrderingOfMonitors_3(); if (!L_5) { goto IL_0037; } } { // m_StateChangeMonitors[deviceIndex].SortMonitorsByIndex(); StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_6 = __this->get_m_StateChangeMonitors_34(); int32_t L_7 = ___deviceIndex0; NullCheck(L_6); StateChangeMonitorsForDevice_SortMonitorsByIndex_m7AD3D30577573248756DD42964806EB45FC4FB08((StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 *)((L_6)->GetAddressAt(static_cast(L_7))), /*hidden argument*/NULL); } IL_0037: { // } return; } } // System.Void UnityEngine.InputSystem.InputManager::SignalStateChangeMonitor(UnityEngine.InputSystem.InputControl,UnityEngine.InputSystem.LowLevel.IInputStateChangeMonitor) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_SignalStateChangeMonitor_m5BFE18DABF159FBE74751B5E96AE8DDD0EDBC8C7 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * ___control0, RuntimeObject* ___monitor1, const RuntimeMethod* method) { int32_t V_0 = 0; StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 * V_1 = NULL; int32_t V_2 = 0; StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757 * V_3 = NULL; { // var device = control.device; InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_0 = ___control0; NullCheck(L_0); InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_1; L_1 = InputControl_get_device_m7B8D4A5F3C7C11E4FE7239692961C434C7CCF9E1_inline(L_0, /*hidden argument*/NULL); // var deviceIndex = device.m_DeviceIndex; NullCheck(L_1); int32_t L_2 = L_1->get_m_DeviceIndex_27(); V_0 = L_2; // ref var monitorsForDevice = ref m_StateChangeMonitors[deviceIndex]; StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_3 = __this->get_m_StateChangeMonitors_34(); int32_t L_4 = V_0; NullCheck(L_3); V_1 = (StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 *)((L_3)->GetAddressAt(static_cast(L_4))); // for (var i = 0; i < monitorsForDevice.signalled.length; ++i) V_2 = 0; goto IL_0053; } IL_001d: { // SortStateChangeMonitorsIfNecessary(i); int32_t L_5 = V_2; InputManager_SortStateChangeMonitorsIfNecessary_m46F78AFEFB7AD3F42826F874C9C52136051BBCE9(__this, L_5, /*hidden argument*/NULL); // ref var listener = ref monitorsForDevice.listeners[i]; StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 * L_6 = V_1; StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10* L_7 = L_6->get_listeners_1(); int32_t L_8 = V_2; NullCheck(L_7); V_3 = (StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757 *)((L_7)->GetAddressAt(static_cast(L_8))); // if (listener.control == control && listener.monitor == monitor) StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757 * L_9 = V_3; InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_10 = L_9->get_control_0(); InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_11 = ___control0; if ((!(((RuntimeObject*)(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *)L_10) == ((RuntimeObject*)(InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *)L_11)))) { goto IL_004f; } } { StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757 * L_12 = V_3; RuntimeObject* L_13 = L_12->get_monitor_1(); RuntimeObject* L_14 = ___monitor1; if ((!(((RuntimeObject*)(RuntimeObject*)L_13) == ((RuntimeObject*)(RuntimeObject*)L_14)))) { goto IL_004f; } } { // monitorsForDevice.signalled.SetBit(i); StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 * L_15 = V_1; DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 * L_16 = L_15->get_address_of_signalled_2(); int32_t L_17 = V_2; DynamicBitfield_SetBit_m1ABA9E44DEDE71266B8FD2115719B0875E73FD43((DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 *)L_16, L_17, /*hidden argument*/NULL); } IL_004f: { // for (var i = 0; i < monitorsForDevice.signalled.length; ++i) int32_t L_18 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); } IL_0053: { // for (var i = 0; i < monitorsForDevice.signalled.length; ++i) int32_t L_19 = V_2; StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 * L_20 = V_1; DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 * L_21 = L_20->get_address_of_signalled_2(); int32_t L_22 = L_21->get_length_1(); if ((((int32_t)L_19) < ((int32_t)L_22))) { goto IL_001d; } } { // } return; } } // System.Void UnityEngine.InputSystem.InputManager::FireStateChangeNotifications() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_FireStateChangeNotifications_m5BE86BF47F198A221F4A98C3634786271D3747E4 (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_LengthSafe_TisStateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_mEF0C8691912F12B19C9BF503E38175BDAEA8A4AA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } double V_0 = 0.0; int32_t V_1 = 0; int32_t V_2 = 0; { // var time = m_Runtime.currentTime; RuntimeObject* L_0 = __this->get_m_Runtime_31(); NullCheck(L_0); double L_1; L_1 = InterfaceFuncInvoker0< double >::Invoke(19 /* System.Double UnityEngine.InputSystem.LowLevel.IInputRuntime::get_currentTime() */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_0); V_0 = L_1; // var count = Math.Min(m_StateChangeMonitors.LengthSafe(), m_DevicesCount); StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_2 = __this->get_m_StateChangeMonitors_34(); int32_t L_3; L_3 = ArrayHelpers_LengthSafe_TisStateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_mEF0C8691912F12B19C9BF503E38175BDAEA8A4AA(L_2, /*hidden argument*/ArrayHelpers_LengthSafe_TisStateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0_mEF0C8691912F12B19C9BF503E38175BDAEA8A4AA_RuntimeMethod_var); int32_t L_4 = __this->get_m_DevicesCount_6(); IL2CPP_RUNTIME_CLASS_INIT(Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var); int32_t L_5; L_5 = Math_Min_m6411ABA96F53F6B588FD9F2F72FB5FDAC1C1BC9B(L_3, L_4, /*hidden argument*/NULL); V_1 = L_5; // for (var i = 0; i < count; ++i) V_2 = 0; goto IL_0035; } IL_0027: { // FireStateChangeNotifications(i, time, null); int32_t L_6 = V_2; double L_7 = V_0; InputManager_FireStateChangeNotifications_m9D195BC719E2E6EE573881342C4A5D80B9E7BA0E(__this, L_6, L_7, (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)((uintptr_t)0), /*hidden argument*/NULL); // for (var i = 0; i < count; ++i) int32_t L_8 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_0035: { // for (var i = 0; i < count; ++i) int32_t L_9 = V_2; int32_t L_10 = V_1; if ((((int32_t)L_9) < ((int32_t)L_10))) { goto IL_0027; } } { // } return; } } // System.Boolean UnityEngine.InputSystem.InputManager::ProcessStateChangeMonitors(System.Int32,System.Void*,System.Void*,System.UInt32,System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputManager_ProcessStateChangeMonitors_m5D81AAAFD73F87FB4EF9C63B4751501D77E826EF (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, int32_t ___deviceIndex0, void* ___newStateFromEvent1, void* ___oldStateOfDevice2, uint32_t ___newStateSizeInBytes3, uint32_t ___newStateOffsetInBytes4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_EraseAtWithCapacity_TisBitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0_m60444B4131851A54E921C04FE9219E5413138EA3_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_EraseAtWithCapacity_TisStateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757_m838ED52068AE104603FB0EDEF1C1CD8347FC4BCF_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } BitRegionU5BU5D_tF6D5F89A752F557BCBFDE82CA0F4C7CB0ABF364B* V_0 = NULL; int32_t V_1 = 0; bool V_2 = false; DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 V_3; memset((&V_3), 0, sizeof(V_3)); bool V_4 = false; BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 V_5; memset((&V_5), 0, sizeof(V_5)); int32_t V_6 = 0; BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 V_7; memset((&V_7), 0, sizeof(V_7)); BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 V_8; memset((&V_8), 0, sizeof(V_8)); int32_t V_9 = 0; int32_t V_10 = 0; { // if (m_StateChangeMonitors == null) StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_0 = __this->get_m_StateChangeMonitors_34(); if (L_0) { goto IL_000a; } } { // return false; return (bool)0; } IL_000a: { // if (deviceIndex >= m_StateChangeMonitors.Length) int32_t L_1 = ___deviceIndex0; StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_2 = __this->get_m_StateChangeMonitors_34(); NullCheck(L_2); if ((((int32_t)L_1) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))))) { goto IL_0017; } } { // return false; return (bool)0; } IL_0017: { // var memoryRegions = m_StateChangeMonitors[deviceIndex].memoryRegions; StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_3 = __this->get_m_StateChangeMonitors_34(); int32_t L_4 = ___deviceIndex0; NullCheck(L_3); BitRegionU5BU5D_tF6D5F89A752F557BCBFDE82CA0F4C7CB0ABF364B* L_5 = ((L_3)->GetAddressAt(static_cast(L_4)))->get_memoryRegions_0(); V_0 = L_5; // if (memoryRegions == null) BitRegionU5BU5D_tF6D5F89A752F557BCBFDE82CA0F4C7CB0ABF364B* L_6 = V_0; if (L_6) { goto IL_002e; } } { // return false; // No one cares about state changes on this device. return (bool)0; } IL_002e: { // var numMonitors = m_StateChangeMonitors[deviceIndex].count; StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_7 = __this->get_m_StateChangeMonitors_34(); int32_t L_8 = ___deviceIndex0; NullCheck(L_7); int32_t L_9; L_9 = StateChangeMonitorsForDevice_get_count_m75707256D415522C63E8BD941E93217DC3288690((StateChangeMonitorsForDevice_t2F1944ED5BCDE768DDC64D5F89F74FCE9198B7C0 *)((L_7)->GetAddressAt(static_cast(L_8))), /*hidden argument*/NULL); V_1 = L_9; // var signalled = false; V_2 = (bool)0; // var signals = m_StateChangeMonitors[deviceIndex].signalled; StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_10 = __this->get_m_StateChangeMonitors_34(); int32_t L_11 = ___deviceIndex0; NullCheck(L_10); DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 L_12 = ((L_10)->GetAddressAt(static_cast(L_11)))->get_signalled_2(); V_3 = L_12; // var haveChangedSignalsBitfield = false; V_4 = (bool)0; // var newEventMemoryRegion = new MemoryHelpers.BitRegion(newStateOffsetInBytes, 0, newStateSizeInBytes * 8); uint32_t L_13 = ___newStateOffsetInBytes4; uint32_t L_14 = ___newStateSizeInBytes3; BitRegion__ctor_mD9AC60CD6F70ED3D7D1EB7BEE978C4390A6D5F57((BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 *)(&V_5), L_13, 0, ((int32_t)il2cpp_codegen_multiply((int32_t)L_14, (int32_t)8)), /*hidden argument*/NULL); // for (var i = 0; i < numMonitors; ++i) V_6 = 0; goto IL_00fa; } IL_006d: { // var memoryRegion = memoryRegions[i]; BitRegionU5BU5D_tF6D5F89A752F557BCBFDE82CA0F4C7CB0ABF364B* L_15 = V_0; int32_t L_16 = V_6; NullCheck(L_15); int32_t L_17 = L_16; BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 L_18 = (L_15)->GetAt(static_cast(L_17)); V_7 = L_18; // if (memoryRegion.sizeInBits == 0) BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 L_19 = V_7; uint32_t L_20 = L_19.get_sizeInBits_1(); if (L_20) { goto IL_00c3; } } { // var listenerCount = numMonitors; int32_t L_21 = V_1; V_9 = L_21; // var memoryRegionCount = numMonitors; int32_t L_22 = V_1; V_10 = L_22; // m_StateChangeMonitors[deviceIndex].listeners.EraseAtWithCapacity(ref listenerCount, i); StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_23 = __this->get_m_StateChangeMonitors_34(); int32_t L_24 = ___deviceIndex0; NullCheck(L_23); StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10* L_25 = ((L_23)->GetAddressAt(static_cast(L_24)))->get_listeners_1(); int32_t L_26 = V_6; ArrayHelpers_EraseAtWithCapacity_TisStateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757_m838ED52068AE104603FB0EDEF1C1CD8347FC4BCF(L_25, (int32_t*)(&V_9), L_26, /*hidden argument*/ArrayHelpers_EraseAtWithCapacity_TisStateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757_m838ED52068AE104603FB0EDEF1C1CD8347FC4BCF_RuntimeMethod_var); // memoryRegions.EraseAtWithCapacity(ref memoryRegionCount, i); BitRegionU5BU5D_tF6D5F89A752F557BCBFDE82CA0F4C7CB0ABF364B* L_27 = V_0; int32_t L_28 = V_6; ArrayHelpers_EraseAtWithCapacity_TisBitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0_m60444B4131851A54E921C04FE9219E5413138EA3(L_27, (int32_t*)(&V_10), L_28, /*hidden argument*/ArrayHelpers_EraseAtWithCapacity_TisBitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0_m60444B4131851A54E921C04FE9219E5413138EA3_RuntimeMethod_var); // signals.SetLength(numMonitors - 1); int32_t L_29 = V_1; DynamicBitfield_SetLength_m2D8C624DA69C1A4113CF406685A345D42BD27C13((DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 *)(&V_3), ((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)1)), /*hidden argument*/NULL); // haveChangedSignalsBitfield = true; V_4 = (bool)1; // --numMonitors; int32_t L_30 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)1)); // --i; int32_t L_31 = V_6; V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)1)); // continue; goto IL_00f4; } IL_00c3: { // var overlap = newEventMemoryRegion.Overlap(memoryRegion); BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 L_32 = V_7; BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 L_33; L_33 = BitRegion_Overlap_mFA7E45CBA53B12C8534600D1CEF31DFB1BB7092C((BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 *)(&V_5), L_32, /*hidden argument*/NULL); V_8 = L_33; // if (overlap.isEmpty || MemoryHelpers.Compare(oldStateOfDevice, (byte*)newStateFromEvent - newStateOffsetInBytes, overlap)) bool L_34; L_34 = BitRegion_get_isEmpty_m608F597221B7276C51BFDEABF41AD2CFA8537913((BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 *)(&V_8), /*hidden argument*/NULL); if (L_34) { goto IL_00f4; } } { void* L_35 = ___oldStateOfDevice2; void* L_36 = ___newStateFromEvent1; uint32_t L_37 = ___newStateOffsetInBytes4; BitRegion_t0A31F0D449F981815087F908462AF4D5C07DE8A0 L_38 = V_8; bool L_39; L_39 = MemoryHelpers_Compare_mAFCD2F3CDF9C3EDAF7B843E18C3A34D35685C211((void*)(void*)L_35, (void*)(void*)((void*)il2cpp_codegen_subtract((intptr_t)L_36, (intptr_t)((uintptr_t)L_37))), L_38, /*hidden argument*/NULL); if (L_39) { goto IL_00f4; } } { // signals.SetBit(i); int32_t L_40 = V_6; DynamicBitfield_SetBit_m1ABA9E44DEDE71266B8FD2115719B0875E73FD43((DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 *)(&V_3), L_40, /*hidden argument*/NULL); // haveChangedSignalsBitfield = true; V_4 = (bool)1; // signalled = true; V_2 = (bool)1; } IL_00f4: { // for (var i = 0; i < numMonitors; ++i) int32_t L_41 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1)); } IL_00fa: { // for (var i = 0; i < numMonitors; ++i) int32_t L_42 = V_6; int32_t L_43 = V_1; if ((((int32_t)L_42) < ((int32_t)L_43))) { goto IL_006d; } } { // if (haveChangedSignalsBitfield) bool L_44 = V_4; if (!L_44) { goto IL_0118; } } { // m_StateChangeMonitors[deviceIndex].signalled = signals; StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_45 = __this->get_m_StateChangeMonitors_34(); int32_t L_46 = ___deviceIndex0; NullCheck(L_45); DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 L_47 = V_3; ((L_45)->GetAddressAt(static_cast(L_46)))->set_signalled_2(L_47); } IL_0118: { // m_StateChangeMonitors[deviceIndex].needToCompactArrays = false; StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_48 = __this->get_m_StateChangeMonitors_34(); int32_t L_49 = ___deviceIndex0; NullCheck(L_48); ((L_48)->GetAddressAt(static_cast(L_49)))->set_needToCompactArrays_4((bool)0); // return signalled; bool L_50 = V_2; return L_50; } } // System.Void UnityEngine.InputSystem.InputManager::FireStateChangeNotifications(System.Int32,System.Double,UnityEngine.InputSystem.LowLevel.InputEvent*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_FireStateChangeNotifications_m9D195BC719E2E6EE573881342C4A5D80B9E7BA0E (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, int32_t ___deviceIndex0, double ___internalTime1, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputStateChangeMonitor_t5F50ED403021CCE28E9B9955F770E5A05EF7B152_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 * V_0 = NULL; StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10** V_1 = NULL; double V_2 = 0.0; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 V_3; memset((&V_3), 0, sizeof(V_3)); int32_t V_4 = 0; StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757 V_5; memset((&V_5), 0, sizeof(V_5)); Exception_t * V_6 = NULL; uint32_t V_7 = 0; int32_t V_8 = 0; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // ref var signals = ref m_StateChangeMonitors[deviceIndex].signalled; StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_0 = __this->get_m_StateChangeMonitors_34(); int32_t L_1 = ___deviceIndex0; NullCheck(L_0); DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 * L_2 = ((L_0)->GetAddressAt(static_cast(L_1)))->get_address_of_signalled_2(); V_0 = (DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 *)L_2; // ref var listeners = ref m_StateChangeMonitors[deviceIndex].listeners; StateChangeMonitorsForDeviceU5BU5D_t4C364C88ABDD3FE860869EA9B64A5686D241B4FE* L_3 = __this->get_m_StateChangeMonitors_34(); int32_t L_4 = ___deviceIndex0; NullCheck(L_3); StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10** L_5 = ((L_3)->GetAddressAt(static_cast(L_4)))->get_address_of_listeners_1(); V_1 = (StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10**)L_5; // var time = internalTime - InputRuntime.s_CurrentTimeOffsetToRealtimeSinceStartup; double L_6 = ___internalTime1; double L_7 = ((InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_il2cpp_TypeInfo_var))->get_s_CurrentTimeOffsetToRealtimeSinceStartup_1(); V_2 = ((double)il2cpp_codegen_subtract((double)L_6, (double)L_7)); // var tempEvent = new InputEvent(new FourCC('F', 'A', 'K', 'E'), InputEvent.kBaseEventSize, -1, internalTime); FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_8; memset((&L_8), 0, sizeof(L_8)); FourCC__ctor_mEF52BABF36FD0F6E63A5CD7C1520AEFDAC9FCC14((&L_8), ((int32_t)70), ((int32_t)65), ((int32_t)75), ((int32_t)69), /*hidden argument*/NULL); double L_9 = ___internalTime1; InputEvent__ctor_mAA991FC4DC45EBDC8E3931FE011918B60EF31E52((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(&V_3), L_8, ((int32_t)20), (-1), L_9, /*hidden argument*/NULL); // if (eventPtr == null) InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_10 = ___eventPtr2; if ((!(((uintptr_t)L_10) == ((uintptr_t)((uintptr_t)0))))) { goto IL_0052; } } { // eventPtr = (InputEvent*)UnsafeUtility.AddressOf(ref tempEvent); void* L_11; L_11 = il2cpp_codegen_unsafe_cast((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(&V_3)); ___eventPtr2 = (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_11; } IL_0052: { // eventPtr->handled = false; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_12 = ___eventPtr2; InputEvent_set_handled_m4B9B0F6A38E59907F18BFC1AB1CC2CB41C6A9FE1((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_12, (bool)0, /*hidden argument*/NULL); // for (var i = 0; i < signals.length; ++i) V_4 = 0; goto IL_0150; } IL_0061: { // if (!signals.TestBit(i)) DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 * L_13 = V_0; int32_t L_14 = V_4; bool L_15; L_15 = DynamicBitfield_TestBit_m8D87EC2C781F91072A9605C75859F602DBDC26E8((DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 *)L_13, L_14, /*hidden argument*/NULL); if (!L_15) { goto IL_014a; } } { // var listener = listeners[i]; StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10** L_16 = V_1; StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10* L_17 = *((StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10**)L_16); int32_t L_18 = V_4; NullCheck(L_17); int32_t L_19 = L_18; StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757 L_20 = (L_17)->GetAt(static_cast(L_19)); V_5 = L_20; } IL_0079: try { // begin try (depth: 1) // listener.monitor.NotifyControlStateChanged(listener.control, time, eventPtr, // listener.monitorIndex); StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757 L_21 = V_5; RuntimeObject* L_22 = L_21.get_monitor_1(); StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757 L_23 = V_5; InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_24 = L_23.get_control_0(); double L_25 = V_2; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_26 = ___eventPtr2; InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 L_27; L_27 = InputEventPtr_op_Implicit_m929BCCB27CE3B2C2BD9B2C43E49FDCB1F2933AB5((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_26, /*hidden argument*/NULL); StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757 L_28 = V_5; int64_t L_29 = L_28.get_monitorIndex_2(); NullCheck(L_22); InterfaceActionInvoker4< InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *, double, InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 , int64_t >::Invoke(0 /* System.Void UnityEngine.InputSystem.LowLevel.IInputStateChangeMonitor::NotifyControlStateChanged(UnityEngine.InputSystem.InputControl,System.Double,UnityEngine.InputSystem.LowLevel.InputEventPtr,System.Int64) */, IInputStateChangeMonitor_t5F50ED403021CCE28E9B9955F770E5A05EF7B152_il2cpp_TypeInfo_var, L_22, L_24, L_25, L_27, L_29); // } goto IL_00da; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_009c; } throw e; } CATCH_009c: { // begin catch(System.Exception) // catch (Exception exception) V_6 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)); // Debug.LogError( // $"Exception '{exception.GetType().Name}' thrown from state change monitor '{listener.monitor.GetType().Name}' on '{listener.control}'"); Exception_t * L_30 = V_6; NullCheck(L_30); Type_t * L_31; L_31 = Exception_GetType_mC5B8B5C944B326B751282AB0E8C25A7F85457D9F(L_30, /*hidden argument*/NULL); NullCheck(L_31); String_t* L_32; L_32 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_31); StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757 L_33 = V_5; RuntimeObject* L_34 = L_33.get_monitor_1(); NullCheck(L_34); Type_t * L_35; L_35 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_34, /*hidden argument*/NULL); NullCheck(L_35); String_t* L_36; L_36 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_35); StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757 L_37 = V_5; InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_38 = L_37.get_control_0(); String_t* L_39; L_39 = String_Format_mD0D523A440845BA7F58E68187E029DC9AB821CED(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA80128F105C22FB8901159F074B932CB5A956025)), L_32, L_36, L_38, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var))); Debug_LogError_m5952BCE5DC0EF798B31FA983B9CE42A5A1F82DE1(L_39, /*hidden argument*/NULL); // Debug.LogException(exception); Exception_t * L_40 = V_6; Debug_LogException_m418B8879895C54AF03169B53DAA24EE9067E3DC7(L_40, /*hidden argument*/NULL); // } IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_00da; } // end catch (depth: 1) IL_00da: { // if (eventPtr->handled) InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_41 = ___eventPtr2; bool L_42; L_42 = InputEvent_get_handled_m99F98A3B1E3678E4EFD0B6893916F315A027E151((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_41, /*hidden argument*/NULL); if (!L_42) { goto IL_0142; } } { // var groupIndex = listeners[i].groupIndex; StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10** L_43 = V_1; StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10* L_44 = *((StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10**)L_43); int32_t L_45 = V_4; NullCheck(L_44); uint32_t L_46 = ((L_44)->GetAddressAt(static_cast(L_45)))->get_groupIndex_3(); V_7 = L_46; // for (var n = i + 1; n < signals.length; ++n) int32_t L_47 = V_4; V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)1)); goto IL_0131; } IL_00fa: { // if (listeners[n].groupIndex == groupIndex && listeners[n].monitor == listener.monitor) StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10** L_48 = V_1; StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10* L_49 = *((StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10**)L_48); int32_t L_50 = V_8; NullCheck(L_49); uint32_t L_51 = ((L_49)->GetAddressAt(static_cast(L_50)))->get_groupIndex_3(); uint32_t L_52 = V_7; if ((!(((uint32_t)L_51) == ((uint32_t)L_52)))) { goto IL_012b; } } { StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10** L_53 = V_1; StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10* L_54 = *((StateChangeMonitorListenerU5BU5D_tDAD5F58C5DE40F3506B68B397214BA6D4D94BC10**)L_53); int32_t L_55 = V_8; NullCheck(L_54); RuntimeObject* L_56 = ((L_54)->GetAddressAt(static_cast(L_55)))->get_monitor_1(); StateChangeMonitorListener_t438EEB3B8EC5C287AACCE8321BE5B283ACCB7757 L_57 = V_5; RuntimeObject* L_58 = L_57.get_monitor_1(); if ((!(((RuntimeObject*)(RuntimeObject*)L_56) == ((RuntimeObject*)(RuntimeObject*)L_58)))) { goto IL_012b; } } { // signals.ClearBit(n); DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 * L_59 = V_0; int32_t L_60 = V_8; DynamicBitfield_ClearBit_mF0B853AE22B6A0E34F49AE7EB7692D8A79DBD39C((DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 *)L_59, L_60, /*hidden argument*/NULL); } IL_012b: { // for (var n = i + 1; n < signals.length; ++n) int32_t L_61 = V_8; V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_61, (int32_t)1)); } IL_0131: { // for (var n = i + 1; n < signals.length; ++n) int32_t L_62 = V_8; DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 * L_63 = V_0; int32_t L_64 = L_63->get_length_1(); if ((((int32_t)L_62) < ((int32_t)L_64))) { goto IL_00fa; } } { // eventPtr->handled = false; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_65 = ___eventPtr2; InputEvent_set_handled_m4B9B0F6A38E59907F18BFC1AB1CC2CB41C6A9FE1((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_65, (bool)0, /*hidden argument*/NULL); } IL_0142: { // signals.ClearBit(i); DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 * L_66 = V_0; int32_t L_67 = V_4; DynamicBitfield_ClearBit_mF0B853AE22B6A0E34F49AE7EB7692D8A79DBD39C((DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 *)L_66, L_67, /*hidden argument*/NULL); } IL_014a: { // for (var i = 0; i < signals.length; ++i) int32_t L_68 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_68, (int32_t)1)); } IL_0150: { // for (var i = 0; i < signals.length; ++i) int32_t L_69 = V_4; DynamicBitfield_t9EE258E0EEA93B8B97D6FE8A70CE8C1C9E56C0C5 * L_70 = V_0; int32_t L_71 = L_70->get_length_1(); if ((((int32_t)L_69) < ((int32_t)L_71))) { goto IL_0061; } } { // } return; } } // System.Void UnityEngine.InputSystem.InputManager::ProcessStateChangeMonitorTimeouts() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_ProcessStateChangeMonitorTimeouts_m8CD0C1E82C9C5A59E1E342230385D9F8E319E9BD (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputStateChangeMonitor_t5F50ED403021CCE28E9B9955F770E5A05EF7B152_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_SetLength_m1F4DEB2721EBC5B480DBA3C72058201689A8DF80_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_set_Item_m2B7EE5F97EEA88C36851609313B780BB25E8096A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } double V_0 = 0.0; int32_t V_1 = 0; int32_t V_2 = 0; StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 V_3; memset((&V_3), 0, sizeof(V_3)); { // if (m_StateChangeMonitorTimeouts.length == 0) InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * L_0 = __this->get_address_of_m_StateChangeMonitorTimeouts_35(); int32_t L_1 = L_0->get_length_0(); if (L_1) { goto IL_000e; } } { // return; return; } IL_000e: { // var currentTime = m_Runtime.currentTime - InputRuntime.s_CurrentTimeOffsetToRealtimeSinceStartup; RuntimeObject* L_2 = __this->get_m_Runtime_31(); NullCheck(L_2); double L_3; L_3 = InterfaceFuncInvoker0< double >::Invoke(19 /* System.Double UnityEngine.InputSystem.LowLevel.IInputRuntime::get_currentTime() */, IInputRuntime_t0A177D923A451CB9F40A355C0CA60DDAC6D29946_il2cpp_TypeInfo_var, L_2); double L_4 = ((InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t86C5A649BE0CD84BFE7B27910A47F1C83E5108B8_il2cpp_TypeInfo_var))->get_s_CurrentTimeOffsetToRealtimeSinceStartup_1(); V_0 = ((double)il2cpp_codegen_subtract((double)L_3, (double)L_4)); // var remainingTimeoutCount = 0; V_1 = 0; // for (var i = 0; i < m_StateChangeMonitorTimeouts.length; ++i) V_2 = 0; goto IL_009e; } IL_0026: { // if (m_StateChangeMonitorTimeouts[i].control == null) InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * L_5 = __this->get_address_of_m_StateChangeMonitorTimeouts_35(); int32_t L_6 = V_2; StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 L_7; L_7 = InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48((InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A *)L_5, L_6, /*hidden argument*/InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48_RuntimeMethod_var); InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_8 = L_7.get_control_0(); if (!L_8) { goto IL_009a; } } { // var timerExpirationTime = m_StateChangeMonitorTimeouts[i].time; InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * L_9 = __this->get_address_of_m_StateChangeMonitorTimeouts_35(); int32_t L_10 = V_2; StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 L_11; L_11 = InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48((InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A *)L_9, L_10, /*hidden argument*/InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48_RuntimeMethod_var); double L_12 = L_11.get_time_1(); // if (timerExpirationTime <= currentTime) double L_13 = V_0; if ((!(((double)L_12) <= ((double)L_13)))) { goto IL_007a; } } { // var timeout = m_StateChangeMonitorTimeouts[i]; InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * L_14 = __this->get_address_of_m_StateChangeMonitorTimeouts_35(); int32_t L_15 = V_2; StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 L_16; L_16 = InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48((InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A *)L_14, L_15, /*hidden argument*/InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48_RuntimeMethod_var); V_3 = L_16; // timeout.monitor.NotifyTimerExpired(timeout.control, // currentTime, timeout.monitorIndex, timeout.timerIndex); StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 L_17 = V_3; RuntimeObject* L_18 = L_17.get_monitor_2(); StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 L_19 = V_3; InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * L_20 = L_19.get_control_0(); double L_21 = V_0; StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 L_22 = V_3; int64_t L_23 = L_22.get_monitorIndex_3(); StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 L_24 = V_3; int32_t L_25 = L_24.get_timerIndex_4(); NullCheck(L_18); InterfaceActionInvoker4< InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 *, double, int64_t, int32_t >::Invoke(1 /* System.Void UnityEngine.InputSystem.LowLevel.IInputStateChangeMonitor::NotifyTimerExpired(UnityEngine.InputSystem.InputControl,System.Double,System.Int64,System.Int32) */, IInputStateChangeMonitor_t5F50ED403021CCE28E9B9955F770E5A05EF7B152_il2cpp_TypeInfo_var, L_18, L_20, L_21, L_23, L_25); // } goto IL_009a; } IL_007a: { // if (i != remainingTimeoutCount) int32_t L_26 = V_2; int32_t L_27 = V_1; if ((((int32_t)L_26) == ((int32_t)L_27))) { goto IL_0096; } } { // m_StateChangeMonitorTimeouts[remainingTimeoutCount] = m_StateChangeMonitorTimeouts[i]; InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * L_28 = __this->get_address_of_m_StateChangeMonitorTimeouts_35(); int32_t L_29 = V_1; InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * L_30 = __this->get_address_of_m_StateChangeMonitorTimeouts_35(); int32_t L_31 = V_2; StateChangeMonitorTimeout_tF444060D4A082452E9CF9D6927AAA860A1194391 L_32; L_32 = InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48((InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A *)L_30, L_31, /*hidden argument*/InlinedArray_1_get_Item_mE73C90CF8F43876581A6B4D74324765F5409EB48_RuntimeMethod_var); InlinedArray_1_set_Item_m2B7EE5F97EEA88C36851609313B780BB25E8096A((InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A *)L_28, L_29, L_32, /*hidden argument*/InlinedArray_1_set_Item_m2B7EE5F97EEA88C36851609313B780BB25E8096A_RuntimeMethod_var); } IL_0096: { // ++remainingTimeoutCount; int32_t L_33 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); } IL_009a: { // for (var i = 0; i < m_StateChangeMonitorTimeouts.length; ++i) int32_t L_34 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)1)); } IL_009e: { // for (var i = 0; i < m_StateChangeMonitorTimeouts.length; ++i) int32_t L_35 = V_2; InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * L_36 = __this->get_address_of_m_StateChangeMonitorTimeouts_35(); int32_t L_37 = L_36->get_length_0(); if ((((int32_t)L_35) < ((int32_t)L_37))) { goto IL_0026; } } { // m_StateChangeMonitorTimeouts.SetLength(remainingTimeoutCount); InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A * L_38 = __this->get_address_of_m_StateChangeMonitorTimeouts_35(); int32_t L_39 = V_1; InlinedArray_1_SetLength_m1F4DEB2721EBC5B480DBA3C72058201689A8DF80((InlinedArray_1_tBFF8308CE5EDA3426BE79DD158C508CC6F129C8A *)L_38, L_39, /*hidden argument*/InlinedArray_1_SetLength_m1F4DEB2721EBC5B480DBA3C72058201689A8DF80_RuntimeMethod_var); // } return; } } // System.Void UnityEngine.InputSystem.InputManager::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager__ctor_mD923EED368255C353A42475FE6C67110DFD356FF (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Int64 UnityEngine.InputSystem.InputManager::b__72_0(UnityEngine.InputSystem.LowLevel.InputDeviceCommand&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputManager_U3CTryFindMatchingControlLayoutU3Eb__72_0_m9782F997CC2BF5AD783CEE16DEDFDA81447136FA (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * ___commandRef0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntimeExtensions_DeviceCommand_TisInputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3_m17A9989BF690B87F556966B455409A987C18C71D_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // if (m_DeviceFindExecuteCommandDeviceId == InputDevice.InvalidDeviceId) int32_t L_0 = __this->get_m_DeviceFindExecuteCommandDeviceId_30(); if (L_0) { goto IL_000b; } } { // return InputDeviceCommand.GenericFailure; return ((int64_t)((int64_t)(-1))); } IL_000b: { // return m_Runtime.DeviceCommand(m_DeviceFindExecuteCommandDeviceId, ref commandRef); RuntimeObject* L_1 = __this->get_m_Runtime_31(); int32_t L_2 = __this->get_m_DeviceFindExecuteCommandDeviceId_30(); InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 * L_3 = ___commandRef0; int64_t L_4; L_4 = InputRuntimeExtensions_DeviceCommand_TisInputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3_m17A9989BF690B87F556966B455409A987C18C71D(L_1, L_2, (InputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3 *)L_3, /*hidden argument*/InputRuntimeExtensions_DeviceCommand_TisInputDeviceCommand_tBA7404132CBAC1E564F79E5B8B6A258527976AD3_m17A9989BF690B87F556966B455409A987C18C71D_RuntimeMethod_var); return L_4; } } #ifdef __clang__ #pragma clang diagnostic pop #endif IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_interfaceName_mCEBA87B35556BD0D03EADDD724B08266120BE761_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method) { { // get => m_InterfaceName; String_t* L_0 = __this->get_m_InterfaceName_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputDeviceDescription_set_interfaceName_mABE1A9818925CBC790F664066FB1EBE4C834452C_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, String_t* ___value0, const RuntimeMethod* method) { { // set => m_InterfaceName = value; String_t* L_0 = ___value0; __this->set_m_InterfaceName_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_deviceClass_m04BB88F15F817900CF7457A2E7FC65F5618AD1AF_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method) { { // get => m_DeviceClass; String_t* L_0 = __this->get_m_DeviceClass_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputDeviceDescription_set_deviceClass_m8C006A98A4CE08B4473C4D1D4F5291B452DE85A8_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, String_t* ___value0, const RuntimeMethod* method) { { // set => m_DeviceClass = value; String_t* L_0 = ___value0; __this->set_m_DeviceClass_1(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_manufacturer_m42C503D82A264C3510752BD1E726D8ED3111E869_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method) { { // get => m_Manufacturer; String_t* L_0 = __this->get_m_Manufacturer_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputDeviceDescription_set_manufacturer_m7D0DEDFD9CF9F32A99A27CEB5316B85026150191_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, String_t* ___value0, const RuntimeMethod* method) { { // set => m_Manufacturer = value; String_t* L_0 = ___value0; __this->set_m_Manufacturer_2(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_product_mEECD8A9018BF8C49B89256C912EC0AAEE90D4A82_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method) { { // get => m_Product; String_t* L_0 = __this->get_m_Product_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputDeviceDescription_set_product_m7BB0FC8611C3D4CCE2412F603A048A11C9838645_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, String_t* ___value0, const RuntimeMethod* method) { { // set => m_Product = value; String_t* L_0 = ___value0; __this->set_m_Product_3(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_serial_m259412E6F7627E1310535A55FB9BE03146C54A55_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method) { { // get => m_Serial; String_t* L_0 = __this->get_m_Serial_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputDeviceDescription_set_serial_m751AB1FADCB10147BAD9DC499D18AD3E38ECC310_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, String_t* ___value0, const RuntimeMethod* method) { { // set => m_Serial = value; String_t* L_0 = ___value0; __this->set_m_Serial_4(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_version_mF03973E700CF32DEDDF4374AF5596E618FC21D95_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method) { { // get => m_Version; String_t* L_0 = __this->get_m_Version_5(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputDeviceDescription_set_version_m3625E12F52EB64C19673E68D8B0D19211E460CD0_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, String_t* ___value0, const RuntimeMethod* method) { { // set => m_Version = value; String_t* L_0 = ___value0; __this->set_m_Version_5(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_capabilities_m3871219ECAC10766CBAB256E0612674368D5C362_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, const RuntimeMethod* method) { { // get => m_Capabilities; String_t* L_0 = __this->get_m_Capabilities_6(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputDeviceDescription_set_capabilities_m3A60E518C919C5554215297212C36B9C8AB940E1_inline (InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 * __this, String_t* ___value0, const RuntimeMethod* method) { { // set => m_Capabilities = value; String_t* L_0 = ___value0; __this->set_m_Capabilities_6(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline (String_t* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_stringLength_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FourCC__ctor_m95DEC137F55FF2E882FA66486D5937072FA2888E_inline (FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 * __this, int32_t ___code0, const RuntimeMethod* method) { { // m_Code = code; int32_t L_0 = ___code0; __this->set_m_Code_0(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t FourCC_op_Implicit_m31DD5572C70000C1AA4A97915EB6A7C165C53DFA_inline (FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___fourCC0, const RuntimeMethod* method) { { // return fourCC.m_Code; FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_0 = ___fourCC0; int32_t L_1 = L_0.get_m_Code_0(); return L_1; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t NumberHelpers_AlignToMultipleOf_mAC36042E2A9F764DF404617DB262C5FB611212E7_inline (uint32_t ___number0, uint32_t ___alignment1, const RuntimeMethod* method) { uint32_t V_0 = 0; { // var remainder = number % alignment; uint32_t L_0 = ___number0; uint32_t L_1 = ___alignment1; V_0 = ((int32_t)((uint32_t)(int32_t)L_0%(uint32_t)(int32_t)L_1)); // if (remainder == 0) uint32_t L_2 = V_0; if (L_2) { goto IL_0009; } } { // return number; uint32_t L_3 = ___number0; return L_3; } IL_0009: { // return number + alignment - remainder; uint32_t L_4 = ___number0; uint32_t L_5 = ___alignment1; uint32_t L_6 = V_0; return ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)L_5)), (int32_t)L_6)); } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputEventPtr__ctor_m9EBF5134C7CC18F85542C146674EAE1BF7F29110_inline (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * ___eventPtr0, const RuntimeMethod* method) { { // m_EventPtr = eventPtr; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_0 = ___eventPtr0; __this->set_m_EventPtr_0((InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t InputEventBuffer_get_sizeInBytes_m026FE298C8E6BD5A6354CF22445743E108EBB338_inline (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method) { { // public long sizeInBytes => m_SizeInBytes; int64_t L_0 = __this->get_m_SizeInBytes_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputEventBuffer_get_eventCount_m50712505E0393BA3A20563E64DAA7A6D75854E3F_inline (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method) { { // public int eventCount => m_EventCount; int32_t L_0 = __this->get_m_EventCount_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 InputEventBuffer_get_data_m5E230CE9CC093445705ED34CDA93AF7527AF945B_inline (InputEventBuffer_t5837FA1A7F4845FA074AD7A3C2761725E2761CCA * __this, const RuntimeMethod* method) { { // public NativeArray data => m_Buffer; NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_0 = __this->get_m_Buffer_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t NumberHelpers_AlignToMultipleOf_mA69DF1D1D4E850C2DFF4D3FE946ED65D9C4615DD_inline (int32_t ___number0, int32_t ___alignment1, const RuntimeMethod* method) { int32_t V_0 = 0; { // var remainder = number % alignment; int32_t L_0 = ___number0; int32_t L_1 = ___alignment1; V_0 = ((int32_t)((int32_t)L_0%(int32_t)L_1)); // if (remainder == 0) int32_t L_2 = V_0; if (L_2) { goto IL_0009; } } { // return number; int32_t L_3 = ___number0; return L_3; } IL_0009: { // return number + alignment - remainder; int32_t L_4 = ___number0; int32_t L_5 = ___alignment1; int32_t L_6 = V_0; return ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)L_5)), (int32_t)L_6)); } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t NumberHelpers_AlignToMultipleOf_mCF19A2B038F76E002BF488B659ED1A54778E0645_inline (int64_t ___number0, int64_t ___alignment1, const RuntimeMethod* method) { int64_t V_0 = 0; { // var remainder = number % alignment; int64_t L_0 = ___number0; int64_t L_1 = ___alignment1; V_0 = ((int64_t)((int64_t)L_0%(int64_t)L_1)); // if (remainder == 0) int64_t L_2 = V_0; if (L_2) { goto IL_0009; } } { // return number; int64_t L_3 = ___number0; return L_3; } IL_0009: { // return number + alignment - remainder; int64_t L_4 = ___number0; int64_t L_5 = ___alignment1; int64_t L_6 = V_0; return ((int64_t)il2cpp_codegen_subtract((int64_t)((int64_t)il2cpp_codegen_add((int64_t)L_4, (int64_t)L_5)), (int64_t)L_6)); } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * InputEventPtr_get_data_m23324B1E4068E48168D6D06CEF9CC061D1E2D694_inline (InputEventPtr_t3ECDD4FDE129B0CD8021DF46D8D01D941F4AE5C1 * __this, const RuntimeMethod* method) { { // public InputEvent* data => m_EventPtr; InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 * L_0 = __this->get_m_EventPtr_0(); return (InputEvent_t0E4B1A66D8B3273D8188F3902F40C5E8BFF6E234 *)(L_0); } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool InputEventStream_get_isOpen_m6813A58E116448D4957B213FA9FD7DAA57D7B8D4_inline (InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * __this, const RuntimeMethod* method) { { // public bool isOpen => m_IsOpen; bool L_0 = __this->get_m_IsOpen_10(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputEventStream_get_numEventsRetainedInBuffer_m183F6D823B00E4613353548D7D202D4610EC15F2_inline (InputEventStream_t865DFD318AD1B67CF6D3701A97711E1EE6EE6755 * __this, const RuntimeMethod* method) { { // public int numEventsRetainedInBuffer => m_NumEventsRetainedInBuffer; int32_t L_0 = __this->get_m_NumEventsRetainedInBuffer_9(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputDevice_get_deviceId_mDDE1531F7B9A1E03B17094C7AC37E58177E4AA0D_inline (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method) { { // public int deviceId => m_DeviceId; int32_t L_0 = __this->get_m_DeviceId_25(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputSettings_get_updateMode_m139C9F1C6191E7C6209426D23BEE5C5816AC7280_inline (InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * __this, const RuntimeMethod* method) { { // get => m_UpdateMode; int32_t L_0 = __this->get_m_UpdateMode_5(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DeviceInfo_get_deviceId_m4CA1031F6F24EFD5C78EB7B05EAEDAB926FEC3B0_inline (DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * __this, const RuntimeMethod* method) { { // get => m_DeviceId; int32_t L_0 = __this->get_m_DeviceId_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* DeviceInfo_get_layout_m3109AA525FB0E7DE59C7ADF62E85D35D8FC5A76F_inline (DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * __this, const RuntimeMethod* method) { { // get => m_Layout; String_t* L_0 = __this->get_m_Layout_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 DeviceInfo_get_stateFormat_m1B94E3D7F14F239074C2D0208F79BFEB7FBFC6BA_inline (DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * __this, const RuntimeMethod* method) { { // get => m_StateFormat; FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_0 = __this->get_m_StateFormat_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DeviceInfo_get_stateSizeInBytes_mD3FB033842B290EF701D2CC5E5553B07D0223B9B_inline (DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * __this, const RuntimeMethod* method) { { // get => m_StateSizeInBytes; int32_t L_0 = __this->get_m_StateSizeInBytes_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DeviceInfo_set_deviceId_mFE9C7FEFFBEE3349620D5143B15A30E2D5B08534_inline (DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * __this, int32_t ___value0, const RuntimeMethod* method) { { // set => m_DeviceId = value; int32_t L_0 = ___value0; __this->set_m_DeviceId_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DeviceInfo_set_layout_m0262E41ECF890B2E0C124864F9E0D13929FCC8CF_inline (DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * __this, String_t* ___value0, const RuntimeMethod* method) { { // set => m_Layout = value; String_t* L_0 = ___value0; __this->set_m_Layout_1(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DeviceInfo_set_stateFormat_m5D4E48D9F02EF684A946AD61A8F214D87D9FF82C_inline (DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * __this, FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 ___value0, const RuntimeMethod* method) { { // set => m_StateFormat = value; FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_0 = ___value0; __this->set_m_StateFormat_2(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DeviceInfo_set_stateSizeInBytes_m467A04204331C39AF96CF6E4753FFAB4460F6470_inline (DeviceInfo_t334200561D480CB3E3BC50F19B78891BBB77BE9F * __this, int32_t ___value0, const RuntimeMethod* method) { { // set => m_StateSizeInBytes = value; int32_t L_0 = ___value0; __this->set_m_StateSizeInBytes_3(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B InputControl_get_stateBlock_m0ECA3324A1A42DDE5085EAE0A82D7C0447143252_inline (InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * __this, const RuntimeMethod* method) { { // public InputStateBlock stateBlock => m_StateBlock; InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B L_0 = __this->get_m_StateBlock_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 InputStateBlock_get_format_m99B8AE2CD603AC198E543FA369ACEADB725E2689_inline (InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * __this, const RuntimeMethod* method) { { // public FourCC format { get; set; } FourCC_t8D38CDCEAD02FE53A6C2E9AF01354E4E5AB400A9 L_0 = __this->get_U3CformatU3Ek__BackingField_33(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TriggerState_get_phase_m8BC034C0171DFBEFFE326B22BED602AB414D8CB8_inline (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * __this, const RuntimeMethod* method) { { // get => (InputActionPhase)m_Phase; uint8_t L_0 = __this->get_m_Phase_3(); return (int32_t)(L_0); } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double TriggerState_get_time_mEF5F8E6EA1177F885A7F1EE8FBEF374EFB43660C_inline (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * __this, const RuntimeMethod* method) { { // get => m_Time; double L_0 = __this->get_m_Time_7(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double TriggerState_get_startTime_m465D962E69624146FD140452618312328005299A_inline (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * __this, const RuntimeMethod* method) { { // get => m_StartTime; double L_0 = __this->get_m_StartTime_8(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float TriggerState_get_magnitude_m173021159A016BD6FAF4DE2E83AD1E1BD19EA40B_inline (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * __this, const RuntimeMethod* method) { { // get => m_Magnitude; float L_0 = __this->get_m_Magnitude_11(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TriggerState_set_startTime_mED223305B4E6A406E1E7612531C10B783C665D85_inline (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * __this, double ___value0, const RuntimeMethod* method) { { // set => m_StartTime = value; double L_0 = ___value0; __this->set_m_StartTime_8(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TriggerState_get_mapIndex_m51582ABC29AFC6629760C66F15289E86CFCC3680_inline (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * __this, const RuntimeMethod* method) { { // get => m_MapIndex; uint8_t L_0 = __this->get_m_MapIndex_5(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TriggerState_get_bindingIndex_m0AC6E41222022188B9528FC31FBC0B519BF7F7DF_inline (TriggerState_t0DFC29612AAA2473244F3580C746BE71D6C57145 * __this, const RuntimeMethod* method) { { // get => m_BindingIndex; uint16_t L_0 = __this->get_m_BindingIndex_9(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_currentNumDevices_m1B672B2ACDFBB65FFE05FAC1E37CD8126BD39DC7_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, int32_t ___value0, const RuntimeMethod* method) { { // public int currentNumDevices { get; set; } int32_t L_0 = ___value0; __this->set_U3CcurrentNumDevicesU3Ek__BackingField_1(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_currentStateSizeInBytes_m129BFD4C4FBD76F7DAF2EDDEF78FD48AED3AC570_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, int32_t ___value0, const RuntimeMethod* method) { { // public int currentStateSizeInBytes { get; set; } int32_t L_0 = ___value0; __this->set_U3CcurrentStateSizeInBytesU3Ek__BackingField_3(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_currentControlCount_mF8260E222D6516E2493634792CF117824E4B8BD1_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, int32_t ___value0, const RuntimeMethod* method) { { // public int currentControlCount { get; set; } int32_t L_0 = ___value0; __this->set_U3CcurrentControlCountU3Ek__BackingField_4(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_currentControlCount_mFEC27CAEB3AFB76FDDA8AAE6B4CA64466E01D42B_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, const RuntimeMethod* method) { { // public int currentControlCount { get; set; } int32_t L_0 = __this->get_U3CcurrentControlCountU3Ek__BackingField_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_currentLayoutCount_m8E5458C009A176278C0ED815AE64A584D9CBE9D3_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, int32_t ___value0, const RuntimeMethod* method) { { // public int currentLayoutCount { get; set; } int32_t L_0 = ___value0; __this->set_U3CcurrentLayoutCountU3Ek__BackingField_5(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_currentLayoutCount_m24F5B56B4382F3DE3770351A840445FF4FC38D56_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, const RuntimeMethod* method) { { // public int currentLayoutCount { get; set; } int32_t L_0 = __this->get_U3CcurrentLayoutCountU3Ek__BackingField_5(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputSettings_get_backgroundBehavior_mFCF311E589790630CAC71ACD0E13F8D6472B3EBE_inline (InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * __this, const RuntimeMethod* method) { { // get => m_BackgroundBehavior; int32_t L_0 = __this->get_m_BackgroundBehavior_9(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 InputDevice_get_description_m3F54BB4D6E85ADD8CDBB2906821A9D828CAC8305_inline (InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * __this, const RuntimeMethod* method) { { // public InputDeviceDescription description => m_Description; InputDeviceDescription_tBE78411023CFED0A42110A1357D65BD6E5EDBB58 L_0 = __this->get_m_Description_28(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputStateBlock_set_byteOffset_mBDAEEE9085F06375925C28F921FC87ECA31C60DF_inline (InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * __this, uint32_t ___value0, const RuntimeMethod* method) { { // public uint byteOffset { get; set; } uint32_t L_0 = ___value0; __this->set_U3CbyteOffsetU3Ek__BackingField_34(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_maxNumDevices_mF480045465CDFC91FE23301300057D4B5F7716FF_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, const RuntimeMethod* method) { { // public int maxNumDevices { get; set; } int32_t L_0 = __this->get_U3CmaxNumDevicesU3Ek__BackingField_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_maxNumDevices_mD43CF4C39E736DB590117851167CD81BF09F048A_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, int32_t ___value0, const RuntimeMethod* method) { { // public int maxNumDevices { get; set; } int32_t L_0 = ___value0; __this->set_U3CmaxNumDevicesU3Ek__BackingField_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_maxStateSizeInBytes_mCC4CE8BDB98FAFCF687AD7B7E47E78626CF61FC9_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, const RuntimeMethod* method) { { // public int maxStateSizeInBytes { get; set; } int32_t L_0 = __this->get_U3CmaxStateSizeInBytesU3Ek__BackingField_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_maxStateSizeInBytes_m511A5A5BDD32D4D805D3414051A607BE712335E2_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, int32_t ___value0, const RuntimeMethod* method) { { // public int maxStateSizeInBytes { get; set; } int32_t L_0 = ___value0; __this->set_U3CmaxStateSizeInBytesU3Ek__BackingField_2(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputManager_get_updateMask_mF3D4D0E3E4AC121A3DECFD25A8BAFB7EC25FB312_inline (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { { // get => m_UpdateMask; int32_t L_0 = __this->get_m_UpdateMask_13(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t InputStateBlock_get_byteOffset_m68EF162227DEB77FFCA5C46605780C3387ADC019_inline (InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * __this, const RuntimeMethod* method) { { // public uint byteOffset { get; set; } uint32_t L_0 = __this->get_U3CbyteOffsetU3Ek__BackingField_34(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void* InputControl_get_defaultStatePtr_m37116C9D7D2F799DC929E931364954D8895854C1_inline (InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // protected internal unsafe void* defaultStatePtr => InputStateBuffers.s_DefaultStateBuffer; void* L_0 = ((InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_StaticFields*)il2cpp_codegen_static_fields_for(InputStateBuffers_t39A534EACF079F6045AA73AB30197C3965F53FCA_il2cpp_TypeInfo_var))->get_s_DefaultStateBuffer_7(); return (void*)(L_0); } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InternedString_ToLower_m3A1313A6EC45A43C5627D661669E434CA519F3E0_inline (InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED * __this, const RuntimeMethod* method) { { // return m_StringLowerCase; String_t* L_0 = __this->get_m_StringLowerCase_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F InputManager_get_processors_mE2E7DCBCB385B48AFA5B8EF95B35504E6BBD872E_inline (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { { // public TypeTable processors => m_Processors; TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_0 = __this->get_m_Processors_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F InputManager_get_interactions_m82239AA93F8937149018A1CC8114BCAB00E27FA1_inline (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { { // public TypeTable interactions => m_Interactions; TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_0 = __this->get_m_Interactions_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F InputManager_get_composites_m8CE950CB9C8AA8AA8C69F17363908C87196CD6A5_inline (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { { // public TypeTable composites => m_Composites; TypeTable_t4E41B03F931506BA07A120F6578A8CA47459C64F L_0 = __this->get_m_Composites_5(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float InputManager_get_pollingFrequency_m428EF9D329371C89836EAFDD89E8D0C707DE7B56_inline (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { { // get => m_PollingFrequency; float L_0 = __this->get_m_PollingFrequency_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t InputStateBlock_get_sizeInBits_mFA7DECC1FDC31AB8E7E9E773B096FEE1844FE21D_inline (InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * __this, const RuntimeMethod* method) { { // public uint sizeInBits { get; set; } uint32_t L_0 = __this->get_U3CsizeInBitsU3Ek__BackingField_36(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t InputStateBlock_get_bitOffset_m27E4210E69D0E10CC6FFBFEF43BBF3E7ED8C02FC_inline (InputStateBlock_tB9FCBE0F27DDBB11B04B0EC517712C29CC126A0B * __this, const RuntimeMethod* method) { { // public uint bitOffset { get; set; } uint32_t L_0 = __this->get_U3CbitOffsetU3Ek__BackingField_35(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * InputManager_get_settings_m274A9304D86B1B1E9BAAC775A9B34E0BFA502E2C_inline (InputManager_t9E534956EF45276E5D7E75B3EA03BF1AB0EC411F * __this, const RuntimeMethod* method) { { // return m_Settings; InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * L_0 = __this->get_m_Settings_33(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float InputSettings_get_defaultTapTime_mEF8E28ABA67B76EF4EBD0DEE624DFF1BA9C6C319_inline (InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * __this, const RuntimeMethod* method) { { // get => m_DefaultTapTime; float L_0 = __this->get_m_DefaultTapTime_15(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float InputSettings_get_multiTapDelayTime_mA93C3E2265EA91C6007417E443A396F12EA91694_inline (InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * __this, const RuntimeMethod* method) { { // get => m_MultiTapDelayTime; float L_0 = __this->get_m_MultiTapDelayTime_19(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float InputSettings_get_tapRadius_m3273C17196793FA7182F29FE3FB101F5D8A58992_inline (InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * __this, const RuntimeMethod* method) { { // get => m_TapRadius; float L_0 = __this->get_m_TapRadius_18(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float InputSettings_get_defaultButtonPressPoint_m340ACA5AD7B0079097AF1DFEBDD90825B5FA73ED_inline (InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * __this, const RuntimeMethod* method) { { // get => m_DefaultButtonPressPoint; float L_0 = __this->get_m_DefaultButtonPressPoint_13(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float InputSettings_get_buttonReleaseThreshold_m741CF35E58112957F384E0AFBFC5158A5DA90C25_inline (InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * __this, const RuntimeMethod* method) { { // get => m_ButtonReleaseThreshold; float L_0 = __this->get_m_ButtonReleaseThreshold_14(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_totalUpdateCount_m57DD154A08FC7CC50F7331CD376995A58FF462C2_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, const RuntimeMethod* method) { { // public int totalUpdateCount { get; set; } int32_t L_0 = __this->get_U3CtotalUpdateCountU3Ek__BackingField_8(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_totalUpdateCount_mEB3B729F1E6BD3F371F5F67C8B65463D5B0915E2_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, int32_t ___value0, const RuntimeMethod* method) { { // public int totalUpdateCount { get; set; } int32_t L_0 = ___value0; __this->set_U3CtotalUpdateCountU3Ek__BackingField_8(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputSettings_get_maxQueuedEventsPerUpdate_m1809C68BE71CC41E4E3C5E7511C1B632ECC1D091_inline (InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * __this, const RuntimeMethod* method) { { // get => m_MaxQueuedEventsPerUpdate; int32_t L_0 = __this->get_m_MaxQueuedEventsPerUpdate_7(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputSettings_get_maxEventBytesPerUpdate_m782AAA75751C64FFEBA1DF47C2C3E4E7DF86A32A_inline (InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * __this, const RuntimeMethod* method) { { // get => m_MaxEventBytesPerUpdate; int32_t L_0 = __this->get_m_MaxEventBytesPerUpdate_6(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool InputSettings_get_disableRedundantEventsMerging_m19AEF4E360CB24B411567AD8880658928D64F163_inline (InputSettings_t6BB36025CA211DD3BC679396BF905603A155FCB6 * __this, const RuntimeMethod* method) { { // get => m_DisableRedundantEventsMerging; bool L_0 = __this->get_m_DisableRedundantEventsMerging_20(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_totalEventCount_m84FE5F18390914A41DC10EDDBA0017A7FE78000C_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, const RuntimeMethod* method) { { // public int totalEventCount { get; set; } int32_t L_0 = __this->get_U3CtotalEventCountU3Ek__BackingField_7(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_totalEventCount_m9911E60B15700D08F77FC1259D55C1B65C7742D5_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, int32_t ___value0, const RuntimeMethod* method) { { // public int totalEventCount { get; set; } int32_t L_0 = ___value0; __this->set_U3CtotalEventCountU3Ek__BackingField_7(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_totalEventBytes_m181F7572666B1D2B3481B629EE1C4B4022F3F85B_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, const RuntimeMethod* method) { { // public int totalEventBytes { get; set; } int32_t L_0 = __this->get_U3CtotalEventBytesU3Ek__BackingField_6(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_totalEventBytes_m3F8A9CBF8ECB085179264B1B265E8D1C4F1A76C0_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, int32_t ___value0, const RuntimeMethod* method) { { // public int totalEventBytes { get; set; } int32_t L_0 = ___value0; __this->set_U3CtotalEventBytesU3Ek__BackingField_6(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double InputMetrics_get_totalEventProcessingTime_mF0D791E7FA5C9E6B9035099D85265CBE4133D470_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, const RuntimeMethod* method) { { // public double totalEventProcessingTime { get; set; } double L_0 = __this->get_U3CtotalEventProcessingTimeU3Ek__BackingField_9(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_totalEventProcessingTime_mC98A9F88F07A8AFF23501A02DD0B44363312DC01_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, double ___value0, const RuntimeMethod* method) { { // public double totalEventProcessingTime { get; set; } double L_0 = ___value0; __this->set_U3CtotalEventProcessingTimeU3Ek__BackingField_9(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double InputMetrics_get_totalEventLagTime_m9E7430166E1DF3BD681A8FEE1EE37B79F46798BE_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, const RuntimeMethod* method) { { // public double totalEventLagTime { get; set; } double L_0 = __this->get_U3CtotalEventLagTimeU3Ek__BackingField_10(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_totalEventLagTime_m2F5659F8A6413F9C2E5F80D3824DE8FEDF5FBBE4_inline (InputMetrics_tFE867DFF3DC815D81D0A7CFA0EE5F4B61DC4367C * __this, double ___value0, const RuntimeMethod* method) { { // public double totalEventLagTime { get; set; } double L_0 = ___value0; __this->set_U3CtotalEventLagTimeU3Ek__BackingField_10(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * InputControl_get_device_m7B8D4A5F3C7C11E4FE7239692961C434C7CCF9E1_inline (InputControl_tF71EDA53B03EA6D600257755523682E10F94DDC1 * __this, const RuntimeMethod* method) { { // public InputDevice device => m_Device; InputDevice_t64BD575C54DB522A280D29E47F96E52B79B22D87 * L_0 = __this->get_m_Device_9(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED KeyValuePair_2_get_Key_mFBEEBA1D831EB554874C88B7A45536B9AB7229A8_gshared_inline (KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 * __this, const RuntimeMethod* method) { { InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED L_0 = (InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED )__this->get_key_0(); return (InternedString_tA8F88C6E35F6EA6E9F774DC4DC7D003E1D6B4EED )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m391CC747109CAE22FD143AF7520A2C133612D28D_gshared_inline (KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlyArray_1_get_Count_m23B4A29E81D59954DD014F2E62B43150D34C51BD_gshared_inline (ReadOnlyArray_1_t9584B0851320AB0F5BC8FF261C123F5994A081B7 * __this, const RuntimeMethod* method) { { // public int Count => m_Length; int32_t L_0 = (int32_t)__this->get_m_Length_2(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 Enumerator_get_Current_mA498E0842C3786B22CC1BB11B09A85E3346E5C3C_gshared_inline (Enumerator_t8AA648C8DF370A9EB2CD75C4D86DADC954C99CC4 * __this, const RuntimeMethod* method) { { KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 L_0 = (KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 )__this->get_current_3(); return (KeyValuePair_2_tC5DBFF0A12DD027962885E57237A73F3553DE521 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_mBCBF2D9FD1B5F0D8D8595B15B7460889D60C8070(/*hidden argument*/NULL); } IL_000e: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_1(); int32_t L_3 = ___index0; RuntimeObject * L_4; L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_2, (int32_t)L_3); return (RuntimeObject *)L_4; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlyArray_1_get_Count_mB7032E0F55BC9BAC395949F252CE4E2B00451700_gshared_inline (ReadOnlyArray_1_t606E37DB0F1B75FCB4C4A029A0F6C2B4AE7DED75 * __this, const RuntimeMethod* method) { { // public int Count => m_Length; int32_t L_0 = (int32_t)__this->get_m_Length_2(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m52F33C6963C9A76A14F54B4B2C30CEF580DB1EB7_gshared_inline (Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_has_value_1(); return (bool)L_0; } }