#include "pch-cpp.hpp" #ifndef _MSC_VER # include #else # include #endif #include #include struct VirtualActionInvoker0 { 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 VirtualActionInvoker1 { 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); } }; template struct VirtualActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct VirtualActionInvoker3 { typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template struct VirtualFuncInvoker0 { 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 VirtualFuncInvoker1 { 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 VirtualFuncInvoker2 { 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 GenericVirtualActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, 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 InterfaceActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, p2, 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); } }; 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 GenericInterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; struct InvokerActionInvoker0 { static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj) { method->invoker_method(methodPtr, method, obj, NULL, NULL); } }; template struct InvokerActionInvoker1; template struct InvokerActionInvoker1 { static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1) { void* params[1] = { p1 }; method->invoker_method(methodPtr, method, obj, params, NULL); } }; template struct InvokerActionInvoker2; template struct InvokerActionInvoker2 { static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2 p2) { void* params[2] = { p1, &p2 }; method->invoker_method(methodPtr, method, obj, params, NULL); } }; template struct InvokerActionInvoker3; template struct InvokerActionInvoker3 { static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3 p3) { void* params[3] = { p1, p2, &p3 }; method->invoker_method(methodPtr, method, obj, params, NULL); } }; template struct InvokerFuncInvoker0 { static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj) { R ret; method->invoker_method(methodPtr, method, obj, NULL, &ret); return ret; } }; template struct InvokerFuncInvoker1; template struct InvokerFuncInvoker1 { static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1) { R ret; void* params[1] = { p1 }; method->invoker_method(methodPtr, method, obj, params, &ret); return ret; } }; template struct InvokerFuncInvoker2; template struct InvokerFuncInvoker2 { static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2) { R ret; void* params[2] = { p1, p2 }; method->invoker_method(methodPtr, method, obj, params, &ret); return ret; } }; template struct InvokerFuncInvoker3; template struct InvokerFuncInvoker3 { static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3 p3) { R ret; void* params[3] = { p1, p2, &p3 }; method->invoker_method(methodPtr, method, obj, params, &ret); return ret; } }; template struct InvokerFuncInvoker3 { static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3) { R ret; void* params[3] = { p1, p2, p3 }; method->invoker_method(methodPtr, method, obj, params, &ret); return ret; } }; template struct InvokerFuncInvoker4; template struct InvokerFuncInvoker4 { static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3, T4 p4) { R ret; void* params[4] = { p1, p2, p3, &p4 }; method->invoker_method(methodPtr, method, obj, params, &ret); return ret; } }; // System.Action`1 struct Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53; // System.Action`1 struct Action_1_t7E3E3BD609665D0212EAD524D1B0B36E483AE10E; // System.Action`1 struct Action_1_t741CBBCB28E18BDBDEED4AE3BD7DBEEEA526DA43; // System.Action`1 struct Action_1_tE55F8AC1EEC45D0C976E56B2950D65EC814C06E6; // System.Action`1 struct Action_1_t996DFD52B4BDA6CBE8058C13167C4D2B8C612CAA; // System.Action`1 struct Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B; // System.Action`1 struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87; // System.Action`1 struct Action_1_tEFD4B3570567C07AE1CC4A2D290987F4347F2F01; // System.Action`1 struct Action_1_t05F6A7FC9FBB588EC4A828E23375838E340354CB; // System.Action`1 struct Action_1_t28FBAE79F893547A07D226BAE7DAF27C4568F7C9; // System.Action`2 struct Action_2_t829FF86EEA250A853DF3A95B2C4DAC034707E20F; // System.Action`2 struct Action_2_t4FD84D64C1341169AC2F73750A356411BCEAF88A; // UnityEngine.UIElements.UIR.BasicNodePool`1 struct BasicNodePool_1_tEF610BEFE1094E5737DC6F71292C727C8FFD0828; // UnityEngine.UIElements.UIR.BasicNode`1 struct BasicNode_1_t7B4D545DCD6949B2E1C85D63DF038E44602F7DDB; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t4FC5FBBEB47C2A7FDE54A92E598382E02A97570F; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t085D321FFFE1629BA3A62F7A3CBC29EED22EEB68; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tB87BEC840CF876F5CE38D31A5FD1BFD7BDCCCD75; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t645C7B1DAE2D839B52A5E387C165CE13D5465B00; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t41165BF747F041590086BE39A59BE164430A3CEF; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t8B8AC3704119A64857E8D359CB4782C5ECEA90E7; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t2E14D8B0F76748B5AE00AF497CE45177082B7DA6; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tF1C3BFA70D6875EEF369CE69E661C6B617B5BEC0; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t4055F6540F36F21F9FEDAFB92D8E0089B38EBBC8; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t2E2FD115F34FFA7AE5B80FD5398843049FCBF05E; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_tC07547303D7A0CFE94CCC1B82240C03FD8850DD4; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_tF5B9124CEB160EFC53E943AA29271854DB5D5E8E; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_tF213A6C7DEAE29A9970B73DB52E8778214E5CD9C; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_t2625C042BC2C4D0937381CA343BA7BA0796D531B; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_tED92C39D3D539693A36E8EB8A1D9EE15E2CBEB17; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_t074F374661507958319B62431E9384D959AA1B09; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_t537183F3C55578258C5DAF68E510087AD97961A7; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_tF39C691B05308835A836D33741E4656809B44C3C; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_tDFA2360CDCE536A2DE7FA625C0295865A67D40B4; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_t15E400616AB56B841F72D09E503D6377E8366E07; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_t3A7B85AD96E3BB6F407AAFF594E222FBD5B713EF; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA; // UnityEngine.UIElements.EventCallback`1 struct EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913; // UnityEngine.UIElements.FocusEventBase`1 struct FocusEventBase_1_t26C6D9D6518CF73A14D460E73B00F842D4C8FD3A; // UnityEngine.UIElements.FocusEventBase`1 struct FocusEventBase_1_t5C59DF705446E1FD98D905F21B5B80F74D2D16A8; // System.Func`1 struct Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457; // System.Func`1 struct Func_1_t19B4AA7D8A9D43C2117CE38228D976097D91CF6B; // System.Func`1 struct Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4; // System.Func`1 struct Func_1_t21422914E40DBAC34FD54D39D995588A4B7E7D63; // System.Func`2 struct Func_2_t7760D06CF97C5755AB1FFFDA9139CDCA58F0858C; // System.Func`2 struct Func_2_tFE00FC9C490BDDEF52C99ED6238F6C9B2C9638AC; // System.Func`2 struct Func_2_t615C91B75B6D7B4E70D5080F4EE82DFCD6B6B069; // System.Func`2 struct Func_2_t213311159653563BDCC21CC060B449705C96791F; // System.Func`2 struct Func_2_tACBF5A1656250800CE861707354491F0611F6624; // System.Func`2 struct Func_2_t33ED521BE3A7E943FA8D764514952EDF1AF1C0FA; // System.Func`4 struct Func_4_t0E2E2E47320C72FA06D4AFD7F4375C61BD17084B; // System.Func`4 struct Func_4_t3BDE3CA92565203F02E9E075D380C15E3C5964EE; // System.Func`4 struct Func_4_t08BAB91515459FF545B4A7D8524D9C59D8CFB281; // System.Func`4 struct Func_4_tA5546A90ACF2FBA116ECAAEB518084F68FC2040A; // System.Func`4 struct Func_4_tB4D8B68CF259C4CADB0575DF6DB72156D5EBE1BD; // System.Collections.Generic.HashSet`1 struct HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_t46F270317FFCE1D43BD739E09DC0144D63F39E0A; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_tF95C9E01A913DD50575531C8305932628663D9E9; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_t39D49543B3C85EBF15ECF30545F171B5FB7ACD1D; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_tDDAFF6D050787FED8C1C71CF045D67E5872C0EE3; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_t0BB5FD0478BB8CE71A945C9B46DE9166A57FCE00; // System.Collections.Generic.IList`1 struct IList_1_tF62DE4FB23A982EBB71A50124BFC5C73483C17FC; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_tC7B3E92FF6C51EC5733FE0C01C1DB738E0552418; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_tB7FB8B930258E089DF6A6020A83FAA2D267D9892; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t14B30992B4E4ECAC675CF3E95FA8CB2D9E4AB91E; // UnityEngine.UIElements.KeyboardEventBase`1 struct KeyboardEventBase_1_t8A33E6EBB804F18BFE49BE0C38C5D0B8E233B6FA; // UnityEngine.UIElements.KeyboardEventBase`1 struct KeyboardEventBase_1_tB4DAE7BE749F5CB0E5230FC31380D5BD30259B0C; // UnityEngine.UIElements.UIR.LinkedPoolItem`1 struct LinkedPoolItem_1_tD677E54AEDFCA19642ADA7F09E665AC2A79625DF; // UnityEngine.UIElements.UIR.LinkedPoolItem`1 struct LinkedPoolItem_1_tEE25C8B557C971B237ECBF0BA28C57C48372D9EF; // UnityEngine.UIElements.UIR.LinkedPool`1 struct LinkedPool_1_t27505BB5E276B4361ACE769F2922D5FDC6742877; // UnityEngine.UIElements.UIR.LinkedPool`1 struct LinkedPool_1_t2089E962DBA7DCED47F5B21A93012A52E885E94F; // UnityEngine.UIElements.UIR.LinkedPool`1 struct LinkedPool_1_tC5395F299B7B9824571198DF9F00CAC6033CD7D6; // System.Collections.Generic.List`1> struct List_1_t60F39D768DAD2345527AD3EE73FAB2667DF4F260; // System.Collections.Generic.List`1 struct List_1_t98556D08ADC95F025E529036B8FB0403DC53D789; // System.Collections.Generic.List`1 struct List_1_tA5BCD116CC751A5F35C7D3D7B96DC3A5D22B9C82; // System.Collections.Generic.List`1 struct List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434; // System.Collections.Generic.List`1 struct List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3; // System.Collections.Generic.List`1 struct List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941; // System.Collections.Generic.List`1 struct List_1_t4DF09B0E9A8F312FB7592EC9D366F0808C94DCE6; // System.Collections.Generic.List`1 struct List_1_tC5B88B6499F1B00EDC8A12253A5748951DD76857; // System.Collections.Generic.List`1 struct List_1_t96E9133B70FB6765E6B138E810D33E18901715DA; // System.Collections.Generic.List`1 struct List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121; // System.Collections.Generic.List`1 struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D; // System.Collections.Generic.List`1 struct List_1_t9FF902E193613BD654FD1CF8DBDEF7B872504919; // System.Collections.Generic.List`1 struct List_1_t3ADC2CEE608F7E0043EBE4FD425E6C9AE43E19CC; // System.Collections.Generic.List`1 struct List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E; // System.Collections.Generic.List`1 struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD; // System.Collections.Generic.List`1 struct List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F; // System.Collections.Generic.List`1 struct List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A; // System.Collections.Generic.List`1 struct List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95; // System.Collections.Generic.List`1 struct List_1_t3FD5514751EB43E4AB1C145E04BA259B6CD6C74E; // System.Collections.Generic.List`1 struct List_1_tBDD12EAD3C5C46706730C230F223EE020C6822D6; // System.Collections.Generic.List`1 struct List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66; // System.Collections.Generic.List`1 struct List_1_t61096569E456190C1D695A123917128C0E1FB932; // System.Collections.Generic.List`1 struct List_1_tAF3B3F03351330B5C2EA012DB4C7E417DC6551AB; // System.Collections.Generic.List`1 struct List_1_t491E344573B9D6F61E36AF56132B7412453928C9; // System.Collections.Generic.List`1 struct List_1_t70EE7982F45810D4B024CF720D910E67974A3094; // System.Collections.Generic.List`1 struct List_1_t33D0D5DC1CC999D9E66584CFA3E5F86E9C719E8C; // System.Collections.Generic.List`1 struct List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B; // UnityEngine.UIElements.MouseEventBase`1 struct MouseEventBase_1_t236F036084AFE2993D8121CCFDC53AAB6C278ECF; // UnityEngine.UIElements.MouseEventBase`1 struct MouseEventBase_1_tFA26278C8536EEAB946AD40D0005CD3F0B0D8067; // UnityEngine.UIElements.MouseEventBase`1 struct MouseEventBase_1_t46809EA36A0565CF67A1688881999B3118F91E83; // UnityEngine.UIElements.MouseEventBase`1 struct MouseEventBase_1_t5B5081D29C8BECF72DF89EF50BB137E251C48228; // UnityEngine.UIElements.ObjectPool`1> struct ObjectPool_1_t330A51752287ED087418126C388D21E9DBEF95C9; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t7FDDBA964772905A89719355C6E4F07922AA0C78; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t2BAC247346D1A30E6F98C5C633CA4A8A94FC170A; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t45D3269B91BE59332E45568581C266DBBE543DB9; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t30C8F70D98C7F0227113800C031CF8E316BD7608; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t10DF1D7B915FABBA839F55B1C8F8A53EF636E395; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t6EA833FFCBB94CBB4B4ECF190C617D0010F43887; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t11916664A294D85084603B0F15FA2E810B2BC5FF; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t37080504ECCFF986BCF1E7D4C1D26BB929DEC7E9; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tCCD0EE03B0457A6BE1AE2143C496E26597C0ACE1; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tE16398520DF85760BDD6FCD30EE299D26093F06E; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tFD015A99DC45F4AADDAFE8F44225A6FF6289EB10; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tD78AE6F54B951DDB2D0439009049A8F2422D78BA; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tE5621495D8A201AC7F4D06B7AEE892CCBC8B5BFC; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t4CCB307C788F662AC27F4884CC938F63B3E4836C; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t197544EA692A3B4CA53A6C415A61333162073672; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t2E11CDAC72859A812629F64CB88669487FD5F0B5; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tC06B45D8A0C7CBBDAE418090727D1DF1F2FCB9F6; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tDF51BF8B537DAD012AFE10CFC541363835B64992; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t02BAEDA04C0651D5684B8E2455CF77AC4D6B94C4; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tBB87D46D9504DA0AB7392802F8F6A309B72F4D7B; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tD9D36AAF97C27AAA8F8C10396B70EE8016C3DB39; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tD15E0338DA7D4DAC91A4EA42A0786A46DE4BFF3B; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t2F3ED061D994C01E8404150CA83077D75D4A3B04; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t8AFFCB7DAAEE40E4043E3A85360B759A778B3F5B; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_t378830198BB4C87EA1C9049351B640D8484ED9D4; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tEA9E5136DCE87BF5FDC7E117132869969F52A700; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tBDA6763A1E27A0918624041DBF619B2364E9535A; // UnityEngine.UIElements.PointerCaptureEventBase`1 struct PointerCaptureEventBase_1_t265201C952224C804DDA3B4C56A4CA46B8A665CC; // UnityEngine.UIElements.PointerCaptureEventBase`1 struct PointerCaptureEventBase_1_tB71E4AEB34E7FFC989F93E9B522D53DFAEE2CE7F; // UnityEngine.UIElements.PointerEventBase`1 struct PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F; // UnityEngine.UIElements.PointerEventBase`1 struct PointerEventBase_1_tE5B00823964EF715DC1ED310DB3F91B16D40D7C7; // UnityEngine.UIElements.PointerEventBase`1 struct PointerEventBase_1_t7591EB7533D2DA4AE63C7E535343F090911843C9; // UnityEngine.UIElements.PointerEventBase`1 struct PointerEventBase_1_tED9D60928194E4D1F6C5F9C95D258E9102815B4B; // UnityEngine.UIElements.PointerEventBase`1 struct PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496; // System.Collections.Generic.Queue`1 struct Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68; // UnityEngine.UIElements.StyleDataRef`1/RefCounted struct RefCounted_t6B975CD3D06E8D955346FC0D66E8F6E449D49A44; // UnityEngine.UIElements.StyleDataRef`1/RefCounted struct RefCounted_t0E133AD36715877AE1CE72539A0199B4D3AA8CD1; // UnityEngine.UIElements.StyleDataRef`1/RefCounted struct RefCounted_t81BCBAE57D930C934CF7A439452D65303AC6A8CD; // UnityEngine.UIElements.StyleDataRef`1/RefCounted struct RefCounted_t78303B1CD3D08C664ABB15EBD7C882DA3E06CF7D; // UnityEngine.UIElements.StyleDataRef`1/RefCounted struct RefCounted_tA9FB4D63A1064BD322AFDFCD70319CB384C057D9; // UnityEngine.UIElements.StyleDataRef`1/RefCounted struct RefCounted_t812D790A2C787F18230F9234F6C9B84D4AC1A85A; // System.Collections.Generic.Stack`1> struct Stack_1_t03CF116DF66BF3696E395233D45D668169D2D655; // System.Collections.Generic.Stack`1 struct Stack_1_t9978CB0119EA70B0C3101996FB3D675B2D59025A; // System.Collections.Generic.Stack`1 struct Stack_1_t3B750F239246A65B0BACFB807CBA1961CA8DE0A6; // System.Collections.Generic.Stack`1 struct Stack_1_t19851BEF370D35BCE2A6C3848C5148B09113067C; // UnityEngine.UIElements.TypedUxmlAttributeDescription`1 struct TypedUxmlAttributeDescription_1_t7ECE12D1C0C385835D77803906F54B792532FD39; // UnityEngine.UIElements.TypedUxmlAttributeDescription`1 struct TypedUxmlAttributeDescription_1_tF8E164DB2A1FE613654370D348F4C3680DA42A03; // UnityEngine.UIElements.UxmlEnumAttributeDescription`1 struct UxmlEnumAttributeDescription_1_tC4ABA6DF74F58C15F2597C1640A58CC16D9551B3; // UnityEngine.UIElements.UxmlEnumAttributeDescription`1 struct UxmlEnumAttributeDescription_1_tBBB2CDD127ABE7FAC6ED7B5CA5A3911FF0AF7CE4; // UnityEngine.UIElements.UxmlFactory`2 struct UxmlFactory_2_tD60CA5C4D4FEBDFD650B1967D172C9AC677FB22A; // UnityEngine.UIElements.UxmlFactory`2 struct UxmlFactory_2_t885CE124C6F6A5A625EFB5E207B18271EE8A07FF; // UnityEngine.UIElements.UxmlFactory`2 struct UxmlFactory_2_tA5B21BD283B57202633CBFD2ABB84CE9AD987DF2; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t3AFA39EBBE876A0C691484FD363F51A3810768D8; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_tD34C07B01FDE3DA50B1CDF6C24947E3064040AC2; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t224892CABA59D88BB2891731151075759B513B52; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_t452E9BE8B6BB9A662B5F4BFCE1BA5F90154715E2; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_tD1C3502C8737D12235B0AE0048937630CBF65234; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_tDB15EF1F629C11C27E0D16E78B951C1F6B3923A4; // System.Boolean[] struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4; // System.Byte[] struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031; // System.Char[] struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB; // UnityEngine.UIElements.ComputedTransitionProperty[] struct ComputedTransitionPropertyU5BU5D_t25B9E78F5276CDA297C8215C316452CAB8219E82; // System.Delegate[] struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771; // UnityEngine.Display[] struct DisplayU5BU5D_tAD77D7EE2B839E3EDA0D1C0028B64F867F400C7F; // UnityEngine.UIElements.DropdownMenuItem[] struct DropdownMenuItemU5BU5D_t5D467D7BF099681C9B48E74EB5125D13D4C6A40A; // UnityEngine.UIElements.IEventDispatchingStrategy[] struct IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97; // UnityEngine.UIElements.IEventHandler[] struct IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D; // UnityEngine.UIElements.IGroupBoxOption[] struct IGroupBoxOptionU5BU5D_t19E3F4422566FEE1EBF7F4E74DF8FAD1491A1FAC; // UnityEngine.UIElements.IMouseEvent[] struct IMouseEventU5BU5D_t418EF80C033DAB9F8703CD44FF55CA05F95627E8; // UnityEngine.UIElements.IPanel[] struct IPanelU5BU5D_tD30F2BC67981C0E88C866DB9A3ED728400B7A933; // UnityEngine.UIElements.IPointerEvent[] struct IPointerEventU5BU5D_t89E0FE44D1C5384112824379812966DFD7F02D22; // UnityEngine.UIElements.IRuntimePanelComponent[] struct IRuntimePanelComponentU5BU5D_t4A6C4D131DDFC1EDE007DACD586F9159BC064C80; // System.Int32[] struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C; // System.IntPtr[] struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832; // UnityEngine.UIElements.ManipulatorActivationFilter[] struct ManipulatorActivationFilterU5BU5D_tE2A0BDE194B3B4600164AE8238C8CE2B20DBD4D7; // System.Object[] struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF; // System.String[] struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248; // System.Type[] struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB; // UnityEngine.Vector2[] struct Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA; // UnityEngine.UIElements.VisualElement[] struct VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF; // UnityEngine.UIElements.ClickDetector/ButtonClickStatus[] struct ButtonClickStatusU5BU5D_t9327A993382F70450196067EE5DED53834E9DB7B; // UnityEngine.UIElements.EventDispatcher/DispatchContext[] struct DispatchContextU5BU5D_t23932F8BEADFC827A9CA5636867F6721AD971757; // UnityEngine.UIElements.EventDispatcher/EventRecord[] struct EventRecordU5BU5D_tB7CC04280192D9B2B4980F107F93ABBBE4E4DCA8; // UnityEngine.UIElements.FocusController/FocusedElement[] struct FocusedElementU5BU5D_tE2EC8928994D7E368EC55BC3876976AAED693E58; // System.Action struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07; // UnityEngine.UIElements.UIR.Allocator2D struct Allocator2D_t5B53CF899C3FABD99F29602424924ACAB9E2A157; // System.ArgumentNullException struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129; // UnityEngine.UIElements.AtlasBase struct AtlasBase_t196C45243F41C19DC6258965057BBAA150D278BC; // UnityEngine.UIElements.AttachToPanelEvent struct AttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28; // System.Attribute struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA; // UnityEngine.UIElements.BaseRuntimePanel struct BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4; // UnityEngine.UIElements.UIR.BaseShaderInfoStorage struct BaseShaderInfoStorage_tA4E5F167749C2492F7933E0B660BF9CF8F6716A2; // UnityEngine.UIElements.BaseVisualElementPanel struct BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303; // UnityEngine.UIElements.BindableElement struct BindableElement_t873EFF65032D21AB3B7BFBA21675D1693967435C; // System.Reflection.Binder struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235; // UnityEngine.UIElements.BlurEvent struct BlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302; // UnityEngine.UIElements.CallbackEventHandler struct CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4; // UnityEngine.UIElements.ClickDetector struct ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31; // UnityEngine.UIElements.ClickEvent struct ClickEvent_t30651949F0BA68E61187B63F5D325323E92CC318; // UnityEngine.UIElements.Clickable struct Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834; // UnityEngine.UIElements.CommandEventDispatchingStrategy struct CommandEventDispatchingStrategy_tCFC4DE46DCAA420CAC2DF2FDBD7571E524D8F520; // UnityEngine.UIElements.ContextualMenuManager struct ContextualMenuManager_tEE3B1F33FFFD180705467CA625AEBA0F5D63154B; // UnityEngine.UIElements.CursorManager struct CursorManager_tB28ED880450C37A0831769315A14D246F5A2E060; // UnityEngine.UIElements.DefaultDispatchingStrategy struct DefaultDispatchingStrategy_t932CD1E1A7C174B58D6E1CAF879DA755AB88AA1A; // UnityEngine.UIElements.DefaultEventSystem struct DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98; // UnityEngine.UIElements.DefaultGroupManager struct DefaultGroupManager_t74642D7322ED5B8113DA5C8C35F66E302D701157; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E; // UnityEngine.UIElements.DetachFromPanelEvent struct DetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496; // UnityEngine.Display struct Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1; // UnityEngine.UIElements.DropdownMenu struct DropdownMenu_tCC0483D2EB24641C3ADAE4BC122C92ABCFB186D2; // UnityEngine.UIElements.DropdownMenuAction struct DropdownMenuAction_t9E1F246511E77E34FB7E3CA05FD7354E16268835; // UnityEngine.UIElements.DropdownMenuEventInfo struct DropdownMenuEventInfo_t6118D88BC1584748707C62A0F91938760E4665CF; // UnityEngine.UIElements.DropdownMenuItem struct DropdownMenuItem_t06E130627F21DC0FA6A1968241363AB0B48F1B10; // UnityEngine.UIElements.DropdownMenuSeparator struct DropdownMenuSeparator_t79406BA3331B4A0D4DAC21EBC62F162365623A4A; // UnityEngine.UIElements.DynamicAtlas struct DynamicAtlas_tA1A51ADBE1DBFD82F6D52D5CA4D09D82F89678A8; // UnityEngine.UIElements.DynamicAtlasCustomFilter struct DynamicAtlasCustomFilter_tD33BC519AF0B6E7D8C273CB64D900DF5FEB1E3C6; // UnityEngine.UIElements.DynamicAtlasPage struct DynamicAtlasPage_t11FF826FFD13D59816B4F99A0C21CF8205A68F6E; // UnityEngine.UIElements.ElementUnderPointer struct ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904; // Microsoft.CodeAnalysis.EmbeddedAttribute struct EmbeddedAttribute_t54DF270ED07D6741FAAE3C11E26358CFF6702D03; // UnityEngine.Event struct Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB; // UnityEngine.UIElements.EventBase struct EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C; // UnityEngine.UIElements.EventCallbackRegistry struct EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85; // UnityEngine.UIElements.EventDispatcher struct EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398; // System.Exception struct Exception_t; // UnityEngine.UIElements.FocusChangeDirection struct FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF; // UnityEngine.UIElements.FocusController struct FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A; // UnityEngine.UIElements.FocusEvent struct FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F; // UnityEngine.UIElements.FocusInEvent struct FocusInEvent_tC1179D309FE58E4766E94687240513A96F08AFBE; // UnityEngine.UIElements.FocusOutEvent struct FocusOutEvent_t5CC3AC57C2BEFAD0E0A7E73FE6314F0F63DFFD2C; // UnityEngine.UIElements.Focusable struct Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0; // UnityEngine.GUILayoutEntry struct GUILayoutEntry_tDF59F19DD000820F64B356D5092C4BEDFE109D5F; // UnityEngine.GUILayoutGroup struct GUILayoutGroup_tD08496E80F283C290B5B90D7BFB3C9C7CC33CD8D; // UnityEngine.GUIStyle struct GUIStyle_t20BA2F9F3FE9D13AAA607EEEBE5547835A6F6580; // UnityEngine.GameObject struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F; // UnityEngine.UIElements.GenericDropdownMenu struct GenericDropdownMenu_t4CD56B241F3F5667305283313EE5BB5DF7D0C6D1; // UnityEngineInternal.GenericStack struct GenericStack_t1FB49AB7D847C97ABAA97AB232CA416CABD24C49; // UnityEngine.UIElements.GetViewDataDictionary struct GetViewDataDictionary_tF745E6CC7E18A67630A2B294F0BBFB27C6E57638; // UnityEngine.UIElements.HierarchyEvent struct HierarchyEvent_tB23E4347BC47656A014CA104A5B1DDC172A2A705; // UnityEngine.UIElements.IBinding struct IBinding_t02FD99E9C9F2072B28E110F16C157666F5B2DBC7; // UnityEngine.UIElements.ICursorManager struct ICursorManager_t78B026DED2559C62810B21C54C5F882457073A8B; // System.Collections.IDictionary struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220; // System.IDisposable struct IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5; // UnityEngine.UIElements.IEventDispatchingStrategy struct IEventDispatchingStrategy_t0D91FED4877152CF1089B374AE7BF2C4374E8545; // UnityEngine.UIElements.IEventHandler struct IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3; // UnityEngine.UIElements.IFocusRing struct IFocusRing_t08BC753A7D9FFD5F88C58DF61E4FF056804CEC78; // UnityEngine.UIElements.IGenericMenu struct IGenericMenu_t8C71DC6E11979C75E95C24AFBADE19E47D53770B; // UnityEngine.UIElements.IGroupBox struct IGroupBox_tAB188219A71E03C303A23531BAC7368143ADA7E6; // UnityEngine.UIElements.IGroupBoxOption struct IGroupBoxOption_t87C0253B1BAC4D10D10F1A020EEC0DAA52D2F5B7; // UnityEngine.UIElements.IGroupManager struct IGroupManager_tEDC32858D64340F916957A0674BE4FD06870EDB2; // UnityEngine.UIElements.IMGUIContainer struct IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26; // UnityEngine.UIElements.IMGUIEventDispatchingStrategy struct IMGUIEventDispatchingStrategy_tE180FB6B330B6829DA87D283265044F6E782AFB0; // UnityEngine.UIElements.IMouseEvent struct IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E; // UnityEngine.UIElements.IPanel struct IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5; // UnityEngine.UIElements.IPointerEvent struct IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7; // UnityEngine.UIElements.IResolvedStyle struct IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89; // UnityEngine.UIElements.IRuntimePanelComponent struct IRuntimePanelComponent_tFE2F7E47B272AB7E25E1A0BC38DCF2FEB60DD6E2; // UnityEngine.UIElements.IScheduler struct IScheduler_t70B716998476DDF4EED6DE7A0DA997AB9F9C75CE; // UnityEngine.UIElements.ISerializableJsonDictionary struct ISerializableJsonDictionary_tF3ACE88703D5968A97E7CC2CACDB1BBBF394A0A0; // UnityEngine.UIElements.IStylePainter struct IStylePainter_t0B2A07F3DA2AD05641C95841817F32B352E464E6; // UnityEngine.UIElements.IStylePropertyAnimationSystem struct IStylePropertyAnimationSystem_t120D77C8BFB230CA7DBF45D3FB1F5AFBA0504DE2; // UnityEngine.UIElements.IUxmlAttributes struct IUxmlAttributes_t9B6679F04874117C59014DE49C35B1841F9A1DDE; // UnityEngine.UIElements.IVisualElementScheduledItem struct IVisualElementScheduledItem_t309F1A5445514122A9E3F64182D0D8A4DE34C48F; // UnityEngine.UIElements.IVisualElementScheduler struct IVisualElementScheduler_tA68650FA9218398E77265748741B091638336FD8; // UnityEngine.UIElements.IVisualTreeUpdater struct IVisualTreeUpdater_t4AF1E0B23A6AEFF024F1AC23815089B2495C7F06; // UnityEngine.UIElements.ImmediateModeException struct ImmediateModeException_t7A6F44A9035C26E64FF8BCD4964F7189506F063D; // UnityEngine.UIElements.InlineStyleAccess struct InlineStyleAccess_t5CA7877999C9442491A220AE50D605C84D09A165; // System.InvalidOperationException struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB; // System.Runtime.CompilerServices.IsReadOnlyAttribute struct IsReadOnlyAttribute_t43C72B431AEE71EE45AB1CE6B987A80994B7B15E; // UnityEngine.UIElements.KeyDownEvent struct KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C; // UnityEngine.UIElements.KeyboardEventDispatchingStrategy struct KeyboardEventDispatchingStrategy_t1D8588FA7A010091B956CC8EF09E0C072A2DB7EB; // UnityEngine.UIElements.KeyboardNavigationManipulator struct KeyboardNavigationManipulator_t7E9BA3568ADC1660C4E09B924ECD457E33B835B3; // UnityEngine.UIElements.LoadResourceFunction struct LoadResourceFunction_tA999A2DDCB9CDCF68E4274A58336A39ABB7AF850; // UnityEngine.Yoga.Logger struct Logger_t092B1218ED93DD47180692D5761559B2054234A0; // UnityEngine.UIElements.Manipulator struct Manipulator_tD5727ABA1F5AD1A50927212FAEB090E6BBCB4EBE; // UnityEngine.Material struct Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3; // System.Reflection.MemberFilter struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553; // UnityEngine.UIElements.MeshGenerationContext struct MeshGenerationContext_tD1BD8DB52C7126A7987DE5DF1A4AF47A906EAF62; // UnityEngine.UIElements.UIR.MeshHandle struct MeshHandle_tC1E9A7ECCFDAEFDE064B8D58B35B9CEE5A70A22E; // System.Reflection.MethodInfo struct MethodInfo_t; // UnityEngine.UIElements.MouseCaptureDispatchingStrategy struct MouseCaptureDispatchingStrategy_t6098898AC8EC044A7B4ADE38812D96CD54FE1439; // UnityEngine.UIElements.MouseCaptureEvent struct MouseCaptureEvent_tC9F3C2595ADCE4F88D2553F8F697F00BA797B014; // UnityEngine.UIElements.MouseCaptureOutEvent struct MouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5; // UnityEngine.UIElements.MouseDownEvent struct MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD; // UnityEngine.UIElements.MouseEventDispatchingStrategy struct MouseEventDispatchingStrategy_t0D9B199C6AE7E17D0D07C6E4A716DF71BCBA4460; // UnityEngine.UIElements.MouseManipulator struct MouseManipulator_tE6C609D476BDF311E2934791E620CF833BB4097D; // UnityEngine.UIElements.MouseMoveEvent struct MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5; // UnityEngine.UIElements.MouseUpEvent struct MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811; // UnityEngine.UIElements.NavigationCancelEvent struct NavigationCancelEvent_tB8811EBDC85FD365D1034AEA30F07CBC3161E59E; // UnityEngine.UIElements.NavigationMoveEvent struct NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF; // UnityEngine.UIElements.NavigationSubmitEvent struct NavigationSubmitEvent_t193DCBDB6CBC8FF9F0A545B48962188505665BB1; // UnityEngine.Object struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C; // UnityEngine.ObjectGUIState struct ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15; // UnityEngine.UIElements.Panel struct Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9; // UnityEngine.UIElements.PointerCancelEvent struct PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51; // UnityEngine.UIElements.PointerCaptureDispatchingStrategy struct PointerCaptureDispatchingStrategy_t076B81E1D47F28C5BCA40E9E535125FF48AF3DDE; // UnityEngine.UIElements.PointerCaptureEvent struct PointerCaptureEvent_tB9E534FCED96BD293031FCEF549A28F5161701BB; // UnityEngine.UIElements.PointerCaptureOutEvent struct PointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5; // UnityEngine.UIElements.PointerDispatchState struct PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A; // UnityEngine.UIElements.PointerDownEvent struct PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51; // UnityEngine.UIElements.PointerEventDispatchingStrategy struct PointerEventDispatchingStrategy_t435CBA778EF2620FC83C65435C478D1D32AB396F; // UnityEngine.UIElements.PointerManipulator struct PointerManipulator_t54685840D83869016F04FD137BCC1B07016B2E72; // UnityEngine.UIElements.PointerMoveEvent struct PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3; // UnityEngine.UIElements.PointerStationaryEvent struct PointerStationaryEvent_t00EDD04F79029C94E4655239AA54AF9024AB151A; // UnityEngine.UIElements.PointerUpEvent struct PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9; // UnityEngine.UIElements.PropagationPaths struct PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5; // System.Text.RegularExpressions.Regex struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772; // UnityEngine.UIElements.UIR.RenderChain struct RenderChain_tCCA9360D5721E675E5632E4B2F4AF7CDC453E363; // UnityEngine.UIElements.UIR.RenderChainCommand struct RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727; // UnityEngine.RenderTexture struct RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27; // UnityEngine.UIElements.RepaintData struct RepaintData_t90534752135661579EC254884F550545D001B5EA; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6; // UnityEngine.UIElements.SavePersistentViewData struct SavePersistentViewData_tFE77B8450170D95B16B3017D62F81F2139D4F716; // UnityEngine.ScriptableObject struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A; // UnityEngine.UIElements.ScrollView struct ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9; // UnityEngine.Shader struct Shader_tADC867D36B7876EE22427FAA2CE485105F4EE692; // System.String struct String_t; // UnityEngine.UIElements.StylePropertyAnimationSystem struct StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718; // UnityEngine.UIElements.StyleVariableContext struct StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527; // UnityEngine.Texture struct Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700; // UnityEngine.Texture2D struct Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4; // UnityEngine.UIElements.UIR.TextureBlitter struct TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7; // UnityEngine.UIElements.TextureRegistry struct TextureRegistry_t888D6D46880722862102416F500D6784DDA46C1B; // UnityEngine.UIElements.TimeMsFunction struct TimeMsFunction_t1893856976EB95CF5608ACC3642AD8B79994CA2B; // UnityEngine.UIElements.TimerEventScheduler struct TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862; // UnityEngine.UIElements.Toggle struct Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C; // System.Type struct Type_t; // UnityEngine.UIElements.UIRRepaintUpdater struct UIRRepaintUpdater_tA4093F3857EA96D9E5E9EFD7C18785C787E1408E; // UnityEngine.UIElements.UIR.Implementation.UIRStylePainter struct UIRStylePainter_t406D6C9F30B975CCE0D55D800B5A97504F26FEC8; // UnityEngine.UIElements.UIR.Implementation.UIRTextUpdatePainter struct UIRTextUpdatePainter_t4C6DD44519F677FBCFCB2B6D38C129BB8E21460F; // UnityEngine.UIElements.UIR.UIRenderDevice struct UIRenderDevice_t59628CBA89B4617E832C2B270E1C1A3931D01302; // UnityEngine.UIElements.UxmlAttributeDescription struct UxmlAttributeDescription_t742D021489DB2B564142146CAAAC3F9191825EF2; // UnityEngine.UIElements.UxmlBoolAttributeDescription struct UxmlBoolAttributeDescription_t86EA1242C539B39911E63699A4AE0C47918701CE; // UnityEngine.UIElements.UxmlIntAttributeDescription struct UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4; // UnityEngine.UIElements.UxmlStringAttributeDescription struct UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF; // UnityEngine.UIElements.UxmlTypeRestriction struct UxmlTypeRestriction_t2C4CE1ED76502CDF80010880E058AF0582910A92; // UnityEngine.UIElements.UIR.VectorImageManager struct VectorImageManager_tBABA8290D62F9BDB5DCE3CC8FDA877915D1DBFED; // UnityEngine.UIElements.VisualElement struct VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115; // UnityEngine.UIElements.VisualElementFocusRing struct VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3; // UnityEngine.UIElements.VisualTreeAsset struct VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB; // UnityEngine.UIElements.VisualTreeUpdater struct VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9; // System.Void struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915; // UnityEngine.Yoga.YogaConfig struct YogaConfig_tE8B56F99460C291C1F7F46DBD8BAC9F0B653A345; // UnityEngine.Yoga.YogaNode struct YogaNode_t4B5B593220CCB315B5A60CB48BA4795636F04DDA; // UnityEngine.UIElements.UIR.Allocator2D/Row struct Row_t5CAF04F94A4359C08ADDBA867B0817101F351999; // UnityEngine.UIElements.BaseRuntimePanel/<>c struct U3CU3Ec_tA54F8EBCAFF569C7ED6FE8EC10B21ABDFDA0FA27; // UnityEngine.UIElements.BindableElement/UxmlFactory struct UxmlFactory_t1DB561BFFA7E2E3836F7AB008BCE7B6119542F33; // UnityEngine.UIElements.BindableElement/UxmlTraits struct UxmlTraits_tDED0FF94BF82D1F4DCFD14DBC22DCA51D30D1172; // UnityEngine.UIElements.ClickDetector/ButtonClickStatus struct ButtonClickStatus_tD4248512DB59E16501C4DDB6EDC2C6DE04290470; // UnityEngine.UIElements.DefaultEventSystem/<>c struct U3CU3Ec_t37452B9A7BBD76C55B8348F6EF87C026C961EDC9; // UnityEngine.UIElements.DefaultEventSystem/IInput struct IInput_t5B034697E44657CF7B5B7F4CA12E3653B3BBAFC3; // UnityEngine.UIElements.DefaultEventSystem/Input struct Input_tC023700B4164019B29E6EFE6F9E6E5DEF0BAF0BA; // UnityEngine.Display/DisplaysUpdatedDelegate struct DisplaysUpdatedDelegate_t1BAACED9BE72131FD59213A3186F5D7AB9E1FD68; // UnityEngine.UIElements.DynamicAtlas/TextureInfo struct TextureInfo_t1CEA0DD342E63322DEA32A9C25EB4B01AB000A9F; // UnityEngine.GUILayoutUtility/LayoutCache struct LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60; // UnityEngine.UIElements.IMGUIContainer/UxmlFactory struct UxmlFactory_tF9683EC71E4F687E36692AD4C22A0F0A79BA5557; // UnityEngine.UIElements.IMGUIContainer/UxmlTraits struct UxmlTraits_tC22B794B5E43920F0989281BB88F1F4115575065; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesBackground struct ValuesBackground_tFF4533C18E78BDA24210ECA0967C209A2FD2FB34; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesColor struct ValuesColor_tDE4E373E9165A21D96B77B831D7663BE93073904; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFloat struct ValuesFloat_t79D7FFC3D96EA35AFBCE6E41A84C30186FFFF0C2; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFont struct ValuesFont_tD9B58EA95F0D99292A54C9C6C879318BBE3B02A4; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFontDefinition struct ValuesFontDefinition_t4D0C2DECA9435D3EB901FE70837AD878111678F7; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesInt struct ValuesInt_t2D0093355274C731BB6DF9C8933EEEDA42276367; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesLength struct ValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesRotate struct ValuesRotate_t90582D6825FCBEF3C2A68160CCEC275C51217C63; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesScale struct ValuesScale_t21E6FC5B09789CB4974FC2ED15C3F83B863FCF8A; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTextShadow struct ValuesTextShadow_t50CB05DF0E7770164252616605C61B37DB4A966C; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTransformOrigin struct ValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTranslate struct ValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B; // UnityEngine.UIElements.VisualElement/CustomStyleAccess struct CustomStyleAccess_t170C852102B4D09FB478B620A75B14D096F9F2B1; // UnityEngine.UIElements.VisualElement/TypeData struct TypeData_t01D670B4E71B5571B38C7412B1E652A47D6AF66A; // UnityEngine.UIElements.VisualElement/UxmlTraits struct UxmlTraits_t45D4AB9B0148A110826C5201495FF23814A12E4B; // UnityEngine.UIElements.VisualTreeUpdater/UpdaterArray struct UpdaterArray_tF8D43D2A3598E7C17ABB5308E83FDECF1F36A449; IL2CPP_EXTERN_C RuntimeClass* Action_1_t05F6A7FC9FBB588EC4A828E23375838E340354CB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_1_t28FBAE79F893547A07D226BAE7DAF27C4568F7C9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ButtonClickStatus_tD4248512DB59E16501C4DDB6EDC2C6DE04290470_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CommandEventDispatchingStrategy_tCFC4DE46DCAA420CAC2DF2FDBD7571E524D8F520_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CursorManager_tB28ED880450C37A0831769315A14D246F5A2E060_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DefaultDispatchingStrategy_t932CD1E1A7C174B58D6E1CAF879DA755AB88AA1A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DefaultGroupManager_t74642D7322ED5B8113DA5C8C35F66E302D701157_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t085D321FFFE1629BA3A62F7A3CBC29EED22EEB68_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t4FC5FBBEB47C2A7FDE54A92E598382E02A97570F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tF1C3BFA70D6875EEF369CE69E661C6B617B5BEC0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DropdownMenuAction_t9E1F246511E77E34FB7E3CA05FD7354E16268835_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DropdownMenuEventInfo_t6118D88BC1584748707C62A0F91938760E4665CF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DropdownMenuSeparator_t79406BA3331B4A0D4DAC21EBC62F162365623A4A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DropdownUtility_t1EE27ECEE1A5E2FE3BC8906272A8132D7BA45686_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DynamicAtlasPage_t11FF826FFD13D59816B4F99A0C21CF8205A68F6E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DynamicAtlas_tA1A51ADBE1DBFD82F6D52D5CA4D09D82F89678A8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t04E4546076143315CE1BFC022AD3CC87AC64E7BD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t06692607D03E5B5F275B33C5EACCE075D1C2AB05_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t3863B2426C83CF34F5037FA191495E8B16EDFF6C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t3BDDADBC1D58267000128C31AD0EB2BAAAEC6F22_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t4941B5AE834AA028696C83756491CE8884F30DDE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t5C41C2E79AD8FCCF88671F3DBD081F10EFD3F846_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t7187CB27405B98ED004503ABE606225C50E656A0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t9ED9D70674CFE9504A67746757FB582440278391_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventBase_1_tB8AF17419B0E6B39E32F8925FCA535F5CF5C79D2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventBase_1_tE40FE9F8AB3B020689A80981F4566336B3EFA9B6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventBase_1_tF3176CA51B64DBB3010435BA1986B05039647C37_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventBase_1_tFF5ADBE25C7FD2806CE67DEAAA69B7AAACA73531_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t074F374661507958319B62431E9384D959AA1B09_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t2625C042BC2C4D0937381CA343BA7BA0796D531B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t3A7B85AD96E3BB6F407AAFF594E222FBD5B713EF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t537183F3C55578258C5DAF68E510087AD97961A7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tDFA2360CDCE536A2DE7FA625C0295865A67D40B4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tED92C39D3D539693A36E8EB8A1D9EE15E2CBEB17_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tF213A6C7DEAE29A9970B73DB52E8778214E5CD9C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tF39C691B05308835A836D33741E4656809B44C3C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ExitGUIException_tFF2EEEBACD9E5684D6112478EEF754B74D154549_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Foldout_t150CF00C27D0C105EC2831E0BA1C5D8A96EF5DC3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_1_t21422914E40DBAC34FD54D39D995588A4B7E7D63_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_2_t33ED521BE3A7E943FA8D764514952EDF1AF1C0FA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_2_t7760D06CF97C5755AB1FFFDA9139CDCA58F0858C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_4_t0E2E2E47320C72FA06D4AFD7F4375C61BD17084B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_4_tA5546A90ACF2FBA116ECAAEB518084F68FC2040A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GUI_tA9CDB3D69DB13D51AD83ABDB587EF95947EC2D2A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GenericDropdownMenu_t4CD56B241F3F5667305283313EE5BB5DF7D0C6D1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GroupBoxUtility_t5B29AE5FF7BE272B8A8DFC848149A76F282912DC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HierarchyEvent_tB23E4347BC47656A014CA104A5B1DDC172A2A705_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IBindable_tC033D86A91EFC1DB9A0DD25E218A1D6E0C4D306A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEventDispatchingStrategy_t0D91FED4877152CF1089B374AE7BF2C4374E8545_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IFocusRing_t08BC753A7D9FFD5F88C58DF61E4FF056804CEC78_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IGroupBoxOption_t87C0253B1BAC4D10D10F1A020EEC0DAA52D2F5B7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IGroupBox_tAB188219A71E03C303A23531BAC7368143ADA7E6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IGroupManager_tEDC32858D64340F916957A0674BE4FD06870EDB2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IInput_t5B034697E44657CF7B5B7F4CA12E3653B3BBAFC3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IKeyboardEvent_t7BA114B6B3F77E8383EA005E0AF8C94815516947_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IMGUIEventDispatchingStrategy_tE180FB6B330B6829DA87D283265044F6E782AFB0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IRuntimePanelComponent_tFE2F7E47B272AB7E25E1A0BC38DCF2FEB60DD6E2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IScheduler_t70B716998476DDF4EED6DE7A0DA997AB9F9C75CE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IStylePainter_t0B2A07F3DA2AD05641C95841817F32B352E464E6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IStylePropertyAnimationSystem_t120D77C8BFB230CA7DBF45D3FB1F5AFBA0504DE2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IVisualElementScheduledItem_t309F1A5445514122A9E3F64182D0D8A4DE34C48F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IVisualElementScheduler_tA68650FA9218398E77265748741B091638336FD8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Input_tC023700B4164019B29E6EFE6F9E6E5DEF0BAF0BA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KeyboardEventDispatchingStrategy_t1D8588FA7A010091B956CC8EF09E0C072A2DB7EB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* LinkedPool_1_tC5395F299B7B9824571198DF9F00CAC6033CD7D6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t4DF09B0E9A8F312FB7592EC9D366F0808C94DCE6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tBDD12EAD3C5C46706730C230F223EE020C6822D6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MouseCaptureDispatchingStrategy_t6098898AC8EC044A7B4ADE38812D96CD54FE1439_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MouseEventDispatchingStrategy_t0D9B199C6AE7E17D0D07C6E4A716DF71BCBA4460_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectListPool_1_t810347B10190A33EAD87D6B79F44969D72DE23BA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectPool_1_t330A51752287ED087418126C388D21E9DBEF95C9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PointerCaptureDispatchingStrategy_t076B81E1D47F28C5BCA40E9E535125FF48AF3DDE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PointerEnterEvent_t1B003E301A8969E273D1F5163242BE399B9E63DB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PointerEventDispatchingStrategy_t435CBA778EF2620FC83C65435C478D1D32AB396F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PointerLeaveEvent_tA2426EF03A82E31DC06960A17E03E88E155AFD84_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PointerStationaryEvent_t00EDD04F79029C94E4655239AA54AF9024AB151A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RepaintData_t90534752135661579EC254884F550545D001B5EA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Stack_1_t19851BEF370D35BCE2A6C3848C5148B09113067C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TextureId_tFF4B4AAE53408AB10B0B89CCA5F7B50CF2535E58_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TextureInfo_t1CEA0DD342E63322DEA32A9C25EB4B01AB000A9F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TextureRegistry_t888D6D46880722862102416F500D6784DDA46C1B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t37452B9A7BBD76C55B8348F6EF87C026C961EDC9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tA54F8EBCAFF569C7ED6FE8EC10B21ABDFDA0FA27_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UIElementsUtility_t03323144D50362C6BF96652D3355728749769293_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UIRRepaintUpdater_tA4093F3857EA96D9E5E9EFD7C18785C787E1408E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VisualElementUtils_t40D4F58B1AA48524658BD0DC09E4CCD7DAAF722C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* YogaConfig_tE8B56F99460C291C1F7F46DBD8BAC9F0B653A345_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral0E7759F4A91EDFC77F380FE08324F86272C8CA2B; IL2CPP_EXTERN_C String_t* _stringLiteral190CDBBC7377A308B78E27EF91319FD2DA386895; IL2CPP_EXTERN_C String_t* _stringLiteral1B958738DC162BEB9B0D85C80B39A3034A624BA2; IL2CPP_EXTERN_C String_t* _stringLiteral209554CD387B18A1A4B25A7C3A6CF49F7B3B59C7; IL2CPP_EXTERN_C String_t* _stringLiteral265E15F1F86F1C766555899D5771CF29055DE75A; IL2CPP_EXTERN_C String_t* _stringLiteral29784256C60A93E08D09354C1B895C1F5D2C22EF; IL2CPP_EXTERN_C String_t* _stringLiteral2AB04DC99CA2F296C65DE3AB17EA964A7692E3DB; IL2CPP_EXTERN_C String_t* _stringLiteral3648F9FE5F907A9AE1C04209772C137A134D2939; IL2CPP_EXTERN_C String_t* _stringLiteral388C340780C6B11AF689CDE7CCEB8C732DAB9C23; IL2CPP_EXTERN_C String_t* _stringLiteral42A4AE30C0BBF599A8EA85A9DB39E3F2EE8F852C; IL2CPP_EXTERN_C String_t* _stringLiteral461F9F39B44884AD0FB62320475F3B244EF6E29B; IL2CPP_EXTERN_C String_t* _stringLiteral499284EE1D3CD7FE549A05AE5F4E78D079B96018; IL2CPP_EXTERN_C String_t* _stringLiteral5A8F45F1C79E40889C90528CFD4D921EE9507784; IL2CPP_EXTERN_C String_t* _stringLiteral5E1B590B41B4F135A37478AC97F37498C7B39E08; IL2CPP_EXTERN_C String_t* _stringLiteral6DCFB4874BCC2C275EBAAF2C56BFC6B9A4CE0002; IL2CPP_EXTERN_C String_t* _stringLiteral6F98B6CA9694ECBEB1966B29924748589F905C16; IL2CPP_EXTERN_C String_t* _stringLiteral7E862305548C4DDFD57B29415597CBDB61D1574B; IL2CPP_EXTERN_C String_t* _stringLiteral7F8C014BD4810CC276D0F9F81A1E759C7B098B1E; IL2CPP_EXTERN_C String_t* _stringLiteral82D479D59A3FF3B83E927DFA871979AE5B979CA8; IL2CPP_EXTERN_C String_t* _stringLiteral93717CD8FCD45BAB4F15D3BACC989A6A93BA2674; IL2CPP_EXTERN_C String_t* _stringLiteral9981E7534F608A8FB12450BB6935B0079C0F8431; IL2CPP_EXTERN_C String_t* _stringLiteral9A50CCB79C7AA9C930AA7DF481024F8F46C38A91; IL2CPP_EXTERN_C String_t* _stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03; IL2CPP_EXTERN_C String_t* _stringLiteralA520348FB133A5E1587448A220CADEA2B6584782; IL2CPP_EXTERN_C String_t* _stringLiteralA9E0268649535EDEE2FE85B30622276BD85E302C; IL2CPP_EXTERN_C String_t* _stringLiteralB08282527E732747047D6E80804E4EA411493141; IL2CPP_EXTERN_C String_t* _stringLiteralB7168CD7985145F336F1450B86CAD1C5B051A26E; IL2CPP_EXTERN_C String_t* _stringLiteralC00C92E779AF7F150507676512B2BC5D20A14BDE; IL2CPP_EXTERN_C String_t* _stringLiteralC6A2C8F23127EDB1AE4B051FF921A2BA502DAD9B; IL2CPP_EXTERN_C String_t* _stringLiteralD81452C86BFC4304CE462191543453B5531C824C; IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; IL2CPP_EXTERN_C String_t* _stringLiteralDA58175B1477CDD80A1CD74D2443D48978E77422; IL2CPP_EXTERN_C String_t* _stringLiteralDB32B0D9CD7F4F3E58406468986C4538F5B0ED33; IL2CPP_EXTERN_C String_t* _stringLiteralDF044C7EBE7E45C9572204BF0DEA5DFD05D06253; IL2CPP_EXTERN_C String_t* _stringLiteralE613B93BA754382742DF7C7D4EF3E5B7C699F600; IL2CPP_EXTERN_C String_t* _stringLiteralEEB55BE0525DCACC1B1C0AF0229E231F141718EC; IL2CPP_EXTERN_C String_t* _stringLiteralF82E77163FA1DA3FC88318F036C4A14ABDF6C33F; IL2CPP_EXTERN_C String_t* _stringLiteralFC9BB82B7553FFE051C4F73A651CAC7D04CB6EAB; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisDetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496_mED85B91BE761D1DBE3001231E0050CD612946F2C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisKeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C_m046581E97BE6F7CECB84314566EB164BC15C9A66_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisMouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5_m81C10E53CAC3EFE4C8A66ACC3CF4D2BA06A01A04_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisMouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD_m973B21C3368658DD783507954107DBB7A0D4BA7C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisMouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5_mF457ADEA74CE4B568350D53896F186F482F473C0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisMouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811_m8269D1AF3457E7474A8EB8A380D6F2DBCDA2E649_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisNavigationCancelEvent_tB8811EBDC85FD365D1034AEA30F07CBC3161E59E_m6F61FF46A1FC34A4F812FE1C62B4292F6F569B32_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisNavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF_m7E875C04D0CAF6D09162404E056A982D2361AA56_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisNavigationSubmitEvent_t193DCBDB6CBC8FF9F0A545B48962188505665BB1_mE3AEBEE052ADD6289D44E50FBAB102AF11F8F443_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_m4261C8B7CCD0487DCB444E9F1D99595D3F0417EE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisPointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5_m1436561BBA8BC9BFF0E0F4374906B6D7F67D2265_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_m31B47377B2600C76864A89BB9F281B73D042B4F7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_mE3153A790D51A1FBD515EBF3FE36AF9D4DCD1BD7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_mF32CB6B5935957C0761E707801C9062199B61786_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisKeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C_m5F24D57398BF01859BD80580BAF3F5A74D44358D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisMouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5_mEB2BBAD218BC5F310A502DB49C1487C9DBCCCDE7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisMouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD_mC9D851A09DE940C7F3D8C12F74FFB775C9483948_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisMouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5_m2596702F982363AAE007826D14FFF28641A8AEBB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisMouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811_m8D4200FB7F0D6DD78D774B7384306E96798C184B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisNavigationCancelEvent_tB8811EBDC85FD365D1034AEA30F07CBC3161E59E_mE14CF5B988D9BE8D4E2670C901AA70E78FE05BAC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisNavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF_mB87A2992294E355FE6F4B509D2E4DD60643CC81A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisNavigationSubmitEvent_t193DCBDB6CBC8FF9F0A545B48962188505665BB1_mF03ECCD9D6E8568B85FBFDADD785E961591541E1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_m5F10C8DEFC75B4A190E365536DEE17FE5E5A3A18_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisPointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5_m96B8A002675366436500646208EB3C2FBAE3502A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_m3289E47B906D6F66490543857408759250B0F509_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_m6F47F7C447568B774EE45E245D99CBD6CDEC3CC1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_m6260930D0C12A5DFCA80D6D299023CA1A157680A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnMouseCaptureOut_m8A0603C7BA0E647BF029AC34C22FAFAB4D01729D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnMouseDown_m9C2AB952A328E4EBDB6DB513DBAF0FF92104FD25_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnMouseMove_mF22776A88FA61BA7D14EA9FD26D694E121D50EA9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnMouseUp_m91AE050EADCB6B6D655D3A57DBE51C1E1A4DCD4E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnPointerCancel_mAC1EAC3512F72B6F708F84F7D18334D59FB79718_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnPointerCaptureOut_mD116254D306487990547171C5207A6AEA18CAB3F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnPointerDown_mE73634C853F5F17C2264CF74D72C7A1DEC9D0E95_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnPointerMove_m76F45142599C9CEFA025DCC49BB81938AECBBDA7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnPointerUp_m912689B569AE2869391592DD6723B7E9B7E57D44_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnTimer_m0DB36FB7BE7DEED6ABCEF027453E7DB5A5F1679C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Clickable_U3CSimulateSingleClickU3Eb__41_0_m033C62A989B2B21891D03D42BE2D1119A6804E27_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DefaultEventSystem_SendFocusBasedEvent_TisDefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98_m724784C949FD4F4F84B8FF63E8CF0C942FCDC972_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DefaultEventSystem_SendPositionBasedEvent_TisDefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98_m80B2D7EA4D57E987F8CB003DA8B243EC2A325356_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DefaultEventSystem_SendPositionBasedEvent_TisTouch_t03E51455ED508492B3F278903A0114FA0E87B417_mC1CEF0DC22EC0FFD864E1FC5A85F939462BC37C8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Clear_mA52F0C102CDC0F054072A87250DA28DCDB400EB4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_m43B7095F9F427C88ACD4FCCF5C23C9460B21233E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_mF5DB1590A1CBE2851375827A4C5C4490899E1BB0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m08AF5E5521CE1D829C36D516D9418FA5346DD0EB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m3C4B49E72CF6A83F7317F8EB150FF1302D55F039_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m9C813C4442B83EEF92A6FC3F2D1C608AD4F2400D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mB585C231363FFAB097DFA9B1FEB9727B9F8B23FC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m1FC2CF9CE6873687020247E99AF59B437339F3A2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m2190132D4C06B22F2D1982D7F447E21E8EAC733C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m5556D5DDB24A82A174586C87554AFF087F112D06_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_m90A2B3776728235C8F7846BF8CFF46D881E3ED12_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_mFEFE2EBD78B43938509F3D9CFDDD0AD6BD6F681E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m38265C9F3226FE29AF196AAA6F596CCD9702A533_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m5FE8537FEE2E979D20E07B9426F613565DCCE320_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m67DBC0271B106C3D1E6264AC8157731E48092425_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m1E775D22EE18AAD3D98BA01D0A2AA668048CBF9C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m2A5FB7E43101302337178BF43E63DB8368759BB4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m43C9EF170B762DE400946F0C2FFB8CC03202C627_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m4A61FF9F1C2DA105FD2EDDB434DD8EAA96C63046_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m54D61812DE105E7F4C24E076AB25CEF9584EA380_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m5FF3A7B62D564BACBD69B456F802A6E283C47034_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mA103CF8C8AF1D5C2D624A33EB7591CAF581E0F71_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m12D53D4879F9DA63D7E9E6762C8980DD625D6D36_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m2A06FB8CD851A83B6FA4E393CCBEF6AD960288E8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m3D3EF5A0D29EF3803BF56A7CEA227F429DF6B908_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m84E3A02B742FD4888E2BDFDA489A60F49727DC28_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m98D8787B81A3AFFC2D5562C5A66307A7528E7FC4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m9F65E2FE306240D5385DDF1C59E50F8B139AD844_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mDF7557E0217D6E0E73439F78E116C0B6F425E3B1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m432F18887566E32D2652596B6FC1FED2EFE41F2A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m4CC9D109C4381BFD057ABF8C2A23FB87BBD913F1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m77DBD0307C69F473DA6A47070D76091FABC89DBE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mB55E91F468F3CE1ECF040DA3CA7F8A6550C7A62B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mB7757CAB14504096954228BA7CF5F646853128D4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mD71C654327EF0D36B08754E1B2E88D98B0C072FB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mE4F418F3033C4D9A22A6049DD61CB9AE4A3F2A70_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EqualityComparer_1_get_Default_m2AD483CA861D4A7F895567A56144C829CF1162F0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EqualityComparer_1_get_Default_mC93AC5D9B4E118E16135A54DB665BA62EF73E889_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_GetPooled_m41B7EBD43F4F6D9111E7815D87B51B102401746A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_GetPooled_mF0F0370207CA7CE00124C94D9CF23D640F597A30_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m0E5E6E3BA81EDC51AE2140B87750CBB02FF403A3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m1C8514D5AB4E5F602F2BFE555AD8BD8F07F69CF4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m238FD884F6413A368F5C7647775D45759F7FC8B5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m32CD3EC2790BD0078CF2793F6946751E002DACF3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m38F7F3B592BA22F1C6669980B06DCC6F461F35BB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m61B3275FCA5E74C9CA9B3ECA7221663C37F87D44_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m80157FCA497F30A6201BD4E0DE779B6FF0767D27_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m8225EA1EDF290D850438A2C04F6466F745BC188C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m92426016B7886535D957F3D398D0F5B8A51809D1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m94D4F70D71BE62AB4C7C97A8445830726A8BCCB7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_mA696806F4EF6643EFFA933ECA851AACECEA58585_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_mC41A002F5EA9FCCEBCA769DAE539019F063024D8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventDispatcherGate__ctor_mF02241D3AB4F068E3F0493D2E407C344C66810A9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventDispatcher_ProcessEventQueue_mDC6EAC056EA04D165F93E7D7991FDC7C5B1722D1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* FocusEventBase_1_GetPooled_m0501EDEB2AF4B1056CAF60438B328E24E3868E54_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* FocusEventBase_1_GetPooled_m302B7069D2FFF355E5431FC8D2B78478D2336EA3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* FocusEventBase_1_GetPooled_mA03B2260A129219FA2F0575F8331E75297FD2DD0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* FocusEventBase_1_GetPooled_mBBD85C3417945DEA7EE3FD3A48A483959D645DA1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* FocusEventBase_1_get_IsFocusDelegated_m592E9CB880F68069E1D2C7E1AEB1229ACB0CEFA1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* FocusEventBase_1_get_direction_m895C80142080B880EA2AC1FD7F0CA16ACA75866F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Focusable_set_delegatesFocus_mC691C4199C88BEF0C55A7F7FD2C6ADDD00402D6F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Focusable_set_excludeFromFocusRing_m965E9967283F246BBFC2839769018AB77B0F90F7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponents_TisIRuntimePanelComponent_tFE2F7E47B272AB7E25E1A0BC38DCF2FEB60DD6E2_mC34726291F218FEBCFC838E9164965D0D921B9DA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GroupBoxUtility_OnGroupBoxDetachedFromPanel_mCE7A877B3B603118A32F4A168C69557E0ACB14BF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GroupBoxUtility_OnPanelDestroyed_m670C48D0148A5096B2E72AFB884838F63B83042E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IMGUIContainer_DoIMGUIRepaint_m0BAA4611CEBEA76DDA64F0202943CE283BC6CB24_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IMGUIContainer_DoOnGUI_mDF396AFB9BB8C4E4738AECA40F7F5A6192F9C645_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IMGUIContainer_OnGenerateVisualContent_m7FC27DE2A87FBAF5D7B20B246829C9789042CC49_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IMGUIContainer_U3CDoOnGUIU3Eb__56_0_mC0F063A87D4918330ECE340E3D170D023520F2F9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyboardEventBase_1_GetPooled_m19B9ECF95D286A9F029FFDA69B203FAC5923954C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyboardEventBase_1_get_actionKey_m41727377DE6FBE0D53A28DC0C639254BA059BC90_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyboardEventBase_1_get_keyCode_m1F9724EFC75BE6E998EC0DB5515F7FD577257D6B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyboardNavigationManipulator_OnKeyDown_mD49C1559E0A4B1DB2EA6952C1B972AF55E213A2C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyboardNavigationManipulator_OnNavigationCancel_m139064EB0E53BEF3EE575AA66B0452986662238B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyboardNavigationManipulator_OnNavigationMove_m474F212F38AA7DA72A7BBFF92709718B6640D712_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyboardNavigationManipulator_OnNavigationSubmit_mE179DC16B0BFB4903468E5E00EF41F977EA24E66_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LinkedPoolItem_1__ctor_mD9AD44367581E2DDCF44C3E4A05C17888CE099A0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LinkedPool_1_Get_m3E5649D9E2B75B7B1604871FB4AABC871D105CB7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LinkedPool_1_Return_m56360C18F44AB1E943B86851B7D6AB57B61AC2C5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LinkedPool_1__ctor_mACEF8252BCB8C660D5E330ED1D08B60AE95B1740_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_mFC7123F04B580CC7464967C465FE4719E2FFE647_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m312FE437F125C20E59CB1E48C69BF7F40ADE12C0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m4E186A9A5675BFA7E92BF5C08FDD6BC6F034A11B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m56EC3ADAD73E10C0C242519DD137C0BE84FE2FEE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m9989CB26C4A11F3FBC18A300F9CC329897595091_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mCEB7FB989453DA5A513E0153132F5037CDAC030D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mD0FD70C99F7B754C44C17B5292866B580788F9B5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mEC4AFB1C1B47B80C8CE673FC608034E0E1EE11FA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m6E8418F8671E7413DAF4337D72A04C4713AD4E99_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mEDFAB2B4DB2068C66161077345E55EFB190D4AE4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Contains_m79D8EB0D7DDAC8DBBB1AB267B3A968D575204315_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m57952DE1FACF2FE8083546945916B0B995290EAF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m6FAB4583137655FBC67EBC2FB620F52BB92FF01D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mB81904DD9F8BBAD002BD6BDFC99AB65DD09C64D5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mBF7B1E08D38E0651BF5E200997E3A903B018CDC0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mC4AB20120E7F41BCC6005AF74C96E92B288FFCEB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mC8AD486199B3F319CFB646615B851D62B79028C5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mE50C8692EDBD4CE82AF40ABF900B32D16CE06747_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Insert_m2FE5307B7184D020D93FFDE1EE377E4E1F2249FA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_m3EE0B4448125F9439873385C5F92BB3E6CDC2E3E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_m3AC5CF7EDE2906EB34C924D28709573C24BD07B4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_mC512258925EB9D29B979DDA7BAFFFB9841276117_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m07455E356D6387A5F282A448AB283D19E3F2F629_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m1692B25CB352586E654D02A6E4D5AA8AE6A361B4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m1A062F45FE926079CE2D4FD38A3BF15F7AEB89AF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m36E05B4A651E9CFCE97C92C086D9599CC82D7CD5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m73786708BB5BF136266E56407D245B8241A7F24C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m738CDEA3CD6005CFD260118E692A8B3B5FB9AE88_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m856D83183F6F5CDDE65CD7A3B8DBF24E3630CC2F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mB86384972E718F62EB6B70F75E0BC2A4F3EAA74D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mBDA4AC226C7E29BB75F648AD04787FFC85B807FE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mF80AAA806369D258F6DD70E7C312BDCB10A69A9B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m23AFD956F0B280D2188B16DA52C23478FEB8D401_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m7E0434D2292946B2941CAECD681794B4620B5DF8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m97E4330A4B3A01D99AD2ACC1BAE011F8FD18C7BB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mBD1D12956B0BC820EDB39DE6B983C74A30A6DB63_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_get_localMousePosition_m7E2B067F4C1294AAA0B5AB391297BCF04C990ED4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_get_localMousePosition_mDE94950434E8550D10DCF82EBDDFAD9FA6999DF1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_get_localMousePosition_mE5C3F1309BEB0619604BFA1B5039816FE73A10E5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ObjectListPool_1_Get_mBA02BA0674552CC665664608BCC4A5FFB778CF31_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ObjectListPool_1_Release_m87BBBC6B6E78F36C5AC41ADCAD33601E1E448DAE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ObjectPool_1_Get_mBACD9438BE076EDC8AB66B212CE149DE77D33F4A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ObjectPool_1_Release_m58FA19A999DA19110F7DEA824BD62A4CE8159F5C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ObjectPool_1__ctor_m3CDA6D988A544733ED1D31C3C4CC68413D1A33C6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerCaptureEventBase_1_GetPooled_m0958EC855F432AF3DEA7489B7B3E5E48C8F0D5FD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerCaptureEventBase_1_GetPooled_m1857C09C8952AAEAFA1A675F6E12D16A543EC201_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerCaptureEventBase_1_GetPooled_mB130D2272FB43A2E6AB0CFBCAB6A39DAE6B005FE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerCaptureEventBase_1_GetPooled_mC6EF3E193A8F63C014AFEC3ACC08BA80E21CD077_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerCaptureEventBase_1_get_pointerId_m807E1CA35DCA449386CC6C80A29FEE3ECFA04D93_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_GetPooled_m238B9E39CB743F6273078E64349B2AE6CCC5FC31_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_GetPooled_m59470240AED13F8F7082133A979B8AEF711E5324_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_GetPooled_m7DF55FE77BA1C9AC37E7BEA4DE92758C4AE62A8A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_GetPooled_m7FD98FAA36520DD90DECD697996B337EE26C09CB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_GetPooled_mBECEF4FF423A99F3CF8248A38A5743ADBE7C297D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_localPosition_m38DF70FA116B536F7D26200F9947A0F04105F6BF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_localPosition_m3941BBAAC0355C583681F3A5ECBA8FCAB5F1DACC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_localPosition_m9E543CA223482A9514B0F78D60360D65EC8E3FD4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_pointerId_m10A301E89D623BE4E099DC7CE768AE0D12ADF5B4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_pointerId_mD0FD52357DFDC016B39149C06C87B3FA2F786783_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Queue_1_Dequeue_m90F123DA1976DFBC4D8B331B07B1EB833A2E4509_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Queue_1_Enqueue_mBF44A4060F486104A2FC16D28D0BDBD08BC83491_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Queue_1_get_Count_m08F50B5D83CD07085F9B86C829170F37FE7EF037_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1__ctor_m07307D2825486BBEAEBDCA3BF1FA677FF12C4DAA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TextureInfo_Create_mEED00DAA63E16FBB289E0EBFD89FA51DDF9ACA0D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TextureInfo_Reset_m1D9BE91D72C0979832BA58FE2F3A812AFE54332B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypedUxmlAttributeDescription_1_set_defaultValue_mCCFDF65293F595155203C9BD9977733342224870_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TypedUxmlAttributeDescription_1_set_defaultValue_mFD1C3A72D0C15C3CFA5ADF89C98C1B97C69A25E2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CProcessTouchEventsU3Eb__29_0_m8A5B0FDED33377DD0E4D06205978602326FE0E2E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CSendIMGUIEventsU3Eb__22_0_m9D964DAEB6D8C9CBA5D4720A0194B1F27C5C0D53_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CSendIMGUIEventsU3Eb__22_1_m59D8B0A23C0ACA658370AB97312784F4099296D0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CSendIMGUIEventsU3Eb__22_2_m08337F9C4C7E265AE18BD44AB35D9AB2817E1B9D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CSendInputEventsU3Eb__23_0_m3249FC84F879921665C593882D15AB0FA7186A40_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CSendInputEventsU3Eb__23_1_m8F1745C79619871154F8170D86A681D9E972EAA4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CSendInputEventsU3Eb__23_2_m0C302A031F2B3E8DFDF31C5ED4032F3720EEB944_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__39_0_mB0DD82539A81060EF62A96507252BF1F4A20286E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__42_0_m101D6B66594A74F37566B86D5D84256C35211650_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* UxmlFactory_2__ctor_m12F479F7C12F413DC7A6B818E3102EE3F725DD7C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* UxmlFactory_2__ctor_m654F9F18593CC65382457296A874E76F08800729_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeType* IGroupBox_1_t2E7938D5F1C685351CDFBF73308F0E49F5FEAAA7_0_0_0_var; struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_com; struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_pinvoke; struct Delegate_t_marshaled_com; struct Delegate_t_marshaled_pinvoke; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4; struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771; struct DisplayU5BU5D_tAD77D7EE2B839E3EDA0D1C0028B64F867F400C7F; struct IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97; struct IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D; struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C; struct ManipulatorActivationFilterU5BU5D_tE2A0BDE194B3B4600164AE8238C8CE2B20DBD4D7; struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918; struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB; struct FocusedElementU5BU5D_tE2EC8928994D7E368EC55BC3876976AAED693E58; 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 // struct U3CModuleU3E_t2915620281D112A443FB14861757F697852D8729 { }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t4FC5FBBEB47C2A7FDE54A92E598382E02A97570F : public RuntimeObject { // System.Int32[] System.Collections.Generic.Dictionary`2::_buckets Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::_entries EntryU5BU5D_t452E9BE8B6BB9A662B5F4BFCE1BA5F90154715E2* ____entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::_count int32_t ____count_2; // System.Int32 System.Collections.Generic.Dictionary`2::_freeList int32_t ____freeList_3; // System.Int32 System.Collections.Generic.Dictionary`2::_freeCount int32_t ____freeCount_4; // System.Int32 System.Collections.Generic.Dictionary`2::_version int32_t ____version_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_tC7B3E92FF6C51EC5733FE0C01C1DB738E0552418* ____keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::_values ValueCollection_t3AFA39EBBE876A0C691484FD363F51A3810768D8* ____values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject* ____syncRoot_9; }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t085D321FFFE1629BA3A62F7A3CBC29EED22EEB68 : public RuntimeObject { // System.Int32[] System.Collections.Generic.Dictionary`2::_buckets Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::_entries EntryU5BU5D_tD1C3502C8737D12235B0AE0048937630CBF65234* ____entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::_count int32_t ____count_2; // System.Int32 System.Collections.Generic.Dictionary`2::_freeList int32_t ____freeList_3; // System.Int32 System.Collections.Generic.Dictionary`2::_freeCount int32_t ____freeCount_4; // System.Int32 System.Collections.Generic.Dictionary`2::_version int32_t ____version_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_tB7FB8B930258E089DF6A6020A83FAA2D267D9892* ____keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::_values ValueCollection_tD34C07B01FDE3DA50B1CDF6C24947E3064040AC2* ____values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject* ____syncRoot_9; }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tF1C3BFA70D6875EEF369CE69E661C6B617B5BEC0 : public RuntimeObject { // System.Int32[] System.Collections.Generic.Dictionary`2::_buckets Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::_entries EntryU5BU5D_tDB15EF1F629C11C27E0D16E78B951C1F6B3923A4* ____entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::_count int32_t ____count_2; // System.Int32 System.Collections.Generic.Dictionary`2::_freeList int32_t ____freeList_3; // System.Int32 System.Collections.Generic.Dictionary`2::_freeCount int32_t ____freeCount_4; // System.Int32 System.Collections.Generic.Dictionary`2::_version int32_t ____version_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_t14B30992B4E4ECAC675CF3E95FA8CB2D9E4AB91E* ____keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::_values ValueCollection_t224892CABA59D88BB2891731151075759B513B52* ____values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject* ____syncRoot_9; }; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2 : public RuntimeObject { }; struct EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2_StaticFields { // System.Collections.Generic.EqualityComparer`1 modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* ___defaultComparer_0; }; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_tC07547303D7A0CFE94CCC1B82240C03FD8850DD4 : public RuntimeObject { }; struct EqualityComparer_1_tC07547303D7A0CFE94CCC1B82240C03FD8850DD4_StaticFields { // System.Collections.Generic.EqualityComparer`1 modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tC07547303D7A0CFE94CCC1B82240C03FD8850DD4* ___defaultComparer_0; }; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_tF5B9124CEB160EFC53E943AA29271854DB5D5E8E : public RuntimeObject { }; struct EqualityComparer_1_tF5B9124CEB160EFC53E943AA29271854DB5D5E8E_StaticFields { // System.Collections.Generic.EqualityComparer`1 modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tF5B9124CEB160EFC53E943AA29271854DB5D5E8E* ___defaultComparer_0; }; // UnityEngine.UIElements.UIR.LinkedPoolItem`1 struct LinkedPoolItem_1_tEE25C8B557C971B237ECBF0BA28C57C48372D9EF : public RuntimeObject { // T UnityEngine.UIElements.UIR.LinkedPoolItem`1::poolNext TextureInfo_t1CEA0DD342E63322DEA32A9C25EB4B01AB000A9F* ___poolNext_0; }; // UnityEngine.UIElements.UIR.LinkedPool`1 struct LinkedPool_1_tC5395F299B7B9824571198DF9F00CAC6033CD7D6 : public RuntimeObject { // System.Func`1 UnityEngine.UIElements.UIR.LinkedPool`1::m_CreateFunc Func_1_t21422914E40DBAC34FD54D39D995588A4B7E7D63* ___m_CreateFunc_0; // System.Action`1 UnityEngine.UIElements.UIR.LinkedPool`1::m_ResetAction Action_1_t28FBAE79F893547A07D226BAE7DAF27C4568F7C9* ___m_ResetAction_1; // System.Int32 UnityEngine.UIElements.UIR.LinkedPool`1::m_Limit int32_t ___m_Limit_2; // T UnityEngine.UIElements.UIR.LinkedPool`1::m_PoolFirst TextureInfo_t1CEA0DD342E63322DEA32A9C25EB4B01AB000A9F* ___m_PoolFirst_3; // System.Int32 UnityEngine.UIElements.UIR.LinkedPool`1::k__BackingField int32_t ___U3CCountU3Ek__BackingField_4; }; // System.Collections.Generic.List`1 struct List_1_t98556D08ADC95F025E529036B8FB0403DC53D789 : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items DropdownMenuItemU5BU5D_t5D467D7BF099681C9B48E74EB5125D13D4C6A40A* ____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; }; struct List_1_t98556D08ADC95F025E529036B8FB0403DC53D789_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray DropdownMenuItemU5BU5D_t5D467D7BF099681C9B48E74EB5125D13D4C6A40A* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 struct List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434 : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97* ____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; }; struct List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 struct List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941 : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items IGroupBoxOptionU5BU5D_t19E3F4422566FEE1EBF7F4E74DF8FAD1491A1FAC* ____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; }; struct List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray IGroupBoxOptionU5BU5D_t19E3F4422566FEE1EBF7F4E74DF8FAD1491A1FAC* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 struct List_1_t4DF09B0E9A8F312FB7592EC9D366F0808C94DCE6 : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items IPanelU5BU5D_tD30F2BC67981C0E88C866DB9A3ED728400B7A933* ____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; }; struct List_1_t4DF09B0E9A8F312FB7592EC9D366F0808C94DCE6_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray IPanelU5BU5D_tD30F2BC67981C0E88C866DB9A3ED728400B7A933* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 struct List_1_tC5B88B6499F1B00EDC8A12253A5748951DD76857 : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items IRuntimePanelComponentU5BU5D_t4A6C4D131DDFC1EDE007DACD586F9159BC064C80* ____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; }; struct List_1_tC5B88B6499F1B00EDC8A12253A5748951DD76857_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray IRuntimePanelComponentU5BU5D_t4A6C4D131DDFC1EDE007DACD586F9159BC064C80* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 struct List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121 : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items ManipulatorActivationFilterU5BU5D_tE2A0BDE194B3B4600164AE8238C8CE2B20DBD4D7* ____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; }; struct List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray ManipulatorActivationFilterU5BU5D_tE2A0BDE194B3B4600164AE8238C8CE2B20DBD4D7* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____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; }; struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____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; }; struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 struct List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95 : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ____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; }; struct List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 struct List_1_tBDD12EAD3C5C46706730C230F223EE020C6822D6 : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items ButtonClickStatusU5BU5D_t9327A993382F70450196067EE5DED53834E9DB7B* ____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; }; struct List_1_tBDD12EAD3C5C46706730C230F223EE020C6822D6_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray ButtonClickStatusU5BU5D_t9327A993382F70450196067EE5DED53834E9DB7B* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 struct List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66 : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items FocusedElementU5BU5D_tE2EC8928994D7E368EC55BC3876976AAED693E58* ____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; }; struct List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray FocusedElementU5BU5D_tE2EC8928994D7E368EC55BC3876976AAED693E58* ___s_emptyArray_5; }; // UnityEngine.UIElements.ObjectPool`1> struct ObjectPool_1_t330A51752287ED087418126C388D21E9DBEF95C9 : public RuntimeObject { // System.Collections.Generic.Stack`1 UnityEngine.UIElements.ObjectPool`1::m_Stack Stack_1_t03CF116DF66BF3696E395233D45D668169D2D655* ___m_Stack_0; // System.Int32 UnityEngine.UIElements.ObjectPool`1::m_MaxSize int32_t ___m_MaxSize_1; }; // System.Collections.Generic.Queue`1 struct Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68 : public RuntimeObject { // T[] System.Collections.Generic.Queue`1::_array EventRecordU5BU5D_tB7CC04280192D9B2B4980F107F93ABBBE4E4DCA8* ____array_0; // System.Int32 System.Collections.Generic.Queue`1::_head int32_t ____head_1; // System.Int32 System.Collections.Generic.Queue`1::_tail int32_t ____tail_2; // System.Int32 System.Collections.Generic.Queue`1::_size int32_t ____size_3; // System.Int32 System.Collections.Generic.Queue`1::_version int32_t ____version_4; // System.Object System.Collections.Generic.Queue`1::_syncRoot RuntimeObject* ____syncRoot_5; }; // System.Collections.Generic.Stack`1 struct Stack_1_t19851BEF370D35BCE2A6C3848C5148B09113067C : public RuntimeObject { // T[] System.Collections.Generic.Stack`1::_array DispatchContextU5BU5D_t23932F8BEADFC827A9CA5636867F6721AD971757* ____array_0; // System.Int32 System.Collections.Generic.Stack`1::_size int32_t ____size_1; // System.Int32 System.Collections.Generic.Stack`1::_version int32_t ____version_2; // System.Object System.Collections.Generic.Stack`1::_syncRoot RuntimeObject* ____syncRoot_3; }; // UnityEngine.UIElements.UxmlFactory`2 struct UxmlFactory_2_tD60CA5C4D4FEBDFD650B1967D172C9AC677FB22A : public RuntimeObject { // TTraits UnityEngine.UIElements.UxmlFactory`2::m_Traits UxmlTraits_tDED0FF94BF82D1F4DCFD14DBC22DCA51D30D1172* ___m_Traits_0; }; // UnityEngine.UIElements.UxmlFactory`2 struct UxmlFactory_2_t885CE124C6F6A5A625EFB5E207B18271EE8A07FF : public RuntimeObject { // TTraits UnityEngine.UIElements.UxmlFactory`2::m_Traits UxmlTraits_tC22B794B5E43920F0989281BB88F1F4115575065* ___m_Traits_0; }; // UnityEngine.UIElements.AlignmentUtils struct AlignmentUtils_tA8FE0A2C3873180C610750E1102A78F0A16B8660 : public RuntimeObject { }; struct Il2CppArrayBounds; // UnityEngine.UIElements.AtlasBase struct AtlasBase_t196C45243F41C19DC6258965057BBAA150D278BC : public RuntimeObject { // UnityEngine.UIElements.TextureRegistry UnityEngine.UIElements.AtlasBase::textureRegistry TextureRegistry_t888D6D46880722862102416F500D6784DDA46C1B* ___textureRegistry_0; }; // System.Attribute struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA : public RuntimeObject { }; // UnityEngine.UIElements.BaseVisualTreeUpdater struct BaseVisualTreeUpdater_t234B0DC7D28731E61BA8215154765170E5D0AB41 : public RuntimeObject { // System.Action`1 UnityEngine.UIElements.BaseVisualTreeUpdater::panelChanged Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* ___panelChanged_0; // UnityEngine.UIElements.BaseVisualElementPanel UnityEngine.UIElements.BaseVisualTreeUpdater::m_Panel BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* ___m_Panel_1; }; // UnityEngine.UIElements.CallbackEventHandler struct CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4 : public RuntimeObject { // UnityEngine.UIElements.EventCallbackRegistry UnityEngine.UIElements.CallbackEventHandler::m_CallbackRegistry EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* ___m_CallbackRegistry_0; }; // UnityEngine.UIElements.ClickDetector struct ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31 : public RuntimeObject { // System.Collections.Generic.List`1 UnityEngine.UIElements.ClickDetector::m_ClickStatus List_1_tBDD12EAD3C5C46706730C230F223EE020C6822D6* ___m_ClickStatus_0; }; struct ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31_StaticFields { // System.Int32 UnityEngine.UIElements.ClickDetector::k__BackingField int32_t ___U3Cs_DoubleClickTimeU3Ek__BackingField_1; }; // UnityEngine.UIElements.CommandEventDispatchingStrategy struct CommandEventDispatchingStrategy_tCFC4DE46DCAA420CAC2DF2FDBD7571E524D8F520 : public RuntimeObject { }; // UnityEngine.UIElements.ContextualMenuManager struct ContextualMenuManager_tEE3B1F33FFFD180705467CA625AEBA0F5D63154B : public RuntimeObject { // System.Boolean UnityEngine.UIElements.ContextualMenuManager::k__BackingField bool ___U3CdisplayMenuHandledOSXU3Ek__BackingField_0; }; // UnityEngine.UIElements.CursorManager struct CursorManager_tB28ED880450C37A0831769315A14D246F5A2E060 : public RuntimeObject { // System.Boolean UnityEngine.UIElements.CursorManager::k__BackingField bool ___U3CisCursorOverridenU3Ek__BackingField_0; }; // UnityEngine.UIElements.DefaultDispatchingStrategy struct DefaultDispatchingStrategy_t932CD1E1A7C174B58D6E1CAF879DA755AB88AA1A : public RuntimeObject { }; // UnityEngine.UIElements.DefaultGroupManager struct DefaultGroupManager_t74642D7322ED5B8113DA5C8C35F66E302D701157 : public RuntimeObject { // System.Collections.Generic.List`1 UnityEngine.UIElements.DefaultGroupManager::m_GroupOptions List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941* ___m_GroupOptions_0; // UnityEngine.UIElements.IGroupBoxOption UnityEngine.UIElements.DefaultGroupManager::m_SelectedOption RuntimeObject* ___m_SelectedOption_1; }; // UnityEngine.UIElements.DisposeHelper struct DisposeHelper_t1CE13FCB89031DE17CE206D1286AEB8A93ED43E4 : public RuntimeObject { }; // UnityEngine.UIElements.DropdownMenu struct DropdownMenu_tCC0483D2EB24641C3ADAE4BC122C92ABCFB186D2 : public RuntimeObject { // System.Collections.Generic.List`1 UnityEngine.UIElements.DropdownMenu::m_MenuItems List_1_t98556D08ADC95F025E529036B8FB0403DC53D789* ___m_MenuItems_0; // UnityEngine.UIElements.DropdownMenuEventInfo UnityEngine.UIElements.DropdownMenu::m_DropdownMenuEventInfo DropdownMenuEventInfo_t6118D88BC1584748707C62A0F91938760E4665CF* ___m_DropdownMenuEventInfo_1; }; // UnityEngine.UIElements.DropdownMenuItem struct DropdownMenuItem_t06E130627F21DC0FA6A1968241363AB0B48F1B10 : public RuntimeObject { }; // UnityEngine.UIElements.DropdownUtility struct DropdownUtility_t1EE27ECEE1A5E2FE3BC8906272A8132D7BA45686 : public RuntimeObject { }; struct DropdownUtility_t1EE27ECEE1A5E2FE3BC8906272A8132D7BA45686_StaticFields { // System.Func`1 UnityEngine.UIElements.DropdownUtility::MakeDropdownFunc Func_1_t19B4AA7D8A9D43C2117CE38228D976097D91CF6B* ___MakeDropdownFunc_0; }; // UnityEngine.UIElements.ElementUnderPointer struct ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904 : public RuntimeObject { // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.ElementUnderPointer::m_PendingTopElementUnderPointer VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___m_PendingTopElementUnderPointer_0; // UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.ElementUnderPointer::m_TopElementUnderPointer VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___m_TopElementUnderPointer_1; // UnityEngine.UIElements.IPointerEvent[] UnityEngine.UIElements.ElementUnderPointer::m_TriggerPointerEvent IPointerEventU5BU5D_t89E0FE44D1C5384112824379812966DFD7F02D22* ___m_TriggerPointerEvent_2; // UnityEngine.UIElements.IMouseEvent[] UnityEngine.UIElements.ElementUnderPointer::m_TriggerMouseEvent IMouseEventU5BU5D_t418EF80C033DAB9F8703CD44FF55CA05F95627E8* ___m_TriggerMouseEvent_3; // UnityEngine.Vector2[] UnityEngine.UIElements.ElementUnderPointer::m_PickingPointerPositions Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* ___m_PickingPointerPositions_4; // System.Boolean[] UnityEngine.UIElements.ElementUnderPointer::m_IsPickingPointerTemporaries BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___m_IsPickingPointerTemporaries_5; }; // UnityEngine.UIElements.EventDispatcher struct EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398 : public RuntimeObject { // UnityEngine.UIElements.ClickDetector UnityEngine.UIElements.EventDispatcher::m_ClickDetector ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31* ___m_ClickDetector_0; // System.Collections.Generic.List`1 UnityEngine.UIElements.EventDispatcher::m_DispatchingStrategies List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434* ___m_DispatchingStrategies_1; // System.Collections.Generic.Queue`1 UnityEngine.UIElements.EventDispatcher::m_Queue Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* ___m_Queue_3; // UnityEngine.UIElements.PointerDispatchState UnityEngine.UIElements.EventDispatcher::k__BackingField PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* ___U3CpointerStateU3Ek__BackingField_4; // System.UInt32 UnityEngine.UIElements.EventDispatcher::m_GateCount uint32_t ___m_GateCount_5; // System.Collections.Generic.Stack`1 UnityEngine.UIElements.EventDispatcher::m_DispatchContexts Stack_1_t19851BEF370D35BCE2A6C3848C5148B09113067C* ___m_DispatchContexts_6; // System.Boolean UnityEngine.UIElements.EventDispatcher::m_Immediate bool ___m_Immediate_8; // System.Boolean UnityEngine.UIElements.EventDispatcher::k__BackingField bool ___U3CprocessingEventsU3Ek__BackingField_9; }; struct EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_StaticFields { // UnityEngine.UIElements.ObjectPool`1> UnityEngine.UIElements.EventDispatcher::k_EventQueuePool ObjectPool_1_t330A51752287ED087418126C388D21E9DBEF95C9* ___k_EventQueuePool_2; // UnityEngine.UIElements.IEventDispatchingStrategy[] UnityEngine.UIElements.EventDispatcher::s_EditorStrategies IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97* ___s_EditorStrategies_7; }; // UnityEngine.UIElements.FocusChangeDirection struct FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF : public RuntimeObject { // System.Int32 UnityEngine.UIElements.FocusChangeDirection::m_Value int32_t ___m_Value_3; }; struct FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_StaticFields { // UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.FocusChangeDirection::k__BackingField FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___U3CunspecifiedU3Ek__BackingField_0; // UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.FocusChangeDirection::k__BackingField FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___U3CnoneU3Ek__BackingField_1; // UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.FocusChangeDirection::k__BackingField FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___U3ClastValueU3Ek__BackingField_2; }; // UnityEngine.UIElements.FocusController struct FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A : public RuntimeObject { // UnityEngine.UIElements.IFocusRing UnityEngine.UIElements.FocusController::k__BackingField RuntimeObject* ___U3CfocusRingU3Ek__BackingField_0; // System.Collections.Generic.List`1 UnityEngine.UIElements.FocusController::m_FocusedElements List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66* ___m_FocusedElements_1; // UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusController::m_LastFocusedElement Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___m_LastFocusedElement_2; // UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusController::m_LastPendingFocusedElement Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___m_LastPendingFocusedElement_3; // System.Int32 UnityEngine.UIElements.FocusController::m_PendingFocusCount int32_t ___m_PendingFocusCount_4; // System.Int32 UnityEngine.UIElements.FocusController::k__BackingField int32_t ___U3CimguiKeyboardControlU3Ek__BackingField_5; }; // UnityEngine.UIElements.GroupBoxUtility struct GroupBoxUtility_t5B29AE5FF7BE272B8A8DFC848149A76F282912DC : public RuntimeObject { }; struct GroupBoxUtility_t5B29AE5FF7BE272B8A8DFC848149A76F282912DC_StaticFields { // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.GroupBoxUtility::s_GroupManagers Dictionary_2_t4FC5FBBEB47C2A7FDE54A92E598382E02A97570F* ___s_GroupManagers_0; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.GroupBoxUtility::s_GroupOptionManagerCache Dictionary_2_t085D321FFFE1629BA3A62F7A3CBC29EED22EEB68* ___s_GroupOptionManagerCache_1; // System.Type UnityEngine.UIElements.GroupBoxUtility::k_GenericGroupBoxType Type_t* ___k_GenericGroupBoxType_2; }; // UnityEngine.UIElements.IMGUIEventDispatchingStrategy struct IMGUIEventDispatchingStrategy_tE180FB6B330B6829DA87D283265044F6E782AFB0 : public RuntimeObject { }; // UnityEngine.UIElements.KeyboardEventDispatchingStrategy struct KeyboardEventDispatchingStrategy_t1D8588FA7A010091B956CC8EF09E0C072A2DB7EB : public RuntimeObject { }; // UnityEngine.UIElements.Manipulator struct Manipulator_tD5727ABA1F5AD1A50927212FAEB090E6BBCB4EBE : public RuntimeObject { // UnityEngine.UIElements.VisualElement UnityEngine.UIElements.Manipulator::m_Target VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Target_0; }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { }; // UnityEngine.UIElements.MeshGenerationContext struct MeshGenerationContext_tD1BD8DB52C7126A7987DE5DF1A4AF47A906EAF62 : public RuntimeObject { // UnityEngine.UIElements.IStylePainter UnityEngine.UIElements.MeshGenerationContext::painter RuntimeObject* ___painter_0; }; // UnityEngine.UIElements.MouseCaptureController struct MouseCaptureController_t03E2B412A03A88731B77201CE3B7167782262B0B : public RuntimeObject { }; // UnityEngine.UIElements.MouseCaptureDispatchingStrategy struct MouseCaptureDispatchingStrategy_t6098898AC8EC044A7B4ADE38812D96CD54FE1439 : public RuntimeObject { }; // UnityEngine.UIElements.MouseEventDispatchingStrategy struct MouseEventDispatchingStrategy_t0D9B199C6AE7E17D0D07C6E4A716DF71BCBA4460 : public RuntimeObject { }; // UnityEngine.UIElements.PointerCaptureDispatchingStrategy struct PointerCaptureDispatchingStrategy_t076B81E1D47F28C5BCA40E9E535125FF48AF3DDE : public RuntimeObject { }; // UnityEngine.UIElements.PointerCaptureHelper struct PointerCaptureHelper_tFF289BA2021DBFF9F7AC6E1B043C876DDFAE233B : public RuntimeObject { }; // UnityEngine.UIElements.PointerDispatchState struct PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A : public RuntimeObject { // UnityEngine.UIElements.IEventHandler[] UnityEngine.UIElements.PointerDispatchState::m_PendingPointerCapture IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* ___m_PendingPointerCapture_0; // UnityEngine.UIElements.IEventHandler[] UnityEngine.UIElements.PointerDispatchState::m_PointerCapture IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* ___m_PointerCapture_1; // System.Boolean[] UnityEngine.UIElements.PointerDispatchState::m_ShouldSendCompatibilityMouseEvents BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___m_ShouldSendCompatibilityMouseEvents_2; }; // UnityEngine.UIElements.PointerEventDispatchingStrategy struct PointerEventDispatchingStrategy_t435CBA778EF2620FC83C65435C478D1D32AB396F : public RuntimeObject { }; // UnityEngine.UIElements.PointerId struct PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C : public RuntimeObject { }; struct PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields { // System.Int32 UnityEngine.UIElements.PointerId::maxPointers int32_t ___maxPointers_0; // System.Int32 UnityEngine.UIElements.PointerId::invalidPointerId int32_t ___invalidPointerId_1; // System.Int32 UnityEngine.UIElements.PointerId::mousePointerId int32_t ___mousePointerId_2; // System.Int32 UnityEngine.UIElements.PointerId::touchPointerIdBase int32_t ___touchPointerIdBase_3; // System.Int32 UnityEngine.UIElements.PointerId::touchPointerCount int32_t ___touchPointerCount_4; // System.Int32 UnityEngine.UIElements.PointerId::penPointerIdBase int32_t ___penPointerIdBase_5; // System.Int32 UnityEngine.UIElements.PointerId::penPointerCount int32_t ___penPointerCount_6; // System.Int32[] UnityEngine.UIElements.PointerId::hoveringPointers Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___hoveringPointers_7; }; // UnityEngine.UIElements.PointerType struct PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4 : public RuntimeObject { }; struct PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_StaticFields { // System.String UnityEngine.UIElements.PointerType::mouse String_t* ___mouse_0; // System.String UnityEngine.UIElements.PointerType::touch String_t* ___touch_1; // System.String UnityEngine.UIElements.PointerType::pen String_t* ___pen_2; // System.String UnityEngine.UIElements.PointerType::unknown String_t* ___unknown_3; }; // UnityEngine.UIElements.PropagationPaths struct PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5 : public RuntimeObject { // System.Collections.Generic.List`1 UnityEngine.UIElements.PropagationPaths::trickleDownPath List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* ___trickleDownPath_1; // System.Collections.Generic.List`1 UnityEngine.UIElements.PropagationPaths::targetElements List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* ___targetElements_2; // System.Collections.Generic.List`1 UnityEngine.UIElements.PropagationPaths::bubbleUpPath List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* ___bubbleUpPath_3; }; struct PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_StaticFields { // UnityEngine.UIElements.ObjectPool`1 UnityEngine.UIElements.PropagationPaths::s_Pool ObjectPool_1_tBDA6763A1E27A0918624041DBF619B2364E9535A* ___s_Pool_0; }; // System.String struct String_t : public RuntimeObject { // System.Int32 System.String::_stringLength int32_t ____stringLength_4; // System.Char System.String::_firstChar Il2CppChar ____firstChar_5; }; struct String_t_StaticFields { // System.String System.String::Empty String_t* ___Empty_6; }; // UnityEngine.UIElements.StylePropertyAnimationSystem struct StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718 : public RuntimeObject { // System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem::m_CurrentTimeMs int64_t ___m_CurrentTimeMs_0; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFloat UnityEngine.UIElements.StylePropertyAnimationSystem::m_Floats ValuesFloat_t79D7FFC3D96EA35AFBCE6E41A84C30186FFFF0C2* ___m_Floats_1; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesInt UnityEngine.UIElements.StylePropertyAnimationSystem::m_Ints ValuesInt_t2D0093355274C731BB6DF9C8933EEEDA42276367* ___m_Ints_2; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesLength UnityEngine.UIElements.StylePropertyAnimationSystem::m_Lengths ValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915* ___m_Lengths_3; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesColor UnityEngine.UIElements.StylePropertyAnimationSystem::m_Colors ValuesColor_tDE4E373E9165A21D96B77B831D7663BE93073904* ___m_Colors_4; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesBackground UnityEngine.UIElements.StylePropertyAnimationSystem::m_Backgrounds ValuesBackground_tFF4533C18E78BDA24210ECA0967C209A2FD2FB34* ___m_Backgrounds_5; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFontDefinition UnityEngine.UIElements.StylePropertyAnimationSystem::m_FontDefinitions ValuesFontDefinition_t4D0C2DECA9435D3EB901FE70837AD878111678F7* ___m_FontDefinitions_6; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFont UnityEngine.UIElements.StylePropertyAnimationSystem::m_Fonts ValuesFont_tD9B58EA95F0D99292A54C9C6C879318BBE3B02A4* ___m_Fonts_7; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTextShadow UnityEngine.UIElements.StylePropertyAnimationSystem::m_TextShadows ValuesTextShadow_t50CB05DF0E7770164252616605C61B37DB4A966C* ___m_TextShadows_8; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesScale UnityEngine.UIElements.StylePropertyAnimationSystem::m_Scale ValuesScale_t21E6FC5B09789CB4974FC2ED15C3F83B863FCF8A* ___m_Scale_9; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesRotate UnityEngine.UIElements.StylePropertyAnimationSystem::m_Rotate ValuesRotate_t90582D6825FCBEF3C2A68160CCEC275C51217C63* ___m_Rotate_10; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTranslate UnityEngine.UIElements.StylePropertyAnimationSystem::m_Translate ValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B* ___m_Translate_11; // UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTransformOrigin UnityEngine.UIElements.StylePropertyAnimationSystem::m_TransformOrigin ValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F* ___m_TransformOrigin_12; // System.Collections.Generic.List`1 UnityEngine.UIElements.StylePropertyAnimationSystem::m_AllValues List_1_t491E344573B9D6F61E36AF56132B7412453928C9* ___m_AllValues_13; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.StylePropertyAnimationSystem::m_PropertyToValues Dictionary_2_t8B8AC3704119A64857E8D359CB4782C5ECEA90E7* ___m_PropertyToValues_14; }; // UnityEngine.UIElements.TextureRegistry struct TextureRegistry_t888D6D46880722862102416F500D6784DDA46C1B : public RuntimeObject { // System.Collections.Generic.List`1 UnityEngine.UIElements.TextureRegistry::m_Textures List_1_t33D0D5DC1CC999D9E66584CFA3E5F86E9C719E8C* ___m_Textures_0; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.TextureRegistry::m_TextureToId Dictionary_2_t2E14D8B0F76748B5AE00AF497CE45177082B7DA6* ___m_TextureToId_1; // System.Collections.Generic.Stack`1 UnityEngine.UIElements.TextureRegistry::m_FreeIds Stack_1_t3B750F239246A65B0BACFB807CBA1961CA8DE0A6* ___m_FreeIds_2; }; struct TextureRegistry_t888D6D46880722862102416F500D6784DDA46C1B_StaticFields { // UnityEngine.UIElements.TextureRegistry UnityEngine.UIElements.TextureRegistry::k__BackingField TextureRegistry_t888D6D46880722862102416F500D6784DDA46C1B* ___U3CinstanceU3Ek__BackingField_4; }; // UnityEngine.UIElements.TimerEventScheduler struct TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862 : public RuntimeObject { // System.Collections.Generic.List`1 UnityEngine.UIElements.TimerEventScheduler::m_ScheduledItems List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* ___m_ScheduledItems_0; // System.Boolean UnityEngine.UIElements.TimerEventScheduler::m_TransactionMode bool ___m_TransactionMode_1; // System.Collections.Generic.List`1 UnityEngine.UIElements.TimerEventScheduler::m_ScheduleTransactions List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* ___m_ScheduleTransactions_2; // System.Collections.Generic.HashSet`1 UnityEngine.UIElements.TimerEventScheduler::m_UnscheduleTransactions HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45* ___m_UnscheduleTransactions_3; // System.Boolean UnityEngine.UIElements.TimerEventScheduler::disableThrottling bool ___disableThrottling_4; // System.Int32 UnityEngine.UIElements.TimerEventScheduler::m_LastUpdatedIndex int32_t ___m_LastUpdatedIndex_5; }; // UnityEngine.UIElements.UxmlTraits struct UxmlTraits_t3311A2EDB0705584A614B5511216DAD5279C4160 : public RuntimeObject { // System.Boolean UnityEngine.UIElements.UxmlTraits::k__BackingField bool ___U3CcanHaveAnyAttributeU3Ek__BackingField_0; }; // System.ValueType struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject { }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com { }; // UnityEngine.UIElements.VisualTreeUpdater struct VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9 : public RuntimeObject { // UnityEngine.UIElements.BaseVisualElementPanel UnityEngine.UIElements.VisualTreeUpdater::m_Panel BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* ___m_Panel_0; // UnityEngine.UIElements.VisualTreeUpdater/UpdaterArray UnityEngine.UIElements.VisualTreeUpdater::m_UpdaterArray UpdaterArray_tF8D43D2A3598E7C17ABB5308E83FDECF1F36A449* ___m_UpdaterArray_1; }; // UnityEngine.UIElements.BaseRuntimePanel/<>c struct U3CU3Ec_tA54F8EBCAFF569C7ED6FE8EC10B21ABDFDA0FA27 : public RuntimeObject { }; struct U3CU3Ec_tA54F8EBCAFF569C7ED6FE8EC10B21ABDFDA0FA27_StaticFields { // UnityEngine.UIElements.BaseRuntimePanel/<>c UnityEngine.UIElements.BaseRuntimePanel/<>c::<>9 U3CU3Ec_tA54F8EBCAFF569C7ED6FE8EC10B21ABDFDA0FA27* ___U3CU3E9_0; }; // UnityEngine.UIElements.DefaultEventSystem/<>c struct U3CU3Ec_t37452B9A7BBD76C55B8348F6EF87C026C961EDC9 : public RuntimeObject { }; struct U3CU3Ec_t37452B9A7BBD76C55B8348F6EF87C026C961EDC9_StaticFields { // UnityEngine.UIElements.DefaultEventSystem/<>c UnityEngine.UIElements.DefaultEventSystem/<>c::<>9 U3CU3Ec_t37452B9A7BBD76C55B8348F6EF87C026C961EDC9* ___U3CU3E9_0; // System.Func`2 UnityEngine.UIElements.DefaultEventSystem/<>c::<>9__22_0 Func_2_t7760D06CF97C5755AB1FFFDA9139CDCA58F0858C* ___U3CU3E9__22_0_1; // System.Func`4 UnityEngine.UIElements.DefaultEventSystem/<>c::<>9__22_1 Func_4_t0E2E2E47320C72FA06D4AFD7F4375C61BD17084B* ___U3CU3E9__22_1_2; // System.Func`4 UnityEngine.UIElements.DefaultEventSystem/<>c::<>9__22_2 Func_4_t0E2E2E47320C72FA06D4AFD7F4375C61BD17084B* ___U3CU3E9__22_2_3; // System.Func`2 UnityEngine.UIElements.DefaultEventSystem/<>c::<>9__23_0 Func_2_t7760D06CF97C5755AB1FFFDA9139CDCA58F0858C* ___U3CU3E9__23_0_4; // System.Func`2 UnityEngine.UIElements.DefaultEventSystem/<>c::<>9__23_1 Func_2_t7760D06CF97C5755AB1FFFDA9139CDCA58F0858C* ___U3CU3E9__23_1_5; // System.Func`2 UnityEngine.UIElements.DefaultEventSystem/<>c::<>9__23_2 Func_2_t7760D06CF97C5755AB1FFFDA9139CDCA58F0858C* ___U3CU3E9__23_2_6; // System.Func`4 UnityEngine.UIElements.DefaultEventSystem/<>c::<>9__29_0 Func_4_tA5546A90ACF2FBA116ECAAEB518084F68FC2040A* ___U3CU3E9__29_0_7; }; // UnityEngine.UIElements.DefaultEventSystem/Input struct Input_tC023700B4164019B29E6EFE6F9E6E5DEF0BAF0BA : public RuntimeObject { }; // UnityEngine.GUILayoutUtility/LayoutCache struct LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60 : public RuntimeObject { // System.Int32 UnityEngine.GUILayoutUtility/LayoutCache::k__BackingField int32_t ___U3CidU3Ek__BackingField_0; // UnityEngine.GUILayoutGroup UnityEngine.GUILayoutUtility/LayoutCache::topLevel GUILayoutGroup_tD08496E80F283C290B5B90D7BFB3C9C7CC33CD8D* ___topLevel_1; // UnityEngineInternal.GenericStack UnityEngine.GUILayoutUtility/LayoutCache::layoutGroups GenericStack_t1FB49AB7D847C97ABAA97AB232CA416CABD24C49* ___layoutGroups_2; // UnityEngine.GUILayoutGroup UnityEngine.GUILayoutUtility/LayoutCache::windows GUILayoutGroup_tD08496E80F283C290B5B90D7BFB3C9C7CC33CD8D* ___windows_3; }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_tF175171C1DAC5FFB3EF8F5F77B72F8C3D4D2D925 { // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list List_1_t98556D08ADC95F025E529036B8FB0403DC53D789* ____list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::_index int32_t ____index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::_version int32_t ____version_2; // T System.Collections.Generic.List`1/Enumerator::_current DropdownMenuItem_t06E130627F21DC0FA6A1968241363AB0B48F1B10* ____current_3; }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_tEACDA201A43D9E989E4D68E8913F5CE1126CDE7D { // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434* ____list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::_index int32_t ____index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::_version int32_t ____version_2; // T System.Collections.Generic.List`1/Enumerator::_current RuntimeObject* ____current_3; }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_t362D96725DFEFD23AACF154B663C30BD0E4F09C4 { // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941* ____list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::_index int32_t ____index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::_version int32_t ____version_2; // T System.Collections.Generic.List`1/Enumerator::_current RuntimeObject* ____current_3; }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_t2D14BF62B9DB5C59F4A8ACCC7494283E4CF2EDAB { // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list List_1_tC5B88B6499F1B00EDC8A12253A5748951DD76857* ____list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::_index int32_t ____index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::_version int32_t ____version_2; // T System.Collections.Generic.List`1/Enumerator::_current RuntimeObject* ____current_3; }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A { // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ____list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::_index int32_t ____index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::_version int32_t ____version_2; // T System.Collections.Generic.List`1/Enumerator::_current RuntimeObject* ____current_3; }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_tB70AE61864AD2008C8CDDE421848AD69E69AE525 { // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* ____list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::_index int32_t ____index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::_version int32_t ____version_2; // T System.Collections.Generic.List`1/Enumerator::_current VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ____current_3; }; // System.Nullable`1 struct Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 { // System.Boolean System.Nullable`1::hasValue bool ___hasValue_0; // T System.Nullable`1::value bool ___value_1; }; // System.Nullable`1 struct Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 { // System.Boolean System.Nullable`1::hasValue bool ___hasValue_0; // T System.Nullable`1::value int32_t ___value_1; }; // UnityEngine.UIElements.StyleDataRef`1 struct StyleDataRef_1_tBB9987581539847AE5CCA2EA2349E05CDC9127FA { // UnityEngine.UIElements.StyleDataRef`1/RefCounted UnityEngine.UIElements.StyleDataRef`1::m_Ref RefCounted_t6B975CD3D06E8D955346FC0D66E8F6E449D49A44* ___m_Ref_0; }; // UnityEngine.UIElements.StyleDataRef`1 struct StyleDataRef_1_t5330A6F4EAC0EAB88E3B9849D866AA23BB6BE5F4 { // UnityEngine.UIElements.StyleDataRef`1/RefCounted UnityEngine.UIElements.StyleDataRef`1::m_Ref RefCounted_t0E133AD36715877AE1CE72539A0199B4D3AA8CD1* ___m_Ref_0; }; // UnityEngine.UIElements.StyleDataRef`1 struct StyleDataRef_1_tF773E9CBC6DC0FEB38DF95A6F3F47AC49AE045B3 { // UnityEngine.UIElements.StyleDataRef`1/RefCounted UnityEngine.UIElements.StyleDataRef`1::m_Ref RefCounted_t81BCBAE57D930C934CF7A439452D65303AC6A8CD* ___m_Ref_0; }; // UnityEngine.UIElements.StyleDataRef`1 struct StyleDataRef_1_t1D59CCAB740BE6B330D5B5FDA9F67391800200B3 { // UnityEngine.UIElements.StyleDataRef`1/RefCounted UnityEngine.UIElements.StyleDataRef`1::m_Ref RefCounted_t78303B1CD3D08C664ABB15EBD7C882DA3E06CF7D* ___m_Ref_0; }; // UnityEngine.UIElements.StyleDataRef`1 struct StyleDataRef_1_t6A7B146DD79EDF7F42CD8CCF3E411B40AA729B8E { // UnityEngine.UIElements.StyleDataRef`1/RefCounted UnityEngine.UIElements.StyleDataRef`1::m_Ref RefCounted_tA9FB4D63A1064BD322AFDFCD70319CB384C057D9* ___m_Ref_0; }; // UnityEngine.UIElements.StyleDataRef`1 struct StyleDataRef_1_t9CB834B90E638D92A3BE5123B0D3989697AA87FC { // UnityEngine.UIElements.StyleDataRef`1/RefCounted UnityEngine.UIElements.StyleDataRef`1::m_Ref RefCounted_t812D790A2C787F18230F9234F6C9B84D4AC1A85A* ___m_Ref_0; }; // UnityEngine.UIElements.UIR.Alloc struct Alloc_t78312CFE58F38082281E80E297AE6176BD2BD8AE { // System.UInt32 UnityEngine.UIElements.UIR.Alloc::start uint32_t ___start_0; // System.UInt32 UnityEngine.UIElements.UIR.Alloc::size uint32_t ___size_1; // System.Object UnityEngine.UIElements.UIR.Alloc::handle RuntimeObject* ___handle_2; // System.Boolean UnityEngine.UIElements.UIR.Alloc::shortLived bool ___shortLived_3; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.UIR.Alloc struct Alloc_t78312CFE58F38082281E80E297AE6176BD2BD8AE_marshaled_pinvoke { uint32_t ___start_0; uint32_t ___size_1; Il2CppIUnknown* ___handle_2; int32_t ___shortLived_3; }; // Native definition for COM marshalling of UnityEngine.UIElements.UIR.Alloc struct Alloc_t78312CFE58F38082281E80E297AE6176BD2BD8AE_marshaled_com { uint32_t ___start_0; uint32_t ___size_1; Il2CppIUnknown* ___handle_2; int32_t ___shortLived_3; }; // UnityEngine.UIElements.UIR.BitmapAllocator32 struct BitmapAllocator32_t87110600670688D0E149D61E1BDA8F45ADC59C73 { // System.Int32 UnityEngine.UIElements.UIR.BitmapAllocator32::m_PageHeight int32_t ___m_PageHeight_0; // System.Collections.Generic.List`1 UnityEngine.UIElements.UIR.BitmapAllocator32::m_Pages List_1_t3FD5514751EB43E4AB1C145E04BA259B6CD6C74E* ___m_Pages_1; // System.Collections.Generic.List`1 UnityEngine.UIElements.UIR.BitmapAllocator32::m_AllocMap List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A* ___m_AllocMap_2; // System.Int32 UnityEngine.UIElements.UIR.BitmapAllocator32::m_EntryWidth int32_t ___m_EntryWidth_3; // System.Int32 UnityEngine.UIElements.UIR.BitmapAllocator32::m_EntryHeight int32_t ___m_EntryHeight_4; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.UIR.BitmapAllocator32 struct BitmapAllocator32_t87110600670688D0E149D61E1BDA8F45ADC59C73_marshaled_pinvoke { int32_t ___m_PageHeight_0; List_1_t3FD5514751EB43E4AB1C145E04BA259B6CD6C74E* ___m_Pages_1; List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A* ___m_AllocMap_2; int32_t ___m_EntryWidth_3; int32_t ___m_EntryHeight_4; }; // Native definition for COM marshalling of UnityEngine.UIElements.UIR.BitmapAllocator32 struct BitmapAllocator32_t87110600670688D0E149D61E1BDA8F45ADC59C73_marshaled_com { int32_t ___m_PageHeight_0; List_1_t3FD5514751EB43E4AB1C145E04BA259B6CD6C74E* ___m_Pages_1; List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A* ___m_AllocMap_2; int32_t ___m_EntryWidth_3; int32_t ___m_EntryHeight_4; }; // System.Boolean struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22 { // System.Boolean System.Boolean::m_value bool ___m_value_0; }; struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields { // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; }; // UnityEngine.UIElements.UIR.ChainBuilderStats struct ChainBuilderStats_t6E755490CE0B312AE16FEBC6734C7F2836A8067C { // System.UInt32 UnityEngine.UIElements.UIR.ChainBuilderStats::elementsAdded uint32_t ___elementsAdded_0; // System.UInt32 UnityEngine.UIElements.UIR.ChainBuilderStats::elementsRemoved uint32_t ___elementsRemoved_1; // System.UInt32 UnityEngine.UIElements.UIR.ChainBuilderStats::recursiveClipUpdates uint32_t ___recursiveClipUpdates_2; // System.UInt32 UnityEngine.UIElements.UIR.ChainBuilderStats::recursiveClipUpdatesExpanded uint32_t ___recursiveClipUpdatesExpanded_3; // System.UInt32 UnityEngine.UIElements.UIR.ChainBuilderStats::nonRecursiveClipUpdates uint32_t ___nonRecursiveClipUpdates_4; // System.UInt32 UnityEngine.UIElements.UIR.ChainBuilderStats::recursiveTransformUpdates uint32_t ___recursiveTransformUpdates_5; // System.UInt32 UnityEngine.UIElements.UIR.ChainBuilderStats::recursiveTransformUpdatesExpanded uint32_t ___recursiveTransformUpdatesExpanded_6; // System.UInt32 UnityEngine.UIElements.UIR.ChainBuilderStats::recursiveOpacityUpdates uint32_t ___recursiveOpacityUpdates_7; // System.UInt32 UnityEngine.UIElements.UIR.ChainBuilderStats::recursiveOpacityUpdatesExpanded uint32_t ___recursiveOpacityUpdatesExpanded_8; // System.UInt32 UnityEngine.UIElements.UIR.ChainBuilderStats::colorUpdates uint32_t ___colorUpdates_9; // System.UInt32 UnityEngine.UIElements.UIR.ChainBuilderStats::colorUpdatesExpanded uint32_t ___colorUpdatesExpanded_10; // System.UInt32 UnityEngine.UIElements.UIR.ChainBuilderStats::recursiveVisualUpdates uint32_t ___recursiveVisualUpdates_11; // System.UInt32 UnityEngine.UIElements.UIR.ChainBuilderStats::recursiveVisualUpdatesExpanded uint32_t ___recursiveVisualUpdatesExpanded_12; // System.UInt32 UnityEngine.UIElements.UIR.ChainBuilderStats::nonRecursiveVisualUpdates uint32_t ___nonRecursiveVisualUpdates_13; // System.UInt32 UnityEngine.UIElements.UIR.ChainBuilderStats::dirtyProcessed uint32_t ___dirtyProcessed_14; // System.UInt32 UnityEngine.UIElements.UIR.ChainBuilderStats::nudgeTransformed uint32_t ___nudgeTransformed_15; // System.UInt32 UnityEngine.UIElements.UIR.ChainBuilderStats::boneTransformed uint32_t ___boneTransformed_16; // System.UInt32 UnityEngine.UIElements.UIR.ChainBuilderStats::skipTransformed uint32_t ___skipTransformed_17; // System.UInt32 UnityEngine.UIElements.UIR.ChainBuilderStats::visualUpdateTransformed uint32_t ___visualUpdateTransformed_18; // System.UInt32 UnityEngine.UIElements.UIR.ChainBuilderStats::updatedMeshAllocations uint32_t ___updatedMeshAllocations_19; // System.UInt32 UnityEngine.UIElements.UIR.ChainBuilderStats::newMeshAllocations uint32_t ___newMeshAllocations_20; // System.UInt32 UnityEngine.UIElements.UIR.ChainBuilderStats::groupTransformElementsChanged uint32_t ___groupTransformElementsChanged_21; // System.UInt32 UnityEngine.UIElements.UIR.ChainBuilderStats::immedateRenderersActive uint32_t ___immedateRenderersActive_22; // System.UInt32 UnityEngine.UIElements.UIR.ChainBuilderStats::textUpdates uint32_t ___textUpdates_23; }; // System.Char struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17 { // System.Char System.Char::m_value Il2CppChar ___m_value_0; }; struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields { // System.Byte[] System.Char::s_categoryForLatin1 ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1_3; }; // UnityEngine.Color struct Color_tD001788D726C3A7F1379BEED0260B9591F440C1F { // System.Single UnityEngine.Color::r float ___r_0; // System.Single UnityEngine.Color::g float ___g_1; // System.Single UnityEngine.Color::b float ___b_2; // System.Single UnityEngine.Color::a float ___a_3; }; // UnityEngine.UIElements.CreationContext struct CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 { // UnityEngine.UIElements.VisualElement UnityEngine.UIElements.CreationContext::k__BackingField VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___U3CtargetU3Ek__BackingField_1; // UnityEngine.UIElements.VisualTreeAsset UnityEngine.UIElements.CreationContext::k__BackingField VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* ___U3CvisualTreeAssetU3Ek__BackingField_2; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.CreationContext::k__BackingField Dictionary_2_t41165BF747F041590086BE39A59BE164430A3CEF* ___U3CslotInsertionPointsU3Ek__BackingField_3; // System.Collections.Generic.List`1 UnityEngine.UIElements.CreationContext::k__BackingField List_1_t70EE7982F45810D4B024CF720D910E67974A3094* ___U3CattributeOverridesU3Ek__BackingField_4; }; struct CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257_StaticFields { // UnityEngine.UIElements.CreationContext UnityEngine.UIElements.CreationContext::Default CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 ___Default_0; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.CreationContext struct CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257_marshaled_pinvoke { VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___U3CtargetU3Ek__BackingField_1; VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* ___U3CvisualTreeAssetU3Ek__BackingField_2; Dictionary_2_t41165BF747F041590086BE39A59BE164430A3CEF* ___U3CslotInsertionPointsU3Ek__BackingField_3; List_1_t70EE7982F45810D4B024CF720D910E67974A3094* ___U3CattributeOverridesU3Ek__BackingField_4; }; // Native definition for COM marshalling of UnityEngine.UIElements.CreationContext struct CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257_marshaled_com { VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___U3CtargetU3Ek__BackingField_1; VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* ___U3CvisualTreeAssetU3Ek__BackingField_2; Dictionary_2_t41165BF747F041590086BE39A59BE164430A3CEF* ___U3CslotInsertionPointsU3Ek__BackingField_3; List_1_t70EE7982F45810D4B024CF720D910E67974A3094* ___U3CattributeOverridesU3Ek__BackingField_4; }; // System.Double struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F { // System.Double System.Double::m_value double ___m_value_0; }; // UnityEngine.UIElements.DropdownMenuSeparator struct DropdownMenuSeparator_t79406BA3331B4A0D4DAC21EBC62F162365623A4A : public DropdownMenuItem_t06E130627F21DC0FA6A1968241363AB0B48F1B10 { // System.String UnityEngine.UIElements.DropdownMenuSeparator::k__BackingField String_t* ___U3CsubMenuPathU3Ek__BackingField_0; }; // Microsoft.CodeAnalysis.EmbeddedAttribute struct EmbeddedAttribute_t54DF270ED07D6741FAAE3C11E26358CFF6702D03 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA { }; // System.Enum struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F { }; struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_StaticFields { // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___enumSeperatorCharArray_0; }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com { }; // UnityEngine.UIElements.EventDebuggerLogIMGUICall struct EventDebuggerLogIMGUICall_t1B803273A4B133D61B1FB9289278542A8739C4A8 { union { struct { }; uint8_t EventDebuggerLogIMGUICall_t1B803273A4B133D61B1FB9289278542A8739C4A8__padding[1]; }; }; // UnityEngine.UIElements.EventDispatcherGate struct EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097 { // UnityEngine.UIElements.EventDispatcher UnityEngine.UIElements.EventDispatcherGate::m_Dispatcher EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* ___m_Dispatcher_0; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.EventDispatcherGate struct EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097_marshaled_pinvoke { EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* ___m_Dispatcher_0; }; // Native definition for COM marshalling of UnityEngine.UIElements.EventDispatcherGate struct EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097_marshaled_com { EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* ___m_Dispatcher_0; }; // UnityEngine.EventInterests struct EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8 { // System.Boolean UnityEngine.EventInterests::k__BackingField bool ___U3CwantsMouseMoveU3Ek__BackingField_0; // System.Boolean UnityEngine.EventInterests::k__BackingField bool ___U3CwantsMouseEnterLeaveWindowU3Ek__BackingField_1; // System.Boolean UnityEngine.EventInterests::k__BackingField bool ___U3CwantsLessLayoutEventsU3Ek__BackingField_2; }; // Native definition for P/Invoke marshalling of UnityEngine.EventInterests struct EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8_marshaled_pinvoke { int32_t ___U3CwantsMouseMoveU3Ek__BackingField_0; int32_t ___U3CwantsMouseEnterLeaveWindowU3Ek__BackingField_1; int32_t ___U3CwantsLessLayoutEventsU3Ek__BackingField_2; }; // Native definition for COM marshalling of UnityEngine.EventInterests struct EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8_marshaled_com { int32_t ___U3CwantsMouseMoveU3Ek__BackingField_0; int32_t ___U3CwantsMouseEnterLeaveWindowU3Ek__BackingField_1; int32_t ___U3CwantsLessLayoutEventsU3Ek__BackingField_2; }; // UnityEngine.UIElements.Focusable struct Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0 : public CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4 { // System.Boolean UnityEngine.UIElements.Focusable::k__BackingField bool ___U3CfocusableU3Ek__BackingField_1; // System.Int32 UnityEngine.UIElements.Focusable::k__BackingField int32_t ___U3CtabIndexU3Ek__BackingField_2; // System.Boolean UnityEngine.UIElements.Focusable::m_DelegatesFocus bool ___m_DelegatesFocus_3; // System.Boolean UnityEngine.UIElements.Focusable::m_ExcludeFromFocusRing bool ___m_ExcludeFromFocusRing_4; // System.Boolean UnityEngine.UIElements.Focusable::isIMGUIContainer bool ___isIMGUIContainer_5; }; // System.Int32 struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C { // System.Int32 System.Int32::m_value int32_t ___m_value_0; }; // System.Int64 struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3 { // System.Int64 System.Int64::m_value int64_t ___m_value_0; }; // System.IntPtr struct IntPtr_t { // System.Void* System.IntPtr::m_value void* ___m_value_0; }; struct IntPtr_t_StaticFields { // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; }; // System.Runtime.CompilerServices.IsReadOnlyAttribute struct IsReadOnlyAttribute_t43C72B431AEE71EE45AB1CE6B987A80994B7B15E : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA { }; // UnityEngine.UIElements.KeyboardNavigationManipulator struct KeyboardNavigationManipulator_t7E9BA3568ADC1660C4E09B924ECD457E33B835B3 : public Manipulator_tD5727ABA1F5AD1A50927212FAEB090E6BBCB4EBE { // System.Action`2 UnityEngine.UIElements.KeyboardNavigationManipulator::m_Action Action_2_t4FD84D64C1341169AC2F73750A356411BCEAF88A* ___m_Action_1; }; // UnityEngine.Mathf struct Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682 { union { struct { }; uint8_t Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682__padding[1]; }; }; struct Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_StaticFields { // System.Single UnityEngine.Mathf::Epsilon float ___Epsilon_0; }; // UnityEngine.Matrix4x4 struct Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 { // System.Single UnityEngine.Matrix4x4::m00 float ___m00_0; // System.Single UnityEngine.Matrix4x4::m10 float ___m10_1; // System.Single UnityEngine.Matrix4x4::m20 float ___m20_2; // System.Single UnityEngine.Matrix4x4::m30 float ___m30_3; // System.Single UnityEngine.Matrix4x4::m01 float ___m01_4; // System.Single UnityEngine.Matrix4x4::m11 float ___m11_5; // System.Single UnityEngine.Matrix4x4::m21 float ___m21_6; // System.Single UnityEngine.Matrix4x4::m31 float ___m31_7; // System.Single UnityEngine.Matrix4x4::m02 float ___m02_8; // System.Single UnityEngine.Matrix4x4::m12 float ___m12_9; // System.Single UnityEngine.Matrix4x4::m22 float ___m22_10; // System.Single UnityEngine.Matrix4x4::m32 float ___m32_11; // System.Single UnityEngine.Matrix4x4::m03 float ___m03_12; // System.Single UnityEngine.Matrix4x4::m13 float ___m13_13; // System.Single UnityEngine.Matrix4x4::m23 float ___m23_14; // System.Single UnityEngine.Matrix4x4::m33 float ___m33_15; }; struct Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_StaticFields { // UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::zeroMatrix Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___zeroMatrix_16; // UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::identityMatrix Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___identityMatrix_17; }; // UnityEngine.PropertyName struct PropertyName_tE4B4AAA58AF3BF2C0CD95509EB7B786F096901C2 { // System.Int32 UnityEngine.PropertyName::id int32_t ___id_0; }; // UnityEngine.Rect struct Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D { // System.Single UnityEngine.Rect::m_XMin float ___m_XMin_0; // System.Single UnityEngine.Rect::m_YMin float ___m_YMin_1; // System.Single UnityEngine.Rect::m_Width float ___m_Width_2; // System.Single UnityEngine.Rect::m_Height float ___m_Height_3; }; // UnityEngine.RectInt struct RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8 { // System.Int32 UnityEngine.RectInt::m_XMin int32_t ___m_XMin_0; // System.Int32 UnityEngine.RectInt::m_YMin int32_t ___m_YMin_1; // System.Int32 UnityEngine.RectInt::m_Width int32_t ___m_Width_2; // System.Int32 UnityEngine.RectInt::m_Height int32_t ___m_Height_3; }; // System.Single struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C { // System.Single System.Single::m_value float ___m_value_0; }; // UnityEngine.UIElements.TextureId struct TextureId_tFF4B4AAE53408AB10B0B89CCA5F7B50CF2535E58 { // System.Int32 UnityEngine.UIElements.TextureId::m_Index int32_t ___m_Index_0; }; struct TextureId_tFF4B4AAE53408AB10B0B89CCA5F7B50CF2535E58_StaticFields { // UnityEngine.UIElements.TextureId UnityEngine.UIElements.TextureId::invalid TextureId_tFF4B4AAE53408AB10B0B89CCA5F7B50CF2535E58 ___invalid_1; }; // UnityEngine.UIElements.TimerState struct TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE { // System.Int64 UnityEngine.UIElements.TimerState::k__BackingField int64_t ___U3CstartU3Ek__BackingField_0; // System.Int64 UnityEngine.UIElements.TimerState::k__BackingField int64_t ___U3CnowU3Ek__BackingField_1; }; // System.UInt16 struct UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455 { // System.UInt16 System.UInt16::m_value uint16_t ___m_value_0; }; // System.UInt32 struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B { // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; }; // UnityEngine.Vector2 struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 { // System.Single UnityEngine.Vector2::x float ___x_0; // System.Single UnityEngine.Vector2::y float ___y_1; }; struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_StaticFields { // UnityEngine.Vector2 UnityEngine.Vector2::zeroVector Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___zeroVector_2; // UnityEngine.Vector2 UnityEngine.Vector2::oneVector Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___oneVector_3; // UnityEngine.Vector2 UnityEngine.Vector2::upVector Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___upVector_4; // UnityEngine.Vector2 UnityEngine.Vector2::downVector Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___downVector_5; // UnityEngine.Vector2 UnityEngine.Vector2::leftVector Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___leftVector_6; // UnityEngine.Vector2 UnityEngine.Vector2::rightVector Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___rightVector_7; // UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___positiveInfinityVector_8; // UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___negativeInfinityVector_9; }; // UnityEngine.Vector2Int struct Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A { // System.Int32 UnityEngine.Vector2Int::m_X int32_t ___m_X_0; // System.Int32 UnityEngine.Vector2Int::m_Y int32_t ___m_Y_1; }; struct Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A_StaticFields { // UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Zero Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Zero_2; // UnityEngine.Vector2Int UnityEngine.Vector2Int::s_One Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_One_3; // UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Up Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Up_4; // UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Down Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Down_5; // UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Left Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Left_6; // UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Right Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Right_7; }; // UnityEngine.Vector3 struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 { // System.Single UnityEngine.Vector3::x float ___x_2; // System.Single UnityEngine.Vector3::y float ___y_3; // System.Single UnityEngine.Vector3::z float ___z_4; }; struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields { // UnityEngine.Vector3 UnityEngine.Vector3::zeroVector Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___zeroVector_5; // UnityEngine.Vector3 UnityEngine.Vector3::oneVector Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___oneVector_6; // UnityEngine.Vector3 UnityEngine.Vector3::upVector Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___upVector_7; // UnityEngine.Vector3 UnityEngine.Vector3::downVector Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___downVector_8; // UnityEngine.Vector3 UnityEngine.Vector3::leftVector Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___leftVector_9; // UnityEngine.Vector3 UnityEngine.Vector3::rightVector Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rightVector_10; // UnityEngine.Vector3 UnityEngine.Vector3::forwardVector Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___forwardVector_11; // UnityEngine.Vector3 UnityEngine.Vector3::backVector Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___backVector_12; // UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___positiveInfinityVector_13; // UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___negativeInfinityVector_14; }; // UnityEngine.Vector4 struct Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 { // System.Single UnityEngine.Vector4::x float ___x_1; // System.Single UnityEngine.Vector4::y float ___y_2; // System.Single UnityEngine.Vector4::z float ___z_3; // System.Single UnityEngine.Vector4::w float ___w_4; }; struct Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_StaticFields { // UnityEngine.Vector4 UnityEngine.Vector4::zeroVector Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___zeroVector_5; // UnityEngine.Vector4 UnityEngine.Vector4::oneVector Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___oneVector_6; // UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___positiveInfinityVector_7; // UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___negativeInfinityVector_8; }; // UnityEngine.UIElements.VisualElementFocusChangeDirection struct VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C : public FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF { }; struct VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_StaticFields { // UnityEngine.UIElements.VisualElementFocusChangeDirection UnityEngine.UIElements.VisualElementFocusChangeDirection::s_Left VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C* ___s_Left_4; // UnityEngine.UIElements.VisualElementFocusChangeDirection UnityEngine.UIElements.VisualElementFocusChangeDirection::s_Right VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C* ___s_Right_5; }; // System.Void struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915 { union { struct { }; uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1]; }; }; // UnityEngine.UIElements.BindableElement/UxmlFactory struct UxmlFactory_t1DB561BFFA7E2E3836F7AB008BCE7B6119542F33 : public UxmlFactory_2_tD60CA5C4D4FEBDFD650B1967D172C9AC677FB22A { }; // UnityEngine.UIElements.EventDispatcher/DispatchContext struct DispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455 { // System.UInt32 UnityEngine.UIElements.EventDispatcher/DispatchContext::m_GateCount uint32_t ___m_GateCount_0; // System.Collections.Generic.Queue`1 UnityEngine.UIElements.EventDispatcher/DispatchContext::m_Queue Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* ___m_Queue_1; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.EventDispatcher/DispatchContext struct DispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455_marshaled_pinvoke { uint32_t ___m_GateCount_0; Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* ___m_Queue_1; }; // Native definition for COM marshalling of UnityEngine.UIElements.EventDispatcher/DispatchContext struct DispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455_marshaled_com { uint32_t ___m_GateCount_0; Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* ___m_Queue_1; }; // UnityEngine.UIElements.EventDispatcher/EventRecord struct EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2 { // UnityEngine.UIElements.EventBase UnityEngine.UIElements.EventDispatcher/EventRecord::m_Event EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___m_Event_0; // UnityEngine.UIElements.IPanel UnityEngine.UIElements.EventDispatcher/EventRecord::m_Panel RuntimeObject* ___m_Panel_1; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.EventDispatcher/EventRecord struct EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2_marshaled_pinvoke { EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___m_Event_0; RuntimeObject* ___m_Panel_1; }; // Native definition for COM marshalling of UnityEngine.UIElements.EventDispatcher/EventRecord struct EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2_marshaled_com { EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___m_Event_0; RuntimeObject* ___m_Panel_1; }; // UnityEngine.UIElements.FocusController/FocusedElement struct FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF { // UnityEngine.UIElements.VisualElement UnityEngine.UIElements.FocusController/FocusedElement::m_SubTreeRoot VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_SubTreeRoot_0; // UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusController/FocusedElement::m_FocusedElement Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___m_FocusedElement_1; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.FocusController/FocusedElement struct FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF_marshaled_pinvoke { VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_SubTreeRoot_0; Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___m_FocusedElement_1; }; // Native definition for COM marshalling of UnityEngine.UIElements.FocusController/FocusedElement struct FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF_marshaled_com { VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_SubTreeRoot_0; Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___m_FocusedElement_1; }; // UnityEngine.GUIClip/ParentClipScope struct ParentClipScope_tDAB1300C623213518730D926A970098BECFD9C52 { // System.Boolean UnityEngine.GUIClip/ParentClipScope::m_Disposed bool ___m_Disposed_0; }; // Native definition for P/Invoke marshalling of UnityEngine.GUIClip/ParentClipScope struct ParentClipScope_tDAB1300C623213518730D926A970098BECFD9C52_marshaled_pinvoke { int32_t ___m_Disposed_0; }; // Native definition for COM marshalling of UnityEngine.GUIClip/ParentClipScope struct ParentClipScope_tDAB1300C623213518730D926A970098BECFD9C52_marshaled_com { int32_t ___m_Disposed_0; }; // UnityEngine.UIElements.IMGUIContainer/UxmlFactory struct UxmlFactory_tF9683EC71E4F687E36692AD4C22A0F0A79BA5557 : public UxmlFactory_2_t885CE124C6F6A5A625EFB5E207B18271EE8A07FF { }; // UnityEngine.UIElements.KeyboardNavigationManipulator/<>c__DisplayClass5_0 struct U3CU3Ec__DisplayClass5_0_t8C4CAE979CBF5DC9EBBB7CB771C37EE81FB740F1 { // UnityEngine.UIElements.KeyDownEvent UnityEngine.UIElements.KeyboardNavigationManipulator/<>c__DisplayClass5_0::evt KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* ___evt_0; }; // UnityEngine.UIElements.KeyboardNavigationManipulator/<>c__DisplayClass6_0 struct U3CU3Ec__DisplayClass6_0_t400E285BAFD56DF6D849B02FB1136745D9331902 { // UnityEngine.UIElements.KeyDownEvent UnityEngine.UIElements.KeyboardNavigationManipulator/<>c__DisplayClass6_0::evt KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* ___evt_0; }; // UnityEngine.UIElements.UIR.RenderChain/DepthOrderedDirtyTracking struct DepthOrderedDirtyTracking_t7972148BB4524E0E788C8D94A005C3BAF8C189A4 { // System.Collections.Generic.List`1 UnityEngine.UIElements.UIR.RenderChain/DepthOrderedDirtyTracking::heads List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* ___heads_0; // System.Collections.Generic.List`1 UnityEngine.UIElements.UIR.RenderChain/DepthOrderedDirtyTracking::tails List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* ___tails_1; // System.Int32[] UnityEngine.UIElements.UIR.RenderChain/DepthOrderedDirtyTracking::minDepths Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___minDepths_2; // System.Int32[] UnityEngine.UIElements.UIR.RenderChain/DepthOrderedDirtyTracking::maxDepths Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___maxDepths_3; // System.UInt32 UnityEngine.UIElements.UIR.RenderChain/DepthOrderedDirtyTracking::dirtyID uint32_t ___dirtyID_4; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.UIR.RenderChain/DepthOrderedDirtyTracking struct DepthOrderedDirtyTracking_t7972148BB4524E0E788C8D94A005C3BAF8C189A4_marshaled_pinvoke { List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* ___heads_0; List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* ___tails_1; Il2CppSafeArray/*NONE*/* ___minDepths_2; Il2CppSafeArray/*NONE*/* ___maxDepths_3; uint32_t ___dirtyID_4; }; // Native definition for COM marshalling of UnityEngine.UIElements.UIR.RenderChain/DepthOrderedDirtyTracking struct DepthOrderedDirtyTracking_t7972148BB4524E0E788C8D94A005C3BAF8C189A4_marshaled_com { List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* ___heads_0; List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* ___tails_1; Il2CppSafeArray/*NONE*/* ___minDepths_2; Il2CppSafeArray/*NONE*/* ___maxDepths_3; uint32_t ___dirtyID_4; }; // UnityEngine.UIElements.VisualElement/Hierarchy struct Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 { // UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement/Hierarchy::m_Owner VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Owner_0; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.VisualElement/Hierarchy struct Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677_marshaled_pinvoke { VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Owner_0; }; // Native definition for COM marshalling of UnityEngine.UIElements.VisualElement/Hierarchy struct Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677_marshaled_com { VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Owner_0; }; // UnityEngine.UIElements.VisualElement/UxmlTraits struct UxmlTraits_t45D4AB9B0148A110826C5201495FF23814A12E4B : public UxmlTraits_t3311A2EDB0705584A614B5511216DAD5279C4160 { // UnityEngine.UIElements.UxmlStringAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::m_Name UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* ___m_Name_1; // UnityEngine.UIElements.UxmlStringAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::m_ViewDataKey UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* ___m_ViewDataKey_2; // UnityEngine.UIElements.UxmlEnumAttributeDescription`1 UnityEngine.UIElements.VisualElement/UxmlTraits::m_PickingMode UxmlEnumAttributeDescription_1_tC4ABA6DF74F58C15F2597C1640A58CC16D9551B3* ___m_PickingMode_3; // UnityEngine.UIElements.UxmlStringAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::m_Tooltip UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* ___m_Tooltip_4; // UnityEngine.UIElements.UxmlEnumAttributeDescription`1 UnityEngine.UIElements.VisualElement/UxmlTraits::m_UsageHints UxmlEnumAttributeDescription_1_tBBB2CDD127ABE7FAC6ED7B5CA5A3911FF0AF7CE4* ___m_UsageHints_5; // UnityEngine.UIElements.UxmlIntAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::k__BackingField UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* ___U3CfocusIndexU3Ek__BackingField_6; // UnityEngine.UIElements.UxmlIntAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::m_TabIndex UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* ___m_TabIndex_7; // UnityEngine.UIElements.UxmlBoolAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::k__BackingField UxmlBoolAttributeDescription_t86EA1242C539B39911E63699A4AE0C47918701CE* ___U3CfocusableU3Ek__BackingField_8; // UnityEngine.UIElements.UxmlStringAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::m_Class UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* ___m_Class_9; // UnityEngine.UIElements.UxmlStringAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::m_ContentContainer UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* ___m_ContentContainer_10; // UnityEngine.UIElements.UxmlStringAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::m_Style UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* ___m_Style_11; }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_tC40C530F62540E93BDAAFF42E8BDE3B3B3328EA0 { // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66* ____list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::_index int32_t ____index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::_version int32_t ____version_2; // T System.Collections.Generic.List`1/Enumerator::_current FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF ____current_3; }; // Unity.Collections.Allocator struct Allocator_t996642592271AAD9EE688F142741D512C07B5824 { // System.Int32 Unity.Collections.Allocator::value__ int32_t ___value___2; }; // System.Reflection.BindingFlags struct BindingFlags_t5DC2835E4AE9C1862B3AD172EF35B6A5F4F1812C { // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___2; }; // UnityEngine.UIElements.UIR.Implementation.ClipMethod struct ClipMethod_t576E65D24928AB1D0072DB926DDFA98B84FBCEDB { // System.Int32 UnityEngine.UIElements.UIR.Implementation.ClipMethod::value__ int32_t ___value___2; }; // UnityEngine.ColorSpace struct ColorSpace_tD0808E0BE85FD3B9774234676F83A872F4EDA3C7 { // System.Int32 UnityEngine.ColorSpace::value__ int32_t ___value___2; }; // UnityEngine.UIElements.ComputedStyle struct ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C { // UnityEngine.UIElements.StyleDataRef`1 UnityEngine.UIElements.ComputedStyle::inheritedData StyleDataRef_1_tBB9987581539847AE5CCA2EA2349E05CDC9127FA ___inheritedData_0; // UnityEngine.UIElements.StyleDataRef`1 UnityEngine.UIElements.ComputedStyle::layoutData StyleDataRef_1_t5330A6F4EAC0EAB88E3B9849D866AA23BB6BE5F4 ___layoutData_1; // UnityEngine.UIElements.StyleDataRef`1 UnityEngine.UIElements.ComputedStyle::rareData StyleDataRef_1_tF773E9CBC6DC0FEB38DF95A6F3F47AC49AE045B3 ___rareData_2; // UnityEngine.UIElements.StyleDataRef`1 UnityEngine.UIElements.ComputedStyle::transformData StyleDataRef_1_t1D59CCAB740BE6B330D5B5FDA9F67391800200B3 ___transformData_3; // UnityEngine.UIElements.StyleDataRef`1 UnityEngine.UIElements.ComputedStyle::transitionData StyleDataRef_1_t6A7B146DD79EDF7F42CD8CCF3E411B40AA729B8E ___transitionData_4; // UnityEngine.UIElements.StyleDataRef`1 UnityEngine.UIElements.ComputedStyle::visualData StyleDataRef_1_t9CB834B90E638D92A3BE5123B0D3989697AA87FC ___visualData_5; // UnityEngine.Yoga.YogaNode UnityEngine.UIElements.ComputedStyle::yogaNode YogaNode_t4B5B593220CCB315B5A60CB48BA4795636F04DDA* ___yogaNode_6; // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.ComputedStyle::customProperties Dictionary_2_t645C7B1DAE2D839B52A5E387C165CE13D5465B00* ___customProperties_7; // System.Int64 UnityEngine.UIElements.ComputedStyle::matchingRulesHash int64_t ___matchingRulesHash_8; // System.Single UnityEngine.UIElements.ComputedStyle::dpiScaling float ___dpiScaling_9; // UnityEngine.UIElements.ComputedTransitionProperty[] UnityEngine.UIElements.ComputedStyle::computedTransitions ComputedTransitionPropertyU5BU5D_t25B9E78F5276CDA297C8215C316452CAB8219E82* ___computedTransitions_10; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.ComputedStyle struct ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C_marshaled_pinvoke { StyleDataRef_1_tBB9987581539847AE5CCA2EA2349E05CDC9127FA ___inheritedData_0; StyleDataRef_1_t5330A6F4EAC0EAB88E3B9849D866AA23BB6BE5F4 ___layoutData_1; StyleDataRef_1_tF773E9CBC6DC0FEB38DF95A6F3F47AC49AE045B3 ___rareData_2; StyleDataRef_1_t1D59CCAB740BE6B330D5B5FDA9F67391800200B3 ___transformData_3; StyleDataRef_1_t6A7B146DD79EDF7F42CD8CCF3E411B40AA729B8E ___transitionData_4; StyleDataRef_1_t9CB834B90E638D92A3BE5123B0D3989697AA87FC ___visualData_5; YogaNode_t4B5B593220CCB315B5A60CB48BA4795636F04DDA* ___yogaNode_6; Dictionary_2_t645C7B1DAE2D839B52A5E387C165CE13D5465B00* ___customProperties_7; int64_t ___matchingRulesHash_8; float ___dpiScaling_9; ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_pinvoke* ___computedTransitions_10; }; // Native definition for COM marshalling of UnityEngine.UIElements.ComputedStyle struct ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C_marshaled_com { StyleDataRef_1_tBB9987581539847AE5CCA2EA2349E05CDC9127FA ___inheritedData_0; StyleDataRef_1_t5330A6F4EAC0EAB88E3B9849D866AA23BB6BE5F4 ___layoutData_1; StyleDataRef_1_tF773E9CBC6DC0FEB38DF95A6F3F47AC49AE045B3 ___rareData_2; StyleDataRef_1_t1D59CCAB740BE6B330D5B5FDA9F67391800200B3 ___transformData_3; StyleDataRef_1_t6A7B146DD79EDF7F42CD8CCF3E411B40AA729B8E ___transitionData_4; StyleDataRef_1_t9CB834B90E638D92A3BE5123B0D3989697AA87FC ___visualData_5; YogaNode_t4B5B593220CCB315B5A60CB48BA4795636F04DDA* ___yogaNode_6; Dictionary_2_t645C7B1DAE2D839B52A5E387C165CE13D5465B00* ___customProperties_7; int64_t ___matchingRulesHash_8; float ___dpiScaling_9; ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_com* ___computedTransitions_10; }; // UnityEngine.UIElements.ContextType struct ContextType_t50FAC10DB1D4E29B37E532DED9CAA804FC4E59A0 { // System.Int32 UnityEngine.UIElements.ContextType::value__ int32_t ___value___2; }; // UnityEngine.UIElements.Cursor struct Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82 { // UnityEngine.Texture2D UnityEngine.UIElements.Cursor::k__BackingField Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___U3CtextureU3Ek__BackingField_0; // UnityEngine.Vector2 UnityEngine.UIElements.Cursor::k__BackingField Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3ChotspotU3Ek__BackingField_1; // System.Int32 UnityEngine.UIElements.Cursor::k__BackingField int32_t ___U3CdefaultCursorIdU3Ek__BackingField_2; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.Cursor struct Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82_marshaled_pinvoke { Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___U3CtextureU3Ek__BackingField_0; Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3ChotspotU3Ek__BackingField_1; int32_t ___U3CdefaultCursorIdU3Ek__BackingField_2; }; // Native definition for COM marshalling of UnityEngine.UIElements.Cursor struct Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82_marshaled_com { Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___U3CtextureU3Ek__BackingField_0; Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3ChotspotU3Ek__BackingField_1; int32_t ___U3CdefaultCursorIdU3Ek__BackingField_2; }; // UnityEngine.CursorMode struct CursorMode_t00F22EBA53549D39409497DF00D28A9035CF0C96 { // System.Int32 UnityEngine.CursorMode::value__ int32_t ___value___2; }; // UnityEngine.UIElements.DefaultEventSystem struct DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98 : public RuntimeObject { // UnityEngine.UIElements.DefaultEventSystem/IInput UnityEngine.UIElements.DefaultEventSystem::m_Input RuntimeObject* ___m_Input_1; // System.String UnityEngine.UIElements.DefaultEventSystem::m_HorizontalAxis String_t* ___m_HorizontalAxis_2; // System.String UnityEngine.UIElements.DefaultEventSystem::m_VerticalAxis String_t* ___m_VerticalAxis_3; // System.String UnityEngine.UIElements.DefaultEventSystem::m_SubmitButton String_t* ___m_SubmitButton_4; // System.String UnityEngine.UIElements.DefaultEventSystem::m_CancelButton String_t* ___m_CancelButton_5; // System.Single UnityEngine.UIElements.DefaultEventSystem::m_InputActionsPerSecond float ___m_InputActionsPerSecond_6; // System.Single UnityEngine.UIElements.DefaultEventSystem::m_RepeatDelay float ___m_RepeatDelay_7; // System.Boolean UnityEngine.UIElements.DefaultEventSystem::m_SendingTouchEvents bool ___m_SendingTouchEvents_8; // UnityEngine.Event UnityEngine.UIElements.DefaultEventSystem::m_Event Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___m_Event_9; // UnityEngine.UIElements.BaseRuntimePanel UnityEngine.UIElements.DefaultEventSystem::m_FocusedPanel BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* ___m_FocusedPanel_10; // System.Int32 UnityEngine.UIElements.DefaultEventSystem::m_ConsecutiveMoveCount int32_t ___m_ConsecutiveMoveCount_11; // UnityEngine.Vector2 UnityEngine.UIElements.DefaultEventSystem::m_LastMoveVector Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_LastMoveVector_12; // System.Single UnityEngine.UIElements.DefaultEventSystem::m_PrevActionTime float ___m_PrevActionTime_13; }; struct DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98_StaticFields { // System.Func`1 UnityEngine.UIElements.DefaultEventSystem::IsEditorRemoteConnected Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* ___IsEditorRemoteConnected_0; }; // System.Delegate struct Delegate_t : public RuntimeObject { // 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.IntPtr System.Delegate::interp_method intptr_t ___interp_method_7; // System.IntPtr System.Delegate::interp_invoke_impl intptr_t ___interp_invoke_impl_8; // System.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t* ___method_info_9; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t* ___original_method_info_10; // System.DelegateData System.Delegate::data DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11; // System.Boolean System.Delegate::method_is_virtual bool ___method_is_virtual_12; }; // 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; intptr_t ___interp_method_7; intptr_t ___interp_invoke_impl_8; MethodInfo_t* ___method_info_9; MethodInfo_t* ___original_method_info_10; DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11; int32_t ___method_is_virtual_12; }; // 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; intptr_t ___interp_method_7; intptr_t ___interp_invoke_impl_8; MethodInfo_t* ___method_info_9; MethodInfo_t* ___original_method_info_10; DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11; int32_t ___method_is_virtual_12; }; // UnityEngine.UIElements.DispatchMode struct DispatchMode_t19462FC6D47F5BF63B55FBDEB5C7D498D50DB3DC { // System.Int32 UnityEngine.UIElements.DispatchMode::value__ int32_t ___value___2; }; // UnityEngine.Display struct Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1 : public RuntimeObject { // System.IntPtr UnityEngine.Display::nativeDisplay intptr_t ___nativeDisplay_0; }; struct Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1_StaticFields { // UnityEngine.Display[] UnityEngine.Display::displays DisplayU5BU5D_tAD77D7EE2B839E3EDA0D1C0028B64F867F400C7F* ___displays_1; // UnityEngine.Display UnityEngine.Display::_mainDisplay Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1* ____mainDisplay_2; // UnityEngine.Display/DisplaysUpdatedDelegate UnityEngine.Display::onDisplaysUpdated DisplaysUpdatedDelegate_t1BAACED9BE72131FD59213A3186F5D7AB9E1FD68* ___onDisplaysUpdated_3; }; // UnityEngine.UIElements.DisplayStyle struct DisplayStyle_t87BEDA2F78F764785ED41FC5E622ECB0091B2459 { // System.Int32 UnityEngine.UIElements.DisplayStyle::value__ int32_t ___value___2; }; // UnityEngine.UIElements.DynamicAtlasFilters struct DynamicAtlasFilters_t77D7D10C660BD87504D2E24529954A1D811A0EB8 { // System.Int32 UnityEngine.UIElements.DynamicAtlasFilters::value__ int32_t ___value___2; }; // UnityEngine.Event struct Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB : public RuntimeObject { // System.IntPtr UnityEngine.Event::m_Ptr intptr_t ___m_Ptr_0; }; struct Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB_StaticFields { // UnityEngine.Event UnityEngine.Event::s_Current Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___s_Current_1; // UnityEngine.Event UnityEngine.Event::s_MasterEvent Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___s_MasterEvent_2; }; // Native definition for P/Invoke marshalling of UnityEngine.Event struct Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB_marshaled_pinvoke { intptr_t ___m_Ptr_0; }; // Native definition for COM marshalling of UnityEngine.Event struct Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB_marshaled_com { intptr_t ___m_Ptr_0; }; // UnityEngine.EventModifiers struct EventModifiers_t48244B043FBB42CDD555C6AC43279EC7158777AC { // System.Int32 UnityEngine.EventModifiers::value__ int32_t ___value___2; }; // UnityEngine.EventType struct EventType_tC62F0D77DB08D7326B58B2D8CF43BD45CFD3203E { // System.Int32 UnityEngine.EventType::value__ int32_t ___value___2; }; // System.Exception struct Exception_t : public RuntimeObject { // 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_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15; // System.Int32 System.Exception::caught_in_unmanaged int32_t ___caught_in_unmanaged_16; }; struct Exception_t_StaticFields { // System.Object System.Exception::s_EDILock RuntimeObject* ___s_EDILock_0; }; // 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_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13; StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; int32_t ___caught_in_unmanaged_16; }; // 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_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13; StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; int32_t ___caught_in_unmanaged_16; }; // UnityEngine.FilterMode struct FilterMode_t4AD57F1A3FE272D650E0E688BA044AE872BD2A34 { // System.Int32 UnityEngine.FilterMode::value__ int32_t ___value___2; }; // UnityEngine.GUILayoutEntry struct GUILayoutEntry_tDF59F19DD000820F64B356D5092C4BEDFE109D5F : public RuntimeObject { // System.Single UnityEngine.GUILayoutEntry::minWidth float ___minWidth_0; // System.Single UnityEngine.GUILayoutEntry::maxWidth float ___maxWidth_1; // System.Single UnityEngine.GUILayoutEntry::minHeight float ___minHeight_2; // System.Single UnityEngine.GUILayoutEntry::maxHeight float ___maxHeight_3; // UnityEngine.Rect UnityEngine.GUILayoutEntry::rect Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___rect_4; // System.Int32 UnityEngine.GUILayoutEntry::stretchWidth int32_t ___stretchWidth_5; // System.Int32 UnityEngine.GUILayoutEntry::stretchHeight int32_t ___stretchHeight_6; // System.Boolean UnityEngine.GUILayoutEntry::consideredForMargin bool ___consideredForMargin_7; // UnityEngine.GUIStyle UnityEngine.GUILayoutEntry::m_Style GUIStyle_t20BA2F9F3FE9D13AAA607EEEBE5547835A6F6580* ___m_Style_8; }; struct GUILayoutEntry_tDF59F19DD000820F64B356D5092C4BEDFE109D5F_StaticFields { // UnityEngine.Rect UnityEngine.GUILayoutEntry::kDummyRect Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___kDummyRect_9; // System.Int32 UnityEngine.GUILayoutEntry::indent int32_t ___indent_10; }; // UnityEngine.UIElements.GenericDropdownMenu struct GenericDropdownMenu_t4CD56B241F3F5667305283313EE5BB5DF7D0C6D1 : public RuntimeObject { // System.Collections.Generic.List`1 UnityEngine.UIElements.GenericDropdownMenu::m_Items List_1_t61096569E456190C1D695A123917128C0E1FB932* ___m_Items_7; // UnityEngine.UIElements.VisualElement UnityEngine.UIElements.GenericDropdownMenu::m_MenuContainer VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_MenuContainer_8; // UnityEngine.UIElements.VisualElement UnityEngine.UIElements.GenericDropdownMenu::m_OuterContainer VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_OuterContainer_9; // UnityEngine.UIElements.ScrollView UnityEngine.UIElements.GenericDropdownMenu::m_ScrollView ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* ___m_ScrollView_10; // UnityEngine.UIElements.VisualElement UnityEngine.UIElements.GenericDropdownMenu::m_PanelRootVisualContainer VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_PanelRootVisualContainer_11; // UnityEngine.UIElements.VisualElement UnityEngine.UIElements.GenericDropdownMenu::m_TargetElement VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_TargetElement_12; // UnityEngine.Rect UnityEngine.UIElements.GenericDropdownMenu::m_DesiredRect Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___m_DesiredRect_13; // UnityEngine.UIElements.KeyboardNavigationManipulator UnityEngine.UIElements.GenericDropdownMenu::m_NavigationManipulator KeyboardNavigationManipulator_t7E9BA3568ADC1660C4E09B924ECD457E33B835B3* ___m_NavigationManipulator_14; // UnityEngine.Vector2 UnityEngine.UIElements.GenericDropdownMenu::m_MousePosition Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_MousePosition_15; }; struct GenericDropdownMenu_t4CD56B241F3F5667305283313EE5BB5DF7D0C6D1_StaticFields { // System.String UnityEngine.UIElements.GenericDropdownMenu::ussClassName String_t* ___ussClassName_0; // System.String UnityEngine.UIElements.GenericDropdownMenu::itemUssClassName String_t* ___itemUssClassName_1; // System.String UnityEngine.UIElements.GenericDropdownMenu::labelUssClassName String_t* ___labelUssClassName_2; // System.String UnityEngine.UIElements.GenericDropdownMenu::containerInnerUssClassName String_t* ___containerInnerUssClassName_3; // System.String UnityEngine.UIElements.GenericDropdownMenu::containerOuterUssClassName String_t* ___containerOuterUssClassName_4; // System.String UnityEngine.UIElements.GenericDropdownMenu::checkmarkUssClassName String_t* ___checkmarkUssClassName_5; // System.String UnityEngine.UIElements.GenericDropdownMenu::separatorUssClassName String_t* ___separatorUssClassName_6; }; // UnityEngine.UIElements.HierarchyChangeType struct HierarchyChangeType_t4AB1A5DF8963637F09533BEB1BE11C663EAB78AF { // System.Int32 UnityEngine.UIElements.HierarchyChangeType::value__ int32_t ___value___2; }; // System.Int32Enum struct Int32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C { // System.Int32 System.Int32Enum::value__ int32_t ___value___2; }; // UnityEngine.UIElements.InvokePolicy struct InvokePolicy_t35E3E36A3D113CBFFEB13243E17691CBBDF1ED9B { // System.Int32 UnityEngine.UIElements.InvokePolicy::value__ int32_t ___value___2; }; // UnityEngine.KeyCode struct KeyCode_t75B9ECCC26D858F55040DDFF9523681E996D17E9 { // System.Int32 UnityEngine.KeyCode::value__ int32_t ___value___2; }; // UnityEngine.UIElements.KeyboardNavigationOperation struct KeyboardNavigationOperation_tCEB962A6C192C10343A351F0415BD8084E3B8635 { // System.Int32 UnityEngine.UIElements.KeyboardNavigationOperation::value__ int32_t ___value___2; }; // Unity.Profiling.LowLevel.MarkerFlags struct MarkerFlags_t58228A99AC6567F565911ED792189DBBDFF83E30 { // System.UInt16 Unity.Profiling.LowLevel.MarkerFlags::value__ uint16_t ___value___2; }; // UnityEngine.UIElements.MouseButton struct MouseButton_tEF578B8F208D798E053BC320C29FCBB655E24454 { // System.Int32 UnityEngine.UIElements.MouseButton::value__ int32_t ___value___2; }; // UnityEngine.Object struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C : public RuntimeObject { // System.IntPtr UnityEngine.Object::m_CachedPtr intptr_t ___m_CachedPtr_0; }; struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_StaticFields { // System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1; }; // Native definition for P/Invoke marshalling of UnityEngine.Object struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke { intptr_t ___m_CachedPtr_0; }; // Native definition for COM marshalling of UnityEngine.Object struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com { intptr_t ___m_CachedPtr_0; }; // UnityEngine.ObjectGUIState struct ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15 : public RuntimeObject { // System.IntPtr UnityEngine.ObjectGUIState::m_Ptr intptr_t ___m_Ptr_0; }; // UnityEngine.OperatingSystemFamily struct OperatingSystemFamily_tC2354FCC5EAA102CE13F4AA66DB03040F04DADCB { // System.Int32 UnityEngine.OperatingSystemFamily::value__ int32_t ___value___2; }; // UnityEngine.UIElements.UIR.OwnedState struct OwnedState_t0957CA36E21DE8A443B616EBE83B25CCCA70B5A4 { // System.Byte UnityEngine.UIElements.UIR.OwnedState::value__ uint8_t ___value___2; }; // UnityEngine.UIElements.PanelClearSettings struct PanelClearSettings_tA3D8EE9A4864781CE3E5FED5225C6FB37ED66EE7 { // System.Boolean UnityEngine.UIElements.PanelClearSettings::clearDepthStencil bool ___clearDepthStencil_0; // System.Boolean UnityEngine.UIElements.PanelClearSettings::clearColor bool ___clearColor_1; // UnityEngine.Color UnityEngine.UIElements.PanelClearSettings::color Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color_2; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.PanelClearSettings struct PanelClearSettings_tA3D8EE9A4864781CE3E5FED5225C6FB37ED66EE7_marshaled_pinvoke { int32_t ___clearDepthStencil_0; int32_t ___clearColor_1; Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color_2; }; // Native definition for COM marshalling of UnityEngine.UIElements.PanelClearSettings struct PanelClearSettings_tA3D8EE9A4864781CE3E5FED5225C6FB37ED66EE7_marshaled_com { int32_t ___clearDepthStencil_0; int32_t ___clearColor_1; Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color_2; }; // UnityEngine.UIElements.PickingMode struct PickingMode_t5699BF9E5F2587E0D297984D5BF5B63B768E66AC { // System.Int32 UnityEngine.UIElements.PickingMode::value__ int32_t ___value___2; }; // Unity.Profiling.ProfilerMarker struct ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD { // System.IntPtr Unity.Profiling.ProfilerMarker::m_Ptr intptr_t ___m_Ptr_0; }; // UnityEngine.UIElements.PropagationPhase struct PropagationPhase_tF3BE8BF5ED45FC52A828B7B6F078B64F01FAE6D6 { // System.Int32 UnityEngine.UIElements.PropagationPhase::value__ int32_t ___value___2; }; // UnityEngine.UIElements.PseudoStates struct PseudoStates_tF4AB056E8743741BCE464A0983A060A53AAB7E4D { // System.Int32 UnityEngine.UIElements.PseudoStates::value__ int32_t ___value___2; }; // UnityEngine.UIElements.UIR.RenderDataDirtyTypes struct RenderDataDirtyTypes_tEF0AE4EB7DF790A711AA45103050432B8FEDB907 { // System.Int32 UnityEngine.UIElements.UIR.RenderDataDirtyTypes::value__ int32_t ___value___2; }; // UnityEngine.UIElements.RenderHints struct RenderHints_t4032FC4AB3FD946FD2A484865B8861730D9035E7 { // System.Int32 UnityEngine.UIElements.RenderHints::value__ int32_t ___value___2; }; // UnityEngine.RenderTextureFormat struct RenderTextureFormat_tB6F1ED5040395B46880CE00312D2FDDBF9EEB40F { // System.Int32 UnityEngine.RenderTextureFormat::value__ int32_t ___value___2; }; // UnityEngine.UIElements.RepaintData struct RepaintData_t90534752135661579EC254884F550545D001B5EA : public RuntimeObject { // UnityEngine.Matrix4x4 UnityEngine.UIElements.RepaintData::k__BackingField Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___U3CcurrentOffsetU3Ek__BackingField_0; // UnityEngine.Vector2 UnityEngine.UIElements.RepaintData::k__BackingField Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmousePositionU3Ek__BackingField_1; // UnityEngine.Rect UnityEngine.UIElements.RepaintData::k__BackingField Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___U3CcurrentWorldClipU3Ek__BackingField_2; // UnityEngine.Event UnityEngine.UIElements.RepaintData::k__BackingField Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___U3CrepaintEventU3Ek__BackingField_3; }; // System.RuntimeTypeHandle struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B { // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; }; // UnityEngine.UIElements.SelectionType struct SelectionType_t606E5DED60240D7E52388344A8A1EF4EC4E54079 { // System.Int32 UnityEngine.UIElements.SelectionType::value__ int32_t ___value___2; }; // UnityEngine.UIElements.UIR.TextCoreSettings struct TextCoreSettings_t3D724CD0811298B5AB1EA2041CE799CC25CDD115 { // UnityEngine.Color UnityEngine.UIElements.UIR.TextCoreSettings::faceColor Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___faceColor_0; // UnityEngine.Color UnityEngine.UIElements.UIR.TextCoreSettings::outlineColor Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___outlineColor_1; // System.Single UnityEngine.UIElements.UIR.TextCoreSettings::outlineWidth float ___outlineWidth_2; // UnityEngine.Color UnityEngine.UIElements.UIR.TextCoreSettings::underlayColor Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___underlayColor_3; // UnityEngine.Vector2 UnityEngine.UIElements.UIR.TextCoreSettings::underlayOffset Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___underlayOffset_4; // System.Single UnityEngine.UIElements.UIR.TextCoreSettings::underlaySoftness float ___underlaySoftness_5; }; // UnityEngine.TextureFormat struct TextureFormat_t87A73E4A3850D3410DC211676FC14B94226C1C1D { // System.Int32 UnityEngine.TextureFormat::value__ int32_t ___value___2; }; // UnityEngine.TouchPhase struct TouchPhase_t54E0A1AF80465997849420A72317B733E1D49A9E { // System.Int32 UnityEngine.TouchPhase::value__ int32_t ___value___2; }; // UnityEngine.TouchType struct TouchType_t84F82C73BC1A6012141735AD84DA67AA7F7AB43F { // System.Int32 UnityEngine.TouchType::value__ int32_t ___value___2; }; // UnityEngine.UIElements.TrickleDown struct TrickleDown_t862EABE449B6C94F79F2B1D713990C35ABADDF38 { // System.Int32 UnityEngine.UIElements.TrickleDown::value__ int32_t ___value___2; }; // UnityEngine.UIElements.UsageHints struct UsageHints_t2C29E97E6A37FA32178EA7E8A715008BD4834C42 { // System.Int32 UnityEngine.UIElements.UsageHints::value__ int32_t ___value___2; }; // UnityEngine.UIElements.VersionChangeType struct VersionChangeType_t8D9A58D958CC211E9300168DC98D3F7DF67594C3 { // System.Int32 UnityEngine.UIElements.VersionChangeType::value__ int32_t ___value___2; }; // UnityEngine.UIElements.VisualElementFlags struct VisualElementFlags_t4D1066E11400967A1A2DA7331391ACDC4AA14409 { // System.Int32 UnityEngine.UIElements.VisualElementFlags::value__ int32_t ___value___2; }; // UnityEngine.UIElements.VisualTreeUpdatePhase struct VisualTreeUpdatePhase_t1EF45877A1796DC3991B9FF3A6AD762BE02DF67D { // System.Int32 UnityEngine.UIElements.VisualTreeUpdatePhase::value__ int32_t ___value___2; }; // UnityEngine.Yoga.YogaConfig struct YogaConfig_tE8B56F99460C291C1F7F46DBD8BAC9F0B653A345 : public RuntimeObject { // System.IntPtr UnityEngine.Yoga.YogaConfig::_ygConfig intptr_t ____ygConfig_1; // UnityEngine.Yoga.Logger UnityEngine.Yoga.YogaConfig::_logger Logger_t092B1218ED93DD47180692D5761559B2054234A0* ____logger_2; }; struct YogaConfig_tE8B56F99460C291C1F7F46DBD8BAC9F0B653A345_StaticFields { // UnityEngine.Yoga.YogaConfig UnityEngine.Yoga.YogaConfig::Default YogaConfig_tE8B56F99460C291C1F7F46DBD8BAC9F0B653A345* ___Default_0; }; // UnityEngine.UIElements.UIR.Allocator2D/Alloc2D struct Alloc2D_tB9971776E3506C8F38C7F3C66690F9AC0322542E { // UnityEngine.RectInt UnityEngine.UIElements.UIR.Allocator2D/Alloc2D::rect RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8 ___rect_0; // UnityEngine.UIElements.UIR.Allocator2D/Row UnityEngine.UIElements.UIR.Allocator2D/Alloc2D::row Row_t5CAF04F94A4359C08ADDBA867B0817101F351999* ___row_1; // UnityEngine.UIElements.UIR.Alloc UnityEngine.UIElements.UIR.Allocator2D/Alloc2D::alloc Alloc_t78312CFE58F38082281E80E297AE6176BD2BD8AE ___alloc_2; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.UIR.Allocator2D/Alloc2D struct Alloc2D_tB9971776E3506C8F38C7F3C66690F9AC0322542E_marshaled_pinvoke { RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8 ___rect_0; Row_t5CAF04F94A4359C08ADDBA867B0817101F351999* ___row_1; Alloc_t78312CFE58F38082281E80E297AE6176BD2BD8AE_marshaled_pinvoke ___alloc_2; }; // Native definition for COM marshalling of UnityEngine.UIElements.UIR.Allocator2D/Alloc2D struct Alloc2D_tB9971776E3506C8F38C7F3C66690F9AC0322542E_marshaled_com { RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8 ___rect_0; Row_t5CAF04F94A4359C08ADDBA867B0817101F351999* ___row_1; Alloc_t78312CFE58F38082281E80E297AE6176BD2BD8AE_marshaled_com ___alloc_2; }; // UnityEngine.UIElements.BindableElement/UxmlTraits struct UxmlTraits_tDED0FF94BF82D1F4DCFD14DBC22DCA51D30D1172 : public UxmlTraits_t45D4AB9B0148A110826C5201495FF23814A12E4B { // UnityEngine.UIElements.UxmlStringAttributeDescription UnityEngine.UIElements.BindableElement/UxmlTraits::m_PropertyPath UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* ___m_PropertyPath_12; }; // UnityEngine.UIElements.ClickDetector/ButtonClickStatus struct ButtonClickStatus_tD4248512DB59E16501C4DDB6EDC2C6DE04290470 : public RuntimeObject { // UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ClickDetector/ButtonClickStatus::m_Target VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Target_0; // UnityEngine.Vector3 UnityEngine.UIElements.ClickDetector/ButtonClickStatus::m_PointerDownPosition Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_PointerDownPosition_1; // System.Int64 UnityEngine.UIElements.ClickDetector/ButtonClickStatus::m_LastPointerDownTime int64_t ___m_LastPointerDownTime_2; // System.Int32 UnityEngine.UIElements.ClickDetector/ButtonClickStatus::m_ClickCount int32_t ___m_ClickCount_3; }; // UnityEngine.UIElements.DefaultEventSystem/UpdateMode struct UpdateMode_t2E8DCE17E1F0CC97765FA6A0B3092D8AC506667F { // System.Int32 UnityEngine.UIElements.DefaultEventSystem/UpdateMode::value__ int32_t ___value___2; }; // UnityEngine.UIElements.DropdownMenuAction/Status struct Status_t6F8A7B2CA9271E6417F38A06FC7493AA4B10DD27 { // System.Int32 UnityEngine.UIElements.DropdownMenuAction/Status::value__ int32_t ___value___2; }; // UnityEngine.UIElements.EventBase/EventPropagation struct EventPropagation_t024AF56F7A787C03AA21B065B624553EF52E7B83 { // System.Int32 UnityEngine.UIElements.EventBase/EventPropagation::value__ int32_t ___value___2; }; // UnityEngine.UIElements.EventBase/LifeCycleStatus struct LifeCycleStatus_tEE500629F5431B574B8047EB70864747D348D38C { // System.Int32 UnityEngine.UIElements.EventBase/LifeCycleStatus::value__ int32_t ___value___2; }; // UnityEngine.UIElements.IMGUIContainer/GUIGlobals struct GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10 { // UnityEngine.Matrix4x4 UnityEngine.UIElements.IMGUIContainer/GUIGlobals::matrix Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___matrix_0; // UnityEngine.Color UnityEngine.UIElements.IMGUIContainer/GUIGlobals::color Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color_1; // UnityEngine.Color UnityEngine.UIElements.IMGUIContainer/GUIGlobals::contentColor Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___contentColor_2; // UnityEngine.Color UnityEngine.UIElements.IMGUIContainer/GUIGlobals::backgroundColor Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___backgroundColor_3; // System.Boolean UnityEngine.UIElements.IMGUIContainer/GUIGlobals::enabled bool ___enabled_4; // System.Boolean UnityEngine.UIElements.IMGUIContainer/GUIGlobals::changed bool ___changed_5; // System.Int32 UnityEngine.UIElements.IMGUIContainer/GUIGlobals::displayIndex int32_t ___displayIndex_6; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.IMGUIContainer/GUIGlobals struct GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10_marshaled_pinvoke { Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___matrix_0; Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color_1; Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___contentColor_2; Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___backgroundColor_3; int32_t ___enabled_4; int32_t ___changed_5; int32_t ___displayIndex_6; }; // Native definition for COM marshalling of UnityEngine.UIElements.IMGUIContainer/GUIGlobals struct GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10_marshaled_com { Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___matrix_0; Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color_1; Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___contentColor_2; Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___backgroundColor_3; int32_t ___enabled_4; int32_t ___changed_5; int32_t ___displayIndex_6; }; // UnityEngine.UIElements.IMGUIContainer/UxmlTraits struct UxmlTraits_tC22B794B5E43920F0989281BB88F1F4115575065 : public UxmlTraits_t45D4AB9B0148A110826C5201495FF23814A12E4B { }; // UnityEngine.UIElements.NavigationMoveEvent/Direction struct Direction_t7783E528E50FAB7F36720CD0F263B96ED3DE80F8 { // System.Int32 UnityEngine.UIElements.NavigationMoveEvent/Direction::value__ int32_t ___value___2; }; // UnityEngine.UIElements.PointerDeviceState/LocationFlag struct LocationFlag_t967AE045AA727496F989291CFBC14F53964FCECB { // System.Int32 UnityEngine.UIElements.PointerDeviceState/LocationFlag::value__ int32_t ___value___2; }; // Unity.Profiling.ProfilerMarker/AutoScope struct AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 { // System.IntPtr Unity.Profiling.ProfilerMarker/AutoScope::m_Ptr intptr_t ___m_Ptr_0; }; // UnityEngine.UIElements.UxmlAttributeDescription/Use struct Use_tB32C57550EDF1A878B28A5BD90C918FFBD876670 { // System.Int32 UnityEngine.UIElements.UxmlAttributeDescription/Use::value__ int32_t ___value___2; }; // UnityEngine.UIElements.VisualElement/MeasureMode struct MeasureMode_t35F26AA967A10198AA0924BD26D23DA0D999BE53 { // System.Int32 UnityEngine.UIElements.VisualElement/MeasureMode::value__ int32_t ___value___2; }; // UnityEngine.UIElements.VisualElement/RenderTargetMode struct RenderTargetMode_tAE75E29BB61A64BDE7646D5CBD353B64BCFA9F3A { // System.Int32 UnityEngine.UIElements.VisualElement/RenderTargetMode::value__ int32_t ___value___2; }; // UnityEngine.UIElements.VisualElementFocusRing/DefaultFocusOrder struct DefaultFocusOrder_t9EEC8B5DF0685386B41519B150765DD4F7905090 { // System.Int32 UnityEngine.UIElements.VisualElementFocusRing/DefaultFocusOrder::value__ int32_t ___value___2; }; // Unity.Collections.NativeArray`1 struct NativeArray_1_t7E7FEB7601A0E8158B43F2495CB02DBB211ADF51 { // 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; }; // Unity.Collections.NativeArray`1 struct NativeArray_1_t1319594EE236701FE431CF2885AEB88373076DA8 { // 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; }; // UnityEngine.UIElements.UIR.BMPAlloc struct BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 { // System.Int32 UnityEngine.UIElements.UIR.BMPAlloc::page int32_t ___page_1; // System.UInt16 UnityEngine.UIElements.UIR.BMPAlloc::pageLine uint16_t ___pageLine_2; // System.Byte UnityEngine.UIElements.UIR.BMPAlloc::bitIndex uint8_t ___bitIndex_3; // UnityEngine.UIElements.UIR.OwnedState UnityEngine.UIElements.UIR.BMPAlloc::ownedState uint8_t ___ownedState_4; }; struct BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30_StaticFields { // UnityEngine.UIElements.UIR.BMPAlloc UnityEngine.UIElements.UIR.BMPAlloc::Invalid BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___Invalid_0; }; // UnityEngine.UIElements.BaseVisualElementPanel struct BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303 : public RuntimeObject { // System.Action`1 UnityEngine.UIElements.BaseVisualElementPanel::panelDisposed Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* ___panelDisposed_0; // System.Single UnityEngine.UIElements.BaseVisualElementPanel::m_Scale float ___m_Scale_1; // UnityEngine.Yoga.YogaConfig UnityEngine.UIElements.BaseVisualElementPanel::yogaConfig YogaConfig_tE8B56F99460C291C1F7F46DBD8BAC9F0B653A345* ___yogaConfig_2; // System.Single UnityEngine.UIElements.BaseVisualElementPanel::m_PixelsPerPoint float ___m_PixelsPerPoint_3; // UnityEngine.UIElements.PanelClearSettings UnityEngine.UIElements.BaseVisualElementPanel::k__BackingField PanelClearSettings_tA3D8EE9A4864781CE3E5FED5225C6FB37ED66EE7 ___U3CclearSettingsU3Ek__BackingField_4; // System.Boolean UnityEngine.UIElements.BaseVisualElementPanel::k__BackingField bool ___U3CduringLayoutPhaseU3Ek__BackingField_5; // UnityEngine.UIElements.RepaintData UnityEngine.UIElements.BaseVisualElementPanel::k__BackingField RepaintData_t90534752135661579EC254884F550545D001B5EA* ___U3CrepaintDataU3Ek__BackingField_6; // UnityEngine.UIElements.ICursorManager UnityEngine.UIElements.BaseVisualElementPanel::k__BackingField RuntimeObject* ___U3CcursorManagerU3Ek__BackingField_7; // UnityEngine.UIElements.ContextualMenuManager UnityEngine.UIElements.BaseVisualElementPanel::k__BackingField ContextualMenuManager_tEE3B1F33FFFD180705467CA625AEBA0F5D63154B* ___U3CcontextualMenuManagerU3Ek__BackingField_8; // System.Boolean UnityEngine.UIElements.BaseVisualElementPanel::k__BackingField bool ___U3CdisposedU3Ek__BackingField_9; // UnityEngine.UIElements.ElementUnderPointer UnityEngine.UIElements.BaseVisualElementPanel::m_TopElementUnderPointers ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904* ___m_TopElementUnderPointers_10; // System.Action UnityEngine.UIElements.BaseVisualElementPanel::standardShaderChanged Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___standardShaderChanged_11; // System.Action UnityEngine.UIElements.BaseVisualElementPanel::standardWorldSpaceShaderChanged Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___standardWorldSpaceShaderChanged_12; // System.Action UnityEngine.UIElements.BaseVisualElementPanel::atlasChanged Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___atlasChanged_13; // System.Action`1 UnityEngine.UIElements.BaseVisualElementPanel::updateMaterial Action_1_t996DFD52B4BDA6CBE8058C13167C4D2B8C612CAA* ___updateMaterial_14; // UnityEngine.UIElements.HierarchyEvent UnityEngine.UIElements.BaseVisualElementPanel::hierarchyChanged HierarchyEvent_tB23E4347BC47656A014CA104A5B1DDC172A2A705* ___hierarchyChanged_15; // System.Action`1 UnityEngine.UIElements.BaseVisualElementPanel::beforeUpdate Action_1_tE55F8AC1EEC45D0C976E56B2950D65EC814C06E6* ___beforeUpdate_16; }; // UnityEngine.UIElements.DropdownMenuAction struct DropdownMenuAction_t9E1F246511E77E34FB7E3CA05FD7354E16268835 : public DropdownMenuItem_t06E130627F21DC0FA6A1968241363AB0B48F1B10 { // System.String UnityEngine.UIElements.DropdownMenuAction::k__BackingField String_t* ___U3CnameU3Ek__BackingField_0; // UnityEngine.UIElements.DropdownMenuAction/Status UnityEngine.UIElements.DropdownMenuAction::k__BackingField int32_t ___U3CstatusU3Ek__BackingField_1; // UnityEngine.UIElements.DropdownMenuEventInfo UnityEngine.UIElements.DropdownMenuAction::k__BackingField DropdownMenuEventInfo_t6118D88BC1584748707C62A0F91938760E4665CF* ___U3CeventInfoU3Ek__BackingField_2; // System.Object UnityEngine.UIElements.DropdownMenuAction::k__BackingField RuntimeObject* ___U3CuserDataU3Ek__BackingField_3; // System.Action`1 UnityEngine.UIElements.DropdownMenuAction::actionCallback Action_1_t7E3E3BD609665D0212EAD524D1B0B36E483AE10E* ___actionCallback_4; // System.Func`2 UnityEngine.UIElements.DropdownMenuAction::actionStatusCallback Func_2_tFE00FC9C490BDDEF52C99ED6238F6C9B2C9638AC* ___actionStatusCallback_5; }; // UnityEngine.UIElements.DropdownMenuEventInfo struct DropdownMenuEventInfo_t6118D88BC1584748707C62A0F91938760E4665CF : public RuntimeObject { // UnityEngine.EventModifiers UnityEngine.UIElements.DropdownMenuEventInfo::k__BackingField int32_t ___U3CmodifiersU3Ek__BackingField_0; // UnityEngine.Vector2 UnityEngine.UIElements.DropdownMenuEventInfo::k__BackingField Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmousePositionU3Ek__BackingField_1; // UnityEngine.Vector2 UnityEngine.UIElements.DropdownMenuEventInfo::k__BackingField Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3ClocalMousePositionU3Ek__BackingField_2; // System.Char UnityEngine.UIElements.DropdownMenuEventInfo::k__BackingField Il2CppChar ___U3CcharacterU3Ek__BackingField_3; // UnityEngine.KeyCode UnityEngine.UIElements.DropdownMenuEventInfo::k__BackingField int32_t ___U3CkeyCodeU3Ek__BackingField_4; }; // UnityEngine.UIElements.DynamicAtlas struct DynamicAtlas_tA1A51ADBE1DBFD82F6D52D5CA4D09D82F89678A8 : public AtlasBase_t196C45243F41C19DC6258965057BBAA150D278BC { // System.Collections.Generic.Dictionary`2 UnityEngine.UIElements.DynamicAtlas::m_Database Dictionary_2_tF1C3BFA70D6875EEF369CE69E661C6B617B5BEC0* ___m_Database_1; // UnityEngine.UIElements.DynamicAtlasPage UnityEngine.UIElements.DynamicAtlas::m_PointPage DynamicAtlasPage_t11FF826FFD13D59816B4F99A0C21CF8205A68F6E* ___m_PointPage_2; // UnityEngine.UIElements.DynamicAtlasPage UnityEngine.UIElements.DynamicAtlas::m_BilinearPage DynamicAtlasPage_t11FF826FFD13D59816B4F99A0C21CF8205A68F6E* ___m_BilinearPage_3; // UnityEngine.ColorSpace UnityEngine.UIElements.DynamicAtlas::m_ColorSpace int32_t ___m_ColorSpace_4; // System.Collections.Generic.List`1 UnityEngine.UIElements.DynamicAtlas::m_Panels List_1_t4DF09B0E9A8F312FB7592EC9D366F0808C94DCE6* ___m_Panels_5; // System.Int32 UnityEngine.UIElements.DynamicAtlas::m_MinAtlasSize int32_t ___m_MinAtlasSize_6; // System.Int32 UnityEngine.UIElements.DynamicAtlas::m_MaxAtlasSize int32_t ___m_MaxAtlasSize_7; // System.Int32 UnityEngine.UIElements.DynamicAtlas::m_MaxSubTextureSize int32_t ___m_MaxSubTextureSize_8; // UnityEngine.UIElements.DynamicAtlasFilters UnityEngine.UIElements.DynamicAtlas::m_ActiveFilters int32_t ___m_ActiveFilters_9; // UnityEngine.UIElements.DynamicAtlasCustomFilter UnityEngine.UIElements.DynamicAtlas::m_CustomFilter DynamicAtlasCustomFilter_tD33BC519AF0B6E7D8C273CB64D900DF5FEB1E3C6* ___m_CustomFilter_10; }; // UnityEngine.UIElements.DynamicAtlasPage struct DynamicAtlasPage_t11FF826FFD13D59816B4F99A0C21CF8205A68F6E : public RuntimeObject { // UnityEngine.UIElements.TextureId UnityEngine.UIElements.DynamicAtlasPage::k__BackingField TextureId_tFF4B4AAE53408AB10B0B89CCA5F7B50CF2535E58 ___U3CtextureIdU3Ek__BackingField_0; // UnityEngine.RenderTexture UnityEngine.UIElements.DynamicAtlasPage::k__BackingField RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___U3CatlasU3Ek__BackingField_1; // UnityEngine.RenderTextureFormat UnityEngine.UIElements.DynamicAtlasPage::k__BackingField int32_t ___U3CformatU3Ek__BackingField_2; // UnityEngine.FilterMode UnityEngine.UIElements.DynamicAtlasPage::k__BackingField int32_t ___U3CfilterModeU3Ek__BackingField_3; // UnityEngine.Vector2Int UnityEngine.UIElements.DynamicAtlasPage::k__BackingField Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___U3CminSizeU3Ek__BackingField_4; // UnityEngine.Vector2Int UnityEngine.UIElements.DynamicAtlasPage::k__BackingField Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___U3CmaxSizeU3Ek__BackingField_5; // System.Int32 UnityEngine.UIElements.DynamicAtlasPage::m_1Padding int32_t ___m_1Padding_6; // System.Int32 UnityEngine.UIElements.DynamicAtlasPage::m_2Padding int32_t ___m_2Padding_7; // UnityEngine.UIElements.UIR.Allocator2D UnityEngine.UIElements.DynamicAtlasPage::m_Allocator Allocator2D_t5B53CF899C3FABD99F29602424924ACAB9E2A157* ___m_Allocator_8; // UnityEngine.UIElements.UIR.TextureBlitter UnityEngine.UIElements.DynamicAtlasPage::m_Blitter TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7* ___m_Blitter_9; // UnityEngine.Vector2Int UnityEngine.UIElements.DynamicAtlasPage::m_CurrentSize Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___m_CurrentSize_10; // System.Boolean UnityEngine.UIElements.DynamicAtlasPage::k__BackingField bool ___U3CdisposedU3Ek__BackingField_12; }; struct DynamicAtlasPage_t11FF826FFD13D59816B4F99A0C21CF8205A68F6E_StaticFields { // System.Int32 UnityEngine.UIElements.DynamicAtlasPage::s_TextureCounter int32_t ___s_TextureCounter_11; }; // UnityEngine.UIElements.EventBase struct EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C : public RuntimeObject { // System.Int64 UnityEngine.UIElements.EventBase::k__BackingField int64_t ___U3CtimestampU3Ek__BackingField_2; // System.UInt64 UnityEngine.UIElements.EventBase::k__BackingField uint64_t ___U3CeventIdU3Ek__BackingField_3; // System.UInt64 UnityEngine.UIElements.EventBase::k__BackingField uint64_t ___U3CtriggerEventIdU3Ek__BackingField_4; // UnityEngine.UIElements.EventBase/EventPropagation UnityEngine.UIElements.EventBase::k__BackingField int32_t ___U3CpropagationU3Ek__BackingField_5; // UnityEngine.UIElements.PropagationPaths UnityEngine.UIElements.EventBase::m_Path PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* ___m_Path_6; // UnityEngine.UIElements.EventBase/LifeCycleStatus UnityEngine.UIElements.EventBase::k__BackingField int32_t ___U3ClifeCycleStatusU3Ek__BackingField_7; // UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.EventBase::k__BackingField RuntimeObject* ___U3CleafTargetU3Ek__BackingField_8; // UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.EventBase::m_Target RuntimeObject* ___m_Target_9; // System.Collections.Generic.List`1 UnityEngine.UIElements.EventBase::k__BackingField List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3* ___U3CskipElementsU3Ek__BackingField_10; // UnityEngine.UIElements.PropagationPhase UnityEngine.UIElements.EventBase::k__BackingField int32_t ___U3CpropagationPhaseU3Ek__BackingField_11; // UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.EventBase::m_CurrentTarget RuntimeObject* ___m_CurrentTarget_12; // UnityEngine.Event UnityEngine.UIElements.EventBase::m_ImguiEvent Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___m_ImguiEvent_13; // UnityEngine.Vector2 UnityEngine.UIElements.EventBase::k__BackingField Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CoriginalMousePositionU3Ek__BackingField_14; }; struct EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C_StaticFields { // System.Int64 UnityEngine.UIElements.EventBase::s_LastTypeId int64_t ___s_LastTypeId_0; // System.UInt64 UnityEngine.UIElements.EventBase::s_NextEventId uint64_t ___s_NextEventId_1; }; // UnityEngine.ExitGUIException struct ExitGUIException_tFF2EEEBACD9E5684D6112478EEF754B74D154549 : public Exception_t { }; // UnityEngine.GUILayoutGroup struct GUILayoutGroup_tD08496E80F283C290B5B90D7BFB3C9C7CC33CD8D : public GUILayoutEntry_tDF59F19DD000820F64B356D5092C4BEDFE109D5F { // System.Collections.Generic.List`1 UnityEngine.GUILayoutGroup::entries List_1_tA5BCD116CC751A5F35C7D3D7B96DC3A5D22B9C82* ___entries_11; // System.Boolean UnityEngine.GUILayoutGroup::isVertical bool ___isVertical_12; // System.Boolean UnityEngine.GUILayoutGroup::resetCoords bool ___resetCoords_13; // System.Single UnityEngine.GUILayoutGroup::spacing float ___spacing_14; // System.Boolean UnityEngine.GUILayoutGroup::sameSize bool ___sameSize_15; // System.Boolean UnityEngine.GUILayoutGroup::isWindow bool ___isWindow_16; // System.Int32 UnityEngine.GUILayoutGroup::windowID int32_t ___windowID_17; // System.Int32 UnityEngine.GUILayoutGroup::m_Cursor int32_t ___m_Cursor_18; // System.Int32 UnityEngine.GUILayoutGroup::m_StretchableCountX int32_t ___m_StretchableCountX_19; // System.Int32 UnityEngine.GUILayoutGroup::m_StretchableCountY int32_t ___m_StretchableCountY_20; // System.Boolean UnityEngine.GUILayoutGroup::m_UserSpecifiedWidth bool ___m_UserSpecifiedWidth_21; // System.Boolean UnityEngine.GUILayoutGroup::m_UserSpecifiedHeight bool ___m_UserSpecifiedHeight_22; // System.Single UnityEngine.GUILayoutGroup::m_ChildMinWidth float ___m_ChildMinWidth_23; // System.Single UnityEngine.GUILayoutGroup::m_ChildMaxWidth float ___m_ChildMaxWidth_24; // System.Single UnityEngine.GUILayoutGroup::m_ChildMinHeight float ___m_ChildMinHeight_25; // System.Single UnityEngine.GUILayoutGroup::m_ChildMaxHeight float ___m_ChildMaxHeight_26; // System.Int32 UnityEngine.GUILayoutGroup::m_MarginLeft int32_t ___m_MarginLeft_27; // System.Int32 UnityEngine.GUILayoutGroup::m_MarginRight int32_t ___m_MarginRight_28; // System.Int32 UnityEngine.GUILayoutGroup::m_MarginTop int32_t ___m_MarginTop_29; // System.Int32 UnityEngine.GUILayoutGroup::m_MarginBottom int32_t ___m_MarginBottom_30; }; struct GUILayoutGroup_tD08496E80F283C290B5B90D7BFB3C9C7CC33CD8D_StaticFields { // UnityEngine.GUILayoutEntry UnityEngine.GUILayoutGroup::none GUILayoutEntry_tDF59F19DD000820F64B356D5092C4BEDFE109D5F* ___none_31; }; // UnityEngine.GameObject struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C { }; // UnityEngine.UIElements.ImmediateModeException struct ImmediateModeException_t7A6F44A9035C26E64FF8BCD4964F7189506F063D : public Exception_t { }; // UnityEngine.UIElements.ManipulatorActivationFilter struct ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81 { // UnityEngine.UIElements.MouseButton UnityEngine.UIElements.ManipulatorActivationFilter::