UnityEngine.AssetBundleModule.cpp 72 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579
  1. #include "pch-cpp.hpp"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <limits>
  8. #include <stdint.h>
  9. template <typename R>
  10. struct VirtualFuncInvoker0
  11. {
  12. typedef R (*Func)(void*, const RuntimeMethod*);
  13. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
  14. {
  15. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  16. return ((Func)invokeData.methodPtr)(obj, invokeData.method);
  17. }
  18. };
  19. // System.Action`1<UnityEngine.AsyncOperation>
  20. struct Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31;
  21. // System.Byte[]
  22. struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726;
  23. // System.Char[]
  24. struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
  25. // System.Delegate[]
  26. struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8;
  27. // System.IntPtr[]
  28. struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6;
  29. // System.Diagnostics.StackTrace[]
  30. struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971;
  31. // System.Type[]
  32. struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755;
  33. // System.ArgumentException
  34. struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00;
  35. // UnityEngine.AssetBundle
  36. struct AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4;
  37. // UnityEngine.AssetBundleCreateRequest
  38. struct AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A;
  39. // UnityEngine.AssetBundleRequest
  40. struct AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A;
  41. // UnityEngine.AsyncOperation
  42. struct AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86;
  43. // System.Reflection.Binder
  44. struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30;
  45. // System.DelegateData
  46. struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288;
  47. // System.Collections.IDictionary
  48. struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A;
  49. // System.Reflection.MemberFilter
  50. struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81;
  51. // System.Reflection.MethodInfo
  52. struct MethodInfo_t;
  53. // System.NullReferenceException
  54. struct NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724;
  55. // UnityEngine.Object
  56. struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A;
  57. // UnityEngine.ResourceRequest
  58. struct ResourceRequest_tD2D09E98C844087E6AB0F04532B7AA139558CBAD;
  59. // System.Runtime.Serialization.SafeSerializationManager
  60. struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F;
  61. // System.String
  62. struct String_t;
  63. // System.Type
  64. struct Type_t;
  65. // System.Void
  66. struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5;
  67. IL2CPP_EXTERN_C RuntimeClass* Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31_il2cpp_TypeInfo_var;
  68. IL2CPP_EXTERN_C RuntimeClass* ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var;
  69. IL2CPP_EXTERN_C RuntimeClass* NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724_il2cpp_TypeInfo_var;
  70. IL2CPP_EXTERN_C RuntimeClass* Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var;
  71. IL2CPP_EXTERN_C String_t* _stringLiteral358518C7B9669F4CD21363772C3317136923413A;
  72. IL2CPP_EXTERN_C String_t* _stringLiteral51AFAC88FE0F5AA20A5F618F48C4CEAB7CC3DB34;
  73. IL2CPP_EXTERN_C String_t* _stringLiteral820724398B4A28E6B958D19B3FC28BB8BF2787D3;
  74. IL2CPP_EXTERN_C const RuntimeMethod* AssetBundle_LoadAssetAsync_m63C7C5654FA8D0824DC920A1B1530C37CCB3DF6E_RuntimeMethod_var;
  75. struct Delegate_t_marshaled_com;
  76. struct Delegate_t_marshaled_pinvoke;
  77. struct Exception_t_marshaled_com;
  78. struct Exception_t_marshaled_pinvoke;
  79. struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726;
  80. IL2CPP_EXTERN_C_BEGIN
  81. IL2CPP_EXTERN_C_END
  82. #ifdef __clang__
  83. #pragma clang diagnostic push
  84. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  85. #pragma clang diagnostic ignored "-Wunused-variable"
  86. #endif
  87. // <Module>
  88. struct U3CModuleU3E_t7988782848E87B4A172D2199D2BAC372F93351FD
  89. {
  90. public:
  91. public:
  92. };
  93. // System.Object
  94. struct Il2CppArrayBounds;
  95. // System.Array
  96. // System.Reflection.MemberInfo
  97. struct MemberInfo_t : public RuntimeObject
  98. {
  99. public:
  100. public:
  101. };
  102. // System.String
  103. struct String_t : public RuntimeObject
  104. {
  105. public:
  106. // System.Int32 System.String::m_stringLength
  107. int32_t ___m_stringLength_0;
  108. // System.Char System.String::m_firstChar
  109. Il2CppChar ___m_firstChar_1;
  110. public:
  111. inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
  112. inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
  113. inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
  114. inline void set_m_stringLength_0(int32_t value)
  115. {
  116. ___m_stringLength_0 = value;
  117. }
  118. inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
  119. inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
  120. inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
  121. inline void set_m_firstChar_1(Il2CppChar value)
  122. {
  123. ___m_firstChar_1 = value;
  124. }
  125. };
  126. struct String_t_StaticFields
  127. {
  128. public:
  129. // System.String System.String::Empty
  130. String_t* ___Empty_5;
  131. public:
  132. inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
  133. inline String_t* get_Empty_5() const { return ___Empty_5; }
  134. inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
  135. inline void set_Empty_5(String_t* value)
  136. {
  137. ___Empty_5 = value;
  138. Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
  139. }
  140. };
  141. // System.ValueType
  142. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject
  143. {
  144. public:
  145. public:
  146. };
  147. // Native definition for P/Invoke marshalling of System.ValueType
  148. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke
  149. {
  150. };
  151. // Native definition for COM marshalling of System.ValueType
  152. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com
  153. {
  154. };
  155. // UnityEngine.YieldInstruction
  156. struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF : public RuntimeObject
  157. {
  158. public:
  159. public:
  160. };
  161. // Native definition for P/Invoke marshalling of UnityEngine.YieldInstruction
  162. struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_pinvoke
  163. {
  164. };
  165. // Native definition for COM marshalling of UnityEngine.YieldInstruction
  166. struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_com
  167. {
  168. };
  169. // System.Boolean
  170. struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37
  171. {
  172. public:
  173. // System.Boolean System.Boolean::m_value
  174. bool ___m_value_0;
  175. public:
  176. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); }
  177. inline bool get_m_value_0() const { return ___m_value_0; }
  178. inline bool* get_address_of_m_value_0() { return &___m_value_0; }
  179. inline void set_m_value_0(bool value)
  180. {
  181. ___m_value_0 = value;
  182. }
  183. };
  184. struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields
  185. {
  186. public:
  187. // System.String System.Boolean::TrueString
  188. String_t* ___TrueString_5;
  189. // System.String System.Boolean::FalseString
  190. String_t* ___FalseString_6;
  191. public:
  192. inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); }
  193. inline String_t* get_TrueString_5() const { return ___TrueString_5; }
  194. inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
  195. inline void set_TrueString_5(String_t* value)
  196. {
  197. ___TrueString_5 = value;
  198. Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
  199. }
  200. inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); }
  201. inline String_t* get_FalseString_6() const { return ___FalseString_6; }
  202. inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
  203. inline void set_FalseString_6(String_t* value)
  204. {
  205. ___FalseString_6 = value;
  206. Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
  207. }
  208. };
  209. // System.Byte
  210. struct Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056
  211. {
  212. public:
  213. // System.Byte System.Byte::m_value
  214. uint8_t ___m_value_0;
  215. public:
  216. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056, ___m_value_0)); }
  217. inline uint8_t get_m_value_0() const { return ___m_value_0; }
  218. inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; }
  219. inline void set_m_value_0(uint8_t value)
  220. {
  221. ___m_value_0 = value;
  222. }
  223. };
  224. // System.Enum
  225. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52
  226. {
  227. public:
  228. public:
  229. };
  230. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields
  231. {
  232. public:
  233. // System.Char[] System.Enum::enumSeperatorCharArray
  234. CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0;
  235. public:
  236. inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); }
  237. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
  238. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
  239. inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
  240. {
  241. ___enumSeperatorCharArray_0 = value;
  242. Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
  243. }
  244. };
  245. // Native definition for P/Invoke marshalling of System.Enum
  246. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke
  247. {
  248. };
  249. // Native definition for COM marshalling of System.Enum
  250. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com
  251. {
  252. };
  253. // System.Int32
  254. struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046
  255. {
  256. public:
  257. // System.Int32 System.Int32::m_value
  258. int32_t ___m_value_0;
  259. public:
  260. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___m_value_0)); }
  261. inline int32_t get_m_value_0() const { return ___m_value_0; }
  262. inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
  263. inline void set_m_value_0(int32_t value)
  264. {
  265. ___m_value_0 = value;
  266. }
  267. };
  268. // System.IntPtr
  269. struct IntPtr_t
  270. {
  271. public:
  272. // System.Void* System.IntPtr::m_value
  273. void* ___m_value_0;
  274. public:
  275. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
  276. inline void* get_m_value_0() const { return ___m_value_0; }
  277. inline void** get_address_of_m_value_0() { return &___m_value_0; }
  278. inline void set_m_value_0(void* value)
  279. {
  280. ___m_value_0 = value;
  281. }
  282. };
  283. struct IntPtr_t_StaticFields
  284. {
  285. public:
  286. // System.IntPtr System.IntPtr::Zero
  287. intptr_t ___Zero_1;
  288. public:
  289. inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
  290. inline intptr_t get_Zero_1() const { return ___Zero_1; }
  291. inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
  292. inline void set_Zero_1(intptr_t value)
  293. {
  294. ___Zero_1 = value;
  295. }
  296. };
  297. // System.UInt32
  298. struct UInt32_tE60352A06233E4E69DD198BCC67142159F686B15
  299. {
  300. public:
  301. // System.UInt32 System.UInt32::m_value
  302. uint32_t ___m_value_0;
  303. public:
  304. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15, ___m_value_0)); }
  305. inline uint32_t get_m_value_0() const { return ___m_value_0; }
  306. inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; }
  307. inline void set_m_value_0(uint32_t value)
  308. {
  309. ___m_value_0 = value;
  310. }
  311. };
  312. // System.Void
  313. struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5
  314. {
  315. public:
  316. union
  317. {
  318. struct
  319. {
  320. };
  321. uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1];
  322. };
  323. public:
  324. };
  325. // UnityEngine.AsyncOperation
  326. struct AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF
  327. {
  328. public:
  329. // System.IntPtr UnityEngine.AsyncOperation::m_Ptr
  330. intptr_t ___m_Ptr_0;
  331. // System.Action`1<UnityEngine.AsyncOperation> UnityEngine.AsyncOperation::m_completeCallback
  332. Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31 * ___m_completeCallback_1;
  333. public:
  334. inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86, ___m_Ptr_0)); }
  335. inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
  336. inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
  337. inline void set_m_Ptr_0(intptr_t value)
  338. {
  339. ___m_Ptr_0 = value;
  340. }
  341. inline static int32_t get_offset_of_m_completeCallback_1() { return static_cast<int32_t>(offsetof(AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86, ___m_completeCallback_1)); }
  342. inline Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31 * get_m_completeCallback_1() const { return ___m_completeCallback_1; }
  343. inline Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31 ** get_address_of_m_completeCallback_1() { return &___m_completeCallback_1; }
  344. inline void set_m_completeCallback_1(Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31 * value)
  345. {
  346. ___m_completeCallback_1 = value;
  347. Il2CppCodeGenWriteBarrier((void**)(&___m_completeCallback_1), (void*)value);
  348. }
  349. };
  350. // Native definition for P/Invoke marshalling of UnityEngine.AsyncOperation
  351. struct AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86_marshaled_pinvoke : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_pinvoke
  352. {
  353. intptr_t ___m_Ptr_0;
  354. Il2CppMethodPointer ___m_completeCallback_1;
  355. };
  356. // Native definition for COM marshalling of UnityEngine.AsyncOperation
  357. struct AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86_marshaled_com : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_com
  358. {
  359. intptr_t ___m_Ptr_0;
  360. Il2CppMethodPointer ___m_completeCallback_1;
  361. };
  362. // System.Reflection.BindingFlags
  363. struct BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733
  364. {
  365. public:
  366. // System.Int32 System.Reflection.BindingFlags::value__
  367. int32_t ___value___2;
  368. public:
  369. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___value___2)); }
  370. inline int32_t get_value___2() const { return ___value___2; }
  371. inline int32_t* get_address_of_value___2() { return &___value___2; }
  372. inline void set_value___2(int32_t value)
  373. {
  374. ___value___2 = value;
  375. }
  376. };
  377. // System.Delegate
  378. struct Delegate_t : public RuntimeObject
  379. {
  380. public:
  381. // System.IntPtr System.Delegate::method_ptr
  382. Il2CppMethodPointer ___method_ptr_0;
  383. // System.IntPtr System.Delegate::invoke_impl
  384. intptr_t ___invoke_impl_1;
  385. // System.Object System.Delegate::m_target
  386. RuntimeObject * ___m_target_2;
  387. // System.IntPtr System.Delegate::method
  388. intptr_t ___method_3;
  389. // System.IntPtr System.Delegate::delegate_trampoline
  390. intptr_t ___delegate_trampoline_4;
  391. // System.IntPtr System.Delegate::extra_arg
  392. intptr_t ___extra_arg_5;
  393. // System.IntPtr System.Delegate::method_code
  394. intptr_t ___method_code_6;
  395. // System.Reflection.MethodInfo System.Delegate::method_info
  396. MethodInfo_t * ___method_info_7;
  397. // System.Reflection.MethodInfo System.Delegate::original_method_info
  398. MethodInfo_t * ___original_method_info_8;
  399. // System.DelegateData System.Delegate::data
  400. DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9;
  401. // System.Boolean System.Delegate::method_is_virtual
  402. bool ___method_is_virtual_10;
  403. public:
  404. inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); }
  405. inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
  406. inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
  407. inline void set_method_ptr_0(Il2CppMethodPointer value)
  408. {
  409. ___method_ptr_0 = value;
  410. }
  411. inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); }
  412. inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
  413. inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
  414. inline void set_invoke_impl_1(intptr_t value)
  415. {
  416. ___invoke_impl_1 = value;
  417. }
  418. inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); }
  419. inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
  420. inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
  421. inline void set_m_target_2(RuntimeObject * value)
  422. {
  423. ___m_target_2 = value;
  424. Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value);
  425. }
  426. inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); }
  427. inline intptr_t get_method_3() const { return ___method_3; }
  428. inline intptr_t* get_address_of_method_3() { return &___method_3; }
  429. inline void set_method_3(intptr_t value)
  430. {
  431. ___method_3 = value;
  432. }
  433. inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); }
  434. inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
  435. inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
  436. inline void set_delegate_trampoline_4(intptr_t value)
  437. {
  438. ___delegate_trampoline_4 = value;
  439. }
  440. inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); }
  441. inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
  442. inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
  443. inline void set_extra_arg_5(intptr_t value)
  444. {
  445. ___extra_arg_5 = value;
  446. }
  447. inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); }
  448. inline intptr_t get_method_code_6() const { return ___method_code_6; }
  449. inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
  450. inline void set_method_code_6(intptr_t value)
  451. {
  452. ___method_code_6 = value;
  453. }
  454. inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); }
  455. inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
  456. inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
  457. inline void set_method_info_7(MethodInfo_t * value)
  458. {
  459. ___method_info_7 = value;
  460. Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value);
  461. }
  462. inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); }
  463. inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
  464. inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
  465. inline void set_original_method_info_8(MethodInfo_t * value)
  466. {
  467. ___original_method_info_8 = value;
  468. Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value);
  469. }
  470. inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); }
  471. inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * get_data_9() const { return ___data_9; }
  472. inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 ** get_address_of_data_9() { return &___data_9; }
  473. inline void set_data_9(DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * value)
  474. {
  475. ___data_9 = value;
  476. Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value);
  477. }
  478. inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); }
  479. inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
  480. inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
  481. inline void set_method_is_virtual_10(bool value)
  482. {
  483. ___method_is_virtual_10 = value;
  484. }
  485. };
  486. // Native definition for P/Invoke marshalling of System.Delegate
  487. struct Delegate_t_marshaled_pinvoke
  488. {
  489. intptr_t ___method_ptr_0;
  490. intptr_t ___invoke_impl_1;
  491. Il2CppIUnknown* ___m_target_2;
  492. intptr_t ___method_3;
  493. intptr_t ___delegate_trampoline_4;
  494. intptr_t ___extra_arg_5;
  495. intptr_t ___method_code_6;
  496. MethodInfo_t * ___method_info_7;
  497. MethodInfo_t * ___original_method_info_8;
  498. DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9;
  499. int32_t ___method_is_virtual_10;
  500. };
  501. // Native definition for COM marshalling of System.Delegate
  502. struct Delegate_t_marshaled_com
  503. {
  504. intptr_t ___method_ptr_0;
  505. intptr_t ___invoke_impl_1;
  506. Il2CppIUnknown* ___m_target_2;
  507. intptr_t ___method_3;
  508. intptr_t ___delegate_trampoline_4;
  509. intptr_t ___extra_arg_5;
  510. intptr_t ___method_code_6;
  511. MethodInfo_t * ___method_info_7;
  512. MethodInfo_t * ___original_method_info_8;
  513. DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9;
  514. int32_t ___method_is_virtual_10;
  515. };
  516. // System.Exception
  517. struct Exception_t : public RuntimeObject
  518. {
  519. public:
  520. // System.String System.Exception::_className
  521. String_t* ____className_1;
  522. // System.String System.Exception::_message
  523. String_t* ____message_2;
  524. // System.Collections.IDictionary System.Exception::_data
  525. RuntimeObject* ____data_3;
  526. // System.Exception System.Exception::_innerException
  527. Exception_t * ____innerException_4;
  528. // System.String System.Exception::_helpURL
  529. String_t* ____helpURL_5;
  530. // System.Object System.Exception::_stackTrace
  531. RuntimeObject * ____stackTrace_6;
  532. // System.String System.Exception::_stackTraceString
  533. String_t* ____stackTraceString_7;
  534. // System.String System.Exception::_remoteStackTraceString
  535. String_t* ____remoteStackTraceString_8;
  536. // System.Int32 System.Exception::_remoteStackIndex
  537. int32_t ____remoteStackIndex_9;
  538. // System.Object System.Exception::_dynamicMethods
  539. RuntimeObject * ____dynamicMethods_10;
  540. // System.Int32 System.Exception::_HResult
  541. int32_t ____HResult_11;
  542. // System.String System.Exception::_source
  543. String_t* ____source_12;
  544. // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
  545. SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
  546. // System.Diagnostics.StackTrace[] System.Exception::captured_traces
  547. StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
  548. // System.IntPtr[] System.Exception::native_trace_ips
  549. IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___native_trace_ips_15;
  550. public:
  551. inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); }
  552. inline String_t* get__className_1() const { return ____className_1; }
  553. inline String_t** get_address_of__className_1() { return &____className_1; }
  554. inline void set__className_1(String_t* value)
  555. {
  556. ____className_1 = value;
  557. Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value);
  558. }
  559. inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
  560. inline String_t* get__message_2() const { return ____message_2; }
  561. inline String_t** get_address_of__message_2() { return &____message_2; }
  562. inline void set__message_2(String_t* value)
  563. {
  564. ____message_2 = value;
  565. Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value);
  566. }
  567. inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
  568. inline RuntimeObject* get__data_3() const { return ____data_3; }
  569. inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
  570. inline void set__data_3(RuntimeObject* value)
  571. {
  572. ____data_3 = value;
  573. Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value);
  574. }
  575. inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
  576. inline Exception_t * get__innerException_4() const { return ____innerException_4; }
  577. inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
  578. inline void set__innerException_4(Exception_t * value)
  579. {
  580. ____innerException_4 = value;
  581. Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value);
  582. }
  583. inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
  584. inline String_t* get__helpURL_5() const { return ____helpURL_5; }
  585. inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
  586. inline void set__helpURL_5(String_t* value)
  587. {
  588. ____helpURL_5 = value;
  589. Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value);
  590. }
  591. inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
  592. inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
  593. inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
  594. inline void set__stackTrace_6(RuntimeObject * value)
  595. {
  596. ____stackTrace_6 = value;
  597. Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value);
  598. }
  599. inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
  600. inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
  601. inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
  602. inline void set__stackTraceString_7(String_t* value)
  603. {
  604. ____stackTraceString_7 = value;
  605. Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value);
  606. }
  607. inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
  608. inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
  609. inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
  610. inline void set__remoteStackTraceString_8(String_t* value)
  611. {
  612. ____remoteStackTraceString_8 = value;
  613. Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value);
  614. }
  615. inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
  616. inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
  617. inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
  618. inline void set__remoteStackIndex_9(int32_t value)
  619. {
  620. ____remoteStackIndex_9 = value;
  621. }
  622. inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
  623. inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
  624. inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
  625. inline void set__dynamicMethods_10(RuntimeObject * value)
  626. {
  627. ____dynamicMethods_10 = value;
  628. Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value);
  629. }
  630. inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
  631. inline int32_t get__HResult_11() const { return ____HResult_11; }
  632. inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
  633. inline void set__HResult_11(int32_t value)
  634. {
  635. ____HResult_11 = value;
  636. }
  637. inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
  638. inline String_t* get__source_12() const { return ____source_12; }
  639. inline String_t** get_address_of__source_12() { return &____source_12; }
  640. inline void set__source_12(String_t* value)
  641. {
  642. ____source_12 = value;
  643. Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value);
  644. }
  645. inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
  646. inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
  647. inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
  648. inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * value)
  649. {
  650. ____safeSerializationManager_13 = value;
  651. Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value);
  652. }
  653. inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
  654. inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; }
  655. inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; }
  656. inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* value)
  657. {
  658. ___captured_traces_14 = value;
  659. Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value);
  660. }
  661. inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
  662. inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
  663. inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
  664. inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* value)
  665. {
  666. ___native_trace_ips_15 = value;
  667. Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value);
  668. }
  669. };
  670. struct Exception_t_StaticFields
  671. {
  672. public:
  673. // System.Object System.Exception::s_EDILock
  674. RuntimeObject * ___s_EDILock_0;
  675. public:
  676. inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
  677. inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
  678. inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
  679. inline void set_s_EDILock_0(RuntimeObject * value)
  680. {
  681. ___s_EDILock_0 = value;
  682. Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value);
  683. }
  684. };
  685. // Native definition for P/Invoke marshalling of System.Exception
  686. struct Exception_t_marshaled_pinvoke
  687. {
  688. char* ____className_1;
  689. char* ____message_2;
  690. RuntimeObject* ____data_3;
  691. Exception_t_marshaled_pinvoke* ____innerException_4;
  692. char* ____helpURL_5;
  693. Il2CppIUnknown* ____stackTrace_6;
  694. char* ____stackTraceString_7;
  695. char* ____remoteStackTraceString_8;
  696. int32_t ____remoteStackIndex_9;
  697. Il2CppIUnknown* ____dynamicMethods_10;
  698. int32_t ____HResult_11;
  699. char* ____source_12;
  700. SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
  701. StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
  702. Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
  703. };
  704. // Native definition for COM marshalling of System.Exception
  705. struct Exception_t_marshaled_com
  706. {
  707. Il2CppChar* ____className_1;
  708. Il2CppChar* ____message_2;
  709. RuntimeObject* ____data_3;
  710. Exception_t_marshaled_com* ____innerException_4;
  711. Il2CppChar* ____helpURL_5;
  712. Il2CppIUnknown* ____stackTrace_6;
  713. Il2CppChar* ____stackTraceString_7;
  714. Il2CppChar* ____remoteStackTraceString_8;
  715. int32_t ____remoteStackIndex_9;
  716. Il2CppIUnknown* ____dynamicMethods_10;
  717. int32_t ____HResult_11;
  718. Il2CppChar* ____source_12;
  719. SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
  720. StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
  721. Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
  722. };
  723. // UnityEngine.Object
  724. struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A : public RuntimeObject
  725. {
  726. public:
  727. // System.IntPtr UnityEngine.Object::m_CachedPtr
  728. intptr_t ___m_CachedPtr_0;
  729. public:
  730. inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A, ___m_CachedPtr_0)); }
  731. inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; }
  732. inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; }
  733. inline void set_m_CachedPtr_0(intptr_t value)
  734. {
  735. ___m_CachedPtr_0 = value;
  736. }
  737. };
  738. struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_StaticFields
  739. {
  740. public:
  741. // System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
  742. int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
  743. public:
  744. inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); }
  745. inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; }
  746. inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; }
  747. inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value)
  748. {
  749. ___OffsetOfInstanceIDInCPlusPlusObject_1 = value;
  750. }
  751. };
  752. // Native definition for P/Invoke marshalling of UnityEngine.Object
  753. struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_pinvoke
  754. {
  755. intptr_t ___m_CachedPtr_0;
  756. };
  757. // Native definition for COM marshalling of UnityEngine.Object
  758. struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_com
  759. {
  760. intptr_t ___m_CachedPtr_0;
  761. };
  762. // System.RuntimeTypeHandle
  763. struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9
  764. {
  765. public:
  766. // System.IntPtr System.RuntimeTypeHandle::value
  767. intptr_t ___value_0;
  768. public:
  769. inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___value_0)); }
  770. inline intptr_t get_value_0() const { return ___value_0; }
  771. inline intptr_t* get_address_of_value_0() { return &___value_0; }
  772. inline void set_value_0(intptr_t value)
  773. {
  774. ___value_0 = value;
  775. }
  776. };
  777. // UnityEngine.AssetBundle
  778. struct AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A
  779. {
  780. public:
  781. public:
  782. };
  783. // UnityEngine.AssetBundleCreateRequest
  784. struct AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A : public AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86
  785. {
  786. public:
  787. public:
  788. };
  789. // Native definition for P/Invoke marshalling of UnityEngine.AssetBundleCreateRequest
  790. struct AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A_marshaled_pinvoke : public AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86_marshaled_pinvoke
  791. {
  792. };
  793. // Native definition for COM marshalling of UnityEngine.AssetBundleCreateRequest
  794. struct AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A_marshaled_com : public AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86_marshaled_com
  795. {
  796. };
  797. // UnityEngine.AssetBundleRecompressOperation
  798. struct AssetBundleRecompressOperation_t960AA4671D6EB0A10A041FA29B8C2A7D70C07D31 : public AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86
  799. {
  800. public:
  801. public:
  802. };
  803. // Native definition for P/Invoke marshalling of UnityEngine.AssetBundleRecompressOperation
  804. struct AssetBundleRecompressOperation_t960AA4671D6EB0A10A041FA29B8C2A7D70C07D31_marshaled_pinvoke : public AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86_marshaled_pinvoke
  805. {
  806. };
  807. // Native definition for COM marshalling of UnityEngine.AssetBundleRecompressOperation
  808. struct AssetBundleRecompressOperation_t960AA4671D6EB0A10A041FA29B8C2A7D70C07D31_marshaled_com : public AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86_marshaled_com
  809. {
  810. };
  811. // System.MulticastDelegate
  812. struct MulticastDelegate_t : public Delegate_t
  813. {
  814. public:
  815. // System.Delegate[] System.MulticastDelegate::delegates
  816. DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* ___delegates_11;
  817. public:
  818. inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
  819. inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* get_delegates_11() const { return ___delegates_11; }
  820. inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8** get_address_of_delegates_11() { return &___delegates_11; }
  821. inline void set_delegates_11(DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* value)
  822. {
  823. ___delegates_11 = value;
  824. Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value);
  825. }
  826. };
  827. // Native definition for P/Invoke marshalling of System.MulticastDelegate
  828. struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
  829. {
  830. Delegate_t_marshaled_pinvoke** ___delegates_11;
  831. };
  832. // Native definition for COM marshalling of System.MulticastDelegate
  833. struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
  834. {
  835. Delegate_t_marshaled_com** ___delegates_11;
  836. };
  837. // UnityEngine.ResourceRequest
  838. struct ResourceRequest_tD2D09E98C844087E6AB0F04532B7AA139558CBAD : public AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86
  839. {
  840. public:
  841. // System.String UnityEngine.ResourceRequest::m_Path
  842. String_t* ___m_Path_2;
  843. // System.Type UnityEngine.ResourceRequest::m_Type
  844. Type_t * ___m_Type_3;
  845. public:
  846. inline static int32_t get_offset_of_m_Path_2() { return static_cast<int32_t>(offsetof(ResourceRequest_tD2D09E98C844087E6AB0F04532B7AA139558CBAD, ___m_Path_2)); }
  847. inline String_t* get_m_Path_2() const { return ___m_Path_2; }
  848. inline String_t** get_address_of_m_Path_2() { return &___m_Path_2; }
  849. inline void set_m_Path_2(String_t* value)
  850. {
  851. ___m_Path_2 = value;
  852. Il2CppCodeGenWriteBarrier((void**)(&___m_Path_2), (void*)value);
  853. }
  854. inline static int32_t get_offset_of_m_Type_3() { return static_cast<int32_t>(offsetof(ResourceRequest_tD2D09E98C844087E6AB0F04532B7AA139558CBAD, ___m_Type_3)); }
  855. inline Type_t * get_m_Type_3() const { return ___m_Type_3; }
  856. inline Type_t ** get_address_of_m_Type_3() { return &___m_Type_3; }
  857. inline void set_m_Type_3(Type_t * value)
  858. {
  859. ___m_Type_3 = value;
  860. Il2CppCodeGenWriteBarrier((void**)(&___m_Type_3), (void*)value);
  861. }
  862. };
  863. // Native definition for P/Invoke marshalling of UnityEngine.ResourceRequest
  864. struct ResourceRequest_tD2D09E98C844087E6AB0F04532B7AA139558CBAD_marshaled_pinvoke : public AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86_marshaled_pinvoke
  865. {
  866. char* ___m_Path_2;
  867. Type_t * ___m_Type_3;
  868. };
  869. // Native definition for COM marshalling of UnityEngine.ResourceRequest
  870. struct ResourceRequest_tD2D09E98C844087E6AB0F04532B7AA139558CBAD_marshaled_com : public AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86_marshaled_com
  871. {
  872. Il2CppChar* ___m_Path_2;
  873. Type_t * ___m_Type_3;
  874. };
  875. // System.SystemException
  876. struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t
  877. {
  878. public:
  879. public:
  880. };
  881. // System.Type
  882. struct Type_t : public MemberInfo_t
  883. {
  884. public:
  885. // System.RuntimeTypeHandle System.Type::_impl
  886. RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9;
  887. public:
  888. inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
  889. inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; }
  890. inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; }
  891. inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value)
  892. {
  893. ____impl_9 = value;
  894. }
  895. };
  896. struct Type_t_StaticFields
  897. {
  898. public:
  899. // System.Reflection.MemberFilter System.Type::FilterAttribute
  900. MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0;
  901. // System.Reflection.MemberFilter System.Type::FilterName
  902. MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1;
  903. // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
  904. MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2;
  905. // System.Object System.Type::Missing
  906. RuntimeObject * ___Missing_3;
  907. // System.Char System.Type::Delimiter
  908. Il2CppChar ___Delimiter_4;
  909. // System.Type[] System.Type::EmptyTypes
  910. TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5;
  911. // System.Reflection.Binder System.Type::defaultBinder
  912. Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___defaultBinder_6;
  913. public:
  914. inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); }
  915. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
  916. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
  917. inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
  918. {
  919. ___FilterAttribute_0 = value;
  920. Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
  921. }
  922. inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
  923. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; }
  924. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; }
  925. inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
  926. {
  927. ___FilterName_1 = value;
  928. Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
  929. }
  930. inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
  931. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
  932. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
  933. inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
  934. {
  935. ___FilterNameIgnoreCase_2 = value;
  936. Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value);
  937. }
  938. inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
  939. inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
  940. inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
  941. inline void set_Missing_3(RuntimeObject * value)
  942. {
  943. ___Missing_3 = value;
  944. Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value);
  945. }
  946. inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
  947. inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
  948. inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
  949. inline void set_Delimiter_4(Il2CppChar value)
  950. {
  951. ___Delimiter_4 = value;
  952. }
  953. inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
  954. inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
  955. inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
  956. inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value)
  957. {
  958. ___EmptyTypes_5 = value;
  959. Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
  960. }
  961. inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
  962. inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; }
  963. inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
  964. inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value)
  965. {
  966. ___defaultBinder_6 = value;
  967. Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
  968. }
  969. };
  970. // System.Action`1<UnityEngine.AsyncOperation>
  971. struct Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31 : public MulticastDelegate_t
  972. {
  973. public:
  974. public:
  975. };
  976. // System.ArgumentException
  977. struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
  978. {
  979. public:
  980. // System.String System.ArgumentException::m_paramName
  981. String_t* ___m_paramName_17;
  982. public:
  983. inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00, ___m_paramName_17)); }
  984. inline String_t* get_m_paramName_17() const { return ___m_paramName_17; }
  985. inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; }
  986. inline void set_m_paramName_17(String_t* value)
  987. {
  988. ___m_paramName_17 = value;
  989. Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value);
  990. }
  991. };
  992. // UnityEngine.AssetBundleRequest
  993. struct AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A : public ResourceRequest_tD2D09E98C844087E6AB0F04532B7AA139558CBAD
  994. {
  995. public:
  996. public:
  997. };
  998. // Native definition for P/Invoke marshalling of UnityEngine.AssetBundleRequest
  999. struct AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A_marshaled_pinvoke : public ResourceRequest_tD2D09E98C844087E6AB0F04532B7AA139558CBAD_marshaled_pinvoke
  1000. {
  1001. };
  1002. // Native definition for COM marshalling of UnityEngine.AssetBundleRequest
  1003. struct AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A_marshaled_com : public ResourceRequest_tD2D09E98C844087E6AB0F04532B7AA139558CBAD_marshaled_com
  1004. {
  1005. };
  1006. // System.NullReferenceException
  1007. struct NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
  1008. {
  1009. public:
  1010. public:
  1011. };
  1012. #ifdef __clang__
  1013. #pragma clang diagnostic pop
  1014. #endif
  1015. // System.Byte[]
  1016. struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726 : public RuntimeArray
  1017. {
  1018. public:
  1019. ALIGN_FIELD (8) uint8_t m_Items[1];
  1020. public:
  1021. inline uint8_t GetAt(il2cpp_array_size_t index) const
  1022. {
  1023. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1024. return m_Items[index];
  1025. }
  1026. inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
  1027. {
  1028. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1029. return m_Items + index;
  1030. }
  1031. inline void SetAt(il2cpp_array_size_t index, uint8_t value)
  1032. {
  1033. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1034. m_Items[index] = value;
  1035. }
  1036. inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
  1037. {
  1038. return m_Items[index];
  1039. }
  1040. inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
  1041. {
  1042. return m_Items + index;
  1043. }
  1044. inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
  1045. {
  1046. m_Items[index] = value;
  1047. }
  1048. };
  1049. // System.Void UnityEngine.Object::.ctor()
  1050. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m4DCF5CDB32C2C69290894101A81F473865169279 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * __this, const RuntimeMethod* method);
  1051. // UnityEngine.AssetBundleCreateRequest UnityEngine.AssetBundle::LoadFromMemoryAsync_Internal(System.Byte[],System.UInt32)
  1052. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A * AssetBundle_LoadFromMemoryAsync_Internal_mECB031130E58D553BC2B24B5AA3EEDBDF310C6C1 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___binary0, uint32_t ___crc1, const RuntimeMethod* method);
  1053. // System.Void System.NullReferenceException::.ctor(System.String)
  1054. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullReferenceException__ctor_mF1733893E10358B400E817297D686A48AB3FB7B3 (NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 * __this, String_t* ___message0, const RuntimeMethod* method);
  1055. // System.Int32 System.String::get_Length()
  1056. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline (String_t* __this, const RuntimeMethod* method);
  1057. // System.Void System.ArgumentException::.ctor(System.String)
  1058. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, const RuntimeMethod* method);
  1059. // UnityEngine.AssetBundleRequest UnityEngine.AssetBundle::LoadAssetAsync_Internal(System.String,System.Type)
  1060. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A * AssetBundle_LoadAssetAsync_Internal_m89D45EFB48D3C4CF7E481EF41F7ACF24500E7019 (AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4 * __this, String_t* ___name0, Type_t * ___type1, const RuntimeMethod* method);
  1061. // System.Void UnityEngine.AsyncOperation::.ctor()
  1062. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncOperation__ctor_mFC0E13622A23CD19A631B9ABBA506683B71A2E4A (AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * __this, const RuntimeMethod* method);
  1063. // System.Void UnityEngine.ResourceRequest::.ctor()
  1064. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResourceRequest__ctor_m3E6B88D53CD7B4275A16194A6D94264BFE79D039 (ResourceRequest_tD2D09E98C844087E6AB0F04532B7AA139558CBAD * __this, const RuntimeMethod* method);
  1065. #ifdef __clang__
  1066. #pragma clang diagnostic push
  1067. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1068. #pragma clang diagnostic ignored "-Wunused-variable"
  1069. #endif
  1070. #ifdef __clang__
  1071. #pragma clang diagnostic pop
  1072. #endif
  1073. #ifdef __clang__
  1074. #pragma clang diagnostic push
  1075. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1076. #pragma clang diagnostic ignored "-Wunused-variable"
  1077. #endif
  1078. // System.Void UnityEngine.AssetBundle::.ctor()
  1079. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssetBundle__ctor_mCE6DB7758AAD0EDDB044FC67C5BC7EC987BF3F71 (AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4 * __this, const RuntimeMethod* method)
  1080. {
  1081. static bool s_Il2CppMethodInitialized;
  1082. if (!s_Il2CppMethodInitialized)
  1083. {
  1084. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
  1085. s_Il2CppMethodInitialized = true;
  1086. }
  1087. {
  1088. IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
  1089. Object__ctor_m4DCF5CDB32C2C69290894101A81F473865169279(__this, /*hidden argument*/NULL);
  1090. return;
  1091. }
  1092. }
  1093. // UnityEngine.AssetBundleCreateRequest UnityEngine.AssetBundle::LoadFromMemoryAsync_Internal(System.Byte[],System.UInt32)
  1094. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A * AssetBundle_LoadFromMemoryAsync_Internal_mECB031130E58D553BC2B24B5AA3EEDBDF310C6C1 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___binary0, uint32_t ___crc1, const RuntimeMethod* method)
  1095. {
  1096. typedef AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A * (*AssetBundle_LoadFromMemoryAsync_Internal_mECB031130E58D553BC2B24B5AA3EEDBDF310C6C1_ftn) (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, uint32_t);
  1097. static AssetBundle_LoadFromMemoryAsync_Internal_mECB031130E58D553BC2B24B5AA3EEDBDF310C6C1_ftn _il2cpp_icall_func;
  1098. if (!_il2cpp_icall_func)
  1099. _il2cpp_icall_func = (AssetBundle_LoadFromMemoryAsync_Internal_mECB031130E58D553BC2B24B5AA3EEDBDF310C6C1_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.AssetBundle::LoadFromMemoryAsync_Internal(System.Byte[],System.UInt32)");
  1100. AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A * icallRetVal = _il2cpp_icall_func(___binary0, ___crc1);
  1101. return icallRetVal;
  1102. }
  1103. // UnityEngine.AssetBundleCreateRequest UnityEngine.AssetBundle::LoadFromMemoryAsync(System.Byte[])
  1104. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A * AssetBundle_LoadFromMemoryAsync_mEE3736BFD45B04566FF671CB2BF71C09F569EE20 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___binary0, const RuntimeMethod* method)
  1105. {
  1106. AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A * V_0 = NULL;
  1107. {
  1108. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___binary0;
  1109. AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A * L_1;
  1110. L_1 = AssetBundle_LoadFromMemoryAsync_Internal_mECB031130E58D553BC2B24B5AA3EEDBDF310C6C1(L_0, 0, /*hidden argument*/NULL);
  1111. V_0 = L_1;
  1112. goto IL_000b;
  1113. }
  1114. IL_000b:
  1115. {
  1116. AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A * L_2 = V_0;
  1117. return L_2;
  1118. }
  1119. }
  1120. // UnityEngine.AssetBundleRequest UnityEngine.AssetBundle::LoadAssetAsync(System.String,System.Type)
  1121. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A * AssetBundle_LoadAssetAsync_m63C7C5654FA8D0824DC920A1B1530C37CCB3DF6E (AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4 * __this, String_t* ___name0, Type_t * ___type1, const RuntimeMethod* method)
  1122. {
  1123. bool V_0 = false;
  1124. bool V_1 = false;
  1125. bool V_2 = false;
  1126. AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A * V_3 = NULL;
  1127. {
  1128. String_t* L_0 = ___name0;
  1129. V_0 = (bool)((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
  1130. bool L_1 = V_0;
  1131. if (!L_1)
  1132. {
  1133. goto IL_0015;
  1134. }
  1135. }
  1136. {
  1137. NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 * L_2 = (NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724_il2cpp_TypeInfo_var)));
  1138. NullReferenceException__ctor_mF1733893E10358B400E817297D686A48AB3FB7B3(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral51AFAC88FE0F5AA20A5F618F48C4CEAB7CC3DB34)), /*hidden argument*/NULL);
  1139. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AssetBundle_LoadAssetAsync_m63C7C5654FA8D0824DC920A1B1530C37CCB3DF6E_RuntimeMethod_var)));
  1140. }
  1141. IL_0015:
  1142. {
  1143. String_t* L_3 = ___name0;
  1144. NullCheck(L_3);
  1145. int32_t L_4;
  1146. L_4 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_3, /*hidden argument*/NULL);
  1147. V_1 = (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
  1148. bool L_5 = V_1;
  1149. if (!L_5)
  1150. {
  1151. goto IL_002e;
  1152. }
  1153. }
  1154. {
  1155. ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
  1156. ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral358518C7B9669F4CD21363772C3317136923413A)), /*hidden argument*/NULL);
  1157. IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AssetBundle_LoadAssetAsync_m63C7C5654FA8D0824DC920A1B1530C37CCB3DF6E_RuntimeMethod_var)));
  1158. }
  1159. IL_002e:
  1160. {
  1161. Type_t * L_7 = ___type1;
  1162. V_2 = (bool)((((RuntimeObject*)(Type_t *)L_7) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
  1163. bool L_8 = V_2;
  1164. if (!L_8)
  1165. {
  1166. goto IL_0042;
  1167. }
  1168. }
  1169. {
  1170. NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 * L_9 = (NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724_il2cpp_TypeInfo_var)));
  1171. NullReferenceException__ctor_mF1733893E10358B400E817297D686A48AB3FB7B3(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral820724398B4A28E6B958D19B3FC28BB8BF2787D3)), /*hidden argument*/NULL);
  1172. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AssetBundle_LoadAssetAsync_m63C7C5654FA8D0824DC920A1B1530C37CCB3DF6E_RuntimeMethod_var)));
  1173. }
  1174. IL_0042:
  1175. {
  1176. String_t* L_10 = ___name0;
  1177. Type_t * L_11 = ___type1;
  1178. AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A * L_12;
  1179. L_12 = AssetBundle_LoadAssetAsync_Internal_m89D45EFB48D3C4CF7E481EF41F7ACF24500E7019(__this, L_10, L_11, /*hidden argument*/NULL);
  1180. V_3 = L_12;
  1181. goto IL_004d;
  1182. }
  1183. IL_004d:
  1184. {
  1185. AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A * L_13 = V_3;
  1186. return L_13;
  1187. }
  1188. }
  1189. // UnityEngine.AssetBundleRequest UnityEngine.AssetBundle::LoadAssetAsync_Internal(System.String,System.Type)
  1190. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A * AssetBundle_LoadAssetAsync_Internal_m89D45EFB48D3C4CF7E481EF41F7ACF24500E7019 (AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4 * __this, String_t* ___name0, Type_t * ___type1, const RuntimeMethod* method)
  1191. {
  1192. typedef AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A * (*AssetBundle_LoadAssetAsync_Internal_m89D45EFB48D3C4CF7E481EF41F7ACF24500E7019_ftn) (AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4 *, String_t*, Type_t *);
  1193. static AssetBundle_LoadAssetAsync_Internal_m89D45EFB48D3C4CF7E481EF41F7ACF24500E7019_ftn _il2cpp_icall_func;
  1194. if (!_il2cpp_icall_func)
  1195. _il2cpp_icall_func = (AssetBundle_LoadAssetAsync_Internal_m89D45EFB48D3C4CF7E481EF41F7ACF24500E7019_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.AssetBundle::LoadAssetAsync_Internal(System.String,System.Type)");
  1196. AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A * icallRetVal = _il2cpp_icall_func(__this, ___name0, ___type1);
  1197. return icallRetVal;
  1198. }
  1199. // System.Void UnityEngine.AssetBundle::Unload(System.Boolean)
  1200. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssetBundle_Unload_m0DEBACB284F6CECA8DF21486D1BBE1189F6A5D66 (AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4 * __this, bool ___unloadAllLoadedObjects0, const RuntimeMethod* method)
  1201. {
  1202. typedef void (*AssetBundle_Unload_m0DEBACB284F6CECA8DF21486D1BBE1189F6A5D66_ftn) (AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4 *, bool);
  1203. static AssetBundle_Unload_m0DEBACB284F6CECA8DF21486D1BBE1189F6A5D66_ftn _il2cpp_icall_func;
  1204. if (!_il2cpp_icall_func)
  1205. _il2cpp_icall_func = (AssetBundle_Unload_m0DEBACB284F6CECA8DF21486D1BBE1189F6A5D66_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.AssetBundle::Unload(System.Boolean)");
  1206. _il2cpp_icall_func(__this, ___unloadAllLoadedObjects0);
  1207. }
  1208. #ifdef __clang__
  1209. #pragma clang diagnostic pop
  1210. #endif
  1211. #ifdef __clang__
  1212. #pragma clang diagnostic push
  1213. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1214. #pragma clang diagnostic ignored "-Wunused-variable"
  1215. #endif
  1216. // Conversion methods for marshalling of: UnityEngine.AssetBundleCreateRequest
  1217. IL2CPP_EXTERN_C void AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A_marshal_pinvoke(const AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A& unmarshaled, AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A_marshaled_pinvoke& marshaled)
  1218. {
  1219. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  1220. marshaled.___m_completeCallback_1 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_m_completeCallback_1()));
  1221. }
  1222. IL2CPP_EXTERN_C void AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A_marshal_pinvoke_back(const AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A_marshaled_pinvoke& marshaled, AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A& unmarshaled)
  1223. {
  1224. static bool s_Il2CppMethodInitialized;
  1225. if (!s_Il2CppMethodInitialized)
  1226. {
  1227. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31_il2cpp_TypeInfo_var);
  1228. s_Il2CppMethodInitialized = true;
  1229. }
  1230. intptr_t unmarshaled_m_Ptr_temp_0;
  1231. memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
  1232. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  1233. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  1234. unmarshaled.set_m_completeCallback_1(il2cpp_codegen_marshal_function_ptr_to_delegate<Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31>(marshaled.___m_completeCallback_1, Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31_il2cpp_TypeInfo_var));
  1235. }
  1236. // Conversion method for clean up from marshalling of: UnityEngine.AssetBundleCreateRequest
  1237. IL2CPP_EXTERN_C void AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A_marshal_pinvoke_cleanup(AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A_marshaled_pinvoke& marshaled)
  1238. {
  1239. }
  1240. // Conversion methods for marshalling of: UnityEngine.AssetBundleCreateRequest
  1241. IL2CPP_EXTERN_C void AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A_marshal_com(const AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A& unmarshaled, AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A_marshaled_com& marshaled)
  1242. {
  1243. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  1244. marshaled.___m_completeCallback_1 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_m_completeCallback_1()));
  1245. }
  1246. IL2CPP_EXTERN_C void AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A_marshal_com_back(const AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A_marshaled_com& marshaled, AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A& unmarshaled)
  1247. {
  1248. static bool s_Il2CppMethodInitialized;
  1249. if (!s_Il2CppMethodInitialized)
  1250. {
  1251. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31_il2cpp_TypeInfo_var);
  1252. s_Il2CppMethodInitialized = true;
  1253. }
  1254. intptr_t unmarshaled_m_Ptr_temp_0;
  1255. memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
  1256. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  1257. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  1258. unmarshaled.set_m_completeCallback_1(il2cpp_codegen_marshal_function_ptr_to_delegate<Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31>(marshaled.___m_completeCallback_1, Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31_il2cpp_TypeInfo_var));
  1259. }
  1260. // Conversion method for clean up from marshalling of: UnityEngine.AssetBundleCreateRequest
  1261. IL2CPP_EXTERN_C void AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A_marshal_com_cleanup(AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A_marshaled_com& marshaled)
  1262. {
  1263. }
  1264. // UnityEngine.AssetBundle UnityEngine.AssetBundleCreateRequest::get_assetBundle()
  1265. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4 * AssetBundleCreateRequest_get_assetBundle_m608C1516A7DC8E4B1F9D63EDCF6EE8D6C2CFF013 (AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A * __this, const RuntimeMethod* method)
  1266. {
  1267. typedef AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4 * (*AssetBundleCreateRequest_get_assetBundle_m608C1516A7DC8E4B1F9D63EDCF6EE8D6C2CFF013_ftn) (AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A *);
  1268. static AssetBundleCreateRequest_get_assetBundle_m608C1516A7DC8E4B1F9D63EDCF6EE8D6C2CFF013_ftn _il2cpp_icall_func;
  1269. if (!_il2cpp_icall_func)
  1270. _il2cpp_icall_func = (AssetBundleCreateRequest_get_assetBundle_m608C1516A7DC8E4B1F9D63EDCF6EE8D6C2CFF013_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.AssetBundleCreateRequest::get_assetBundle()");
  1271. AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4 * icallRetVal = _il2cpp_icall_func(__this);
  1272. return icallRetVal;
  1273. }
  1274. // System.Void UnityEngine.AssetBundleCreateRequest::.ctor()
  1275. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssetBundleCreateRequest__ctor_m7B04FFC9566D1B0F820DDE9844BA2822A74881B6 (AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A * __this, const RuntimeMethod* method)
  1276. {
  1277. {
  1278. AsyncOperation__ctor_mFC0E13622A23CD19A631B9ABBA506683B71A2E4A(__this, /*hidden argument*/NULL);
  1279. return;
  1280. }
  1281. }
  1282. #ifdef __clang__
  1283. #pragma clang diagnostic pop
  1284. #endif
  1285. #ifdef __clang__
  1286. #pragma clang diagnostic push
  1287. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1288. #pragma clang diagnostic ignored "-Wunused-variable"
  1289. #endif
  1290. // Conversion methods for marshalling of: UnityEngine.AssetBundleRecompressOperation
  1291. IL2CPP_EXTERN_C void AssetBundleRecompressOperation_t960AA4671D6EB0A10A041FA29B8C2A7D70C07D31_marshal_pinvoke(const AssetBundleRecompressOperation_t960AA4671D6EB0A10A041FA29B8C2A7D70C07D31& unmarshaled, AssetBundleRecompressOperation_t960AA4671D6EB0A10A041FA29B8C2A7D70C07D31_marshaled_pinvoke& marshaled)
  1292. {
  1293. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  1294. marshaled.___m_completeCallback_1 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_m_completeCallback_1()));
  1295. }
  1296. IL2CPP_EXTERN_C void AssetBundleRecompressOperation_t960AA4671D6EB0A10A041FA29B8C2A7D70C07D31_marshal_pinvoke_back(const AssetBundleRecompressOperation_t960AA4671D6EB0A10A041FA29B8C2A7D70C07D31_marshaled_pinvoke& marshaled, AssetBundleRecompressOperation_t960AA4671D6EB0A10A041FA29B8C2A7D70C07D31& unmarshaled)
  1297. {
  1298. static bool s_Il2CppMethodInitialized;
  1299. if (!s_Il2CppMethodInitialized)
  1300. {
  1301. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31_il2cpp_TypeInfo_var);
  1302. s_Il2CppMethodInitialized = true;
  1303. }
  1304. intptr_t unmarshaled_m_Ptr_temp_0;
  1305. memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
  1306. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  1307. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  1308. unmarshaled.set_m_completeCallback_1(il2cpp_codegen_marshal_function_ptr_to_delegate<Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31>(marshaled.___m_completeCallback_1, Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31_il2cpp_TypeInfo_var));
  1309. }
  1310. // Conversion method for clean up from marshalling of: UnityEngine.AssetBundleRecompressOperation
  1311. IL2CPP_EXTERN_C void AssetBundleRecompressOperation_t960AA4671D6EB0A10A041FA29B8C2A7D70C07D31_marshal_pinvoke_cleanup(AssetBundleRecompressOperation_t960AA4671D6EB0A10A041FA29B8C2A7D70C07D31_marshaled_pinvoke& marshaled)
  1312. {
  1313. }
  1314. // Conversion methods for marshalling of: UnityEngine.AssetBundleRecompressOperation
  1315. IL2CPP_EXTERN_C void AssetBundleRecompressOperation_t960AA4671D6EB0A10A041FA29B8C2A7D70C07D31_marshal_com(const AssetBundleRecompressOperation_t960AA4671D6EB0A10A041FA29B8C2A7D70C07D31& unmarshaled, AssetBundleRecompressOperation_t960AA4671D6EB0A10A041FA29B8C2A7D70C07D31_marshaled_com& marshaled)
  1316. {
  1317. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  1318. marshaled.___m_completeCallback_1 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_m_completeCallback_1()));
  1319. }
  1320. IL2CPP_EXTERN_C void AssetBundleRecompressOperation_t960AA4671D6EB0A10A041FA29B8C2A7D70C07D31_marshal_com_back(const AssetBundleRecompressOperation_t960AA4671D6EB0A10A041FA29B8C2A7D70C07D31_marshaled_com& marshaled, AssetBundleRecompressOperation_t960AA4671D6EB0A10A041FA29B8C2A7D70C07D31& unmarshaled)
  1321. {
  1322. static bool s_Il2CppMethodInitialized;
  1323. if (!s_Il2CppMethodInitialized)
  1324. {
  1325. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31_il2cpp_TypeInfo_var);
  1326. s_Il2CppMethodInitialized = true;
  1327. }
  1328. intptr_t unmarshaled_m_Ptr_temp_0;
  1329. memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
  1330. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  1331. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  1332. unmarshaled.set_m_completeCallback_1(il2cpp_codegen_marshal_function_ptr_to_delegate<Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31>(marshaled.___m_completeCallback_1, Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31_il2cpp_TypeInfo_var));
  1333. }
  1334. // Conversion method for clean up from marshalling of: UnityEngine.AssetBundleRecompressOperation
  1335. IL2CPP_EXTERN_C void AssetBundleRecompressOperation_t960AA4671D6EB0A10A041FA29B8C2A7D70C07D31_marshal_com_cleanup(AssetBundleRecompressOperation_t960AA4671D6EB0A10A041FA29B8C2A7D70C07D31_marshaled_com& marshaled)
  1336. {
  1337. }
  1338. #ifdef __clang__
  1339. #pragma clang diagnostic pop
  1340. #endif
  1341. #ifdef __clang__
  1342. #pragma clang diagnostic push
  1343. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1344. #pragma clang diagnostic ignored "-Wunused-variable"
  1345. #endif
  1346. // Conversion methods for marshalling of: UnityEngine.AssetBundleRequest
  1347. IL2CPP_EXTERN_C void AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A_marshal_pinvoke(const AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A& unmarshaled, AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A_marshaled_pinvoke& marshaled)
  1348. {
  1349. Exception_t* ___m_Type_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Type' of type 'AssetBundleRequest': Reference type field marshaling is not supported.");
  1350. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Type_3Exception, NULL);
  1351. }
  1352. IL2CPP_EXTERN_C void AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A_marshal_pinvoke_back(const AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A_marshaled_pinvoke& marshaled, AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A& unmarshaled)
  1353. {
  1354. Exception_t* ___m_Type_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Type' of type 'AssetBundleRequest': Reference type field marshaling is not supported.");
  1355. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Type_3Exception, NULL);
  1356. }
  1357. // Conversion method for clean up from marshalling of: UnityEngine.AssetBundleRequest
  1358. IL2CPP_EXTERN_C void AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A_marshal_pinvoke_cleanup(AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A_marshaled_pinvoke& marshaled)
  1359. {
  1360. }
  1361. // Conversion methods for marshalling of: UnityEngine.AssetBundleRequest
  1362. IL2CPP_EXTERN_C void AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A_marshal_com(const AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A& unmarshaled, AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A_marshaled_com& marshaled)
  1363. {
  1364. Exception_t* ___m_Type_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Type' of type 'AssetBundleRequest': Reference type field marshaling is not supported.");
  1365. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Type_3Exception, NULL);
  1366. }
  1367. IL2CPP_EXTERN_C void AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A_marshal_com_back(const AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A_marshaled_com& marshaled, AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A& unmarshaled)
  1368. {
  1369. Exception_t* ___m_Type_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Type' of type 'AssetBundleRequest': Reference type field marshaling is not supported.");
  1370. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Type_3Exception, NULL);
  1371. }
  1372. // Conversion method for clean up from marshalling of: UnityEngine.AssetBundleRequest
  1373. IL2CPP_EXTERN_C void AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A_marshal_com_cleanup(AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A_marshaled_com& marshaled)
  1374. {
  1375. }
  1376. // UnityEngine.Object UnityEngine.AssetBundleRequest::GetResult()
  1377. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * AssetBundleRequest_GetResult_m792F2C703230D18A0B6B18C86636961125B1B9A2 (AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A * __this, const RuntimeMethod* method)
  1378. {
  1379. typedef Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * (*AssetBundleRequest_GetResult_m792F2C703230D18A0B6B18C86636961125B1B9A2_ftn) (AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A *);
  1380. static AssetBundleRequest_GetResult_m792F2C703230D18A0B6B18C86636961125B1B9A2_ftn _il2cpp_icall_func;
  1381. if (!_il2cpp_icall_func)
  1382. _il2cpp_icall_func = (AssetBundleRequest_GetResult_m792F2C703230D18A0B6B18C86636961125B1B9A2_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.AssetBundleRequest::GetResult()");
  1383. Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * icallRetVal = _il2cpp_icall_func(__this);
  1384. return icallRetVal;
  1385. }
  1386. // UnityEngine.Object UnityEngine.AssetBundleRequest::get_asset()
  1387. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * AssetBundleRequest_get_asset_mB0A96FBC026D143638E467DEB37228ACD55F1813 (AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A * __this, const RuntimeMethod* method)
  1388. {
  1389. Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * V_0 = NULL;
  1390. {
  1391. Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * L_0;
  1392. L_0 = VirtualFuncInvoker0< Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * >::Invoke(4 /* UnityEngine.Object UnityEngine.ResourceRequest::GetResult() */, __this);
  1393. V_0 = L_0;
  1394. goto IL_000a;
  1395. }
  1396. IL_000a:
  1397. {
  1398. Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * L_1 = V_0;
  1399. return L_1;
  1400. }
  1401. }
  1402. // System.Void UnityEngine.AssetBundleRequest::.ctor()
  1403. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssetBundleRequest__ctor_mD09AF030644EF7F3386ABB3B5C593F61ADE25017 (AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A * __this, const RuntimeMethod* method)
  1404. {
  1405. {
  1406. ResourceRequest__ctor_m3E6B88D53CD7B4275A16194A6D94264BFE79D039(__this, /*hidden argument*/NULL);
  1407. return;
  1408. }
  1409. }
  1410. #ifdef __clang__
  1411. #pragma clang diagnostic pop
  1412. #endif
  1413. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline (String_t* __this, const RuntimeMethod* method)
  1414. {
  1415. {
  1416. int32_t L_0 = __this->get_m_stringLength_0();
  1417. return L_0;
  1418. }
  1419. }