#include "pch-cpp.hpp" #ifndef _MSC_VER # include #else # include #endif #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 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); } }; struct GenericVirtualActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template struct GenericVirtualFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; struct InterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template struct InterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct 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); } }; struct GenericInterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template struct GenericInterfaceFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; 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 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 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 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; } }; // System.Action`1> struct Action_1_t90425964BF9D6282116C192CAA76B05EB0EEF123; // System.Action`1 struct Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53; // System.Action`1 struct Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B; // System.Action`1 struct Action_1_tE55F8AC1EEC45D0C976E56B2950D65EC814C06E6; // System.Action`1 struct Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404; // 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_t924369B78685936188D9F308D270D4B74F46B374; // System.Action`2 struct Action_2_t6A27AF0A3585FFCF87D39ADE472BCFD2F2930F19; // System.Action`2 struct Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333; // System.Action`2 struct Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA; // System.Action`2 struct Action_2_t4D6C6A84A6B44BE6193A1F64753F6E48558FBE9D; // System.Action`3 struct Action_3_tE646D5EE2107669AE49025C0E3DC04C831ACCAE0; // NodeCanvas.Framework.BBParameter`1> struct BBParameter_1_tE8EDB19B7D79456B153ED27938230FCFCA5449CA; // NodeCanvas.Framework.BBParameter`1 struct BBParameter_1_t0CED53FC373D2A18BE910895E6A74B0C7E89E10E; // NodeCanvas.Framework.BBParameter`1 struct BBParameter_1_tB46669698C0BE7BD6EFB9A7BE9458183044389E3; // UnityEngine.UIElements.UIR.BasicNode`1 struct BasicNode_1_t7B4D545DCD6949B2E1C85D63DF038E44602F7DDB; // System.Collections.Generic.Comparer`1 struct Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80; // System.Collections.Generic.Comparer`1 struct Comparer_1_t0A03F9FBBEA32FB1528366652D3D38513E8B1137; // System.Collections.Generic.Comparer`1 struct Comparer_1_tE191E68CB394DD255CCA7A56F4D1DEFED0BD3FDB; // System.Collections.Generic.Comparer`1 struct Comparer_1_t03DA6AFB24C7CAB292D6DC3A872298EE43E6C879; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t645C7B1DAE2D839B52A5E387C165CE13D5465B00; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t6682243BDABA638FCBE4F1D9875B5B1455A7686E; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t4055F6540F36F21F9FEDAFB92D8E0089B38EBBC8; // System.Linq.EnumerableSorter`1 struct EnumerableSorter_1_t5897E023ECB6DBE16092BDD0CD9397E8600CD0F5; // System.Linq.EnumerableSorter`1 struct EnumerableSorter_1_t9DF0BF2FF3A689EB41C9CE2B42D3A91F5776B3AD; // System.Linq.EnumerableSorter`1 struct EnumerableSorter_1_t17272E4796D2D1FBEFDF5F1408186712BC046529; // System.Linq.EnumerableSorter`1 struct EnumerableSorter_1_t0A94B73E1EBFE14F45B26D082CBC3DABAF046179; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t97889FF6B5695C88AE4091CF52103AFB63232E60; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t514555A24717CCDDE752698981B545A0063C3EC9; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t8F14EB4E16E4AB021816F2CB40ED33D5A3DEFD79; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t4A3A7BFB06F50EDFC951445060C5E13F479A4D4B; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t6AAC1633D5060640F8E22439E93075AD21BB1A0E; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t52645C99EE1F6BDD19ED02C7F019B6ED37EF1592; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t65E6EE02C62CB9DFE52D766B693759C3745CEA5E; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_tB07B7222DB6D3E0844124F071EB509BC2B77592E; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t22B0CC26C35745E55615170CAA01EBB497BB8F5F; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t7FCC40DAE18BFC64ED0C99E437AD4ACC5B27A291; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t7CA6D3555E2E8A00EC397203A4B8FD84DBB70908; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t5CC2682E93AD4B6CAB3875684FC62AEDCA363E50; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t38EE53B7A75D77D5D194E0E1032C58C190258FAC; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t9F8DF64B0D218FA3C298F5998F4D8294C7EAE933; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t1F22D7ED24210B522210474148F6F1AE84DE74DE; // System.Func`1> struct Func_1_tF1D663171504D163FC82B96429CDAE5E5CAFB3C3; // System.Func`1 struct Func_1_t97C6124008260D65F78265F8B3965ACA776F0671; // System.Func`1 struct Func_1_tC288CCB64EFD1F5FD49C3F8DE91FE62905E44BCD; // System.Func`1 struct Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4; // System.Func`2 struct Func_2_t03668587D04B8ECC3E6CE9EF3B2852118286E630; // System.Func`2 struct Func_2_t77AF745C0F9B082CCA8A895BCF11881A4E488892; // System.Func`2 struct Func_2_tC36594E7D8520428367F19691F9AEFC7FBC7C77F; // System.Func`2 struct Func_2_tEDCDCD7BE3F7A4F5A742A5FD711EA63155BC825E; // System.Func`2 struct Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00; // System.Func`2 struct Func_2_t9A0D493A82DCC47C9C819A3B045E02D9B5DDCE1B; // System.Func`2 struct Func_2_tACBF5A1656250800CE861707354491F0611F6624; // System.Func`2 struct Func_2_tB5C40A90702B6A6A2E315FD927EEFC9FB69F2B12; // System.Func`2 struct Func_2_tB86D019F1289E2D123C00796B373933613385952; // System.Func`2 struct Func_2_t96A39E112843C5E4C0D74585BA105A0ED44D08C1; // System.Func`2 struct Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2; // System.Func`2 struct Func_2_t768E45AC224B8B0A2FF0AF51561075C9EA671111; // System.Func`3 struct Func_3_t42E9F5CDEF4CF174C35D943F427EF585FE829937; // System.Collections.Generic.IComparer`1 struct IComparer_1_t4483F9B9F43C7B0F8D4FEEAE12FAFDD3F9CF81FD; // System.Collections.Generic.IComparer`1 struct IComparer_1_tC0A12A847AF97F369A5CE9A0CCE71CE18EE1440E; // System.Collections.Generic.IComparer`1 struct IComparer_1_t76B18C44D8838F955CF8C0F53336D6C7006E0B53; // System.Collections.Generic.IComparer`1 struct IComparer_1_t2823311A1816BF1DC53D0C642C909DD5E1804382; // System.Collections.Generic.IComparer`1 struct IComparer_1_tFAD3AE9FE3CE1FB3CBB781C55DC57C986D71521E; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_tB708E9C2FA823B01C747E05E9A94F71093AAE6F1; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_tBA4259158757D7E9A55293191376A3C4C288D5DC; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_tF95C9E01A913DD50575531C8305932628663D9E9; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_t8BC83955BB4626ACDAB88E89CABC85C7E3BEF89D; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_t6C47A8FE62321E6AD75C312B8549AFD2B13F0591; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_t2F265F5600BDC1FE3869499235B6303EB5E9271A; // System.Collections.Generic.IEnumerator`1 struct IEnumerator_1_t2A9FA624D2D38205E2A75A9A27DD25624AB4CBF3; // System.Collections.Generic.IEnumerator`1 struct IEnumerator_1_t43D2E4BA9246755F293DFA74F001FB1A70A648FD; // System.Collections.Generic.IEnumerator`1 struct IEnumerator_1_tBC69ED349ABDD7F22B3A9CBABBE3DA89E2E648C5; // System.Collections.Generic.IEnumerator`1 struct IEnumerator_1_tC0C08C9659581E6A592DEEC8CEE4A412A400B773; // System.Collections.Generic.IList`1 struct IList_1_t6EE90D273EFCF5E7E4C37FAB712E70BB6F1B4BFF; // System.Collections.Generic.IList`1 struct IList_1_t0C9DC71E41EA0D50FBDBA418CE2786E8C3CEE28C; // UnityEngine.Pool.IObjectPool`1 struct IObjectPool_1_tE8CA6468BE6707A63684BDE52B62C116D73785BA; // System.Linq.IOrderedEnumerable`1 struct IOrderedEnumerable_1_t10EDF1E95F8BA8400B64679E76322034087904F0; // System.Linq.IOrderedEnumerable`1 struct IOrderedEnumerable_1_t0E680E8E1A4A676334F2A0C9A6F9B93135A65EAC; // UnityEngine.InputSystem.LowLevel.InputStateHistory`1 struct InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798; // System.Collections.Generic.KeyValuePair`2 struct KeyValuePair_2_tC24A74EF64A292F5C6BA77D0B04CD6620D2DE3AC; // UnityEngine.Rendering.ListChangedEventArgs`1 struct ListChangedEventArgs_1_t6F28DAF41E028C918C16FA38A5947F647612F5E4; // UnityEngine.Rendering.ListChangedEventHandler`1 struct ListChangedEventHandler_1_t75D35934C494DD9CAB03AF119619178B28527CFA; // System.Collections.Generic.List`1> struct List_1_t60F39D768DAD2345527AD3EE73FAB2667DF4F260; // System.Collections.Generic.List`1 struct List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B; // System.Collections.Generic.List`1 struct List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3; // System.Collections.Generic.List`1 struct List_1_tA37ACEEC391DF2176605268C00FB1F4E08F92BCA; // System.Collections.Generic.List`1 struct List_1_t96E9133B70FB6765E6B138E810D33E18901715DA; // System.Collections.Generic.List`1 struct List_1_t8FBA271E5F5173BEF3A23836630DAC61AF72033A; // System.Collections.Generic.List`1 struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D; // System.Collections.Generic.List`1 struct List_1_t3ADC2CEE608F7E0043EBE4FD425E6C9AE43E19CC; // System.Collections.Generic.List`1 struct List_1_t09630CC02FA21D368A6F17E496E9DAE8995D5B19; // System.Collections.Generic.List`1 struct List_1_t47EB84D8D3371AC1E55BEA64B4C70F2067B2961E; // 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_t44EF1B9C71532303037AAC259AD8D405401724D8; // System.Collections.Generic.List`1 struct List_1_t41896DF347A129D13205BBFADE03DFB21E05E459; // System.Collections.Generic.List`1 struct List_1_tD4E195AE3BDA50173FFDB1123B913E149DC2DE25; // System.Collections.Generic.List`1 struct List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95; // System.Collections.Generic.List`1 struct List_1_tD19F7E0FCBD7C3E8D363733582EF93B341DD3039; // System.Collections.Generic.List`1 struct List_1_t4A80BCCFB0BC8742C8BB601365DB07226750573A; // System.Collections.Generic.List`1 struct List_1_t0A071D357023E38EAA5C7E0E34DE9732F26DBCE8; // System.Collections.Generic.List`1 struct List_1_t8A06DB5554CD76CE072807DE6EF4198109D84E53; // System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack struct LockedStack_t000073AA14F1B0C46471D9C699C9CDE10CB7CA17; // System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack struct LockedStack_t55EA3BEB39A80E4F0A2009E69BE4365D6CFFBB7B; // System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack struct LockedStack_t41A87F7FF06A8633FE1FF193C1AA749E23B5A5DC; // System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack struct LockedStack_t186AA0980C4EDB1BF65D63C1488AD6ED0C8C03C9; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_t1FEBA944DE9944BD0A9C781A49AF05E381C4B730; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_t7631D59BBE6C1A38A0F61216023C165FC5D5E9F6; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_t1339FBE2F569B67E4CCA241D6C96ADCE82A147E0; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_t45FAF16F9BF257E9CF40412CB3C53762BCBC52FC; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_tDBA7AB9CF6ED19ED1A26019FAA55D3B727103B37; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_t2D4981451091943157D0842521FA6BD6F627E70A; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_t2EAA4FCF95D36614D33E1713327A7BE3AFB0B956; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_t12B2D1ACBD297BEDEBB1137DB5E21959D7372865; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_t9F85B8762CD61B36D080E54F1D6CE3A94374185B; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_t9BBD7A440D12B004A2DF3E0DBD53C204F8BEA856; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_tAE851B2ACDD6F21276D66A6AE24A015D0DF2CE89; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_t921E7770229361F3FF762DF877E7DCA0A5B6E9DD; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_tBE83C233D7D695E232577ADEFC94F52DA898D8E1; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_t49CDF353E31A1E3EB6AAB27B8967ACF109AACA6A; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_t50815BC1BC05568EDFDBE9930A4F0FE38C875DA1; // UnityEngine.Rendering.ObjectParameter`1 struct ObjectParameter_1_tCF1EAF9D7A6C1AD4F68BDE067EA76CB659AE083B; // UnityEngine.Pool.ObjectPool`1 struct ObjectPool_1_t13378E8CD14858BB05EA28BAB9CC49EDB91BA259; // UnityEngine.Rendering.ObjectPool`1 struct ObjectPool_1_t99595E72EFE3F4492DB424138C3B94C9E0C18B58; // UnityEngine.UIElements.ObjectPool`1> struct ObjectPool_1_t82EA84452A4B2F080EF895D9F717E99CBE33B919; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tC06B45D8A0C7CBBDAE418090727D1DF1F2FCB9F6; // UnityEngine.Rendering.ObservableList`1 struct ObservableList_1_tE27AD108B4CB5CCFF6DDF2DFB5953AB0C97F731C; // UnityEngine.InputSystem.Utilities.Observer`1 struct Observer_1_tF53ABA7F91AB54D8D0F520427BB87579156149D7; // FIMSpace.Generating.FGenGrid`1/OnGeneratedElement struct OnGeneratedElement_t71A703F9DA0BEC37A494ECE1FA9123E071563916; // DungeonArchitect.UI.Widgets.ListViewWidget`1/OnSelectionChanged struct OnSelectionChanged_tCBF3886077BAAEB2D7D360E2123C0D0D2CACFBB4; // System.Linq.OrderedEnumerable`1 struct OrderedEnumerable_1_t8EEABC87399C51697FF13CC459FC26CA5A5857DA; // System.Linq.OrderedEnumerable`1 struct OrderedEnumerable_1_t635FACC705EB8D479616971CD818376DC3A5AF51; // System.Linq.OrderedEnumerable`1 struct OrderedEnumerable_1_t34850493CDAB6C18BD010D6FEBE94B80DDB45850; // System.Linq.OrderedEnumerable`1 struct OrderedEnumerable_1_t2A839D56030A5BF16B67D5ECEA66459EBD766265; // System.Linq.OrderedEnumerable`2 struct OrderedEnumerable_2_t7FDC122207E39C88BC86800DB007E88676C33546; // System.Linq.OrderedEnumerable`2 struct OrderedEnumerable_2_t51517C2F0D08851F60E9DD8FB874EC339A5F2BFA; // System.Linq.OrderedEnumerable`2 struct OrderedEnumerable_2_tA9DEFB149DAA0F612AACE71C5D5A35D6308A052D; // System.Linq.OrderedEnumerable`2 struct OrderedEnumerable_2_t306D33C8FAA17BF0735E8B83FCC8CDC039740B2F; // System.Linq.OrderedEnumerable`2 struct OrderedEnumerable_2_t71BA6A9F8F94FD49AA530865BA9BF576305461A1; // System.Linq.OrderedEnumerable`2 struct OrderedEnumerable_2_tB2CB28995932F423866C23DA0C4529A8638DAC9E; // System.Linq.OrderedEnumerable`2 struct OrderedEnumerable_2_t57FCE52BA5AC72D098EF7799ABD5AE16652EF0D7; // UnityEngine.UIElements.PanelChangedEventBase`1 struct PanelChangedEventBase_1_tBD261468FE94C0F11CE3EE232C78393DEB70F0E2; // System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/PerCoreLockedStacks struct PerCoreLockedStacks_t59F9FCB865C5D7B4A04DEAE7E81C9A5144D6769F; // System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/PerCoreLockedStacks struct PerCoreLockedStacks_t56F6D2635D6382C1E029DE649D815FE02D89C992; // System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/PerCoreLockedStacks struct PerCoreLockedStacks_t9B9D650698BC91EF798DA66EE411D67A42F308B7; // System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/PerCoreLockedStacks struct PerCoreLockedStacks_tCB5FF624A2594B211A03F4A4ECAC14EE050CAF47; // NodeCanvas.Tasks.Actions.PickListElement`1 struct PickListElement_1_t52C96DAD0022C851157F80005BAF4A26517244AB; // NodeCanvas.Tasks.Actions.PickRandomListElement`1 struct PickRandomListElement_1_t03950414D7819112F21386A3FCA695054002CB76; // FMODUnity.Legacy/PlatformSetting`1 struct PlatformSetting_1_tC00135976256B39E3999E05A46F81073C1D80350; // FMODUnity.Legacy/PlatformSetting`1 struct PlatformSetting_1_t689B3E2267CEBFE55FF1222161AC7D6442204A37; // FMODUnity.Legacy/PlatformSetting`1 struct PlatformSetting_1_tA9303F6BCBA65434314A692AEB3F1125E7DBC6B9; // DungeonArchitect.Triangulator.Geometry.Point`1 struct Point_1_t6CD7C45D017C39A623C79FEAE3630729D1E4B710; // UnityEngine.UIElements.PointerCaptureEventBase`1 struct PointerCaptureEventBase_1_t265201C952224C804DDA3B4C56A4CA46B8A665CC; // UnityEngine.UIElements.PointerEventBase`1 struct PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F; // UnityEngine.Rendering.Universal.LibTessDotNet.MeshUtils/Pooled`1 struct Pooled_1_t27E4FD357A3B81F8F35FB8CAB45141E3C6A6795A; // System.Predicate`1> struct Predicate_1_t86E0B5C7432618970D8A1069D68D0FF13E26AE31; // System.Predicate`1> struct Predicate_1_t0B612DAA35B2BEA45EDDF255B0953294ADE97CD3; // System.Predicate`1> struct Predicate_1_tBA9FD8C6E4A8E5DDA2941D095C08911FF15F54F5; // System.Predicate`1> struct Predicate_1_t6328F1823DE9D6F5CF075A63BF639D901C18F0CA; // System.Predicate`1> struct Predicate_1_t68221EC57DB28B2281188E15CA634974BC5F0DC4; // System.Predicate`1> struct Predicate_1_tB930C763B92502FF0D651FF955C47792E376E512; // System.Predicate`1> struct Predicate_1_t531942891EA75039CD6552ABB9031AAC98FB61F1; // System.Predicate`1> struct Predicate_1_tDA42E977373543DF07581D8F70E45B2860637D62; // System.Predicate`1> struct Predicate_1_t95A9F6D0A68D4EC9BDDA30F414986307F279DFA3; // System.Predicate`1>> struct Predicate_1_t9F882AB2AEA1D46C073645C2CFC3F363046DF0ED; // System.Predicate`1> struct Predicate_1_t09D284F270E989C66B6C052209D8686F22E823F6; // System.Predicate`1 struct Predicate_1_tE9ECBD3938A9BFA481AB2A9567F36305AB8633C2; // System.Predicate`1 struct Predicate_1_tC70D9A874B237D1E6900AF7C162BFDDC666601A3; // System.Predicate`1 struct Predicate_1_tAE86047A59E4BCBE36094BFC53F84829443BD499; // System.Predicate`1 struct Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584; // System.Predicate`1 struct Predicate_1_t408CE23D762D084DB98996FD34D97C27DAD4A6C0; // System.Predicate`1 struct Predicate_1_tFE5918AF30C7947F1B23F2777E30351884D834E2; // System.Predicate`1 struct Predicate_1_t498CAB8C3A239510DF1CD4E0D9D0B8EFB398536E; // System.Predicate`1 struct Predicate_1_tBB45A1BEE008BFBE4A2C377957B70BB6866CB5D2; // System.Predicate`1 struct Predicate_1_t134ABA8D774E13C8AAF117E61638F91FC07DF10F; // System.Predicate`1 struct Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B; // System.Predicate`1 struct Predicate_1_t53163C4FC2A7C04FB5F42A6969FB717CDE9F7C16; // System.Predicate`1 struct Predicate_1_t02061CB71231F241943EF0CA0217FA2E4D36D499; // System.Predicate`1 struct Predicate_1_t7BDE1990F24B0932600F7FC4DC25C1D46B7FC784; // System.Predicate`1 struct Predicate_1_t7EF5B13E5D9E264AD4D3D5695DF4B6266338E028; // System.Predicate`1 struct Predicate_1_t7548320F27D4E574DEA8684F4BCADE7FAF7D99CB; // System.Predicate`1 struct Predicate_1_tF22881A47A45E702CAA370DE516FE026A48ECC43; // System.Predicate`1 struct Predicate_1_t4F2B6EF16CA317D6330F414F59BFCE7C6A712F61; // System.Predicate`1 struct Predicate_1_t37A5CABF4E5B5A27F72E822C49E7E4DAA4D2BC4C; // System.Predicate`1 struct Predicate_1_tFD0FBA2B16ECCF5F78DAEF47BB57AED9D5C00103; // System.Predicate`1 struct Predicate_1_tD342C855A615107CC8D95AF70BEF061044EFEBE3; // System.Predicate`1 struct Predicate_1_tB0A202E234791DEC3EB14E4481B929B58D5F5C87; // System.Predicate`1 struct Predicate_1_t6A66F5AFE87B6CB2D18FC4D84CEB88D80523CD2C; // System.Predicate`1 struct Predicate_1_t6498EEDBA4339A9B3A4E074A12F2A4C274707B03; // System.Predicate`1 struct Predicate_1_t41A292D787559D27EFF52A663E15AC7062F21FF9; // System.Predicate`1 struct Predicate_1_t57BE7B707D080A864F17031A97B4D0E7D17AECF4; // System.Predicate`1 struct Predicate_1_tD86F16489689EF310618E80DCAB3BC95AED04027; // System.Predicate`1 struct Predicate_1_t66888232B68F5944FD396D2EB0D7F13ED52E81EC; // System.Predicate`1 struct Predicate_1_t80FB7E5C66BEF660F7A73B065A0027BEB853ED76; // System.Predicate`1 struct Predicate_1_t2F2BEC402386E3B09B1D7D7D935BD33BDB4FAFF8; // System.Predicate`1 struct Predicate_1_t2DF0E7DBC4309449559BF46E80C79293D7C812C9; // System.Predicate`1 struct Predicate_1_tD6D987D67889B47487837636A399BAFEB8B73476; // System.Predicate`1 struct Predicate_1_tD5DD7F250006C46B5F9180B938DE69B68E9ACDEA; // System.Predicate`1 struct Predicate_1_t1F0D31C97B74C37A9764B0BCF88B6E15E2930219; // System.Predicate`1 struct Predicate_1_tFAC7BFB5EECA2BD6D8D55D366381931FD6BD6EAD; // System.Predicate`1 struct Predicate_1_tF5C5F9F2C3CFB2FA0A40089B46C80C8B21D9ADCB; // System.Predicate`1 struct Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3; // System.Predicate`1 struct Predicate_1_t5C52E5DEC72D8848A1024CF1E1E512DB092F800A; // System.Predicate`1 struct Predicate_1_t92F2E90B1EAD00A30D1CC5D15AB968FC7C1029AD; // System.Predicate`1 struct Predicate_1_t153828F20EBDF2E6C7265AEADAB682A3CEF4D2FF; // System.Predicate`1 struct Predicate_1_t47294101EC0C95647F0B51860E1EAE100C85CB76; // System.Predicate`1 struct Predicate_1_t0A3D45FAB04B4CB50858F33D641E0D6D8CABFB95; // System.Predicate`1 struct Predicate_1_t690A7E75BEF05C6301E61DC4DDC2743A13A28F08; // System.Predicate`1 struct Predicate_1_t2EB8AC06BBCD4AE7BBA9CACDDC3C1B9F611618FD; // System.Predicate`1 struct Predicate_1_tB7D0E77B7B289E75D3AADFB16B9DABBF41135D5D; // System.Predicate`1 struct Predicate_1_t8A36A16586A785169751044D47DFD03165CFBFA7; // System.Predicate`1 struct Predicate_1_t4C407F62BAC454EA127AEFFEA4CB1B00FBC8E788; // System.Predicate`1 struct Predicate_1_t8CFA91D4D02A049830E5D472DAAE120481DD8FC0; // System.Predicate`1 struct Predicate_1_tDF40C5B214B8C1CD42C03A302327D001EDCFE1A0; // System.Predicate`1 struct Predicate_1_tCF1DB80F9B8D54F7D416D5F1B9C6FA54CA2F535D; // System.Predicate`1 struct Predicate_1_t92811648861E74AE1684EBFF0974815179C512BD; // System.Predicate`1 struct Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12; // System.Predicate`1 struct Predicate_1_t7B569681B7374B43F1CFD395E239DB0399A2469B; // System.Predicate`1 struct Predicate_1_t8045C987DADD00C027566685C4FF3E698F78F5D8; // System.Predicate`1 struct Predicate_1_t2F19BA0C3F619EFF01C6DA1936333C1E617E009C; // System.Predicate`1 struct Predicate_1_t7224D1543E9340889778CC98C4BE3A01E27C2EF0; // System.Predicate`1 struct Predicate_1_t231FE77F451704871DD8332FA13BC563C1DF98A7; // System.Predicate`1 struct Predicate_1_t1335EE59D89A3558FF28D51C2BD57E9A6CBEE4A2; // System.Predicate`1 struct Predicate_1_t4E2DCAD6B2A184221B5B5B7CB2856915444BEFAA; // System.Predicate`1 struct Predicate_1_tC534135FB0E28A8ED9CFA576ED5F3EB9DDACE39F; // System.Predicate`1 struct Predicate_1_t7E4FA42E5B0E34D98B83ED23E70B1BE5E102A876; // System.Predicate`1 struct Predicate_1_t4BC6F89EF5A569A9F35F0811B1E7BCC483C6F6B2; // System.Predicate`1 struct Predicate_1_tA9E6CF32B60B5B634F6496B7B36485F10F75C80A; // System.Predicate`1 struct Predicate_1_t67961D4F65418942198AF1EE29C48B14CDAF3D70; // System.Predicate`1 struct Predicate_1_tE64ACFF904D66F46B773381B865A18D1EDD99B51; // System.Predicate`1 struct Predicate_1_t73712DDC60A72913D08D4AB937615171122702A6; // System.Predicate`1 struct Predicate_1_t335E1C5FF683D1333BBF66A6381A618BD07EAC9B; // System.Predicate`1 struct Predicate_1_t0034E3AE1654B4583E5EBFD23EC9362CAC240F85; // System.Predicate`1 struct Predicate_1_t082074DFBBB16B23CBEAF213047C359D45971EBD; // System.Predicate`1 struct Predicate_1_t04A4FDFB4661AFD4EB4C1165B36D4790635A7D22; // System.Predicate`1 struct Predicate_1_t678C2AAAB4D5E236101DD0ADB5511B85B28AA381; // System.Predicate`1 struct Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD; // System.Predicate`1 struct Predicate_1_t274A00745B211043E3F48EE1E2FB52439636BB8E; // System.Predicate`1 struct Predicate_1_tC71ED478E55AB066BD28E79AC4FEACA0620B68E1; // System.Predicate`1 struct Predicate_1_t927C61191B89954D54186E8AFA0218ECFB024197; // System.Predicate`1 struct Predicate_1_t1E94618F8BE2F304211E58197312F715F7CDC887; // System.Predicate`1 struct Predicate_1_tC8BBE74723A0240718C4D4A058A8351EDC6F246D; // System.Predicate`1 struct Predicate_1_t0FA75C2688E250A8F997BCC1793B987042152CAD; // System.Predicate`1 struct Predicate_1_t2DA82FB1808C6902625283DE5A7167D87CFA99EE; // System.Predicate`1 struct Predicate_1_t33210454BBD5525EDCF57579B4F30B5893B8C8EC; // System.Predicate`1 struct Predicate_1_tD44833D3E82DB77FCCAF428B5A05B3F717AC19D7; // System.Predicate`1 struct Predicate_1_t86E77B1D9A29DD60AA05047257FCF6BBDE992299; // System.Predicate`1 struct Predicate_1_t9058548C4810505B646B00E24AECF8F76512256C; // System.Predicate`1 struct Predicate_1_t52040C0404BB605626DC3B4050B99A7392B681C6; // System.Predicate`1 struct Predicate_1_t67DD53883C4A1D53416D3D5AC04450D4C2D550B9; // System.Predicate`1 struct Predicate_1_tA26E40D8D8E40E1F1751F90FEBED87F4AAD88308; // System.Predicate`1 struct Predicate_1_tD5A949E7B7A12F5D7F1F939A0DC04B213ACF03CD; // System.Predicate`1 struct Predicate_1_t8BFFAEFC5F80E3A5CD534EFA1FCE8E02111F2938; // System.Predicate`1 struct Predicate_1_t27CB3424981DCDA62A6C37169B1C0A31FBF0F99E; // System.Predicate`1 struct Predicate_1_t426C900A840E093E1F7C15BDA720FCD3D47F3F96; // System.Predicate`1 struct Predicate_1_tF77354EE58DBBBB2118B440CD2E5CCC285D7509B; // System.Predicate`1 struct Predicate_1_tB42DFC3FAEDCC361490394CE84FDAB0897614DCA; // System.Predicate`1 struct Predicate_1_tD9C43B9F9F1E24AC8BF0B13DA518A038655CF159; // System.Predicate`1 struct Predicate_1_t8BE8EDB6E5831599B205FAC82EE0FE3F1E170EEE; // System.Predicate`1 struct Predicate_1_t2F212B682F64543895DDB2A14A8816A433567EFF; // System.Predicate`1 struct Predicate_1_t4CC76CDB2DE98076E841155882228372ED64954D; // System.Predicate`1 struct Predicate_1_tEAAAB877302235E809D3416D8DD71E15AB6CA7ED; // System.Predicate`1 struct Predicate_1_t7744EBE2271FC2C4CBF28703CF361AF669D73B95; // System.Predicate`1 struct Predicate_1_t18D1CC2E2738FA005E8F9798496FD65B51B853F6; // System.Predicate`1 struct Predicate_1_t08C2DEAC0608CE2F508A263F78A946D518D909EF; // System.Predicate`1 struct Predicate_1_tE96ECD003F473EE07C8DCDFCCD657300A8DE453B; // System.Predicate`1 struct Predicate_1_t9ADD2AEC8229E068388E35FC4B0E7C4F2AE588D6; // System.Predicate`1 struct Predicate_1_t5D3885F0B10D3F6345B19C0FFF8C67C14C7ECE1D; // System.Predicate`1 struct Predicate_1_tBF646BE2D54FD7C408CC290FD3B3994500782816; // System.Predicate`1 struct Predicate_1_tB2B4613BB6B50416AC05F114BE23CAB79DB2105B; // System.Predicate`1 struct Predicate_1_tB9999C9C9C42FA89BBE6865404B6372BA3E8F5F5; // System.Predicate`1 struct Predicate_1_t2DE22422FB6DB49CDDD303060640BD2A601F9494; // System.Predicate`1 struct Predicate_1_t8EE10E3A7926E35DADB779EDBF2DF995990D45A6; // System.Predicate`1 struct Predicate_1_tC379A53B19F3F1C0ECABCA66530F99E7247AC01E; // System.Predicate`1 struct Predicate_1_tBFE57AFB40F122ABA33A14C3E1EED7AAE31221E1; // System.Predicate`1 struct Predicate_1_t9C6768BCBE51C4D9D02E4CA82393C278B2A483C9; // System.Predicate`1 struct Predicate_1_t8194F57B81937B278B5EFEF0F5B667BBB054B0D0; // System.Predicate`1 struct Predicate_1_t52FF23711F254610555E47294A60791608149553; // System.Predicate`1 struct Predicate_1_tEDE782A7E00A3B0A1407E39ED2B4100C82C29760; // System.Predicate`1 struct Predicate_1_tB3AFD8D29A287361BFEADF1FE84BA0D2FBAE9CFA; // System.Predicate`1 struct Predicate_1_t44DCEC204E26EFC09B4010F471C482F35789FC56; // System.Predicate`1 struct Predicate_1_tABC7C098EE8EF07897599821E821E7475DD7748A; // System.Predicate`1 struct Predicate_1_tE36C8D027DB4572066A901AE7781EF34A2CFAA1E; // System.Predicate`1 struct Predicate_1_tCFC47DBB637AD9E81A5FEB9BBEF50B54E3601238; // System.Predicate`1 struct Predicate_1_t84B68FFF78199BDA64EDC350BFBE9308C9E6290C; // System.Predicate`1 struct Predicate_1_tE7A821CD57BA00206E0206E8CE3F6FF208B143AE; // System.Predicate`1 struct Predicate_1_t4E91B693FFE3C326D653DE2932E0A95A758B49FA; // System.Predicate`1 struct Predicate_1_t45BB0275A7E1FA0F42CDB957C0F2B5F5F593293F; // System.Predicate`1 struct Predicate_1_t747D69A940CA62D0F7F6A6E7BC65C7B4E0A9E07D; // System.Predicate`1 struct Predicate_1_tF7BD2C197F8A01B060E0E76CECCCCA788D3F54E6; // System.Predicate`1 struct Predicate_1_tFB60CD13D423EFABC2480AB1A0005D748762F6DD; // System.Predicate`1 struct Predicate_1_t8DCFD1E780C42A60574281B4F7F34FD875DDB856; // System.Predicate`1 struct Predicate_1_t5F82C0C3503EA1B68ECEC5CA226056D878DF53F0; // System.Predicate`1 struct Predicate_1_t307A0D6E571F6E29070EB62217398E9D4D45C556; // System.Predicate`1 struct Predicate_1_t707D110447A1E467577F8726EDDBA914E487B1B1; // System.Predicate`1 struct Predicate_1_tDA45FFEC703500A529E702D9733C1C2095D663FC; // System.Predicate`1 struct Predicate_1_tCC6C1019817F23EFFAC06C8D0EDD8803C71D54E4; // System.Predicate`1 struct Predicate_1_t81E65ECFCC613C16F7408ECA5D3D94536697174D; // System.Predicate`1 struct Predicate_1_tF07631EDC3B41687C1E8B085B75A0ABB943B36A6; // System.Predicate`1 struct Predicate_1_t30B6C0EA4B49279CABE20C001AAC4DD54EAE9AB6; // System.Predicate`1 struct Predicate_1_tC3EDC96D1A2F3CECACACAA4C438EA6BBC04597D8; // System.Predicate`1 struct Predicate_1_tF07FF276307C88497A4B043A4DF31F5476C0E91D; // System.Predicate`1 struct Predicate_1_tAEA19CF286EE22BCCA556289D5B18293B08FA9C8; // System.Predicate`1 struct Predicate_1_t00C020A8DCBD791CD32C468CA1B79FD1E312E9A2; // System.Predicate`1 struct Predicate_1_t67EBB94C8670914BCDC9AA6B8EA5D4865AD51B8A; // System.Predicate`1 struct Predicate_1_tE3E1F989FFD5E9B7066F4A986F5B4CECD03B80EA; // System.Predicate`1 struct Predicate_1_t41306CE469522F8BA8FAC3D97CAFBC23287E4AAF; // System.Predicate`1 struct Predicate_1_t2521B31A7E24FA58CCCAE42C45A539CAA48C8DA2; // System.Predicate`1 struct Predicate_1_tA70682C58174C0361DD8234B0CA3CFADBD4D53DE; // System.Predicate`1 struct Predicate_1_tB8B0E4D4ADB4D4EE1BB6E7A271303C62A5C3BC6C; // System.Predicate`1 struct Predicate_1_t1E8360EC3B7A81B337DFD3ED315523A3C0798C37; // System.Predicate`1 struct Predicate_1_t0A8B1D8384987A0395E8759C8B74C77034D05A56; // System.Predicate`1 struct Predicate_1_t5A70C5A9AECB81F305FDCA2BA8DA7F1255B165F3; // System.Collections.ObjectModel.ReadOnlyCollection`1 struct ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92; // System.Collections.ObjectModel.ReadOnlyCollection`1 struct ReadOnlyCollection_1_tE414953665CCBE1BFF28E8E32C184621ADDA4B76; // 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_t08E9B72954DC89AD9AC1DCAFDC7EFFDB16799DDF; // System.Collections.Generic.Stack`1 struct Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5; // UnityEngine.Events.UnityAction`1 struct UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A; // System.Action`1[] struct Action_1U5BU5D_t18C922CAB85EAE463E29566305D718EF64B12A16; // System.Action`2[] struct Action_2U5BU5D_tBE18774DE78EE629377991D4C8F3B44D96E3A529; // System.Action`3[] struct Action_3U5BU5D_t624B9D1D653A8F69756207CB2B95EEF3143387DB; // System.Func`3[] struct Func_3U5BU5D_t46F58FB7530550D36B775F49E118190032295BE6; // System.Collections.Generic.KeyValuePair`2[] struct KeyValuePair_2U5BU5D_tF8154B2302178CCE00D745DBF55F703880469DFC; // System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack[] struct LockedStackU5BU5D_tC7986140D8705D936FFB7A563D611A656663DC23; // System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack[] struct LockedStackU5BU5D_t4C264F6FD602057050E44BD8CD3923760EC109CC; // System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack[] struct LockedStackU5BU5D_t462C10653559369B223A5E1BD4B60B0D28BC4933; // System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack[] struct LockedStackU5BU5D_t7A158CD596BE99938D5116FEB55E74DD641EAF85; // System.Byte[][] struct ByteU5BU5DU5BU5D_t19A0C6D66F22DF673E9CDB37DEF566FE0EC947FA; // System.Char[][] struct CharU5BU5DU5BU5D_tE6ABF380CD3BBDBB52C3EF725A02224F2B4AA680; // System.Int32[][] struct Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E; // System.Object[][] struct ObjectU5BU5DU5BU5D_t6491927494F825352C40DCE9D447C97B17297969; // DungeonArchitect.Builders.BSP.BSPNodeConnection[] struct BSPNodeConnectionU5BU5D_t4B63F0A200675D9C82080A82E37ACDE0E5260D61; // System.Byte[] struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031; // System.Char[] struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB; // UnityEngine.UIElements.ComputedTransitionProperty[] struct ComputedTransitionPropertyU5BU5D_t25B9E78F5276CDA297C8215C316452CAB8219E82; // System.Delegate[] struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771; // DungeonArchitect.Utils.DungeonUID[] struct DungeonUIDU5BU5D_t9ED3636D1BB027001497A075D860CC6EB7F503ED; // UnityEngine.InputSystem.EnhancedTouch.Finger[] struct FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F; // UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord[] struct GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7; // UnityEngine.InputSystem.InputDevice[] struct InputDeviceU5BU5D_tA9AEFC6AF63557D3D5DCFB2B26DDA6F63147D548; // UnityEngine.InputSystem.Users.InputUser[] struct InputUserU5BU5D_t4B71AE3CDE5BB252EADB6494FEE05EE141C2B1FD; // System.Int32[] struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C; // System.IntPtr[] struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832; // UnityEngine.InputSystem.Utilities.InternedString[] struct InternedStringU5BU5D_t0B851758733FC0B118D84BE83AED10A0404C18D5; // UnityEngine.InputSystem.Utilities.NameAndParameters[] struct NameAndParametersU5BU5D_tA6C2AC34ACDB1967A7A2CEF4BE1D717ADA695CA2; // UnityEngine.InputSystem.Utilities.NamedValue[] struct NamedValueU5BU5D_tADD8F1373B88C55F68499688D72C21A97F63303A; // System.Object[] struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918; // UnityEngine.Playables.PlayableBinding[] struct PlayableBindingU5BU5D_tC50C3F27A8E4246488F7A5998CAABAC4811A92CD; // UnityEngine.RaycastHit[] struct RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8; // UnityEngine.Rendering.ShaderTagId[] struct ShaderTagIdU5BU5D_tE1BA124E13B8096153E25C5AF9C1D15D71466143; // System.Single[] struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C; // DungeonArchitect.Builders.Snap.SnapQueryConnectionInfo[] struct SnapQueryConnectionInfoU5BU5D_tA722DA257596BFF7FBFF0241951285854A0487E9; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF; // System.String[] struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248; // UnityEngine.UIElements.StyleValueHandle[] struct StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE; // UnityEngine.InputSystem.EnhancedTouch.Touch[] struct TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354; // UnityEngine.InputSystem.Touchscreen[] struct TouchscreenU5BU5D_t73D22E3D2A7039C6C374D75B796C8F83BCA897E3; // System.Type[] struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB; // System.UInt32[] struct UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA; // UnityEngine.Vector2[] struct Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA; // UnityEngine.Vector3Int[] struct Vector3IntU5BU5D_t7A7C64EB93B0E0C1989C82C3D0A003294FC6EC5E; // UnityEngine.Rendering.VolumeParameter[] struct VolumeParameterU5BU5D_t7025A98CA20F310D68D653DE8E37EA31FF25E103; // DungeonArchitect.Flow.Domains.Tilemap.FlowTilemapRenderer/TilemapRenderQuad[] struct TilemapRenderQuadU5BU5D_t3583A576C66A6B8E4FE0BCF7DF0523870977065C; // DungeonArchitect.Flow.Domains.Tilemap.FlowTilemapRenderer/TilemapRenderVert[] struct TilemapRenderVertU5BU5D_t11597EB861572CA424CB943DAE12DCE96C3F80A3; // UnityEngine.InputSystem.InputControlScheme/DeviceRequirement[] struct DeviceRequirementU5BU5D_t0496FAAB7554B7BFC270BA53BA6A5EFD5DE061CE; // UnityEngine.InputSystem.Users.InputUser/OngoingAccountSelection[] struct OngoingAccountSelectionU5BU5D_t0CC84AB78BA7B45022C3D6E08B0DADA7A61BCBD8; // UnityEngine.InputSystem.Users.InputUser/UserData[] struct UserDataU5BU5D_t5CB4987877C71E61FA131704B58CA6D8E5272C7E; // UnityEngine.Timeline.TimeNotificationBehaviour/NotificationEntry[] struct NotificationEntryU5BU5D_t51F6D9F2EB943E3F431D8548C24B3A3F4384F5DF; // UnityEngine.InputSystem.UI.TrackedDeviceRaycaster/RaycastHitData[] struct RaycastHitDataU5BU5D_t98BBA3CE354036B88621172C27ED5C5DD7CB9279; // UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData[] struct PoseDataU5BU5D_t2C3BAD03F54ECC8DA545558F23FC7A58A33BD566; // UnityEngine.UIElements.TreeView/TreeViewItemWrapper[] struct TreeViewItemWrapperU5BU5D_tCCD55ED60CE42FB0F213A8032C56CE86A641DC4B; // UnityEngine.UIElements.UIR.Implementation.UIRStylePainter/Entry[] struct EntryU5BU5D_t0E1B13D46D84865A64150BC9C0299A2189F6F1E8; // UnityEngine.UIElements.UIR.UIRenderDevice/AllocToFree[] struct AllocToFreeU5BU5D_tABB7AF052966F0E8DFAA88DF107B682ED5411788; // UnityEngine.UIElements.UIR.UIRenderDevice/AllocToUpdate[] struct AllocToUpdateU5BU5D_tC52656BA0214FA47884361867D3ED2D23CE612C3; // UnityEngine.UIElements.UIR.UIRenderDevice/DeviceToFree[] struct DeviceToFreeU5BU5D_t1A352607EF4B168AD01A686333C52A10A28F9429; // UnityEngine.UnitySynchronizationContext/WorkRequest[] struct WorkRequestU5BU5D_t1B912B8BE58CF60CAF3A4FEC0A5C0F5BB6D99577; // UnityEngine.UIElements.VisualTreeAsset/SlotDefinition[] struct SlotDefinitionU5BU5D_t9003D04EBDD74C44DD8490A99624A727154E1299; // UnityEngine.UIElements.VisualTreeAsset/SlotUsageEntry[] struct SlotUsageEntryU5BU5D_t02CCAC4881F115443BE39FCBE8439A9DCFC1C67A; // UnityEngine.UIElements.VisualTreeAsset/UsingEntry[] struct UsingEntryU5BU5D_t3E321CB1464DE1D2F7FDE3790BD4AD8B72FBE811; // UnityEngine.Rendering.DebugUI/Foldout/ContextMenuItem[] struct ContextMenuItemU5BU5D_tFD4FC81929646BCD206377E2AC8E290E93FEE279; // UnityEngine.InputSystem.Layouts.InputControlLayout/Collection/LayoutMatcher[] struct LayoutMatcherU5BU5D_t790C71C3787F12C3EE9F7ABDC24DFCEB5281F90E; // UnityEngine.InputSystem.Layouts.InputControlLayout/Collection/PrecompiledLayout[] struct PrecompiledLayoutU5BU5D_t1869AF68DD01B58B3BC18854CF18B58B8BE00C5F; // System.Action struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07; // NodeCanvas.Framework.ActionTask struct ActionTask_t6B5C6B67D00E7AF678FAEDC91859B778C24A8E1E; // System.ArgumentException struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263; // System.ArgumentNullException struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F; // System.AsyncCallback struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C; // UnityEngine.EventSystems.BaseRaycaster struct BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832; // UnityEngine.UIElements.BaseVisualElementPanel struct BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303; // System.Reflection.Binder struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235; // System.Byte struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3; // UnityEngine.Camera struct Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184; // UnityEngine.Component struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3; // UnityEngine.UIElements.ContextualMenuManager struct ContextualMenuManager_tEE3B1F33FFFD180705467CA625AEBA0F5D63154B; // UnityEngine.Rendering.CullingAllocationInfo struct CullingAllocationInfo_tB260F5CD0B290F74E145EB16E54B901CC68D9D5A; // UnityEngine.Rendering.Universal.DecalCachedChunk struct DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE; // UnityEngine.Rendering.Universal.DecalCulledChunk struct DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3; // UnityEngine.Rendering.Universal.DecalDrawCallChunk struct DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A; // UnityEngine.Rendering.Universal.DecalEntityChunk struct DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E; // DungeonArchitect.Themeing.DungeonThemeItem struct DungeonThemeItem_t525C07FDEF1FE05205B04857B883591354D79AB1; // UnityEngine.UIElements.ElementUnderPointer struct ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904; // System.Enum struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2; // UnityEngine.Event struct Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB; // UnityEngine.UIElements.EventBase struct EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C; // UnityEngine.UIElements.EventCallbackRegistry struct EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85; // ParadoxNotion.Services.EventRouter struct EventRouter_tFF11845F5CEB376625AA32F751511FA5918717F9; // System.Exception struct Exception_t; // System.Reflection.FieldInfo struct FieldInfo_t; // FIMSpace.Generating.FieldSetup struct FieldSetup_tC930DB5C21FA8BC444379EB545850A02E9708926; // UnityEngine.InputSystem.EnhancedTouch.Finger struct Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A; // DungeonArchitect.Flow.Domains.Layout.FlowLayoutGraphLink struct FlowLayoutGraphLink_t46C32B4C53EF2584D824AC991277B0CCDE492066; // DungeonArchitect.Flow.Domains.Layout.FlowLayoutGraphNode struct FlowLayoutGraphNode_t87C9F28AC312DBD32DACA3F56E74A83944F60053; // UnityEngine.UIElements.Focusable struct Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0; // UnityEngine.GameObject struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F; // UnityEngine.UI.Graphic struct Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931; // UnityEngine.UIElements.HierarchyEvent struct HierarchyEvent_tB23E4347BC47656A014CA104A5B1DDC172A2A705; // System.IAsyncResult struct IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5; // NodeCanvas.Framework.IBlackboard struct IBlackboard_t5DD66755F75CEACCF1D3EC369782E2A07F1102ED; // UnityEngine.UIElements.ICursorManager struct ICursorManager_t78B026DED2559C62810B21C54C5F882457073A8B; // System.Collections.IDictionary struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220; // System.Collections.IEnumerator struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA; // UnityEngine.UIElements.IEventHandler struct IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3; // UnityEngine.Playables.INotification struct INotification_tEF630287442F0A66470493068A5D158E3C2D3C6B; // UnityEngine.UIElements.IPanel struct IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5; // UnityEngine.UIElements.IPointerEvent struct IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7; // NodeCanvas.Framework.ITaskSystem struct ITaskSystem_t5C954212C02BD88DCB75F567405E31FBE9F281B3; // UnityEngine.UIElements.ITreeViewItem struct ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC; // UnityEngine.UIElements.InlineStyleAccess struct InlineStyleAccess_t5CA7877999C9442491A220AE50D605C84D09A165; // UnityEngine.InputSystem.InputDevice struct InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B; // UnityEngine.InputSystem.LowLevel.InputEvent struct InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5; // FIMSpace.Generating.InstructionDefinition struct InstructionDefinition_t9455A0241A36B5E034A8C152F819BA3B56D5F445; // System.Threading.ManualResetEvent struct ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158; // UnityEngine.Material struct Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3; // System.Reflection.MemberFilter struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553; // UnityEngine.Mesh struct Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4; // UnityEngine.UIElements.UIR.MeshHandle struct MeshHandle_tC1E9A7ECCFDAEFDE064B8D58B35B9CEE5A70A22E; // System.Reflection.MethodInfo struct MethodInfo_t; // UnityEngine.Object struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C; // UnityEngine.UIElements.UIR.Page struct Page_tB4EA8095DF85BAF22AB8FCA71400121E721B57C9; // DungeonArchitect.Triangulator.Geometry.Point struct Point_t10224084201F077997179F1EDD9E2D2A18384D43; // DungeonArchitect.PropSocket struct PropSocket_tDBD788EE4878B0FEF7F3848CD0882C4A2A735394; // UnityEngine.UIElements.PropagationPaths struct PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5; // System.Text.RegularExpressions.Regex struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772; // 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; // System.Threading.SendOrPostCallback struct SendOrPostCallback_t5C292A12062F24027A98492F52ECFE9802AA6F0E; // DungeonArchitect.Flow.Impl.SnapGridFlow.SgfModuleDatabaseItem struct SgfModuleDatabaseItem_tA696FBDED35FA6BB83915CDF84726B954238933C; // FIMSpace.Generating.Planning.SingleInteriorSettings struct SingleInteriorSettings_t69F4D4F9AC29B3CD90B766F0D750AF28683B702F; // DungeonArchitect.Builders.Snap.SnapModuleInstance struct SnapModuleInstance_tF25841DFE855BCD94C5F21B124AFAD0E8C4D8A94; // FIMSpace.Generating.SpawnData struct SpawnData_t974A7A205DB24E47D544B2E1AC4EB2DA53E505A7; // System.String struct String_t; // UnityEngine.UIElements.StyleComplexSelector struct StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD; // UnityEngine.UIElements.StyleSheet struct StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428; // UnityEngine.UIElements.StyleVariableContext struct StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527; // NodeCanvas.Framework.Internal.TaskAgentParameter struct TaskAgentParameter_t6F02431C314168FE5698AD6A87B555310C2DBC4B; // UnityEngine.Texture struct Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700; // UnityEngine.InputSystem.Touchscreen struct Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE; // UnityEngine.Transform struct Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1; // System.Type struct Type_t; // UnityEngine.Events.UnityAction struct UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7; // System.ValueType struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F; // NodeCanvas.Framework.Variable struct Variable_t60C01143D3B1491B2FFEB305052C327D03DDF4AA; // UnityEngine.UIElements.VisualElement struct VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115; // UnityEngine.UIElements.VisualTreeAsset struct VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB; // System.Void struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915; // UnityEngine.Rendering.VolumeParameter struct VolumeParameter_t95994C89644D2CC4C11F666571492420D16BED72; // UnityEngine.Yoga.YogaConfig struct YogaConfig_tE8B56F99460C291C1F7F46DBD8BAC9F0B653A345; // UnityEngine.Yoga.YogaNode struct YogaNode_t4B5B593220CCB315B5A60CB48BA4795636F04DDA; // FMODUnity.Legacy/PlatformSettingBase struct PlatformSettingBase_t8B6E034F3BDEBFA6EE32F9C35B775C2DD3284701; // UnityEngine.Playables.PlayableBinding/CreateOutputMethod struct CreateOutputMethod_tD18AFE3B69E6DDD913D82D5FA1D5D909CEEC8509; // UnityEngine.UIElements.VisualElement/CustomStyleAccess struct CustomStyleAccess_t170C852102B4D09FB478B620A75B14D096F9F2B1; // UnityEngine.UIElements.VisualElement/TypeData struct TypeData_t01D670B4E71B5571B38C7412B1E652A47D6AF66A; IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventType_tC62F0D77DB08D7326B58B2D8CF43BD45CFD3203E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_2_t03668587D04B8ECC3E6CE9EF3B2852118286E630_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_2_t77AF745C0F9B082CCA8A895BCF11881A4E488892_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_2_tC36594E7D8520428367F19691F9AEFC7FBC7C77F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IPointerEventInternal_tF0950F230320BC22B077741EA08AC538EE878833_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeThread_tCBB9EE72E36F8C1C2A88781C20608F426A139E9D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_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* VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VolumeParameter_t95994C89644D2CC4C11F666571492420D16BED72_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral08B4AAA9BDED6950A01736DBF6AAE7BCCD5DF5B3; IL2CPP_EXTERN_C String_t* _stringLiteral12D34C4D5361DBE1804B6F49EDED3C800B442095; IL2CPP_EXTERN_C String_t* _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1; IL2CPP_EXTERN_C String_t* _stringLiteral36A671C1B625C9DCE9DC8BF9838E883E2C15399B; IL2CPP_EXTERN_C String_t* _stringLiteral3880DBE28875F398C36412ABCDBF84989B377C80; IL2CPP_EXTERN_C String_t* _stringLiteral66F9618FDA792CAB23AF2D7FFB50AB2D3E393DC5; IL2CPP_EXTERN_C String_t* _stringLiteral90D481902E4536C7CAECF03F50C5BF454D5968A7; IL2CPP_EXTERN_C String_t* _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D; IL2CPP_EXTERN_C String_t* _stringLiteralBE7F5FAB856FD44805A1AB74E778E29427AD750F; IL2CPP_EXTERN_C String_t* _stringLiteralD99605E29810F93D7DAE4EFBB764C41AF4E80D32; IL2CPP_EXTERN_C String_t* _stringLiteralF0F160239DAE2C1A81A97162A485DB4EA53FC258; IL2CPP_EXTERN_C String_t* _stringLiteralF2E9873618CF7CF584BF8C00E6280D6D71245CCD; IL2CPP_EXTERN_C const RuntimeMethod* BBParameter_1_get_value_mA77627D8FDE1056733CB2185B27466805C7E9A0B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_OrderBy_TisFieldInfo_t_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m305093C3E08FA712AA4846984EDB85C0AF6EE5E7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Select_TisFieldInfo_t_TisVolumeParameter_t95994C89644D2CC4C11F666571492420D16BED72_m2599B4ED29E272D2B9714BC5A6A3DFF96B64408C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToList_TisVolumeParameter_t95994C89644D2CC4C11F666571492420D16BED72_mA8240012A5C1CC25E1473560EF016D7F7011E389_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Where_TisFieldInfo_t_mCB3957CC209F10E6FDA91C4BB12C2E6B549B7F90_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_AsReadOnly_m29605879900148C3272C3BA55373AB837ACE82AD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ObjectPool_1__ctor_m4CED6C10E611A3CC63F3CF84423C183C1412177F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* OneOrMore_2_get_Item_m779367B97DF52157D699BFB8872ECAFB45200632_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* OneOrMore_2_get_Item_mF0D25C4C8C33FE00FC6B392B3A903196E01A7BD7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* OrderedEnumerable_2__ctor_m1260A1E5E67504F4015F63CD6B68D01A67D3A218_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* OrderedEnumerable_2__ctor_m4431F3A473B3D54B25D0356FF817F98181A7C32F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* OrderedEnumerable_2__ctor_m5A5492A71F9D3F956F16D4F7B1F04BE47AC7FEB7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* OrderedEnumerable_2__ctor_m95ECD3FC3686640963CAD3DB706B668BB5C7B2DB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* OrderedEnumerable_2__ctor_mBE55EFC6E4C9C25042A441DB70B0599B8464BCD6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* OrderedEnumerable_2__ctor_mCE6FF66A1073D45A4BF3DAB966E00AC56B6501F9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* OrderedEnumerable_2__ctor_mDBD22B8FD21EB8AA78E215E6189E6A53CC537403_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollection_1_get_Count_m5795D735A06D839F9B0A765A426E896606195F5A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollection_1_get_Item_mE42F1931815AFE09BE54D05CA9D6D0F4AA411274_RuntimeMethod_var; struct BSPNodeConnection_t6D2235C774FB7EDF438E193C3E3A0F93E07D15F0_marshaled_com; struct BSPNodeConnection_t6D2235C774FB7EDF438E193C3E3A0F93E07D15F0_marshaled_pinvoke; struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_com; struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_pinvoke; struct Delegate_t_marshaled_com; struct Delegate_t_marshaled_pinvoke; struct DeviceRequirement_t80E71C44DF1923C15D3AA025242B7348EBF8B056_marshaled_com; struct DeviceRequirement_t80E71C44DF1923C15D3AA025242B7348EBF8B056_marshaled_pinvoke; struct DungeonUID_tE8CE2B9A9730AD6B17567131FF1FC463652BC9E9; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct InputUser_tD938B6FAC4D79FB2BA7040DE247549A4F832000E; struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com; struct ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0; struct SnapQueryConnectionInfo_t127E1D194D6255787FFE4209E20D3CACC89E76E1_marshaled_com; struct SnapQueryConnectionInfo_t127E1D194D6255787FFE4209E20D3CACC89E76E1_marshaled_pinvoke; struct StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D; struct TilemapRenderQuad_t978CBD3B87AB83EF67DCE597246CF6D57ABF11A0_marshaled_com; struct TilemapRenderQuad_t978CBD3B87AB83EF67DCE597246CF6D57ABF11A0_marshaled_pinvoke; struct TilemapRenderVert_t9EBAAFFE96D8048DE72E798D89ACDF440BFEC238; struct Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_com; struct Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_pinvoke; struct UserData_t0F7AA24AC638FDFB7CF552415A75CAE057C2D42C_marshaled_com; struct UserData_t0F7AA24AC638FDFB7CF552415A75CAE057C2D42C_marshaled_pinvoke; struct Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376; struct LockedStackU5BU5D_tC7986140D8705D936FFB7A563D611A656663DC23; struct LockedStackU5BU5D_t4C264F6FD602057050E44BD8CD3923760EC109CC; struct LockedStackU5BU5D_t462C10653559369B223A5E1BD4B60B0D28BC4933; struct LockedStackU5BU5D_t7A158CD596BE99938D5116FEB55E74DD641EAF85; struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031; struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB; struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771; struct FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8; struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C; struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918; struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248; struct NotificationEntryU5BU5D_t51F6D9F2EB943E3F431D8548C24B3A3F4384F5DF; struct RaycastHitDataU5BU5D_t98BBA3CE354036B88621172C27ED5C5DD7CB9279; struct PoseDataU5BU5D_t2C3BAD03F54ECC8DA545558F23FC7A58A33BD566; struct TreeViewItemWrapperU5BU5D_tCCD55ED60CE42FB0F213A8032C56CE86A641DC4B; struct EntryU5BU5D_t0E1B13D46D84865A64150BC9C0299A2189F6F1E8; struct AllocToFreeU5BU5D_tABB7AF052966F0E8DFAA88DF107B682ED5411788; struct AllocToUpdateU5BU5D_tC52656BA0214FA47884361867D3ED2D23CE612C3; struct DeviceToFreeU5BU5D_t1A352607EF4B168AD01A686333C52A10A28F9429; struct WorkRequestU5BU5D_t1B912B8BE58CF60CAF3A4FEC0A5C0F5BB6D99577; struct SlotDefinitionU5BU5D_t9003D04EBDD74C44DD8490A99624A727154E1299; struct SlotUsageEntryU5BU5D_t02CCAC4881F115443BE39FCBE8439A9DCFC1C67A; struct UsingEntryU5BU5D_t3E321CB1464DE1D2F7FDE3790BD4AD8B72FBE811; struct ContextMenuItemU5BU5D_tFD4FC81929646BCD206377E2AC8E290E93FEE279; struct LayoutMatcherU5BU5D_t790C71C3787F12C3EE9F7ABDC24DFCEB5281F90E; struct PrecompiledLayoutU5BU5D_t1869AF68DD01B58B3BC18854CF18B58B8BE00C5F; 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 // UnityEngine.Rendering.ObjectParameter`1/<>c struct U3CU3Ec_t1CACE90C04A511E3A906AC0966F45057BDBC3E34 : public RuntimeObject { }; // System.Collections.Generic.Comparer`1 struct Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80 : public RuntimeObject { }; // System.Collections.Generic.Comparer`1 struct Comparer_1_t0A03F9FBBEA32FB1528366652D3D38513E8B1137 : public RuntimeObject { }; // System.Collections.Generic.Comparer`1 struct Comparer_1_tE191E68CB394DD255CCA7A56F4D1DEFED0BD3FDB : public RuntimeObject { }; // System.Collections.Generic.Comparer`1 struct Comparer_1_t03DA6AFB24C7CAB292D6DC3A872298EE43E6C879 : public RuntimeObject { }; // System.Linq.EnumerableSorter`1 struct EnumerableSorter_1_t5897E023ECB6DBE16092BDD0CD9397E8600CD0F5 : public RuntimeObject { }; // System.Linq.EnumerableSorter`1 struct EnumerableSorter_1_t9DF0BF2FF3A689EB41C9CE2B42D3A91F5776B3AD : public RuntimeObject { }; // System.Linq.EnumerableSorter`1 struct EnumerableSorter_1_t17272E4796D2D1FBEFDF5F1408186712BC046529 : public RuntimeObject { }; // System.Linq.EnumerableSorter`1 struct EnumerableSorter_1_t0A94B73E1EBFE14F45B26D082CBC3DABAF046179 : public RuntimeObject { }; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t97889FF6B5695C88AE4091CF52103AFB63232E60 : public RuntimeObject { }; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t514555A24717CCDDE752698981B545A0063C3EC9 : public RuntimeObject { }; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t8F14EB4E16E4AB021816F2CB40ED33D5A3DEFD79 : public RuntimeObject { }; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t4A3A7BFB06F50EDFC951445060C5E13F479A4D4B : public RuntimeObject { }; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t6AAC1633D5060640F8E22439E93075AD21BB1A0E : public RuntimeObject { }; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t52645C99EE1F6BDD19ED02C7F019B6ED37EF1592 : public RuntimeObject { }; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t65E6EE02C62CB9DFE52D766B693759C3745CEA5E : public RuntimeObject { }; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_tB07B7222DB6D3E0844124F071EB509BC2B77592E : public RuntimeObject { }; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t22B0CC26C35745E55615170CAA01EBB497BB8F5F : public RuntimeObject { }; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t7FCC40DAE18BFC64ED0C99E437AD4ACC5B27A291 : public RuntimeObject { }; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t7CA6D3555E2E8A00EC397203A4B8FD84DBB70908 : public RuntimeObject { }; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t5CC2682E93AD4B6CAB3875684FC62AEDCA363E50 : public RuntimeObject { }; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t38EE53B7A75D77D5D194E0E1032C58C190258FAC : public RuntimeObject { }; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t9F8DF64B0D218FA3C298F5998F4D8294C7EAE933 : public RuntimeObject { }; // System.Collections.Generic.EqualityComparer`1 struct EqualityComparer_1_t1F22D7ED24210B522210474148F6F1AE84DE74DE : public RuntimeObject { }; // 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; }; // System.Collections.Generic.List`1 struct List_1_tD19F7E0FCBD7C3E8D363733582EF93B341DD3039 : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items VolumeParameterU5BU5D_t7025A98CA20F310D68D653DE8E37EA31FF25E103* ____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; }; // System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack struct LockedStack_t000073AA14F1B0C46471D9C699C9CDE10CB7CA17 : public RuntimeObject { // T[][] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack::_arrays ByteU5BU5DU5BU5D_t19A0C6D66F22DF673E9CDB37DEF566FE0EC947FA* ____arrays_0; // System.Int32 System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack::_count int32_t ____count_1; // System.UInt32 System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack::_firstStackItemMS uint32_t ____firstStackItemMS_2; }; // System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack struct LockedStack_t55EA3BEB39A80E4F0A2009E69BE4365D6CFFBB7B : public RuntimeObject { // T[][] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack::_arrays CharU5BU5DU5BU5D_tE6ABF380CD3BBDBB52C3EF725A02224F2B4AA680* ____arrays_0; // System.Int32 System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack::_count int32_t ____count_1; // System.UInt32 System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack::_firstStackItemMS uint32_t ____firstStackItemMS_2; }; // System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack struct LockedStack_t41A87F7FF06A8633FE1FF193C1AA749E23B5A5DC : public RuntimeObject { // T[][] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack::_arrays Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* ____arrays_0; // System.Int32 System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack::_count int32_t ____count_1; // System.UInt32 System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack::_firstStackItemMS uint32_t ____firstStackItemMS_2; }; // System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack struct LockedStack_t186AA0980C4EDB1BF65D63C1488AD6ED0C8C03C9 : public RuntimeObject { // T[][] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack::_arrays ObjectU5BU5DU5BU5D_t6491927494F825352C40DCE9D447C97B17297969* ____arrays_0; // System.Int32 System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack::_count int32_t ____count_1; // System.UInt32 System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack::_firstStackItemMS uint32_t ____firstStackItemMS_2; }; // UnityEngine.UIElements.ObjectListPool`1 struct ObjectListPool_1_tB459B6B0B50FE9EC86BACC547CF13943893BA7CB : public RuntimeObject { }; // UnityEngine.Pool.ObjectPool`1 struct ObjectPool_1_t13378E8CD14858BB05EA28BAB9CC49EDB91BA259 : public RuntimeObject { // System.Collections.Generic.List`1 UnityEngine.Pool.ObjectPool`1::m_List List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___m_List_0; // System.Func`1 UnityEngine.Pool.ObjectPool`1::m_CreateFunc Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4* ___m_CreateFunc_1; // System.Action`1 UnityEngine.Pool.ObjectPool`1::m_ActionOnGet Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___m_ActionOnGet_2; // System.Action`1 UnityEngine.Pool.ObjectPool`1::m_ActionOnRelease Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___m_ActionOnRelease_3; // System.Action`1 UnityEngine.Pool.ObjectPool`1::m_ActionOnDestroy Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___m_ActionOnDestroy_4; // System.Int32 UnityEngine.Pool.ObjectPool`1::m_MaxSize int32_t ___m_MaxSize_5; // System.Boolean UnityEngine.Pool.ObjectPool`1::m_CollectionCheck bool ___m_CollectionCheck_6; // System.Int32 UnityEngine.Pool.ObjectPool`1::k__BackingField int32_t ___U3CCountAllU3Ek__BackingField_7; }; // UnityEngine.Rendering.ObjectPool`1 struct ObjectPool_1_t99595E72EFE3F4492DB424138C3B94C9E0C18B58 : public RuntimeObject { // System.Collections.Generic.Stack`1 UnityEngine.Rendering.ObjectPool`1::m_Stack Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* ___m_Stack_0; // UnityEngine.Events.UnityAction`1 UnityEngine.Rendering.ObjectPool`1::m_ActionOnGet UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* ___m_ActionOnGet_1; // UnityEngine.Events.UnityAction`1 UnityEngine.Rendering.ObjectPool`1::m_ActionOnRelease UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* ___m_ActionOnRelease_2; // System.Boolean UnityEngine.Rendering.ObjectPool`1::m_CollectionCheck bool ___m_CollectionCheck_3; // System.Int32 UnityEngine.Rendering.ObjectPool`1::k__BackingField int32_t ___U3CcountAllU3Ek__BackingField_4; }; // UnityEngine.UIElements.ObjectPool`1> struct ObjectPool_1_t82EA84452A4B2F080EF895D9F717E99CBE33B919 : public RuntimeObject { // System.Collections.Generic.Stack`1 UnityEngine.UIElements.ObjectPool`1::m_Stack Stack_1_t08E9B72954DC89AD9AC1DCAFDC7EFFDB16799DDF* ___m_Stack_0; // System.Int32 UnityEngine.UIElements.ObjectPool`1::m_MaxSize int32_t ___m_MaxSize_1; }; // UnityEngine.UIElements.ObjectPool`1 struct ObjectPool_1_tC06B45D8A0C7CBBDAE418090727D1DF1F2FCB9F6 : public RuntimeObject { // System.Collections.Generic.Stack`1 UnityEngine.UIElements.ObjectPool`1::m_Stack Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* ___m_Stack_0; // System.Int32 UnityEngine.UIElements.ObjectPool`1::m_MaxSize int32_t ___m_MaxSize_1; }; // UnityEngine.Rendering.ObservableList`1 struct ObservableList_1_tE27AD108B4CB5CCFF6DDF2DFB5953AB0C97F731C : public RuntimeObject { // System.Collections.Generic.IList`1 UnityEngine.Rendering.ObservableList`1::m_List RuntimeObject* ___m_List_0; // UnityEngine.Rendering.ListChangedEventHandler`1 UnityEngine.Rendering.ObservableList`1::ItemAdded ListChangedEventHandler_1_t75D35934C494DD9CAB03AF119619178B28527CFA* ___ItemAdded_1; // UnityEngine.Rendering.ListChangedEventHandler`1 UnityEngine.Rendering.ObservableList`1::ItemRemoved ListChangedEventHandler_1_t75D35934C494DD9CAB03AF119619178B28527CFA* ___ItemRemoved_2; }; // UnityEngine.InputSystem.Utilities.Observer`1 struct Observer_1_tF53ABA7F91AB54D8D0F520427BB87579156149D7 : public RuntimeObject { // System.Action`1 UnityEngine.InputSystem.Utilities.Observer`1::m_OnNext Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___m_OnNext_0; // System.Action UnityEngine.InputSystem.Utilities.Observer`1::m_OnCompleted Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___m_OnCompleted_1; }; // System.Linq.OrderedEnumerable`1 struct OrderedEnumerable_1_t8EEABC87399C51697FF13CC459FC26CA5A5857DA : public RuntimeObject { // System.Collections.Generic.IEnumerable`1 System.Linq.OrderedEnumerable`1::source RuntimeObject* ___source_0; }; // System.Linq.OrderedEnumerable`1 struct OrderedEnumerable_1_t635FACC705EB8D479616971CD818376DC3A5AF51 : public RuntimeObject { // System.Collections.Generic.IEnumerable`1 System.Linq.OrderedEnumerable`1::source RuntimeObject* ___source_0; }; // System.Linq.OrderedEnumerable`1 struct OrderedEnumerable_1_t34850493CDAB6C18BD010D6FEBE94B80DDB45850 : public RuntimeObject { // System.Collections.Generic.IEnumerable`1 System.Linq.OrderedEnumerable`1::source RuntimeObject* ___source_0; }; // System.Linq.OrderedEnumerable`1 struct OrderedEnumerable_1_t2A839D56030A5BF16B67D5ECEA66459EBD766265 : public RuntimeObject { // System.Collections.Generic.IEnumerable`1 System.Linq.OrderedEnumerable`1::source RuntimeObject* ___source_0; }; // System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/PerCoreLockedStacks struct PerCoreLockedStacks_t59F9FCB865C5D7B4A04DEAE7E81C9A5144D6769F : public RuntimeObject { // System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack[] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/PerCoreLockedStacks::_perCoreStacks LockedStackU5BU5D_tC7986140D8705D936FFB7A563D611A656663DC23* ____perCoreStacks_0; }; // System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/PerCoreLockedStacks struct PerCoreLockedStacks_t56F6D2635D6382C1E029DE649D815FE02D89C992 : public RuntimeObject { // System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack[] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/PerCoreLockedStacks::_perCoreStacks LockedStackU5BU5D_t4C264F6FD602057050E44BD8CD3923760EC109CC* ____perCoreStacks_0; }; // System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/PerCoreLockedStacks struct PerCoreLockedStacks_t9B9D650698BC91EF798DA66EE411D67A42F308B7 : public RuntimeObject { // System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack[] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/PerCoreLockedStacks::_perCoreStacks LockedStackU5BU5D_t462C10653559369B223A5E1BD4B60B0D28BC4933* ____perCoreStacks_0; }; // System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/PerCoreLockedStacks struct PerCoreLockedStacks_tCB5FF624A2594B211A03F4A4ECAC14EE050CAF47 : public RuntimeObject { // System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/LockedStack[] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/PerCoreLockedStacks::_perCoreStacks LockedStackU5BU5D_t7A158CD596BE99938D5116FEB55E74DD641EAF85* ____perCoreStacks_0; }; // UnityEngine.Rendering.Universal.LibTessDotNet.MeshUtils/Pooled`1 struct Pooled_1_t27E4FD357A3B81F8F35FB8CAB45141E3C6A6795A : public RuntimeObject { }; // System.Collections.ObjectModel.ReadOnlyCollection`1 struct ReadOnlyCollection_1_tE414953665CCBE1BFF28E8E32C184621ADDA4B76 : public RuntimeObject { // System.Collections.Generic.IList`1 System.Collections.ObjectModel.ReadOnlyCollection`1::list RuntimeObject* ___list_0; // System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot RuntimeObject* ____syncRoot_1; }; // System.Collections.Generic.Stack`1 struct Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5 : public RuntimeObject { // T[] System.Collections.Generic.Stack`1::_array ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____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; }; // NodeCanvas.Framework.BBParameter struct BBParameter_tD717AF8560E573DF3DA925034F257F669CDDBA60 : public RuntimeObject { // System.String NodeCanvas.Framework.BBParameter::_name String_t* ____name_0; // System.String NodeCanvas.Framework.BBParameter::_targetVariableID String_t* ____targetVariableID_1; // NodeCanvas.Framework.IBlackboard NodeCanvas.Framework.BBParameter::_bb RuntimeObject* ____bb_2; // NodeCanvas.Framework.Variable NodeCanvas.Framework.BBParameter::_varRef Variable_t60C01143D3B1491B2FFEB305052C327D03DDF4AA* ____varRef_3; // System.Action`1 NodeCanvas.Framework.BBParameter::onVariableReferenceChanged Action_1_t924369B78685936188D9F308D270D4B74F46B374* ___onVariableReferenceChanged_4; }; // UnityEngine.UIElements.CallbackEventHandler struct CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4 : public RuntimeObject { // UnityEngine.UIElements.EventCallbackRegistry UnityEngine.UIElements.CallbackEventHandler::m_CallbackRegistry EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* ___m_CallbackRegistry_0; }; // System.EventArgs struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377 : public RuntimeObject { }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { }; // DungeonArchitect.Triangulator.Geometry.Point struct Point_t10224084201F077997179F1EDD9E2D2A18384D43 : public RuntimeObject { // System.Double DungeonArchitect.Triangulator.Geometry.Point::_X double ____X_0; // System.Double DungeonArchitect.Triangulator.Geometry.Point::_Y double ____Y_1; }; // UnityEngine.UIElements.PointerId struct PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C : public RuntimeObject { }; // UnityEngine.UIElements.PointerType struct PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4 : public RuntimeObject { }; // System.String struct String_t : public RuntimeObject { // System.Int32 System.String::_stringLength int32_t ____stringLength_4; // System.Char System.String::_firstChar Il2CppChar ____firstChar_5; }; // NodeCanvas.Framework.Task struct Task_tF05C1B448C98EDD5D7E9E23660FCEAC40348A284 : public RuntimeObject { // System.Boolean NodeCanvas.Framework.Task::_isUserDisabled bool ____isUserDisabled_0; // NodeCanvas.Framework.Internal.TaskAgentParameter NodeCanvas.Framework.Task::_agentParameter TaskAgentParameter_t6F02431C314168FE5698AD6A87B555310C2DBC4B* ____agentParameter_1; // NodeCanvas.Framework.ITaskSystem NodeCanvas.Framework.Task::_ownerSystem RuntimeObject* ____ownerSystem_2; // UnityEngine.Component NodeCanvas.Framework.Task::_currentAgent Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* ____currentAgent_3; // System.String NodeCanvas.Framework.Task::_taskName String_t* ____taskName_4; // System.String NodeCanvas.Framework.Task::_taskDescription String_t* ____taskDescription_5; // System.String NodeCanvas.Framework.Task::_obsoleteInfo String_t* ____obsoleteInfo_6; // System.Boolean NodeCanvas.Framework.Task::_isRuntimeActive bool ____isRuntimeActive_7; // System.Boolean NodeCanvas.Framework.Task::_isInitSuccess bool ____isInitSuccess_8; // ParadoxNotion.Services.EventRouter NodeCanvas.Framework.Task::_eventRouter EventRouter_tFF11845F5CEB376625AA32F751511FA5918717F9* ____eventRouter_9; }; // 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.Rendering.VolumeParameter struct VolumeParameter_t95994C89644D2CC4C11F666571492420D16BED72 : public RuntimeObject { // System.Boolean UnityEngine.Rendering.VolumeParameter::m_OverrideState bool ___m_OverrideState_1; }; // FMODUnity.Legacy/PlatformSettingBase struct PlatformSettingBase_t8B6E034F3BDEBFA6EE32F9C35B775C2DD3284701 : public RuntimeObject { // FMODUnity.Legacy/Platform FMODUnity.Legacy/PlatformSettingBase::Platform int32_t ___Platform_0; }; // NodeCanvas.Framework.BBParameter`1> struct BBParameter_1_tE8EDB19B7D79456B153ED27938230FCFCA5449CA : public BBParameter_tD717AF8560E573DF3DA925034F257F669CDDBA60 { // T NodeCanvas.Framework.BBParameter`1::_value List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ____value_5; // System.Func`1 NodeCanvas.Framework.BBParameter`1::getter Func_1_tF1D663171504D163FC82B96429CDAE5E5CAFB3C3* ___getter_6; // System.Action`1 NodeCanvas.Framework.BBParameter`1::setter Action_1_t90425964BF9D6282116C192CAA76B05EB0EEF123* ___setter_7; }; // NodeCanvas.Framework.BBParameter`1 struct BBParameter_1_t0CED53FC373D2A18BE910895E6A74B0C7E89E10E : public BBParameter_tD717AF8560E573DF3DA925034F257F669CDDBA60 { // T NodeCanvas.Framework.BBParameter`1::_value int32_t ____value_5; // System.Func`1 NodeCanvas.Framework.BBParameter`1::getter Func_1_tC288CCB64EFD1F5FD49C3F8DE91FE62905E44BCD* ___getter_6; // System.Action`1 NodeCanvas.Framework.BBParameter`1::setter Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404* ___setter_7; }; // NodeCanvas.Framework.BBParameter`1 struct BBParameter_1_tB46669698C0BE7BD6EFB9A7BE9458183044389E3 : public BBParameter_tD717AF8560E573DF3DA925034F257F669CDDBA60 { // T NodeCanvas.Framework.BBParameter`1::_value RuntimeObject* ____value_5; // System.Func`1 NodeCanvas.Framework.BBParameter`1::getter Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4* ___getter_6; // System.Action`1 NodeCanvas.Framework.BBParameter`1::setter Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___setter_7; }; // System.Linq.Buffer`1 struct Buffer_1_t9B6292878C6BF8E6B600994FF4C2B16AAB609D10 { // TElement[] System.Linq.Buffer`1::items GlyphPairAdjustmentRecordU5BU5D_tD5DD2A739A4CA745E7F28ECCB2CD0BD0A65A38F7* ___items_0; // System.Int32 System.Linq.Buffer`1::count int32_t ___count_1; }; // System.Linq.Buffer`1 struct Buffer_1_t10E8615C3706C626725B10C3DDEF0AD28D233B59 { // TElement[] System.Linq.Buffer`1::items ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___items_0; // System.Int32 System.Linq.Buffer`1::count int32_t ___count_1; }; // System.Linq.Buffer`1 struct Buffer_1_tFF14CADA0C205F272650858F29ABF1B9B0003673 { // TElement[] System.Linq.Buffer`1::items RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* ___items_0; // System.Int32 System.Linq.Buffer`1::count int32_t ___count_1; }; // System.Linq.Buffer`1 struct Buffer_1_tE9B128E74C4CE775AA381EB6E7F6C0765EFA4198 { // TElement[] System.Linq.Buffer`1::items Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* ___items_0; // System.Int32 System.Linq.Buffer`1::count int32_t ___count_1; }; // UnityEngine.Timeline.IntervalTree`1/Entry struct Entry_t2EBE8F0B2EC8789846CCD693457A5504B953A43E { // System.Int64 UnityEngine.Timeline.IntervalTree`1/Entry::intervalStart int64_t ___intervalStart_0; // System.Int64 UnityEngine.Timeline.IntervalTree`1/Entry::intervalEnd int64_t ___intervalEnd_1; // T UnityEngine.Timeline.IntervalTree`1/Entry::item RuntimeObject* ___item_2; }; // System.Linq.EnumerableSorter`2 struct EnumerableSorter_2_t66A552F5A3195CDA8C824371EDFD012698C8D33B : public EnumerableSorter_1_t5897E023ECB6DBE16092BDD0CD9397E8600CD0F5 { // System.Func`2 System.Linq.EnumerableSorter`2::keySelector Func_2_tEDCDCD7BE3F7A4F5A742A5FD711EA63155BC825E* ___keySelector_0; // System.Collections.Generic.IComparer`1 System.Linq.EnumerableSorter`2::comparer RuntimeObject* ___comparer_1; // System.Boolean System.Linq.EnumerableSorter`2::descending bool ___descending_2; // System.Linq.EnumerableSorter`1 System.Linq.EnumerableSorter`2::next EnumerableSorter_1_t5897E023ECB6DBE16092BDD0CD9397E8600CD0F5* ___next_3; // TKey[] System.Linq.EnumerableSorter`2::keys UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___keys_4; }; // System.Linq.EnumerableSorter`2 struct EnumerableSorter_2_t335AE5FCF71D56251FCC71B920E904E0347450B8 : public EnumerableSorter_1_t9DF0BF2FF3A689EB41C9CE2B42D3A91F5776B3AD { // System.Func`2 System.Linq.EnumerableSorter`2::keySelector Func_2_t9A0D493A82DCC47C9C819A3B045E02D9B5DDCE1B* ___keySelector_0; // System.Collections.Generic.IComparer`1 System.Linq.EnumerableSorter`2::comparer RuntimeObject* ___comparer_1; // System.Boolean System.Linq.EnumerableSorter`2::descending bool ___descending_2; // System.Linq.EnumerableSorter`1 System.Linq.EnumerableSorter`2::next EnumerableSorter_1_t9DF0BF2FF3A689EB41C9CE2B42D3A91F5776B3AD* ___next_3; // TKey[] System.Linq.EnumerableSorter`2::keys Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___keys_4; }; // System.Linq.EnumerableSorter`2 struct EnumerableSorter_2_t8C8D166A1965FA01D37C2341F8373963A03A982E : public EnumerableSorter_1_t9DF0BF2FF3A689EB41C9CE2B42D3A91F5776B3AD { // System.Func`2 System.Linq.EnumerableSorter`2::keySelector Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___keySelector_0; // System.Collections.Generic.IComparer`1 System.Linq.EnumerableSorter`2::comparer RuntimeObject* ___comparer_1; // System.Boolean System.Linq.EnumerableSorter`2::descending bool ___descending_2; // System.Linq.EnumerableSorter`1 System.Linq.EnumerableSorter`2::next EnumerableSorter_1_t9DF0BF2FF3A689EB41C9CE2B42D3A91F5776B3AD* ___next_3; // TKey[] System.Linq.EnumerableSorter`2::keys ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___keys_4; }; // System.Linq.EnumerableSorter`2 struct EnumerableSorter_2_tE8901ABBDD0FB48137D11F2F5E9EB6B525883F83 : public EnumerableSorter_1_t9DF0BF2FF3A689EB41C9CE2B42D3A91F5776B3AD { // System.Func`2 System.Linq.EnumerableSorter`2::keySelector Func_2_tB5C40A90702B6A6A2E315FD927EEFC9FB69F2B12* ___keySelector_0; // System.Collections.Generic.IComparer`1 System.Linq.EnumerableSorter`2::comparer RuntimeObject* ___comparer_1; // System.Boolean System.Linq.EnumerableSorter`2::descending bool ___descending_2; // System.Linq.EnumerableSorter`1 System.Linq.EnumerableSorter`2::next EnumerableSorter_1_t9DF0BF2FF3A689EB41C9CE2B42D3A91F5776B3AD* ___next_3; // TKey[] System.Linq.EnumerableSorter`2::keys SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___keys_4; }; // System.Linq.EnumerableSorter`2 struct EnumerableSorter_2_t585C06C042D5F077410C6D1F2C7643D2BF85007C : public EnumerableSorter_1_t9DF0BF2FF3A689EB41C9CE2B42D3A91F5776B3AD { // System.Func`2 System.Linq.EnumerableSorter`2::keySelector Func_2_tB86D019F1289E2D123C00796B373933613385952* ___keySelector_0; // System.Collections.Generic.IComparer`1 System.Linq.EnumerableSorter`2::comparer RuntimeObject* ___comparer_1; // System.Boolean System.Linq.EnumerableSorter`2::descending bool ___descending_2; // System.Linq.EnumerableSorter`1 System.Linq.EnumerableSorter`2::next EnumerableSorter_1_t9DF0BF2FF3A689EB41C9CE2B42D3A91F5776B3AD* ___next_3; // TKey[] System.Linq.EnumerableSorter`2::keys UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___keys_4; }; // System.Linq.EnumerableSorter`2 struct EnumerableSorter_2_tB68497FF55AF34AA9F3E3EC50C37655440682307 : public EnumerableSorter_1_t17272E4796D2D1FBEFDF5F1408186712BC046529 { // System.Func`2 System.Linq.EnumerableSorter`2::keySelector Func_2_t96A39E112843C5E4C0D74585BA105A0ED44D08C1* ___keySelector_0; // System.Collections.Generic.IComparer`1 System.Linq.EnumerableSorter`2::comparer RuntimeObject* ___comparer_1; // System.Boolean System.Linq.EnumerableSorter`2::descending bool ___descending_2; // System.Linq.EnumerableSorter`1 System.Linq.EnumerableSorter`2::next EnumerableSorter_1_t17272E4796D2D1FBEFDF5F1408186712BC046529* ___next_3; // TKey[] System.Linq.EnumerableSorter`2::keys SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___keys_4; }; // System.Linq.EnumerableSorter`2 struct EnumerableSorter_2_tBDD54D6A70BBD583AB6B069122F9EB065B354D3F : public EnumerableSorter_1_t0A94B73E1EBFE14F45B26D082CBC3DABAF046179 { // System.Func`2 System.Linq.EnumerableSorter`2::keySelector Func_2_t768E45AC224B8B0A2FF0AF51561075C9EA671111* ___keySelector_0; // System.Collections.Generic.IComparer`1 System.Linq.EnumerableSorter`2::comparer RuntimeObject* ___comparer_1; // System.Boolean System.Linq.EnumerableSorter`2::descending bool ___descending_2; // System.Linq.EnumerableSorter`1 System.Linq.EnumerableSorter`2::next EnumerableSorter_1_t0A94B73E1EBFE14F45B26D082CBC3DABAF046179* ___next_3; // TKey[] System.Linq.EnumerableSorter`2::keys SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___keys_4; }; // 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; }; // UnityEngine.InputSystem.Utilities.InlinedArray`1> struct InlinedArray_1_tFABE06D675C714FC44C09C36D7B9C908690ADEAD { // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues Action_1U5BU5D_t18C922CAB85EAE463E29566305D718EF64B12A16* ___additionalValues_2; }; // UnityEngine.InputSystem.Utilities.InlinedArray`1> struct InlinedArray_1_tB2FA5372BE7591F760748AE97979B26DDD7E9A0E { // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue Action_2_t6A27AF0A3585FFCF87D39ADE472BCFD2F2930F19* ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues Action_2U5BU5D_tBE18774DE78EE629377991D4C8F3B44D96E3A529* ___additionalValues_2; }; // UnityEngine.InputSystem.Utilities.InlinedArray`1> struct InlinedArray_1_tC64553F2D494A77784441699A84E32D1096DC2F2 { // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue Action_3_tE646D5EE2107669AE49025C0E3DC04C831ACCAE0* ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues Action_3U5BU5D_t624B9D1D653A8F69756207CB2B95EEF3143387DB* ___additionalValues_2; }; // UnityEngine.InputSystem.Utilities.InlinedArray`1> struct InlinedArray_1_t89D09048674475F5C319FE41264ED79405A8209D { // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue Func_3_t42E9F5CDEF4CF174C35D943F427EF585FE829937* ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues Func_3U5BU5D_t46F58FB7530550D36B775F49E118190032295BE6* ___additionalValues_2; }; // UnityEngine.InputSystem.Utilities.InlinedArray`1 struct InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3 { // System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length int32_t ___length_0; // TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___firstValue_1; // TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues TouchscreenU5BU5D_t73D22E3D2A7039C6C374D75B796C8F83BCA897E3* ___additionalValues_2; }; // System.Collections.Generic.KeyValuePair`2 struct KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 { // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject* ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject* ___value_1; }; // UnityEngine.Rendering.ListChangedEventArgs`1 struct ListChangedEventArgs_1_t6F28DAF41E028C918C16FA38A5947F647612F5E4 : public EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377 { // System.Int32 UnityEngine.Rendering.ListChangedEventArgs`1::index int32_t ___index_1; // T UnityEngine.Rendering.ListChangedEventArgs`1::item RuntimeObject* ___item_2; }; // Unity.Collections.NativeArray`1 struct NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 { // 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_tB60512C6E4578B7CC8EB79321680E495E69ABF81 { // 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.NativeSlice`1 struct NativeSlice_1_t0D1A1AB7A9C4768B84EB7420D04A90920533C78A { // System.Byte* Unity.Collections.NativeSlice`1::m_Buffer uint8_t* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeSlice`1::m_Stride int32_t ___m_Stride_1; // System.Int32 Unity.Collections.NativeSlice`1::m_Length int32_t ___m_Length_2; }; // Unity.Collections.NativeSlice`1 struct NativeSlice_1_t66375568C4FF313931F4D2F646D64FE6A406BAD2 { // System.Byte* Unity.Collections.NativeSlice`1::m_Buffer uint8_t* ___m_Buffer_0; // System.Int32 Unity.Collections.NativeSlice`1::m_Stride int32_t ___m_Stride_1; // System.Int32 Unity.Collections.NativeSlice`1::m_Length int32_t ___m_Length_2; }; // 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; }; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_t1FEBA944DE9944BD0A9C781A49AF05E381C4B730 : public EqualityComparer_1_t97889FF6B5695C88AE4091CF52103AFB63232E60 { }; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_t7631D59BBE6C1A38A0F61216023C165FC5D5E9F6 : public EqualityComparer_1_t514555A24717CCDDE752698981B545A0063C3EC9 { }; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_t1339FBE2F569B67E4CCA241D6C96ADCE82A147E0 : public EqualityComparer_1_t8F14EB4E16E4AB021816F2CB40ED33D5A3DEFD79 { }; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_t45FAF16F9BF257E9CF40412CB3C53762BCBC52FC : public EqualityComparer_1_t4A3A7BFB06F50EDFC951445060C5E13F479A4D4B { }; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_tDBA7AB9CF6ED19ED1A26019FAA55D3B727103B37 : public EqualityComparer_1_t6AAC1633D5060640F8E22439E93075AD21BB1A0E { }; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_t2D4981451091943157D0842521FA6BD6F627E70A : public EqualityComparer_1_t52645C99EE1F6BDD19ED02C7F019B6ED37EF1592 { }; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_t2EAA4FCF95D36614D33E1713327A7BE3AFB0B956 : public EqualityComparer_1_t65E6EE02C62CB9DFE52D766B693759C3745CEA5E { }; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_t12B2D1ACBD297BEDEBB1137DB5E21959D7372865 : public EqualityComparer_1_tB07B7222DB6D3E0844124F071EB509BC2B77592E { }; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_t9F85B8762CD61B36D080E54F1D6CE3A94374185B : public EqualityComparer_1_t22B0CC26C35745E55615170CAA01EBB497BB8F5F { }; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_t9BBD7A440D12B004A2DF3E0DBD53C204F8BEA856 : public EqualityComparer_1_t7FCC40DAE18BFC64ED0C99E437AD4ACC5B27A291 { }; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_tAE851B2ACDD6F21276D66A6AE24A015D0DF2CE89 : public EqualityComparer_1_t7CA6D3555E2E8A00EC397203A4B8FD84DBB70908 { }; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_t921E7770229361F3FF762DF877E7DCA0A5B6E9DD : public EqualityComparer_1_t5CC2682E93AD4B6CAB3875684FC62AEDCA363E50 { }; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_tBE83C233D7D695E232577ADEFC94F52DA898D8E1 : public EqualityComparer_1_t38EE53B7A75D77D5D194E0E1032C58C190258FAC { }; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_t49CDF353E31A1E3EB6AAB27B8967ACF109AACA6A : public EqualityComparer_1_t9F8DF64B0D218FA3C298F5998F4D8294C7EAE933 { }; // System.Collections.Generic.ObjectEqualityComparer`1 struct ObjectEqualityComparer_1_t50815BC1BC05568EDFDBE9930A4F0FE38C875DA1 : public EqualityComparer_1_t1F22D7ED24210B522210474148F6F1AE84DE74DE { }; // UnityEngine.InputSystem.Utilities.OneOrMore`2 struct OneOrMore_2_t0723C4BAE2AFDD1D25130D2711F7CF2A1170B80A { // System.Boolean UnityEngine.InputSystem.Utilities.OneOrMore`2::m_IsSingle bool ___m_IsSingle_0; // TValue UnityEngine.InputSystem.Utilities.OneOrMore`2::m_Single RuntimeObject* ___m_Single_1; // TList UnityEngine.InputSystem.Utilities.OneOrMore`2::m_Multiple RuntimeObject* ___m_Multiple_2; }; // System.Linq.OrderedEnumerable`2 struct OrderedEnumerable_2_t7FDC122207E39C88BC86800DB007E88676C33546 : public OrderedEnumerable_1_t8EEABC87399C51697FF13CC459FC26CA5A5857DA { // System.Linq.OrderedEnumerable`1 System.Linq.OrderedEnumerable`2::parent OrderedEnumerable_1_t8EEABC87399C51697FF13CC459FC26CA5A5857DA* ___parent_1; // System.Func`2 System.Linq.OrderedEnumerable`2::keySelector Func_2_tEDCDCD7BE3F7A4F5A742A5FD711EA63155BC825E* ___keySelector_2; // System.Collections.Generic.IComparer`1 System.Linq.OrderedEnumerable`2::comparer RuntimeObject* ___comparer_3; // System.Boolean System.Linq.OrderedEnumerable`2::descending bool ___descending_4; }; // System.Linq.OrderedEnumerable`2 struct OrderedEnumerable_2_t51517C2F0D08851F60E9DD8FB874EC339A5F2BFA : public OrderedEnumerable_1_t635FACC705EB8D479616971CD818376DC3A5AF51 { // System.Linq.OrderedEnumerable`1 System.Linq.OrderedEnumerable`2::parent OrderedEnumerable_1_t635FACC705EB8D479616971CD818376DC3A5AF51* ___parent_1; // System.Func`2 System.Linq.OrderedEnumerable`2::keySelector Func_2_t9A0D493A82DCC47C9C819A3B045E02D9B5DDCE1B* ___keySelector_2; // System.Collections.Generic.IComparer`1 System.Linq.OrderedEnumerable`2::comparer RuntimeObject* ___comparer_3; // System.Boolean System.Linq.OrderedEnumerable`2::descending bool ___descending_4; }; // System.Linq.OrderedEnumerable`2 struct OrderedEnumerable_2_tA9DEFB149DAA0F612AACE71C5D5A35D6308A052D : public OrderedEnumerable_1_t635FACC705EB8D479616971CD818376DC3A5AF51 { // System.Linq.OrderedEnumerable`1 System.Linq.OrderedEnumerable`2::parent OrderedEnumerable_1_t635FACC705EB8D479616971CD818376DC3A5AF51* ___parent_1; // System.Func`2 System.Linq.OrderedEnumerable`2::keySelector Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___keySelector_2; // System.Collections.Generic.IComparer`1 System.Linq.OrderedEnumerable`2::comparer RuntimeObject* ___comparer_3; // System.Boolean System.Linq.OrderedEnumerable`2::descending bool ___descending_4; }; // System.Linq.OrderedEnumerable`2 struct OrderedEnumerable_2_t306D33C8FAA17BF0735E8B83FCC8CDC039740B2F : public OrderedEnumerable_1_t635FACC705EB8D479616971CD818376DC3A5AF51 { // System.Linq.OrderedEnumerable`1 System.Linq.OrderedEnumerable`2::parent OrderedEnumerable_1_t635FACC705EB8D479616971CD818376DC3A5AF51* ___parent_1; // System.Func`2 System.Linq.OrderedEnumerable`2::keySelector Func_2_tB5C40A90702B6A6A2E315FD927EEFC9FB69F2B12* ___keySelector_2; // System.Collections.Generic.IComparer`1 System.Linq.OrderedEnumerable`2::comparer RuntimeObject* ___comparer_3; // System.Boolean System.Linq.OrderedEnumerable`2::descending bool ___descending_4; }; // System.Linq.OrderedEnumerable`2 struct OrderedEnumerable_2_t71BA6A9F8F94FD49AA530865BA9BF576305461A1 : public OrderedEnumerable_1_t635FACC705EB8D479616971CD818376DC3A5AF51 { // System.Linq.OrderedEnumerable`1 System.Linq.OrderedEnumerable`2::parent OrderedEnumerable_1_t635FACC705EB8D479616971CD818376DC3A5AF51* ___parent_1; // System.Func`2 System.Linq.OrderedEnumerable`2::keySelector Func_2_tB86D019F1289E2D123C00796B373933613385952* ___keySelector_2; // System.Collections.Generic.IComparer`1 System.Linq.OrderedEnumerable`2::comparer RuntimeObject* ___comparer_3; // System.Boolean System.Linq.OrderedEnumerable`2::descending bool ___descending_4; }; // System.Linq.OrderedEnumerable`2 struct OrderedEnumerable_2_tB2CB28995932F423866C23DA0C4529A8638DAC9E : public OrderedEnumerable_1_t34850493CDAB6C18BD010D6FEBE94B80DDB45850 { // System.Linq.OrderedEnumerable`1 System.Linq.OrderedEnumerable`2::parent OrderedEnumerable_1_t34850493CDAB6C18BD010D6FEBE94B80DDB45850* ___parent_1; // System.Func`2 System.Linq.OrderedEnumerable`2::keySelector Func_2_t96A39E112843C5E4C0D74585BA105A0ED44D08C1* ___keySelector_2; // System.Collections.Generic.IComparer`1 System.Linq.OrderedEnumerable`2::comparer RuntimeObject* ___comparer_3; // System.Boolean System.Linq.OrderedEnumerable`2::descending bool ___descending_4; }; // System.Linq.OrderedEnumerable`2 struct OrderedEnumerable_2_t57FCE52BA5AC72D098EF7799ABD5AE16652EF0D7 : public OrderedEnumerable_1_t2A839D56030A5BF16B67D5ECEA66459EBD766265 { // System.Linq.OrderedEnumerable`1 System.Linq.OrderedEnumerable`2::parent OrderedEnumerable_1_t2A839D56030A5BF16B67D5ECEA66459EBD766265* ___parent_1; // System.Func`2 System.Linq.OrderedEnumerable`2::keySelector Func_2_t768E45AC224B8B0A2FF0AF51561075C9EA671111* ___keySelector_2; // System.Collections.Generic.IComparer`1 System.Linq.OrderedEnumerable`2::comparer RuntimeObject* ___comparer_3; // System.Boolean System.Linq.OrderedEnumerable`2::descending bool ___descending_4; }; // FMODUnity.Legacy/PlatformSetting`1 struct PlatformSetting_1_tC00135976256B39E3999E05A46F81073C1D80350 : public PlatformSettingBase_t8B6E034F3BDEBFA6EE32F9C35B775C2DD3284701 { // T FMODUnity.Legacy/PlatformSetting`1::Value int32_t ___Value_1; }; // FMODUnity.Legacy/PlatformSetting`1 struct PlatformSetting_1_t689B3E2267CEBFE55FF1222161AC7D6442204A37 : public PlatformSettingBase_t8B6E034F3BDEBFA6EE32F9C35B775C2DD3284701 { // T FMODUnity.Legacy/PlatformSetting`1::Value int32_t ___Value_1; }; // FMODUnity.Legacy/PlatformSetting`1 struct PlatformSetting_1_tA9303F6BCBA65434314A692AEB3F1125E7DBC6B9 : public PlatformSettingBase_t8B6E034F3BDEBFA6EE32F9C35B775C2DD3284701 { // T FMODUnity.Legacy/PlatformSetting`1::Value RuntimeObject* ___Value_1; }; // DungeonArchitect.Triangulator.Geometry.Point`1 struct Point_1_t6CD7C45D017C39A623C79FEAE3630729D1E4B710 : public Point_t10224084201F077997179F1EDD9E2D2A18384D43 { // T DungeonArchitect.Triangulator.Geometry.Point`1::_attr RuntimeObject* ____attr_2; }; // UnityEngine.Rendering.ObjectPool`1/PooledObject struct PooledObject_tBA4B486F707087AB2ED5AACE52B650C7F6F6D863 { // T UnityEngine.Rendering.ObjectPool`1/PooledObject::m_ToReturn RuntimeObject* ___m_ToReturn_0; // UnityEngine.Rendering.ObjectPool`1 UnityEngine.Rendering.ObjectPool`1/PooledObject::m_Pool ObjectPool_1_t99595E72EFE3F4492DB424138C3B94C9E0C18B58* ___m_Pool_1; }; // UnityEngine.Pool.PooledObject`1 struct PooledObject_1_tAA91CAE93DC8A19E0A5B6C1D78C3AE149F635F8E { // T UnityEngine.Pool.PooledObject`1::m_ToReturn RuntimeObject* ___m_ToReturn_0; // UnityEngine.Pool.IObjectPool`1 UnityEngine.Pool.PooledObject`1::m_Pool RuntimeObject* ___m_Pool_1; }; // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 struct ReadOnlyArray_1_t1C2864D7CF4D444AB2616316AC8DD33932F77064 { // TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Array InternedStringU5BU5D_t0B851758733FC0B118D84BE83AED10A0404C18D5* ___m_Array_0; // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_StartIndex int32_t ___m_StartIndex_1; // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Length int32_t ___m_Length_2; }; // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 struct ReadOnlyArray_1_t1B44D48F2E9F425D218BABD5DE616117E8725D41 { // TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Array NameAndParametersU5BU5D_tA6C2AC34ACDB1967A7A2CEF4BE1D717ADA695CA2* ___m_Array_0; // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_StartIndex int32_t ___m_StartIndex_1; // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Length int32_t ___m_Length_2; }; // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 struct ReadOnlyArray_1_t4A15F7D15ACB297B45A08889D51E4CACEAD4EDF9 { // TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Array NamedValueU5BU5D_tADD8F1373B88C55F68499688D72C21A97F63303A* ___m_Array_0; // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_StartIndex int32_t ___m_StartIndex_1; // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Length int32_t ___m_Length_2; }; // UnityEngine.InputSystem.Utilities.ReadOnlyArray`1 struct ReadOnlyArray_1_t40B8DDDCD6ACBA3B2C0AF1387BE23D68DAEF77B5 { // TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Array ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_Array_0; // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_StartIndex int32_t ___m_StartIndex_1; // System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Length int32_t ___m_Length_2; }; // UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record struct Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 { // UnityEngine.InputSystem.LowLevel.InputStateHistory`1 UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record::m_Owner InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___m_Owner_0; // System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record::m_IndexPlusOne int32_t ___m_IndexPlusOne_1; // System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record::m_Version uint32_t ___m_Version_2; }; // UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourcePool`1/ResourceLogInfo struct ResourceLogInfo_t1FA44296E83BFFF7118C3D41B7D2550D7B0AF8DB { // System.String UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourcePool`1/ResourceLogInfo::name String_t* ___name_0; // System.Int64 UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourcePool`1/ResourceLogInfo::size int64_t ___size_1; }; // Native definition for P/Invoke marshalling of UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourcePool`1/ResourceLogInfo #ifndef ResourceLogInfo_tD44FBA10E9FF961EF9ADD4E98C987231C2CC2C1B_marshaled_pinvoke_define #define ResourceLogInfo_tD44FBA10E9FF961EF9ADD4E98C987231C2CC2C1B_marshaled_pinvoke_define struct ResourceLogInfo_tD44FBA10E9FF961EF9ADD4E98C987231C2CC2C1B_marshaled_pinvoke { char* ___name_0; int64_t ___size_1; }; #endif // Native definition for COM marshalling of UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourcePool`1/ResourceLogInfo #ifndef ResourceLogInfo_tD44FBA10E9FF961EF9ADD4E98C987231C2CC2C1B_marshaled_com_define #define ResourceLogInfo_tD44FBA10E9FF961EF9ADD4E98C987231C2CC2C1B_marshaled_com_define struct ResourceLogInfo_tD44FBA10E9FF961EF9ADD4E98C987231C2CC2C1B_marshaled_com { Il2CppChar* ___name_0; int64_t ___size_1; }; #endif // 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; }; // System.ValueTuple`2 struct ValueTuple_2_tD9DCD90C6490444503B936F72B6882564ED11825 { // T1 System.ValueTuple`2::Item1 int32_t ___Item1_0; // T2 System.ValueTuple`2::Item2 RuntimeObject* ___Item2_1; }; // System.ValueTuple`2 struct ValueTuple_2_tC57529B8C1EE84CA3D138FBE3836C013C6DC40AC { // T1 System.ValueTuple`2::Item1 RuntimeObject* ___Item1_0; // T2 System.ValueTuple`2::Item2 int32_t ___Item2_1; }; // System.ValueTuple`2 struct ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A { // T1 System.ValueTuple`2::Item1 RuntimeObject* ___Item1_0; // T2 System.ValueTuple`2::Item2 RuntimeObject* ___Item2_1; }; // UnityEngine.Rendering.VolumeParameter`1 struct VolumeParameter_1_t5E4D687B1DE10F23FA079D3967111740962E1076 : public VolumeParameter_t95994C89644D2CC4C11F666571492420D16BED72 { // T UnityEngine.Rendering.VolumeParameter`1::m_Value RuntimeObject* ___m_Value_2; }; // NodeCanvas.Framework.ActionTask struct ActionTask_t6B5C6B67D00E7AF678FAEDC91859B778C24A8E1E : public Task_tF05C1B448C98EDD5D7E9E23660FCEAC40348A284 { // NodeCanvas.Framework.Status NodeCanvas.Framework.ActionTask::status int32_t ___status_10; // System.Single NodeCanvas.Framework.ActionTask::timeStarted float ___timeStarted_11; // System.Boolean NodeCanvas.Framework.ActionTask::latch bool ___latch_12; // System.Boolean NodeCanvas.Framework.ActionTask::k__BackingField bool ___U3CisPausedU3Ek__BackingField_13; }; // 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; }; // SharpNav.Area #pragma pack(push, tp, 1) struct Area_t9E8E008D1CF28697728310B3039944F3C2777E47 { // System.Byte SharpNav.Area::Id uint8_t ___Id_2; }; #pragma pack(pop, tp) // 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; }; // System.Boolean struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22 { // System.Boolean System.Boolean::m_value bool ___m_value_0; }; // System.Byte struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3 { // System.Byte System.Byte::m_value uint8_t ___m_value_0; }; // System.Char struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17 { // System.Char System.Char::m_value Il2CppChar ___m_value_0; }; // 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.Color32 struct Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B { union { #pragma pack(push, tp, 1) struct { // System.Int32 UnityEngine.Color32::rgba int32_t ___rgba_0; }; #pragma pack(pop, tp) struct { int32_t ___rgba_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { // System.Byte UnityEngine.Color32::r uint8_t ___r_1; }; #pragma pack(pop, tp) struct { uint8_t ___r_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___g_2_OffsetPadding[1]; // System.Byte UnityEngine.Color32::g uint8_t ___g_2; }; #pragma pack(pop, tp) struct { char ___g_2_OffsetPadding_forAlignmentOnly[1]; uint8_t ___g_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___b_3_OffsetPadding[2]; // System.Byte UnityEngine.Color32::b uint8_t ___b_3; }; #pragma pack(pop, tp) struct { char ___b_3_OffsetPadding_forAlignmentOnly[2]; uint8_t ___b_3_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___a_4_OffsetPadding[3]; // System.Byte UnityEngine.Color32::a uint8_t ___a_4; }; #pragma pack(pop, tp) struct { char ___a_4_OffsetPadding_forAlignmentOnly[3]; uint8_t ___a_4_forAlignmentOnly; }; }; }; // SharpNav.CompactSpanReference struct CompactSpanReference_t2053F55F63F76CE10873B5CC097AAA9421D589D5 { // System.Int32 SharpNav.CompactSpanReference::X int32_t ___X_1; // System.Int32 SharpNav.CompactSpanReference::Y int32_t ___Y_2; // System.Int32 SharpNav.CompactSpanReference::Index int32_t ___Index_3; }; // UnityEngine.UIElements.ComputedTransitionProperty struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1 { // UnityEngine.UIElements.StyleSheets.StylePropertyId UnityEngine.UIElements.ComputedTransitionProperty::id int32_t ___id_0; // System.Int32 UnityEngine.UIElements.ComputedTransitionProperty::durationMs int32_t ___durationMs_1; // System.Int32 UnityEngine.UIElements.ComputedTransitionProperty::delayMs int32_t ___delayMs_2; // System.Func`2 UnityEngine.UIElements.ComputedTransitionProperty::easingCurve Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___easingCurve_3; }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.ComputedTransitionProperty struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_pinvoke { int32_t ___id_0; int32_t ___durationMs_1; int32_t ___delayMs_2; Il2CppMethodPointer ___easingCurve_3; }; // Native definition for COM marshalling of UnityEngine.UIElements.ComputedTransitionProperty struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_com { int32_t ___id_0; int32_t ___durationMs_1; int32_t ___delayMs_2; Il2CppMethodPointer ___easingCurve_3; }; // System.DateTime struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D { // System.UInt64 System.DateTime::_dateData uint64_t ____dateData_46; }; // System.Decimal struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F { union { #pragma pack(push, tp, 1) struct { // System.Int32 System.Decimal::flags int32_t ___flags_8; }; #pragma pack(pop, tp) struct { int32_t ___flags_8_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___hi_9_OffsetPadding[4]; // System.Int32 System.Decimal::hi int32_t ___hi_9; }; #pragma pack(pop, tp) struct { char ___hi_9_OffsetPadding_forAlignmentOnly[4]; int32_t ___hi_9_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___lo_10_OffsetPadding[8]; // System.Int32 System.Decimal::lo int32_t ___lo_10; }; #pragma pack(pop, tp) struct { char ___lo_10_OffsetPadding_forAlignmentOnly[8]; int32_t ___lo_10_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___mid_11_OffsetPadding[12]; // System.Int32 System.Decimal::mid int32_t ___mid_11; }; #pragma pack(pop, tp) struct { char ___mid_11_OffsetPadding_forAlignmentOnly[12]; int32_t ___mid_11_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___ulomidLE_12_OffsetPadding[8]; // System.UInt64 System.Decimal::ulomidLE uint64_t ___ulomidLE_12; }; #pragma pack(pop, tp) struct { char ___ulomidLE_12_OffsetPadding_forAlignmentOnly[8]; uint64_t ___ulomidLE_12_forAlignmentOnly; }; }; }; // UnityEngine.Rendering.DepthState struct DepthState_t798415D2C1D9202E555FEE5D4C5FDF6B3A077255 { // System.Byte UnityEngine.Rendering.DepthState::m_WriteEnabled uint8_t ___m_WriteEnabled_0; // System.SByte UnityEngine.Rendering.DepthState::m_CompareFunction int8_t ___m_CompareFunction_1; }; // System.Double struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F { // System.Double System.Double::m_value double ___m_value_0; }; // UnityEngine.Rendering.Universal.DoublePoint struct DoublePoint_t446FD90BD115DB77200658E482706463B1E514AF { // System.Double UnityEngine.Rendering.Universal.DoublePoint::X double ___X_0; // System.Double UnityEngine.Rendering.Universal.DoublePoint::Y double ___Y_1; }; // UnityEngine.UIElements.EasingFunction struct EasingFunction_t5197D3B06056326A8B5C96032CDEBD5D3BDCA7A4 { // UnityEngine.UIElements.EasingMode UnityEngine.UIElements.EasingFunction::m_Mode int32_t ___m_Mode_0; }; // System.Enum struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F { }; // 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 { }; // System.Reflection.FieldInfo struct FieldInfo_t : public MemberInfo_t { }; // 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; }; // UnityEngine.InputSystem.Utilities.FourCC struct FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED { // System.Int32 UnityEngine.InputSystem.Utilities.FourCC::m_Code int32_t ___m_Code_0; }; // UnityEngine.TextCore.GlyphRect struct GlyphRect_tB6D225B9318A527A1CBC1B4078EB923398EB808D { // System.Int32 UnityEngine.TextCore.GlyphRect::m_X int32_t ___m_X_0; // System.Int32 UnityEngine.TextCore.GlyphRect::m_Y int32_t ___m_Y_1; // System.Int32 UnityEngine.TextCore.GlyphRect::m_Width int32_t ___m_Width_2; // System.Int32 UnityEngine.TextCore.GlyphRect::m_Height int32_t ___m_Height_3; }; // UnityEngine.TextCore.LowLevel.GlyphValueRecord struct GlyphValueRecord_t780927A39D46924E0D546A2AE5DDF1BB2B5A9C8E { // System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::m_XPlacement float ___m_XPlacement_0; // System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::m_YPlacement float ___m_YPlacement_1; // System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::m_XAdvance float ___m_XAdvance_2; // System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::m_YAdvance float ___m_YAdvance_3; }; // System.Guid struct Guid_t { // System.Int32 System.Guid::_a int32_t ____a_1; // System.Int16 System.Guid::_b int16_t ____b_2; // System.Int16 System.Guid::_c int16_t ____c_3; // System.Byte System.Guid::_d uint8_t ____d_4; // System.Byte System.Guid::_e uint8_t ____e_5; // System.Byte System.Guid::_f uint8_t ____f_6; // System.Byte System.Guid::_g uint8_t ____g_7; // System.Byte System.Guid::_h uint8_t ____h_8; // System.Byte System.Guid::_i uint8_t ____i_9; // System.Byte System.Guid::_j uint8_t ____j_10; // System.Byte System.Guid::_k uint8_t ____k_11; }; // UnityEngine.InputSystem.InputBinding struct InputBinding_t0D75BD1538CF81D29450D568D5C938E111633EC5 { // System.String UnityEngine.InputSystem.InputBinding::m_Name String_t* ___m_Name_2; // System.String UnityEngine.InputSystem.InputBinding::m_Id String_t* ___m_Id_3; // System.String UnityEngine.InputSystem.InputBinding::m_Path String_t* ___m_Path_4; // System.String UnityEngine.InputSystem.InputBinding::m_Interactions String_t* ___m_Interactions_5; // System.String UnityEngine.InputSystem.InputBinding::m_Processors String_t* ___m_Processors_6; // System.String UnityEngine.InputSystem.InputBinding::m_Groups String_t* ___m_Groups_7; // System.String UnityEngine.InputSystem.InputBinding::m_Action String_t* ___m_Action_8; // UnityEngine.InputSystem.InputBinding/Flags UnityEngine.InputSystem.InputBinding::m_Flags int32_t ___m_Flags_9; // System.String UnityEngine.InputSystem.InputBinding::m_OverridePath String_t* ___m_OverridePath_10; // System.String UnityEngine.InputSystem.InputBinding::m_OverrideInteractions String_t* ___m_OverrideInteractions_11; // System.String UnityEngine.InputSystem.InputBinding::m_OverrideProcessors String_t* ___m_OverrideProcessors_12; }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.InputBinding struct InputBinding_t0D75BD1538CF81D29450D568D5C938E111633EC5_marshaled_pinvoke { char* ___m_Name_2; char* ___m_Id_3; char* ___m_Path_4; char* ___m_Interactions_5; char* ___m_Processors_6; char* ___m_Groups_7; char* ___m_Action_8; int32_t ___m_Flags_9; char* ___m_OverridePath_10; char* ___m_OverrideInteractions_11; char* ___m_OverrideProcessors_12; }; // Native definition for COM marshalling of UnityEngine.InputSystem.InputBinding struct InputBinding_t0D75BD1538CF81D29450D568D5C938E111633EC5_marshaled_com { Il2CppChar* ___m_Name_2; Il2CppChar* ___m_Id_3; Il2CppChar* ___m_Path_4; Il2CppChar* ___m_Interactions_5; Il2CppChar* ___m_Processors_6; Il2CppChar* ___m_Groups_7; Il2CppChar* ___m_Action_8; int32_t ___m_Flags_9; Il2CppChar* ___m_OverridePath_10; Il2CppChar* ___m_OverrideInteractions_11; Il2CppChar* ___m_OverrideProcessors_12; }; // UnityEngine.InputSystem.InputControlScheme struct InputControlScheme_tB60FB32F414727140B32E1A0447679DC7ABC8434 { // System.String UnityEngine.InputSystem.InputControlScheme::m_Name String_t* ___m_Name_0; // System.String UnityEngine.InputSystem.InputControlScheme::m_BindingGroup String_t* ___m_BindingGroup_1; // UnityEngine.InputSystem.InputControlScheme/DeviceRequirement[] UnityEngine.InputSystem.InputControlScheme::m_DeviceRequirements DeviceRequirementU5BU5D_t0496FAAB7554B7BFC270BA53BA6A5EFD5DE061CE* ___m_DeviceRequirements_2; }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.InputControlScheme struct InputControlScheme_tB60FB32F414727140B32E1A0447679DC7ABC8434_marshaled_pinvoke { char* ___m_Name_0; char* ___m_BindingGroup_1; DeviceRequirement_t80E71C44DF1923C15D3AA025242B7348EBF8B056_marshaled_pinvoke* ___m_DeviceRequirements_2; }; // Native definition for COM marshalling of UnityEngine.InputSystem.InputControlScheme struct InputControlScheme_tB60FB32F414727140B32E1A0447679DC7ABC8434_marshaled_com { Il2CppChar* ___m_Name_0; Il2CppChar* ___m_BindingGroup_1; DeviceRequirement_t80E71C44DF1923C15D3AA025242B7348EBF8B056_marshaled_com* ___m_DeviceRequirements_2; }; // UnityEngine.InputSystem.Layouts.InputDeviceDescription struct InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F { // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_InterfaceName String_t* ___m_InterfaceName_0; // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_DeviceClass String_t* ___m_DeviceClass_1; // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Manufacturer String_t* ___m_Manufacturer_2; // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Product String_t* ___m_Product_3; // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Serial String_t* ___m_Serial_4; // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Version String_t* ___m_Version_5; // System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Capabilities String_t* ___m_Capabilities_6; }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputDeviceDescription struct InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F_marshaled_pinvoke { char* ___m_InterfaceName_0; char* ___m_DeviceClass_1; char* ___m_Manufacturer_2; char* ___m_Product_3; char* ___m_Serial_4; char* ___m_Version_5; char* ___m_Capabilities_6; }; // Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputDeviceDescription struct InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F_marshaled_com { Il2CppChar* ___m_InterfaceName_0; Il2CppChar* ___m_DeviceClass_1; Il2CppChar* ___m_Manufacturer_2; Il2CppChar* ___m_Product_3; Il2CppChar* ___m_Serial_4; Il2CppChar* ___m_Version_5; Il2CppChar* ___m_Capabilities_6; }; // UnityEngine.InputSystem.LowLevel.InputEventPtr struct InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 { // UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventPtr::m_EventPtr InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_EventPtr_0; }; // UnityEngine.XR.InputFeatureUsage struct InputFeatureUsage_t1E251DC4F8CD697080F0F5D98388955AF8B87599 { // System.String UnityEngine.XR.InputFeatureUsage::m_Name String_t* ___m_Name_0; // UnityEngine.XR.InputFeatureType UnityEngine.XR.InputFeatureUsage::m_InternalType uint32_t ___m_InternalType_1; }; // Native definition for P/Invoke marshalling of UnityEngine.XR.InputFeatureUsage struct InputFeatureUsage_t1E251DC4F8CD697080F0F5D98388955AF8B87599_marshaled_pinvoke { char* ___m_Name_0; uint32_t ___m_InternalType_1; }; // Native definition for COM marshalling of UnityEngine.XR.InputFeatureUsage struct InputFeatureUsage_t1E251DC4F8CD697080F0F5D98388955AF8B87599_marshaled_com { Il2CppChar* ___m_Name_0; uint32_t ___m_InternalType_1; }; // System.Int16 struct Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175 { // System.Int16 System.Int16::m_value int16_t ___m_value_0; }; // 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; }; // UnityEngine.Rendering.Universal.IntPoint struct IntPoint_t2AA3A6066E5DF1400D3A9CFA2F8E84A82132174A { // System.Int64 UnityEngine.Rendering.Universal.IntPoint::N int64_t ___N_0; // System.Int64 UnityEngine.Rendering.Universal.IntPoint::X int64_t ___X_1; // System.Int64 UnityEngine.Rendering.Universal.IntPoint::Y int64_t ___Y_2; // System.Int64 UnityEngine.Rendering.Universal.IntPoint::D int64_t ___D_3; // System.Double UnityEngine.Rendering.Universal.IntPoint::NX double ___NX_4; // System.Double UnityEngine.Rendering.Universal.IntPoint::NY double ___NY_5; }; // System.IntPtr struct IntPtr_t { // System.Void* System.IntPtr::m_value void* ___m_value_0; }; // DungeonArchitect.IntVector struct IntVector_tF31403FD7CA4A560745719B0E36FAF35F1EBC71C { // System.Int32 DungeonArchitect.IntVector::x int32_t ___x_0; // System.Int32 DungeonArchitect.IntVector::y int32_t ___y_1; // System.Int32 DungeonArchitect.IntVector::z int32_t ___z_2; }; // DungeonArchitect.IntVector2 struct IntVector2_t2DFD1430F75D3E32E93DE921832E85D4A3FD53F7 { // System.Int32 DungeonArchitect.IntVector2::x int32_t ___x_0; // System.Int32 DungeonArchitect.IntVector2::y int32_t ___y_1; }; // UnityEngine.InputSystem.Utilities.InternedString struct InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 { // System.String UnityEngine.InputSystem.Utilities.InternedString::m_StringOriginalCase String_t* ___m_StringOriginalCase_0; // System.String UnityEngine.InputSystem.Utilities.InternedString::m_StringLowerCase String_t* ___m_StringLowerCase_1; }; // Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Utilities.InternedString struct InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735_marshaled_pinvoke { char* ___m_StringOriginalCase_0; char* ___m_StringLowerCase_1; }; // Native definition for COM marshalling of UnityEngine.InputSystem.Utilities.InternedString struct InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735_marshaled_com { Il2CppChar* ___m_StringOriginalCase_0; Il2CppChar* ___m_StringLowerCase_1; }; // UnityEngine.Timeline.IntervalTreeNode struct IntervalTreeNode_tDAA7D63276D62CD178C91CC7DF932C97896332EC { // System.Int64 UnityEngine.Timeline.IntervalTreeNode::center int64_t ___center_0; // System.Int32 UnityEngine.Timeline.IntervalTreeNode::first int32_t ___first_1; // System.Int32 UnityEngine.Timeline.IntervalTreeNode::last int32_t ___last_2; // System.Int32 UnityEngine.Timeline.IntervalTreeNode::left int32_t ___left_3; // System.Int32 UnityEngine.Timeline.IntervalTreeNode::right int32_t ___right_4; }; // UnityEngine.UIElements.Length struct Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 { // System.Single UnityEngine.UIElements.Length::m_Value float ___m_Value_1; // UnityEngine.UIElements.Length/Unit UnityEngine.UIElements.Length::m_Unit int32_t ___m_Unit_2; }; // UnityEngine.UIElements.ManipulatorActivationFilter struct ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81 { // UnityEngine.UIElements.MouseButton UnityEngine.UIElements.ManipulatorActivationFilter::