Bulk_UnityEngine.SharedInternalsModule_0.cpp 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833
  1. #include "il2cpp-config.h"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <cstring>
  8. #include <string.h>
  9. #include <stdio.h>
  10. #include <cmath>
  11. #include <limits>
  12. #include <assert.h>
  13. #include <stdint.h>
  14. #include "il2cpp-class-internals.h"
  15. #include "codegen/il2cpp-codegen.h"
  16. #include "il2cpp-object-internals.h"
  17. // UnityEngine.Bindings.FreeFunctionAttribute
  18. struct FreeFunctionAttribute_t2020741617;
  19. // UnityEngine.Bindings.NativeMethodAttribute
  20. struct NativeMethodAttribute_t4187428193;
  21. // System.String
  22. struct String_t;
  23. // UnityEngine.Bindings.NativeConditionalAttribute
  24. struct NativeConditionalAttribute_t2439539374;
  25. // System.Attribute
  26. struct Attribute_t861562559;
  27. // UnityEngine.Bindings.NativeHeaderAttribute
  28. struct NativeHeaderAttribute_t5261382;
  29. // System.ArgumentNullException
  30. struct ArgumentNullException_t1615371798;
  31. // System.ArgumentException
  32. struct ArgumentException_t132251570;
  33. // UnityEngine.Bindings.NativeNameAttribute
  34. struct NativeNameAttribute_t3268151526;
  35. // UnityEngine.Bindings.NativePropertyAttribute
  36. struct NativePropertyAttribute_t1305929258;
  37. // UnityEngine.Bindings.NativeThrowsAttribute
  38. struct NativeThrowsAttribute_t1697526064;
  39. // UnityEngine.Bindings.NativeTypeAttribute
  40. struct NativeTypeAttribute_t2250406315;
  41. // UnityEngine.Bindings.StaticAccessorAttribute
  42. struct StaticAccessorAttribute_t2432663902;
  43. // UnityEngine.Bindings.ThreadSafeAttribute
  44. struct ThreadSafeAttribute_t3376653515;
  45. // UnityEngine.Bindings.UnmarshalledAttribute
  46. struct UnmarshalledAttribute_t1517743549;
  47. // UnityEngine.Scripting.GeneratedByOldBindingsGeneratorAttribute
  48. struct GeneratedByOldBindingsGeneratorAttribute_t433318409;
  49. // UnityEngine.Scripting.RequiredByNativeCodeAttribute
  50. struct RequiredByNativeCodeAttribute_t4130846357;
  51. // UnityEngine.Scripting.UsedByNativeCodeAttribute
  52. struct UsedByNativeCodeAttribute_t1703770351;
  53. // UnityEngine.ThreadAndSerializationSafeAttribute
  54. struct ThreadAndSerializationSafeAttribute_t363116225;
  55. // System.Object[]
  56. struct ObjectU5BU5D_t2843939325;
  57. // UnityEngine.WritableAttribute
  58. struct WritableAttribute_t812406054;
  59. // System.IntPtr[]
  60. struct IntPtrU5BU5D_t4013366056;
  61. // System.Collections.IDictionary
  62. struct IDictionary_t1363984059;
  63. // System.Char[]
  64. struct CharU5BU5D_t3528271667;
  65. extern RuntimeClass* ArgumentNullException_t1615371798_il2cpp_TypeInfo_var;
  66. extern RuntimeClass* String_t_il2cpp_TypeInfo_var;
  67. extern RuntimeClass* ArgumentException_t132251570_il2cpp_TypeInfo_var;
  68. extern const RuntimeMethod* NativeHeaderAttribute__ctor_m457462113_RuntimeMethod_var;
  69. extern String_t* _stringLiteral3529812190;
  70. extern String_t* _stringLiteral757602046;
  71. extern String_t* _stringLiteral2581250844;
  72. extern const uint32_t NativeHeaderAttribute__ctor_m457462113_MetadataUsageId;
  73. extern const RuntimeMethod* NativeMethodAttribute__ctor_m2941746701_RuntimeMethod_var;
  74. extern String_t* _stringLiteral62725243;
  75. extern String_t* _stringLiteral648666413;
  76. extern const uint32_t NativeMethodAttribute__ctor_m2941746701_MetadataUsageId;
  77. extern const RuntimeMethod* NativeNameAttribute__ctor_m3296876808_RuntimeMethod_var;
  78. extern const uint32_t NativeNameAttribute__ctor_m3296876808_MetadataUsageId;
  79. extern const RuntimeMethod* NativeTypeAttribute__ctor_m133676646_RuntimeMethod_var;
  80. extern const uint32_t NativeTypeAttribute__ctor_m133676646_MetadataUsageId;
  81. extern const uint32_t UnityString_Format_m261690510_MetadataUsageId;
  82. struct ObjectU5BU5D_t2843939325;
  83. #ifndef RUNTIMEOBJECT_H
  84. #define RUNTIMEOBJECT_H
  85. #ifdef __clang__
  86. #pragma clang diagnostic push
  87. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  88. #pragma clang diagnostic ignored "-Wunused-variable"
  89. #endif
  90. // System.Object
  91. #ifdef __clang__
  92. #pragma clang diagnostic pop
  93. #endif
  94. #endif // RUNTIMEOBJECT_H
  95. #ifndef U3CMODULEU3E_T692745531_H
  96. #define U3CMODULEU3E_T692745531_H
  97. #ifdef __clang__
  98. #pragma clang diagnostic push
  99. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  100. #pragma clang diagnostic ignored "-Wunused-variable"
  101. #endif
  102. // <Module>
  103. struct U3CModuleU3E_t692745531
  104. {
  105. public:
  106. public:
  107. };
  108. #ifdef __clang__
  109. #pragma clang diagnostic pop
  110. #endif
  111. #endif // U3CMODULEU3E_T692745531_H
  112. #ifndef ATTRIBUTE_T861562559_H
  113. #define ATTRIBUTE_T861562559_H
  114. #ifdef __clang__
  115. #pragma clang diagnostic push
  116. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  117. #pragma clang diagnostic ignored "-Wunused-variable"
  118. #endif
  119. // System.Attribute
  120. struct Attribute_t861562559 : public RuntimeObject
  121. {
  122. public:
  123. public:
  124. };
  125. #ifdef __clang__
  126. #pragma clang diagnostic pop
  127. #endif
  128. #endif // ATTRIBUTE_T861562559_H
  129. #ifndef EXCEPTION_T_H
  130. #define EXCEPTION_T_H
  131. #ifdef __clang__
  132. #pragma clang diagnostic push
  133. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  134. #pragma clang diagnostic ignored "-Wunused-variable"
  135. #endif
  136. // System.Exception
  137. struct Exception_t : public RuntimeObject
  138. {
  139. public:
  140. // System.IntPtr[] System.Exception::trace_ips
  141. IntPtrU5BU5D_t4013366056* ___trace_ips_0;
  142. // System.Exception System.Exception::inner_exception
  143. Exception_t * ___inner_exception_1;
  144. // System.String System.Exception::message
  145. String_t* ___message_2;
  146. // System.String System.Exception::help_link
  147. String_t* ___help_link_3;
  148. // System.String System.Exception::class_name
  149. String_t* ___class_name_4;
  150. // System.String System.Exception::stack_trace
  151. String_t* ___stack_trace_5;
  152. // System.String System.Exception::_remoteStackTraceString
  153. String_t* ____remoteStackTraceString_6;
  154. // System.Int32 System.Exception::remote_stack_index
  155. int32_t ___remote_stack_index_7;
  156. // System.Int32 System.Exception::hresult
  157. int32_t ___hresult_8;
  158. // System.String System.Exception::source
  159. String_t* ___source_9;
  160. // System.Collections.IDictionary System.Exception::_data
  161. RuntimeObject* ____data_10;
  162. public:
  163. inline static int32_t get_offset_of_trace_ips_0() { return static_cast<int32_t>(offsetof(Exception_t, ___trace_ips_0)); }
  164. inline IntPtrU5BU5D_t4013366056* get_trace_ips_0() const { return ___trace_ips_0; }
  165. inline IntPtrU5BU5D_t4013366056** get_address_of_trace_ips_0() { return &___trace_ips_0; }
  166. inline void set_trace_ips_0(IntPtrU5BU5D_t4013366056* value)
  167. {
  168. ___trace_ips_0 = value;
  169. Il2CppCodeGenWriteBarrier((&___trace_ips_0), value);
  170. }
  171. inline static int32_t get_offset_of_inner_exception_1() { return static_cast<int32_t>(offsetof(Exception_t, ___inner_exception_1)); }
  172. inline Exception_t * get_inner_exception_1() const { return ___inner_exception_1; }
  173. inline Exception_t ** get_address_of_inner_exception_1() { return &___inner_exception_1; }
  174. inline void set_inner_exception_1(Exception_t * value)
  175. {
  176. ___inner_exception_1 = value;
  177. Il2CppCodeGenWriteBarrier((&___inner_exception_1), value);
  178. }
  179. inline static int32_t get_offset_of_message_2() { return static_cast<int32_t>(offsetof(Exception_t, ___message_2)); }
  180. inline String_t* get_message_2() const { return ___message_2; }
  181. inline String_t** get_address_of_message_2() { return &___message_2; }
  182. inline void set_message_2(String_t* value)
  183. {
  184. ___message_2 = value;
  185. Il2CppCodeGenWriteBarrier((&___message_2), value);
  186. }
  187. inline static int32_t get_offset_of_help_link_3() { return static_cast<int32_t>(offsetof(Exception_t, ___help_link_3)); }
  188. inline String_t* get_help_link_3() const { return ___help_link_3; }
  189. inline String_t** get_address_of_help_link_3() { return &___help_link_3; }
  190. inline void set_help_link_3(String_t* value)
  191. {
  192. ___help_link_3 = value;
  193. Il2CppCodeGenWriteBarrier((&___help_link_3), value);
  194. }
  195. inline static int32_t get_offset_of_class_name_4() { return static_cast<int32_t>(offsetof(Exception_t, ___class_name_4)); }
  196. inline String_t* get_class_name_4() const { return ___class_name_4; }
  197. inline String_t** get_address_of_class_name_4() { return &___class_name_4; }
  198. inline void set_class_name_4(String_t* value)
  199. {
  200. ___class_name_4 = value;
  201. Il2CppCodeGenWriteBarrier((&___class_name_4), value);
  202. }
  203. inline static int32_t get_offset_of_stack_trace_5() { return static_cast<int32_t>(offsetof(Exception_t, ___stack_trace_5)); }
  204. inline String_t* get_stack_trace_5() const { return ___stack_trace_5; }
  205. inline String_t** get_address_of_stack_trace_5() { return &___stack_trace_5; }
  206. inline void set_stack_trace_5(String_t* value)
  207. {
  208. ___stack_trace_5 = value;
  209. Il2CppCodeGenWriteBarrier((&___stack_trace_5), value);
  210. }
  211. inline static int32_t get_offset_of__remoteStackTraceString_6() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_6)); }
  212. inline String_t* get__remoteStackTraceString_6() const { return ____remoteStackTraceString_6; }
  213. inline String_t** get_address_of__remoteStackTraceString_6() { return &____remoteStackTraceString_6; }
  214. inline void set__remoteStackTraceString_6(String_t* value)
  215. {
  216. ____remoteStackTraceString_6 = value;
  217. Il2CppCodeGenWriteBarrier((&____remoteStackTraceString_6), value);
  218. }
  219. inline static int32_t get_offset_of_remote_stack_index_7() { return static_cast<int32_t>(offsetof(Exception_t, ___remote_stack_index_7)); }
  220. inline int32_t get_remote_stack_index_7() const { return ___remote_stack_index_7; }
  221. inline int32_t* get_address_of_remote_stack_index_7() { return &___remote_stack_index_7; }
  222. inline void set_remote_stack_index_7(int32_t value)
  223. {
  224. ___remote_stack_index_7 = value;
  225. }
  226. inline static int32_t get_offset_of_hresult_8() { return static_cast<int32_t>(offsetof(Exception_t, ___hresult_8)); }
  227. inline int32_t get_hresult_8() const { return ___hresult_8; }
  228. inline int32_t* get_address_of_hresult_8() { return &___hresult_8; }
  229. inline void set_hresult_8(int32_t value)
  230. {
  231. ___hresult_8 = value;
  232. }
  233. inline static int32_t get_offset_of_source_9() { return static_cast<int32_t>(offsetof(Exception_t, ___source_9)); }
  234. inline String_t* get_source_9() const { return ___source_9; }
  235. inline String_t** get_address_of_source_9() { return &___source_9; }
  236. inline void set_source_9(String_t* value)
  237. {
  238. ___source_9 = value;
  239. Il2CppCodeGenWriteBarrier((&___source_9), value);
  240. }
  241. inline static int32_t get_offset_of__data_10() { return static_cast<int32_t>(offsetof(Exception_t, ____data_10)); }
  242. inline RuntimeObject* get__data_10() const { return ____data_10; }
  243. inline RuntimeObject** get_address_of__data_10() { return &____data_10; }
  244. inline void set__data_10(RuntimeObject* value)
  245. {
  246. ____data_10 = value;
  247. Il2CppCodeGenWriteBarrier((&____data_10), value);
  248. }
  249. };
  250. #ifdef __clang__
  251. #pragma clang diagnostic pop
  252. #endif
  253. #endif // EXCEPTION_T_H
  254. #ifndef UNITYSTRING_T1423233093_H
  255. #define UNITYSTRING_T1423233093_H
  256. #ifdef __clang__
  257. #pragma clang diagnostic push
  258. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  259. #pragma clang diagnostic ignored "-Wunused-variable"
  260. #endif
  261. // UnityEngine.UnityString
  262. struct UnityString_t1423233093 : public RuntimeObject
  263. {
  264. public:
  265. public:
  266. };
  267. #ifdef __clang__
  268. #pragma clang diagnostic pop
  269. #endif
  270. #endif // UNITYSTRING_T1423233093_H
  271. struct Il2CppArrayBounds;
  272. #ifndef RUNTIMEARRAY_H
  273. #define RUNTIMEARRAY_H
  274. #ifdef __clang__
  275. #pragma clang diagnostic push
  276. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  277. #pragma clang diagnostic ignored "-Wunused-variable"
  278. #endif
  279. // System.Array
  280. #ifdef __clang__
  281. #pragma clang diagnostic pop
  282. #endif
  283. #endif // RUNTIMEARRAY_H
  284. #ifndef VALUETYPE_T3640485471_H
  285. #define VALUETYPE_T3640485471_H
  286. #ifdef __clang__
  287. #pragma clang diagnostic push
  288. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  289. #pragma clang diagnostic ignored "-Wunused-variable"
  290. #endif
  291. // System.ValueType
  292. struct ValueType_t3640485471 : public RuntimeObject
  293. {
  294. public:
  295. public:
  296. };
  297. #ifdef __clang__
  298. #pragma clang diagnostic pop
  299. #endif
  300. // Native definition for P/Invoke marshalling of System.ValueType
  301. struct ValueType_t3640485471_marshaled_pinvoke
  302. {
  303. };
  304. // Native definition for COM marshalling of System.ValueType
  305. struct ValueType_t3640485471_marshaled_com
  306. {
  307. };
  308. #endif // VALUETYPE_T3640485471_H
  309. #ifndef STRING_T_H
  310. #define STRING_T_H
  311. #ifdef __clang__
  312. #pragma clang diagnostic push
  313. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  314. #pragma clang diagnostic ignored "-Wunused-variable"
  315. #endif
  316. // System.String
  317. struct String_t : public RuntimeObject
  318. {
  319. public:
  320. // System.Int32 System.String::length
  321. int32_t ___length_0;
  322. // System.Char System.String::start_char
  323. Il2CppChar ___start_char_1;
  324. public:
  325. inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(String_t, ___length_0)); }
  326. inline int32_t get_length_0() const { return ___length_0; }
  327. inline int32_t* get_address_of_length_0() { return &___length_0; }
  328. inline void set_length_0(int32_t value)
  329. {
  330. ___length_0 = value;
  331. }
  332. inline static int32_t get_offset_of_start_char_1() { return static_cast<int32_t>(offsetof(String_t, ___start_char_1)); }
  333. inline Il2CppChar get_start_char_1() const { return ___start_char_1; }
  334. inline Il2CppChar* get_address_of_start_char_1() { return &___start_char_1; }
  335. inline void set_start_char_1(Il2CppChar value)
  336. {
  337. ___start_char_1 = value;
  338. }
  339. };
  340. struct String_t_StaticFields
  341. {
  342. public:
  343. // System.String System.String::Empty
  344. String_t* ___Empty_2;
  345. // System.Char[] System.String::WhiteChars
  346. CharU5BU5D_t3528271667* ___WhiteChars_3;
  347. public:
  348. inline static int32_t get_offset_of_Empty_2() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_2)); }
  349. inline String_t* get_Empty_2() const { return ___Empty_2; }
  350. inline String_t** get_address_of_Empty_2() { return &___Empty_2; }
  351. inline void set_Empty_2(String_t* value)
  352. {
  353. ___Empty_2 = value;
  354. Il2CppCodeGenWriteBarrier((&___Empty_2), value);
  355. }
  356. inline static int32_t get_offset_of_WhiteChars_3() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___WhiteChars_3)); }
  357. inline CharU5BU5D_t3528271667* get_WhiteChars_3() const { return ___WhiteChars_3; }
  358. inline CharU5BU5D_t3528271667** get_address_of_WhiteChars_3() { return &___WhiteChars_3; }
  359. inline void set_WhiteChars_3(CharU5BU5D_t3528271667* value)
  360. {
  361. ___WhiteChars_3 = value;
  362. Il2CppCodeGenWriteBarrier((&___WhiteChars_3), value);
  363. }
  364. };
  365. #ifdef __clang__
  366. #pragma clang diagnostic pop
  367. #endif
  368. #endif // STRING_T_H
  369. #ifndef NATIVETHROWSATTRIBUTE_T1697526064_H
  370. #define NATIVETHROWSATTRIBUTE_T1697526064_H
  371. #ifdef __clang__
  372. #pragma clang diagnostic push
  373. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  374. #pragma clang diagnostic ignored "-Wunused-variable"
  375. #endif
  376. // UnityEngine.Bindings.NativeThrowsAttribute
  377. struct NativeThrowsAttribute_t1697526064 : public Attribute_t861562559
  378. {
  379. public:
  380. // System.Boolean UnityEngine.Bindings.NativeThrowsAttribute::<ThrowsException>k__BackingField
  381. bool ___U3CThrowsExceptionU3Ek__BackingField_0;
  382. public:
  383. inline static int32_t get_offset_of_U3CThrowsExceptionU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(NativeThrowsAttribute_t1697526064, ___U3CThrowsExceptionU3Ek__BackingField_0)); }
  384. inline bool get_U3CThrowsExceptionU3Ek__BackingField_0() const { return ___U3CThrowsExceptionU3Ek__BackingField_0; }
  385. inline bool* get_address_of_U3CThrowsExceptionU3Ek__BackingField_0() { return &___U3CThrowsExceptionU3Ek__BackingField_0; }
  386. inline void set_U3CThrowsExceptionU3Ek__BackingField_0(bool value)
  387. {
  388. ___U3CThrowsExceptionU3Ek__BackingField_0 = value;
  389. }
  390. };
  391. #ifdef __clang__
  392. #pragma clang diagnostic pop
  393. #endif
  394. #endif // NATIVETHROWSATTRIBUTE_T1697526064_H
  395. #ifndef UNMARSHALLEDATTRIBUTE_T1517743549_H
  396. #define UNMARSHALLEDATTRIBUTE_T1517743549_H
  397. #ifdef __clang__
  398. #pragma clang diagnostic push
  399. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  400. #pragma clang diagnostic ignored "-Wunused-variable"
  401. #endif
  402. // UnityEngine.Bindings.UnmarshalledAttribute
  403. struct UnmarshalledAttribute_t1517743549 : public Attribute_t861562559
  404. {
  405. public:
  406. public:
  407. };
  408. #ifdef __clang__
  409. #pragma clang diagnostic pop
  410. #endif
  411. #endif // UNMARSHALLEDATTRIBUTE_T1517743549_H
  412. #ifndef GENERATEDBYOLDBINDINGSGENERATORATTRIBUTE_T433318409_H
  413. #define GENERATEDBYOLDBINDINGSGENERATORATTRIBUTE_T433318409_H
  414. #ifdef __clang__
  415. #pragma clang diagnostic push
  416. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  417. #pragma clang diagnostic ignored "-Wunused-variable"
  418. #endif
  419. // UnityEngine.Scripting.GeneratedByOldBindingsGeneratorAttribute
  420. struct GeneratedByOldBindingsGeneratorAttribute_t433318409 : public Attribute_t861562559
  421. {
  422. public:
  423. public:
  424. };
  425. #ifdef __clang__
  426. #pragma clang diagnostic pop
  427. #endif
  428. #endif // GENERATEDBYOLDBINDINGSGENERATORATTRIBUTE_T433318409_H
  429. #ifndef REQUIREDBYNATIVECODEATTRIBUTE_T4130846357_H
  430. #define REQUIREDBYNATIVECODEATTRIBUTE_T4130846357_H
  431. #ifdef __clang__
  432. #pragma clang diagnostic push
  433. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  434. #pragma clang diagnostic ignored "-Wunused-variable"
  435. #endif
  436. // UnityEngine.Scripting.RequiredByNativeCodeAttribute
  437. struct RequiredByNativeCodeAttribute_t4130846357 : public Attribute_t861562559
  438. {
  439. public:
  440. public:
  441. };
  442. #ifdef __clang__
  443. #pragma clang diagnostic pop
  444. #endif
  445. #endif // REQUIREDBYNATIVECODEATTRIBUTE_T4130846357_H
  446. #ifndef USEDBYNATIVECODEATTRIBUTE_T1703770351_H
  447. #define USEDBYNATIVECODEATTRIBUTE_T1703770351_H
  448. #ifdef __clang__
  449. #pragma clang diagnostic push
  450. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  451. #pragma clang diagnostic ignored "-Wunused-variable"
  452. #endif
  453. // UnityEngine.Scripting.UsedByNativeCodeAttribute
  454. struct UsedByNativeCodeAttribute_t1703770351 : public Attribute_t861562559
  455. {
  456. public:
  457. public:
  458. };
  459. #ifdef __clang__
  460. #pragma clang diagnostic pop
  461. #endif
  462. #endif // USEDBYNATIVECODEATTRIBUTE_T1703770351_H
  463. #ifndef THREADANDSERIALIZATIONSAFEATTRIBUTE_T363116225_H
  464. #define THREADANDSERIALIZATIONSAFEATTRIBUTE_T363116225_H
  465. #ifdef __clang__
  466. #pragma clang diagnostic push
  467. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  468. #pragma clang diagnostic ignored "-Wunused-variable"
  469. #endif
  470. // UnityEngine.ThreadAndSerializationSafeAttribute
  471. struct ThreadAndSerializationSafeAttribute_t363116225 : public Attribute_t861562559
  472. {
  473. public:
  474. public:
  475. };
  476. #ifdef __clang__
  477. #pragma clang diagnostic pop
  478. #endif
  479. #endif // THREADANDSERIALIZATIONSAFEATTRIBUTE_T363116225_H
  480. #ifndef VOID_T1185182177_H
  481. #define VOID_T1185182177_H
  482. #ifdef __clang__
  483. #pragma clang diagnostic push
  484. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  485. #pragma clang diagnostic ignored "-Wunused-variable"
  486. #endif
  487. // System.Void
  488. struct Void_t1185182177
  489. {
  490. public:
  491. public:
  492. };
  493. #ifdef __clang__
  494. #pragma clang diagnostic pop
  495. #endif
  496. #endif // VOID_T1185182177_H
  497. #ifndef WRITABLEATTRIBUTE_T812406054_H
  498. #define WRITABLEATTRIBUTE_T812406054_H
  499. #ifdef __clang__
  500. #pragma clang diagnostic push
  501. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  502. #pragma clang diagnostic ignored "-Wunused-variable"
  503. #endif
  504. // UnityEngine.WritableAttribute
  505. struct WritableAttribute_t812406054 : public Attribute_t861562559
  506. {
  507. public:
  508. public:
  509. };
  510. #ifdef __clang__
  511. #pragma clang diagnostic pop
  512. #endif
  513. #endif // WRITABLEATTRIBUTE_T812406054_H
  514. #ifndef ENUM_T4135868527_H
  515. #define ENUM_T4135868527_H
  516. #ifdef __clang__
  517. #pragma clang diagnostic push
  518. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  519. #pragma clang diagnostic ignored "-Wunused-variable"
  520. #endif
  521. // System.Enum
  522. struct Enum_t4135868527 : public ValueType_t3640485471
  523. {
  524. public:
  525. public:
  526. };
  527. struct Enum_t4135868527_StaticFields
  528. {
  529. public:
  530. // System.Char[] System.Enum::split_char
  531. CharU5BU5D_t3528271667* ___split_char_0;
  532. public:
  533. inline static int32_t get_offset_of_split_char_0() { return static_cast<int32_t>(offsetof(Enum_t4135868527_StaticFields, ___split_char_0)); }
  534. inline CharU5BU5D_t3528271667* get_split_char_0() const { return ___split_char_0; }
  535. inline CharU5BU5D_t3528271667** get_address_of_split_char_0() { return &___split_char_0; }
  536. inline void set_split_char_0(CharU5BU5D_t3528271667* value)
  537. {
  538. ___split_char_0 = value;
  539. Il2CppCodeGenWriteBarrier((&___split_char_0), value);
  540. }
  541. };
  542. #ifdef __clang__
  543. #pragma clang diagnostic pop
  544. #endif
  545. // Native definition for P/Invoke marshalling of System.Enum
  546. struct Enum_t4135868527_marshaled_pinvoke
  547. {
  548. };
  549. // Native definition for COM marshalling of System.Enum
  550. struct Enum_t4135868527_marshaled_com
  551. {
  552. };
  553. #endif // ENUM_T4135868527_H
  554. #ifndef SYSTEMEXCEPTION_T176217640_H
  555. #define SYSTEMEXCEPTION_T176217640_H
  556. #ifdef __clang__
  557. #pragma clang diagnostic push
  558. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  559. #pragma clang diagnostic ignored "-Wunused-variable"
  560. #endif
  561. // System.SystemException
  562. struct SystemException_t176217640 : public Exception_t
  563. {
  564. public:
  565. public:
  566. };
  567. #ifdef __clang__
  568. #pragma clang diagnostic pop
  569. #endif
  570. #endif // SYSTEMEXCEPTION_T176217640_H
  571. #ifndef NATIVEMETHODATTRIBUTE_T4187428193_H
  572. #define NATIVEMETHODATTRIBUTE_T4187428193_H
  573. #ifdef __clang__
  574. #pragma clang diagnostic push
  575. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  576. #pragma clang diagnostic ignored "-Wunused-variable"
  577. #endif
  578. // UnityEngine.Bindings.NativeMethodAttribute
  579. struct NativeMethodAttribute_t4187428193 : public Attribute_t861562559
  580. {
  581. public:
  582. // System.String UnityEngine.Bindings.NativeMethodAttribute::<Name>k__BackingField
  583. String_t* ___U3CNameU3Ek__BackingField_0;
  584. // System.Boolean UnityEngine.Bindings.NativeMethodAttribute::<IsThreadSafe>k__BackingField
  585. bool ___U3CIsThreadSafeU3Ek__BackingField_1;
  586. // System.Boolean UnityEngine.Bindings.NativeMethodAttribute::<IsFreeFunction>k__BackingField
  587. bool ___U3CIsFreeFunctionU3Ek__BackingField_2;
  588. // System.Boolean UnityEngine.Bindings.NativeMethodAttribute::<HasExplicitThis>k__BackingField
  589. bool ___U3CHasExplicitThisU3Ek__BackingField_3;
  590. public:
  591. inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(NativeMethodAttribute_t4187428193, ___U3CNameU3Ek__BackingField_0)); }
  592. inline String_t* get_U3CNameU3Ek__BackingField_0() const { return ___U3CNameU3Ek__BackingField_0; }
  593. inline String_t** get_address_of_U3CNameU3Ek__BackingField_0() { return &___U3CNameU3Ek__BackingField_0; }
  594. inline void set_U3CNameU3Ek__BackingField_0(String_t* value)
  595. {
  596. ___U3CNameU3Ek__BackingField_0 = value;
  597. Il2CppCodeGenWriteBarrier((&___U3CNameU3Ek__BackingField_0), value);
  598. }
  599. inline static int32_t get_offset_of_U3CIsThreadSafeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(NativeMethodAttribute_t4187428193, ___U3CIsThreadSafeU3Ek__BackingField_1)); }
  600. inline bool get_U3CIsThreadSafeU3Ek__BackingField_1() const { return ___U3CIsThreadSafeU3Ek__BackingField_1; }
  601. inline bool* get_address_of_U3CIsThreadSafeU3Ek__BackingField_1() { return &___U3CIsThreadSafeU3Ek__BackingField_1; }
  602. inline void set_U3CIsThreadSafeU3Ek__BackingField_1(bool value)
  603. {
  604. ___U3CIsThreadSafeU3Ek__BackingField_1 = value;
  605. }
  606. inline static int32_t get_offset_of_U3CIsFreeFunctionU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(NativeMethodAttribute_t4187428193, ___U3CIsFreeFunctionU3Ek__BackingField_2)); }
  607. inline bool get_U3CIsFreeFunctionU3Ek__BackingField_2() const { return ___U3CIsFreeFunctionU3Ek__BackingField_2; }
  608. inline bool* get_address_of_U3CIsFreeFunctionU3Ek__BackingField_2() { return &___U3CIsFreeFunctionU3Ek__BackingField_2; }
  609. inline void set_U3CIsFreeFunctionU3Ek__BackingField_2(bool value)
  610. {
  611. ___U3CIsFreeFunctionU3Ek__BackingField_2 = value;
  612. }
  613. inline static int32_t get_offset_of_U3CHasExplicitThisU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(NativeMethodAttribute_t4187428193, ___U3CHasExplicitThisU3Ek__BackingField_3)); }
  614. inline bool get_U3CHasExplicitThisU3Ek__BackingField_3() const { return ___U3CHasExplicitThisU3Ek__BackingField_3; }
  615. inline bool* get_address_of_U3CHasExplicitThisU3Ek__BackingField_3() { return &___U3CHasExplicitThisU3Ek__BackingField_3; }
  616. inline void set_U3CHasExplicitThisU3Ek__BackingField_3(bool value)
  617. {
  618. ___U3CHasExplicitThisU3Ek__BackingField_3 = value;
  619. }
  620. };
  621. #ifdef __clang__
  622. #pragma clang diagnostic pop
  623. #endif
  624. #endif // NATIVEMETHODATTRIBUTE_T4187428193_H
  625. #ifndef NATIVECONDITIONALATTRIBUTE_T2439539374_H
  626. #define NATIVECONDITIONALATTRIBUTE_T2439539374_H
  627. #ifdef __clang__
  628. #pragma clang diagnostic push
  629. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  630. #pragma clang diagnostic ignored "-Wunused-variable"
  631. #endif
  632. // UnityEngine.Bindings.NativeConditionalAttribute
  633. struct NativeConditionalAttribute_t2439539374 : public Attribute_t861562559
  634. {
  635. public:
  636. // System.String UnityEngine.Bindings.NativeConditionalAttribute::<Condition>k__BackingField
  637. String_t* ___U3CConditionU3Ek__BackingField_0;
  638. // System.Boolean UnityEngine.Bindings.NativeConditionalAttribute::<Enabled>k__BackingField
  639. bool ___U3CEnabledU3Ek__BackingField_1;
  640. public:
  641. inline static int32_t get_offset_of_U3CConditionU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(NativeConditionalAttribute_t2439539374, ___U3CConditionU3Ek__BackingField_0)); }
  642. inline String_t* get_U3CConditionU3Ek__BackingField_0() const { return ___U3CConditionU3Ek__BackingField_0; }
  643. inline String_t** get_address_of_U3CConditionU3Ek__BackingField_0() { return &___U3CConditionU3Ek__BackingField_0; }
  644. inline void set_U3CConditionU3Ek__BackingField_0(String_t* value)
  645. {
  646. ___U3CConditionU3Ek__BackingField_0 = value;
  647. Il2CppCodeGenWriteBarrier((&___U3CConditionU3Ek__BackingField_0), value);
  648. }
  649. inline static int32_t get_offset_of_U3CEnabledU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(NativeConditionalAttribute_t2439539374, ___U3CEnabledU3Ek__BackingField_1)); }
  650. inline bool get_U3CEnabledU3Ek__BackingField_1() const { return ___U3CEnabledU3Ek__BackingField_1; }
  651. inline bool* get_address_of_U3CEnabledU3Ek__BackingField_1() { return &___U3CEnabledU3Ek__BackingField_1; }
  652. inline void set_U3CEnabledU3Ek__BackingField_1(bool value)
  653. {
  654. ___U3CEnabledU3Ek__BackingField_1 = value;
  655. }
  656. };
  657. #ifdef __clang__
  658. #pragma clang diagnostic pop
  659. #endif
  660. #endif // NATIVECONDITIONALATTRIBUTE_T2439539374_H
  661. #ifndef NATIVEHEADERATTRIBUTE_T5261382_H
  662. #define NATIVEHEADERATTRIBUTE_T5261382_H
  663. #ifdef __clang__
  664. #pragma clang diagnostic push
  665. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  666. #pragma clang diagnostic ignored "-Wunused-variable"
  667. #endif
  668. // UnityEngine.Bindings.NativeHeaderAttribute
  669. struct NativeHeaderAttribute_t5261382 : public Attribute_t861562559
  670. {
  671. public:
  672. // System.String UnityEngine.Bindings.NativeHeaderAttribute::<Header>k__BackingField
  673. String_t* ___U3CHeaderU3Ek__BackingField_0;
  674. public:
  675. inline static int32_t get_offset_of_U3CHeaderU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(NativeHeaderAttribute_t5261382, ___U3CHeaderU3Ek__BackingField_0)); }
  676. inline String_t* get_U3CHeaderU3Ek__BackingField_0() const { return ___U3CHeaderU3Ek__BackingField_0; }
  677. inline String_t** get_address_of_U3CHeaderU3Ek__BackingField_0() { return &___U3CHeaderU3Ek__BackingField_0; }
  678. inline void set_U3CHeaderU3Ek__BackingField_0(String_t* value)
  679. {
  680. ___U3CHeaderU3Ek__BackingField_0 = value;
  681. Il2CppCodeGenWriteBarrier((&___U3CHeaderU3Ek__BackingField_0), value);
  682. }
  683. };
  684. #ifdef __clang__
  685. #pragma clang diagnostic pop
  686. #endif
  687. #endif // NATIVEHEADERATTRIBUTE_T5261382_H
  688. #ifndef NATIVENAMEATTRIBUTE_T3268151526_H
  689. #define NATIVENAMEATTRIBUTE_T3268151526_H
  690. #ifdef __clang__
  691. #pragma clang diagnostic push
  692. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  693. #pragma clang diagnostic ignored "-Wunused-variable"
  694. #endif
  695. // UnityEngine.Bindings.NativeNameAttribute
  696. struct NativeNameAttribute_t3268151526 : public Attribute_t861562559
  697. {
  698. public:
  699. // System.String UnityEngine.Bindings.NativeNameAttribute::<Name>k__BackingField
  700. String_t* ___U3CNameU3Ek__BackingField_0;
  701. public:
  702. inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(NativeNameAttribute_t3268151526, ___U3CNameU3Ek__BackingField_0)); }
  703. inline String_t* get_U3CNameU3Ek__BackingField_0() const { return ___U3CNameU3Ek__BackingField_0; }
  704. inline String_t** get_address_of_U3CNameU3Ek__BackingField_0() { return &___U3CNameU3Ek__BackingField_0; }
  705. inline void set_U3CNameU3Ek__BackingField_0(String_t* value)
  706. {
  707. ___U3CNameU3Ek__BackingField_0 = value;
  708. Il2CppCodeGenWriteBarrier((&___U3CNameU3Ek__BackingField_0), value);
  709. }
  710. };
  711. #ifdef __clang__
  712. #pragma clang diagnostic pop
  713. #endif
  714. #endif // NATIVENAMEATTRIBUTE_T3268151526_H
  715. #ifndef BOOLEAN_T97287965_H
  716. #define BOOLEAN_T97287965_H
  717. #ifdef __clang__
  718. #pragma clang diagnostic push
  719. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  720. #pragma clang diagnostic ignored "-Wunused-variable"
  721. #endif
  722. // System.Boolean
  723. struct Boolean_t97287965
  724. {
  725. public:
  726. // System.Boolean System.Boolean::m_value
  727. bool ___m_value_2;
  728. public:
  729. inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Boolean_t97287965, ___m_value_2)); }
  730. inline bool get_m_value_2() const { return ___m_value_2; }
  731. inline bool* get_address_of_m_value_2() { return &___m_value_2; }
  732. inline void set_m_value_2(bool value)
  733. {
  734. ___m_value_2 = value;
  735. }
  736. };
  737. struct Boolean_t97287965_StaticFields
  738. {
  739. public:
  740. // System.String System.Boolean::FalseString
  741. String_t* ___FalseString_0;
  742. // System.String System.Boolean::TrueString
  743. String_t* ___TrueString_1;
  744. public:
  745. inline static int32_t get_offset_of_FalseString_0() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___FalseString_0)); }
  746. inline String_t* get_FalseString_0() const { return ___FalseString_0; }
  747. inline String_t** get_address_of_FalseString_0() { return &___FalseString_0; }
  748. inline void set_FalseString_0(String_t* value)
  749. {
  750. ___FalseString_0 = value;
  751. Il2CppCodeGenWriteBarrier((&___FalseString_0), value);
  752. }
  753. inline static int32_t get_offset_of_TrueString_1() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___TrueString_1)); }
  754. inline String_t* get_TrueString_1() const { return ___TrueString_1; }
  755. inline String_t** get_address_of_TrueString_1() { return &___TrueString_1; }
  756. inline void set_TrueString_1(String_t* value)
  757. {
  758. ___TrueString_1 = value;
  759. Il2CppCodeGenWriteBarrier((&___TrueString_1), value);
  760. }
  761. };
  762. #ifdef __clang__
  763. #pragma clang diagnostic pop
  764. #endif
  765. #endif // BOOLEAN_T97287965_H
  766. #ifndef STATICACCESSORTYPE_T186341701_H
  767. #define STATICACCESSORTYPE_T186341701_H
  768. #ifdef __clang__
  769. #pragma clang diagnostic push
  770. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  771. #pragma clang diagnostic ignored "-Wunused-variable"
  772. #endif
  773. // UnityEngine.Bindings.StaticAccessorType
  774. struct StaticAccessorType_t186341701
  775. {
  776. public:
  777. // System.Int32 UnityEngine.Bindings.StaticAccessorType::value__
  778. int32_t ___value___1;
  779. public:
  780. inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(StaticAccessorType_t186341701, ___value___1)); }
  781. inline int32_t get_value___1() const { return ___value___1; }
  782. inline int32_t* get_address_of_value___1() { return &___value___1; }
  783. inline void set_value___1(int32_t value)
  784. {
  785. ___value___1 = value;
  786. }
  787. };
  788. #ifdef __clang__
  789. #pragma clang diagnostic pop
  790. #endif
  791. #endif // STATICACCESSORTYPE_T186341701_H
  792. #ifndef CODEGENOPTIONS_T498890944_H
  793. #define CODEGENOPTIONS_T498890944_H
  794. #ifdef __clang__
  795. #pragma clang diagnostic push
  796. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  797. #pragma clang diagnostic ignored "-Wunused-variable"
  798. #endif
  799. // UnityEngine.Bindings.CodegenOptions
  800. struct CodegenOptions_t498890944
  801. {
  802. public:
  803. // System.Int32 UnityEngine.Bindings.CodegenOptions::value__
  804. int32_t ___value___1;
  805. public:
  806. inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(CodegenOptions_t498890944, ___value___1)); }
  807. inline int32_t get_value___1() const { return ___value___1; }
  808. inline int32_t* get_address_of_value___1() { return &___value___1; }
  809. inline void set_value___1(int32_t value)
  810. {
  811. ___value___1 = value;
  812. }
  813. };
  814. #ifdef __clang__
  815. #pragma clang diagnostic pop
  816. #endif
  817. #endif // CODEGENOPTIONS_T498890944_H
  818. #ifndef FREEFUNCTIONATTRIBUTE_T2020741617_H
  819. #define FREEFUNCTIONATTRIBUTE_T2020741617_H
  820. #ifdef __clang__
  821. #pragma clang diagnostic push
  822. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  823. #pragma clang diagnostic ignored "-Wunused-variable"
  824. #endif
  825. // UnityEngine.Bindings.FreeFunctionAttribute
  826. struct FreeFunctionAttribute_t2020741617 : public NativeMethodAttribute_t4187428193
  827. {
  828. public:
  829. public:
  830. };
  831. #ifdef __clang__
  832. #pragma clang diagnostic pop
  833. #endif
  834. #endif // FREEFUNCTIONATTRIBUTE_T2020741617_H
  835. #ifndef ARGUMENTEXCEPTION_T132251570_H
  836. #define ARGUMENTEXCEPTION_T132251570_H
  837. #ifdef __clang__
  838. #pragma clang diagnostic push
  839. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  840. #pragma clang diagnostic ignored "-Wunused-variable"
  841. #endif
  842. // System.ArgumentException
  843. struct ArgumentException_t132251570 : public SystemException_t176217640
  844. {
  845. public:
  846. // System.String System.ArgumentException::param_name
  847. String_t* ___param_name_12;
  848. public:
  849. inline static int32_t get_offset_of_param_name_12() { return static_cast<int32_t>(offsetof(ArgumentException_t132251570, ___param_name_12)); }
  850. inline String_t* get_param_name_12() const { return ___param_name_12; }
  851. inline String_t** get_address_of_param_name_12() { return &___param_name_12; }
  852. inline void set_param_name_12(String_t* value)
  853. {
  854. ___param_name_12 = value;
  855. Il2CppCodeGenWriteBarrier((&___param_name_12), value);
  856. }
  857. };
  858. #ifdef __clang__
  859. #pragma clang diagnostic pop
  860. #endif
  861. #endif // ARGUMENTEXCEPTION_T132251570_H
  862. #ifndef NATIVEPROPERTYATTRIBUTE_T1305929258_H
  863. #define NATIVEPROPERTYATTRIBUTE_T1305929258_H
  864. #ifdef __clang__
  865. #pragma clang diagnostic push
  866. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  867. #pragma clang diagnostic ignored "-Wunused-variable"
  868. #endif
  869. // UnityEngine.Bindings.NativePropertyAttribute
  870. struct NativePropertyAttribute_t1305929258 : public NativeMethodAttribute_t4187428193
  871. {
  872. public:
  873. public:
  874. };
  875. #ifdef __clang__
  876. #pragma clang diagnostic pop
  877. #endif
  878. #endif // NATIVEPROPERTYATTRIBUTE_T1305929258_H
  879. #ifndef THREADSAFEATTRIBUTE_T3376653515_H
  880. #define THREADSAFEATTRIBUTE_T3376653515_H
  881. #ifdef __clang__
  882. #pragma clang diagnostic push
  883. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  884. #pragma clang diagnostic ignored "-Wunused-variable"
  885. #endif
  886. // UnityEngine.Bindings.ThreadSafeAttribute
  887. struct ThreadSafeAttribute_t3376653515 : public NativeMethodAttribute_t4187428193
  888. {
  889. public:
  890. public:
  891. };
  892. #ifdef __clang__
  893. #pragma clang diagnostic pop
  894. #endif
  895. #endif // THREADSAFEATTRIBUTE_T3376653515_H
  896. #ifndef ARGUMENTNULLEXCEPTION_T1615371798_H
  897. #define ARGUMENTNULLEXCEPTION_T1615371798_H
  898. #ifdef __clang__
  899. #pragma clang diagnostic push
  900. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  901. #pragma clang diagnostic ignored "-Wunused-variable"
  902. #endif
  903. // System.ArgumentNullException
  904. struct ArgumentNullException_t1615371798 : public ArgumentException_t132251570
  905. {
  906. public:
  907. public:
  908. };
  909. #ifdef __clang__
  910. #pragma clang diagnostic pop
  911. #endif
  912. #endif // ARGUMENTNULLEXCEPTION_T1615371798_H
  913. #ifndef NATIVETYPEATTRIBUTE_T2250406315_H
  914. #define NATIVETYPEATTRIBUTE_T2250406315_H
  915. #ifdef __clang__
  916. #pragma clang diagnostic push
  917. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  918. #pragma clang diagnostic ignored "-Wunused-variable"
  919. #endif
  920. // UnityEngine.Bindings.NativeTypeAttribute
  921. struct NativeTypeAttribute_t2250406315 : public Attribute_t861562559
  922. {
  923. public:
  924. // System.String UnityEngine.Bindings.NativeTypeAttribute::<Header>k__BackingField
  925. String_t* ___U3CHeaderU3Ek__BackingField_0;
  926. // UnityEngine.Bindings.CodegenOptions UnityEngine.Bindings.NativeTypeAttribute::<CodegenOptions>k__BackingField
  927. int32_t ___U3CCodegenOptionsU3Ek__BackingField_1;
  928. public:
  929. inline static int32_t get_offset_of_U3CHeaderU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(NativeTypeAttribute_t2250406315, ___U3CHeaderU3Ek__BackingField_0)); }
  930. inline String_t* get_U3CHeaderU3Ek__BackingField_0() const { return ___U3CHeaderU3Ek__BackingField_0; }
  931. inline String_t** get_address_of_U3CHeaderU3Ek__BackingField_0() { return &___U3CHeaderU3Ek__BackingField_0; }
  932. inline void set_U3CHeaderU3Ek__BackingField_0(String_t* value)
  933. {
  934. ___U3CHeaderU3Ek__BackingField_0 = value;
  935. Il2CppCodeGenWriteBarrier((&___U3CHeaderU3Ek__BackingField_0), value);
  936. }
  937. inline static int32_t get_offset_of_U3CCodegenOptionsU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(NativeTypeAttribute_t2250406315, ___U3CCodegenOptionsU3Ek__BackingField_1)); }
  938. inline int32_t get_U3CCodegenOptionsU3Ek__BackingField_1() const { return ___U3CCodegenOptionsU3Ek__BackingField_1; }
  939. inline int32_t* get_address_of_U3CCodegenOptionsU3Ek__BackingField_1() { return &___U3CCodegenOptionsU3Ek__BackingField_1; }
  940. inline void set_U3CCodegenOptionsU3Ek__BackingField_1(int32_t value)
  941. {
  942. ___U3CCodegenOptionsU3Ek__BackingField_1 = value;
  943. }
  944. };
  945. #ifdef __clang__
  946. #pragma clang diagnostic pop
  947. #endif
  948. #endif // NATIVETYPEATTRIBUTE_T2250406315_H
  949. #ifndef STATICACCESSORATTRIBUTE_T2432663902_H
  950. #define STATICACCESSORATTRIBUTE_T2432663902_H
  951. #ifdef __clang__
  952. #pragma clang diagnostic push
  953. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  954. #pragma clang diagnostic ignored "-Wunused-variable"
  955. #endif
  956. // UnityEngine.Bindings.StaticAccessorAttribute
  957. struct StaticAccessorAttribute_t2432663902 : public Attribute_t861562559
  958. {
  959. public:
  960. // System.String UnityEngine.Bindings.StaticAccessorAttribute::<Name>k__BackingField
  961. String_t* ___U3CNameU3Ek__BackingField_0;
  962. // UnityEngine.Bindings.StaticAccessorType UnityEngine.Bindings.StaticAccessorAttribute::<Type>k__BackingField
  963. int32_t ___U3CTypeU3Ek__BackingField_1;
  964. public:
  965. inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(StaticAccessorAttribute_t2432663902, ___U3CNameU3Ek__BackingField_0)); }
  966. inline String_t* get_U3CNameU3Ek__BackingField_0() const { return ___U3CNameU3Ek__BackingField_0; }
  967. inline String_t** get_address_of_U3CNameU3Ek__BackingField_0() { return &___U3CNameU3Ek__BackingField_0; }
  968. inline void set_U3CNameU3Ek__BackingField_0(String_t* value)
  969. {
  970. ___U3CNameU3Ek__BackingField_0 = value;
  971. Il2CppCodeGenWriteBarrier((&___U3CNameU3Ek__BackingField_0), value);
  972. }
  973. inline static int32_t get_offset_of_U3CTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(StaticAccessorAttribute_t2432663902, ___U3CTypeU3Ek__BackingField_1)); }
  974. inline int32_t get_U3CTypeU3Ek__BackingField_1() const { return ___U3CTypeU3Ek__BackingField_1; }
  975. inline int32_t* get_address_of_U3CTypeU3Ek__BackingField_1() { return &___U3CTypeU3Ek__BackingField_1; }
  976. inline void set_U3CTypeU3Ek__BackingField_1(int32_t value)
  977. {
  978. ___U3CTypeU3Ek__BackingField_1 = value;
  979. }
  980. };
  981. #ifdef __clang__
  982. #pragma clang diagnostic pop
  983. #endif
  984. #endif // STATICACCESSORATTRIBUTE_T2432663902_H
  985. // System.Object[]
  986. struct ObjectU5BU5D_t2843939325 : public RuntimeArray
  987. {
  988. public:
  989. ALIGN_FIELD (8) RuntimeObject * m_Items[1];
  990. public:
  991. inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
  992. {
  993. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  994. return m_Items[index];
  995. }
  996. inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index)
  997. {
  998. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  999. return m_Items + index;
  1000. }
  1001. inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value)
  1002. {
  1003. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1004. m_Items[index] = value;
  1005. Il2CppCodeGenWriteBarrier(m_Items + index, value);
  1006. }
  1007. inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
  1008. {
  1009. return m_Items[index];
  1010. }
  1011. inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
  1012. {
  1013. return m_Items + index;
  1014. }
  1015. inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
  1016. {
  1017. m_Items[index] = value;
  1018. Il2CppCodeGenWriteBarrier(m_Items + index, value);
  1019. }
  1020. };
  1021. // System.Void UnityEngine.Bindings.NativeMethodAttribute::.ctor()
  1022. extern "C" IL2CPP_METHOD_ATTR void NativeMethodAttribute__ctor_m3134540192 (NativeMethodAttribute_t4187428193 * __this, const RuntimeMethod* method);
  1023. // System.Void UnityEngine.Bindings.NativeMethodAttribute::set_IsFreeFunction(System.Boolean)
  1024. extern "C" IL2CPP_METHOD_ATTR void NativeMethodAttribute_set_IsFreeFunction_m1931350581 (NativeMethodAttribute_t4187428193 * __this, bool ___value0, const RuntimeMethod* method);
  1025. // System.Void UnityEngine.Bindings.NativeMethodAttribute::.ctor(System.String,System.Boolean)
  1026. extern "C" IL2CPP_METHOD_ATTR void NativeMethodAttribute__ctor_m3056337369 (NativeMethodAttribute_t4187428193 * __this, String_t* ___name0, bool ___isFreeFunction1, const RuntimeMethod* method);
  1027. // System.Void System.Attribute::.ctor()
  1028. extern "C" IL2CPP_METHOD_ATTR void Attribute__ctor_m1529526131 (Attribute_t861562559 * __this, const RuntimeMethod* method);
  1029. // System.Void UnityEngine.Bindings.NativeConditionalAttribute::set_Condition(System.String)
  1030. extern "C" IL2CPP_METHOD_ATTR void NativeConditionalAttribute_set_Condition_m607771195 (NativeConditionalAttribute_t2439539374 * __this, String_t* ___value0, const RuntimeMethod* method);
  1031. // System.Void UnityEngine.Bindings.NativeConditionalAttribute::set_Enabled(System.Boolean)
  1032. extern "C" IL2CPP_METHOD_ATTR void NativeConditionalAttribute_set_Enabled_m2378894961 (NativeConditionalAttribute_t2439539374 * __this, bool ___value0, const RuntimeMethod* method);
  1033. // System.Void System.ArgumentNullException::.ctor(System.String)
  1034. extern "C" IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m1170824041 (ArgumentNullException_t1615371798 * __this, String_t* p0, const RuntimeMethod* method);
  1035. // System.Boolean System.String::op_Equality(System.String,System.String)
  1036. extern "C" IL2CPP_METHOD_ATTR bool String_op_Equality_m920492651 (RuntimeObject * __this /* static, unused */, String_t* p0, String_t* p1, const RuntimeMethod* method);
  1037. // System.Void System.ArgumentException::.ctor(System.String,System.String)
  1038. extern "C" IL2CPP_METHOD_ATTR void ArgumentException__ctor_m1216717135 (ArgumentException_t132251570 * __this, String_t* p0, String_t* p1, const RuntimeMethod* method);
  1039. // System.Void UnityEngine.Bindings.NativeHeaderAttribute::set_Header(System.String)
  1040. extern "C" IL2CPP_METHOD_ATTR void NativeHeaderAttribute_set_Header_m3310668383 (NativeHeaderAttribute_t5261382 * __this, String_t* ___value0, const RuntimeMethod* method);
  1041. // System.Void UnityEngine.Bindings.NativeMethodAttribute::set_Name(System.String)
  1042. extern "C" IL2CPP_METHOD_ATTR void NativeMethodAttribute_set_Name_m1946475768 (NativeMethodAttribute_t4187428193 * __this, String_t* ___value0, const RuntimeMethod* method);
  1043. // System.Void UnityEngine.Bindings.NativeMethodAttribute::.ctor(System.String)
  1044. extern "C" IL2CPP_METHOD_ATTR void NativeMethodAttribute__ctor_m2941746701 (NativeMethodAttribute_t4187428193 * __this, String_t* ___name0, const RuntimeMethod* method);
  1045. // System.Void UnityEngine.Bindings.NativeNameAttribute::set_Name(System.String)
  1046. extern "C" IL2CPP_METHOD_ATTR void NativeNameAttribute_set_Name_m3579254766 (NativeNameAttribute_t3268151526 * __this, String_t* ___value0, const RuntimeMethod* method);
  1047. // System.Void UnityEngine.Bindings.NativeThrowsAttribute::set_ThrowsException(System.Boolean)
  1048. extern "C" IL2CPP_METHOD_ATTR void NativeThrowsAttribute_set_ThrowsException_m4039166389 (NativeThrowsAttribute_t1697526064 * __this, bool ___value0, const RuntimeMethod* method);
  1049. // System.Void UnityEngine.Bindings.NativeTypeAttribute::set_CodegenOptions(UnityEngine.Bindings.CodegenOptions)
  1050. extern "C" IL2CPP_METHOD_ATTR void NativeTypeAttribute_set_CodegenOptions_m3839252515 (NativeTypeAttribute_t2250406315 * __this, int32_t ___value0, const RuntimeMethod* method);
  1051. // System.Void UnityEngine.Bindings.NativeTypeAttribute::set_Header(System.String)
  1052. extern "C" IL2CPP_METHOD_ATTR void NativeTypeAttribute_set_Header_m48420006 (NativeTypeAttribute_t2250406315 * __this, String_t* ___value0, const RuntimeMethod* method);
  1053. // System.Void UnityEngine.Bindings.StaticAccessorAttribute::set_Name(System.String)
  1054. extern "C" IL2CPP_METHOD_ATTR void StaticAccessorAttribute_set_Name_m2926172476 (StaticAccessorAttribute_t2432663902 * __this, String_t* ___value0, const RuntimeMethod* method);
  1055. // System.Void UnityEngine.Bindings.StaticAccessorAttribute::set_Type(UnityEngine.Bindings.StaticAccessorType)
  1056. extern "C" IL2CPP_METHOD_ATTR void StaticAccessorAttribute_set_Type_m2333258271 (StaticAccessorAttribute_t2432663902 * __this, int32_t ___value0, const RuntimeMethod* method);
  1057. // System.Void UnityEngine.Bindings.NativeMethodAttribute::set_IsThreadSafe(System.Boolean)
  1058. extern "C" IL2CPP_METHOD_ATTR void NativeMethodAttribute_set_IsThreadSafe_m2457033065 (NativeMethodAttribute_t4187428193 * __this, bool ___value0, const RuntimeMethod* method);
  1059. // System.String System.String::Format(System.String,System.Object[])
  1060. extern "C" IL2CPP_METHOD_ATTR String_t* String_Format_m630303134 (RuntimeObject * __this /* static, unused */, String_t* p0, ObjectU5BU5D_t2843939325* p1, const RuntimeMethod* method);
  1061. #ifdef __clang__
  1062. #pragma clang diagnostic push
  1063. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1064. #pragma clang diagnostic ignored "-Wunused-variable"
  1065. #endif
  1066. #ifdef __clang__
  1067. #pragma clang diagnostic pop
  1068. #endif
  1069. #ifdef __clang__
  1070. #pragma clang diagnostic push
  1071. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1072. #pragma clang diagnostic ignored "-Wunused-variable"
  1073. #endif
  1074. #ifdef __clang__
  1075. #pragma clang diagnostic pop
  1076. #endif
  1077. #ifdef __clang__
  1078. #pragma clang diagnostic push
  1079. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1080. #pragma clang diagnostic ignored "-Wunused-variable"
  1081. #endif
  1082. // System.Void UnityEngine.Bindings.FreeFunctionAttribute::.ctor()
  1083. extern "C" IL2CPP_METHOD_ATTR void FreeFunctionAttribute__ctor_m225850777 (FreeFunctionAttribute_t2020741617 * __this, const RuntimeMethod* method)
  1084. {
  1085. {
  1086. NativeMethodAttribute__ctor_m3134540192(__this, /*hidden argument*/NULL);
  1087. NativeMethodAttribute_set_IsFreeFunction_m1931350581(__this, (bool)1, /*hidden argument*/NULL);
  1088. return;
  1089. }
  1090. }
  1091. // System.Void UnityEngine.Bindings.FreeFunctionAttribute::.ctor(System.String)
  1092. extern "C" IL2CPP_METHOD_ATTR void FreeFunctionAttribute__ctor_m3967403258 (FreeFunctionAttribute_t2020741617 * __this, String_t* ___name0, const RuntimeMethod* method)
  1093. {
  1094. {
  1095. String_t* L_0 = ___name0;
  1096. NativeMethodAttribute__ctor_m3056337369(__this, L_0, (bool)1, /*hidden argument*/NULL);
  1097. return;
  1098. }
  1099. }
  1100. #ifdef __clang__
  1101. #pragma clang diagnostic pop
  1102. #endif
  1103. #ifdef __clang__
  1104. #pragma clang diagnostic push
  1105. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1106. #pragma clang diagnostic ignored "-Wunused-variable"
  1107. #endif
  1108. // System.Void UnityEngine.Bindings.NativeConditionalAttribute::.ctor(System.String)
  1109. extern "C" IL2CPP_METHOD_ATTR void NativeConditionalAttribute__ctor_m1745668596 (NativeConditionalAttribute_t2439539374 * __this, String_t* ___condition0, const RuntimeMethod* method)
  1110. {
  1111. {
  1112. Attribute__ctor_m1529526131(__this, /*hidden argument*/NULL);
  1113. String_t* L_0 = ___condition0;
  1114. NativeConditionalAttribute_set_Condition_m607771195(__this, L_0, /*hidden argument*/NULL);
  1115. NativeConditionalAttribute_set_Enabled_m2378894961(__this, (bool)1, /*hidden argument*/NULL);
  1116. return;
  1117. }
  1118. }
  1119. // System.Void UnityEngine.Bindings.NativeConditionalAttribute::set_Condition(System.String)
  1120. extern "C" IL2CPP_METHOD_ATTR void NativeConditionalAttribute_set_Condition_m607771195 (NativeConditionalAttribute_t2439539374 * __this, String_t* ___value0, const RuntimeMethod* method)
  1121. {
  1122. {
  1123. String_t* L_0 = ___value0;
  1124. __this->set_U3CConditionU3Ek__BackingField_0(L_0);
  1125. return;
  1126. }
  1127. }
  1128. // System.Void UnityEngine.Bindings.NativeConditionalAttribute::set_Enabled(System.Boolean)
  1129. extern "C" IL2CPP_METHOD_ATTR void NativeConditionalAttribute_set_Enabled_m2378894961 (NativeConditionalAttribute_t2439539374 * __this, bool ___value0, const RuntimeMethod* method)
  1130. {
  1131. {
  1132. bool L_0 = ___value0;
  1133. __this->set_U3CEnabledU3Ek__BackingField_1(L_0);
  1134. return;
  1135. }
  1136. }
  1137. #ifdef __clang__
  1138. #pragma clang diagnostic pop
  1139. #endif
  1140. #ifdef __clang__
  1141. #pragma clang diagnostic push
  1142. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1143. #pragma clang diagnostic ignored "-Wunused-variable"
  1144. #endif
  1145. // System.Void UnityEngine.Bindings.NativeHeaderAttribute::.ctor(System.String)
  1146. extern "C" IL2CPP_METHOD_ATTR void NativeHeaderAttribute__ctor_m457462113 (NativeHeaderAttribute_t5261382 * __this, String_t* ___header0, const RuntimeMethod* method)
  1147. {
  1148. static bool s_Il2CppMethodInitialized;
  1149. if (!s_Il2CppMethodInitialized)
  1150. {
  1151. il2cpp_codegen_initialize_method (NativeHeaderAttribute__ctor_m457462113_MetadataUsageId);
  1152. s_Il2CppMethodInitialized = true;
  1153. }
  1154. {
  1155. Attribute__ctor_m1529526131(__this, /*hidden argument*/NULL);
  1156. String_t* L_0 = ___header0;
  1157. if (L_0)
  1158. {
  1159. goto IL_0018;
  1160. }
  1161. }
  1162. {
  1163. ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
  1164. ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3529812190, /*hidden argument*/NULL);
  1165. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,NativeHeaderAttribute__ctor_m457462113_RuntimeMethod_var);
  1166. }
  1167. IL_0018:
  1168. {
  1169. String_t* L_2 = ___header0;
  1170. IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
  1171. bool L_3 = String_op_Equality_m920492651(NULL /*static, unused*/, L_2, _stringLiteral757602046, /*hidden argument*/NULL);
  1172. if (!L_3)
  1173. {
  1174. goto IL_0038;
  1175. }
  1176. }
  1177. {
  1178. ArgumentException_t132251570 * L_4 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
  1179. ArgumentException__ctor_m1216717135(L_4, _stringLiteral2581250844, _stringLiteral3529812190, /*hidden argument*/NULL);
  1180. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4,NativeHeaderAttribute__ctor_m457462113_RuntimeMethod_var);
  1181. }
  1182. IL_0038:
  1183. {
  1184. String_t* L_5 = ___header0;
  1185. NativeHeaderAttribute_set_Header_m3310668383(__this, L_5, /*hidden argument*/NULL);
  1186. return;
  1187. }
  1188. }
  1189. // System.Void UnityEngine.Bindings.NativeHeaderAttribute::set_Header(System.String)
  1190. extern "C" IL2CPP_METHOD_ATTR void NativeHeaderAttribute_set_Header_m3310668383 (NativeHeaderAttribute_t5261382 * __this, String_t* ___value0, const RuntimeMethod* method)
  1191. {
  1192. {
  1193. String_t* L_0 = ___value0;
  1194. __this->set_U3CHeaderU3Ek__BackingField_0(L_0);
  1195. return;
  1196. }
  1197. }
  1198. #ifdef __clang__
  1199. #pragma clang diagnostic pop
  1200. #endif
  1201. #ifdef __clang__
  1202. #pragma clang diagnostic push
  1203. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1204. #pragma clang diagnostic ignored "-Wunused-variable"
  1205. #endif
  1206. // System.Void UnityEngine.Bindings.NativeMethodAttribute::.ctor()
  1207. extern "C" IL2CPP_METHOD_ATTR void NativeMethodAttribute__ctor_m3134540192 (NativeMethodAttribute_t4187428193 * __this, const RuntimeMethod* method)
  1208. {
  1209. {
  1210. Attribute__ctor_m1529526131(__this, /*hidden argument*/NULL);
  1211. return;
  1212. }
  1213. }
  1214. // System.Void UnityEngine.Bindings.NativeMethodAttribute::.ctor(System.String)
  1215. extern "C" IL2CPP_METHOD_ATTR void NativeMethodAttribute__ctor_m2941746701 (NativeMethodAttribute_t4187428193 * __this, String_t* ___name0, const RuntimeMethod* method)
  1216. {
  1217. static bool s_Il2CppMethodInitialized;
  1218. if (!s_Il2CppMethodInitialized)
  1219. {
  1220. il2cpp_codegen_initialize_method (NativeMethodAttribute__ctor_m2941746701_MetadataUsageId);
  1221. s_Il2CppMethodInitialized = true;
  1222. }
  1223. {
  1224. Attribute__ctor_m1529526131(__this, /*hidden argument*/NULL);
  1225. String_t* L_0 = ___name0;
  1226. if (L_0)
  1227. {
  1228. goto IL_0018;
  1229. }
  1230. }
  1231. {
  1232. ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
  1233. ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral62725243, /*hidden argument*/NULL);
  1234. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,NativeMethodAttribute__ctor_m2941746701_RuntimeMethod_var);
  1235. }
  1236. IL_0018:
  1237. {
  1238. String_t* L_2 = ___name0;
  1239. IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
  1240. bool L_3 = String_op_Equality_m920492651(NULL /*static, unused*/, L_2, _stringLiteral757602046, /*hidden argument*/NULL);
  1241. if (!L_3)
  1242. {
  1243. goto IL_0038;
  1244. }
  1245. }
  1246. {
  1247. ArgumentException_t132251570 * L_4 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
  1248. ArgumentException__ctor_m1216717135(L_4, _stringLiteral648666413, _stringLiteral62725243, /*hidden argument*/NULL);
  1249. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4,NativeMethodAttribute__ctor_m2941746701_RuntimeMethod_var);
  1250. }
  1251. IL_0038:
  1252. {
  1253. String_t* L_5 = ___name0;
  1254. NativeMethodAttribute_set_Name_m1946475768(__this, L_5, /*hidden argument*/NULL);
  1255. return;
  1256. }
  1257. }
  1258. // System.Void UnityEngine.Bindings.NativeMethodAttribute::.ctor(System.String,System.Boolean)
  1259. extern "C" IL2CPP_METHOD_ATTR void NativeMethodAttribute__ctor_m3056337369 (NativeMethodAttribute_t4187428193 * __this, String_t* ___name0, bool ___isFreeFunction1, const RuntimeMethod* method)
  1260. {
  1261. {
  1262. String_t* L_0 = ___name0;
  1263. NativeMethodAttribute__ctor_m2941746701(__this, L_0, /*hidden argument*/NULL);
  1264. bool L_1 = ___isFreeFunction1;
  1265. NativeMethodAttribute_set_IsFreeFunction_m1931350581(__this, L_1, /*hidden argument*/NULL);
  1266. return;
  1267. }
  1268. }
  1269. // System.Void UnityEngine.Bindings.NativeMethodAttribute::set_Name(System.String)
  1270. extern "C" IL2CPP_METHOD_ATTR void NativeMethodAttribute_set_Name_m1946475768 (NativeMethodAttribute_t4187428193 * __this, String_t* ___value0, const RuntimeMethod* method)
  1271. {
  1272. {
  1273. String_t* L_0 = ___value0;
  1274. __this->set_U3CNameU3Ek__BackingField_0(L_0);
  1275. return;
  1276. }
  1277. }
  1278. // System.Void UnityEngine.Bindings.NativeMethodAttribute::set_IsThreadSafe(System.Boolean)
  1279. extern "C" IL2CPP_METHOD_ATTR void NativeMethodAttribute_set_IsThreadSafe_m2457033065 (NativeMethodAttribute_t4187428193 * __this, bool ___value0, const RuntimeMethod* method)
  1280. {
  1281. {
  1282. bool L_0 = ___value0;
  1283. __this->set_U3CIsThreadSafeU3Ek__BackingField_1(L_0);
  1284. return;
  1285. }
  1286. }
  1287. // System.Void UnityEngine.Bindings.NativeMethodAttribute::set_IsFreeFunction(System.Boolean)
  1288. extern "C" IL2CPP_METHOD_ATTR void NativeMethodAttribute_set_IsFreeFunction_m1931350581 (NativeMethodAttribute_t4187428193 * __this, bool ___value0, const RuntimeMethod* method)
  1289. {
  1290. {
  1291. bool L_0 = ___value0;
  1292. __this->set_U3CIsFreeFunctionU3Ek__BackingField_2(L_0);
  1293. return;
  1294. }
  1295. }
  1296. // System.Void UnityEngine.Bindings.NativeMethodAttribute::set_HasExplicitThis(System.Boolean)
  1297. extern "C" IL2CPP_METHOD_ATTR void NativeMethodAttribute_set_HasExplicitThis_m2961870915 (NativeMethodAttribute_t4187428193 * __this, bool ___value0, const RuntimeMethod* method)
  1298. {
  1299. {
  1300. bool L_0 = ___value0;
  1301. __this->set_U3CHasExplicitThisU3Ek__BackingField_3(L_0);
  1302. return;
  1303. }
  1304. }
  1305. #ifdef __clang__
  1306. #pragma clang diagnostic pop
  1307. #endif
  1308. #ifdef __clang__
  1309. #pragma clang diagnostic push
  1310. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1311. #pragma clang diagnostic ignored "-Wunused-variable"
  1312. #endif
  1313. // System.Void UnityEngine.Bindings.NativeNameAttribute::.ctor(System.String)
  1314. extern "C" IL2CPP_METHOD_ATTR void NativeNameAttribute__ctor_m3296876808 (NativeNameAttribute_t3268151526 * __this, String_t* ___name0, const RuntimeMethod* method)
  1315. {
  1316. static bool s_Il2CppMethodInitialized;
  1317. if (!s_Il2CppMethodInitialized)
  1318. {
  1319. il2cpp_codegen_initialize_method (NativeNameAttribute__ctor_m3296876808_MetadataUsageId);
  1320. s_Il2CppMethodInitialized = true;
  1321. }
  1322. {
  1323. Attribute__ctor_m1529526131(__this, /*hidden argument*/NULL);
  1324. String_t* L_0 = ___name0;
  1325. if (L_0)
  1326. {
  1327. goto IL_0018;
  1328. }
  1329. }
  1330. {
  1331. ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
  1332. ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral62725243, /*hidden argument*/NULL);
  1333. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,NativeNameAttribute__ctor_m3296876808_RuntimeMethod_var);
  1334. }
  1335. IL_0018:
  1336. {
  1337. String_t* L_2 = ___name0;
  1338. IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
  1339. bool L_3 = String_op_Equality_m920492651(NULL /*static, unused*/, L_2, _stringLiteral757602046, /*hidden argument*/NULL);
  1340. if (!L_3)
  1341. {
  1342. goto IL_0038;
  1343. }
  1344. }
  1345. {
  1346. ArgumentException_t132251570 * L_4 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
  1347. ArgumentException__ctor_m1216717135(L_4, _stringLiteral648666413, _stringLiteral62725243, /*hidden argument*/NULL);
  1348. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4,NativeNameAttribute__ctor_m3296876808_RuntimeMethod_var);
  1349. }
  1350. IL_0038:
  1351. {
  1352. String_t* L_5 = ___name0;
  1353. NativeNameAttribute_set_Name_m3579254766(__this, L_5, /*hidden argument*/NULL);
  1354. return;
  1355. }
  1356. }
  1357. // System.Void UnityEngine.Bindings.NativeNameAttribute::set_Name(System.String)
  1358. extern "C" IL2CPP_METHOD_ATTR void NativeNameAttribute_set_Name_m3579254766 (NativeNameAttribute_t3268151526 * __this, String_t* ___value0, const RuntimeMethod* method)
  1359. {
  1360. {
  1361. String_t* L_0 = ___value0;
  1362. __this->set_U3CNameU3Ek__BackingField_0(L_0);
  1363. return;
  1364. }
  1365. }
  1366. #ifdef __clang__
  1367. #pragma clang diagnostic pop
  1368. #endif
  1369. #ifdef __clang__
  1370. #pragma clang diagnostic push
  1371. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1372. #pragma clang diagnostic ignored "-Wunused-variable"
  1373. #endif
  1374. // System.Void UnityEngine.Bindings.NativePropertyAttribute::.ctor(System.String)
  1375. extern "C" IL2CPP_METHOD_ATTR void NativePropertyAttribute__ctor_m2033094153 (NativePropertyAttribute_t1305929258 * __this, String_t* ___name0, const RuntimeMethod* method)
  1376. {
  1377. {
  1378. String_t* L_0 = ___name0;
  1379. NativeMethodAttribute__ctor_m2941746701(__this, L_0, /*hidden argument*/NULL);
  1380. return;
  1381. }
  1382. }
  1383. #ifdef __clang__
  1384. #pragma clang diagnostic pop
  1385. #endif
  1386. #ifdef __clang__
  1387. #pragma clang diagnostic push
  1388. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1389. #pragma clang diagnostic ignored "-Wunused-variable"
  1390. #endif
  1391. // System.Void UnityEngine.Bindings.NativeThrowsAttribute::.ctor()
  1392. extern "C" IL2CPP_METHOD_ATTR void NativeThrowsAttribute__ctor_m3216633458 (NativeThrowsAttribute_t1697526064 * __this, const RuntimeMethod* method)
  1393. {
  1394. {
  1395. Attribute__ctor_m1529526131(__this, /*hidden argument*/NULL);
  1396. NativeThrowsAttribute_set_ThrowsException_m4039166389(__this, (bool)1, /*hidden argument*/NULL);
  1397. return;
  1398. }
  1399. }
  1400. // System.Void UnityEngine.Bindings.NativeThrowsAttribute::set_ThrowsException(System.Boolean)
  1401. extern "C" IL2CPP_METHOD_ATTR void NativeThrowsAttribute_set_ThrowsException_m4039166389 (NativeThrowsAttribute_t1697526064 * __this, bool ___value0, const RuntimeMethod* method)
  1402. {
  1403. {
  1404. bool L_0 = ___value0;
  1405. __this->set_U3CThrowsExceptionU3Ek__BackingField_0(L_0);
  1406. return;
  1407. }
  1408. }
  1409. #ifdef __clang__
  1410. #pragma clang diagnostic pop
  1411. #endif
  1412. #ifdef __clang__
  1413. #pragma clang diagnostic push
  1414. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1415. #pragma clang diagnostic ignored "-Wunused-variable"
  1416. #endif
  1417. // System.Void UnityEngine.Bindings.NativeTypeAttribute::.ctor()
  1418. extern "C" IL2CPP_METHOD_ATTR void NativeTypeAttribute__ctor_m2993484825 (NativeTypeAttribute_t2250406315 * __this, const RuntimeMethod* method)
  1419. {
  1420. {
  1421. Attribute__ctor_m1529526131(__this, /*hidden argument*/NULL);
  1422. NativeTypeAttribute_set_CodegenOptions_m3839252515(__this, 0, /*hidden argument*/NULL);
  1423. return;
  1424. }
  1425. }
  1426. // System.Void UnityEngine.Bindings.NativeTypeAttribute::.ctor(System.String)
  1427. extern "C" IL2CPP_METHOD_ATTR void NativeTypeAttribute__ctor_m133676646 (NativeTypeAttribute_t2250406315 * __this, String_t* ___header0, const RuntimeMethod* method)
  1428. {
  1429. static bool s_Il2CppMethodInitialized;
  1430. if (!s_Il2CppMethodInitialized)
  1431. {
  1432. il2cpp_codegen_initialize_method (NativeTypeAttribute__ctor_m133676646_MetadataUsageId);
  1433. s_Il2CppMethodInitialized = true;
  1434. }
  1435. {
  1436. Attribute__ctor_m1529526131(__this, /*hidden argument*/NULL);
  1437. String_t* L_0 = ___header0;
  1438. if (L_0)
  1439. {
  1440. goto IL_0018;
  1441. }
  1442. }
  1443. {
  1444. ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
  1445. ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3529812190, /*hidden argument*/NULL);
  1446. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,NativeTypeAttribute__ctor_m133676646_RuntimeMethod_var);
  1447. }
  1448. IL_0018:
  1449. {
  1450. String_t* L_2 = ___header0;
  1451. IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
  1452. bool L_3 = String_op_Equality_m920492651(NULL /*static, unused*/, L_2, _stringLiteral757602046, /*hidden argument*/NULL);
  1453. if (!L_3)
  1454. {
  1455. goto IL_0038;
  1456. }
  1457. }
  1458. {
  1459. ArgumentException_t132251570 * L_4 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
  1460. ArgumentException__ctor_m1216717135(L_4, _stringLiteral2581250844, _stringLiteral3529812190, /*hidden argument*/NULL);
  1461. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4,NativeTypeAttribute__ctor_m133676646_RuntimeMethod_var);
  1462. }
  1463. IL_0038:
  1464. {
  1465. NativeTypeAttribute_set_CodegenOptions_m3839252515(__this, 0, /*hidden argument*/NULL);
  1466. String_t* L_5 = ___header0;
  1467. NativeTypeAttribute_set_Header_m48420006(__this, L_5, /*hidden argument*/NULL);
  1468. return;
  1469. }
  1470. }
  1471. // System.Void UnityEngine.Bindings.NativeTypeAttribute::set_Header(System.String)
  1472. extern "C" IL2CPP_METHOD_ATTR void NativeTypeAttribute_set_Header_m48420006 (NativeTypeAttribute_t2250406315 * __this, String_t* ___value0, const RuntimeMethod* method)
  1473. {
  1474. {
  1475. String_t* L_0 = ___value0;
  1476. __this->set_U3CHeaderU3Ek__BackingField_0(L_0);
  1477. return;
  1478. }
  1479. }
  1480. // System.Void UnityEngine.Bindings.NativeTypeAttribute::set_CodegenOptions(UnityEngine.Bindings.CodegenOptions)
  1481. extern "C" IL2CPP_METHOD_ATTR void NativeTypeAttribute_set_CodegenOptions_m3839252515 (NativeTypeAttribute_t2250406315 * __this, int32_t ___value0, const RuntimeMethod* method)
  1482. {
  1483. {
  1484. int32_t L_0 = ___value0;
  1485. __this->set_U3CCodegenOptionsU3Ek__BackingField_1(L_0);
  1486. return;
  1487. }
  1488. }
  1489. #ifdef __clang__
  1490. #pragma clang diagnostic pop
  1491. #endif
  1492. #ifdef __clang__
  1493. #pragma clang diagnostic push
  1494. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1495. #pragma clang diagnostic ignored "-Wunused-variable"
  1496. #endif
  1497. // System.Void UnityEngine.Bindings.StaticAccessorAttribute::.ctor(System.String)
  1498. extern "C" IL2CPP_METHOD_ATTR void StaticAccessorAttribute__ctor_m1713503113 (StaticAccessorAttribute_t2432663902 * __this, String_t* ___name0, const RuntimeMethod* method)
  1499. {
  1500. {
  1501. Attribute__ctor_m1529526131(__this, /*hidden argument*/NULL);
  1502. String_t* L_0 = ___name0;
  1503. StaticAccessorAttribute_set_Name_m2926172476(__this, L_0, /*hidden argument*/NULL);
  1504. return;
  1505. }
  1506. }
  1507. // System.Void UnityEngine.Bindings.StaticAccessorAttribute::.ctor(System.String,UnityEngine.Bindings.StaticAccessorType)
  1508. extern "C" IL2CPP_METHOD_ATTR void StaticAccessorAttribute__ctor_m2905272167 (StaticAccessorAttribute_t2432663902 * __this, String_t* ___name0, int32_t ___type1, const RuntimeMethod* method)
  1509. {
  1510. {
  1511. Attribute__ctor_m1529526131(__this, /*hidden argument*/NULL);
  1512. String_t* L_0 = ___name0;
  1513. StaticAccessorAttribute_set_Name_m2926172476(__this, L_0, /*hidden argument*/NULL);
  1514. int32_t L_1 = ___type1;
  1515. StaticAccessorAttribute_set_Type_m2333258271(__this, L_1, /*hidden argument*/NULL);
  1516. return;
  1517. }
  1518. }
  1519. // System.Void UnityEngine.Bindings.StaticAccessorAttribute::set_Name(System.String)
  1520. extern "C" IL2CPP_METHOD_ATTR void StaticAccessorAttribute_set_Name_m2926172476 (StaticAccessorAttribute_t2432663902 * __this, String_t* ___value0, const RuntimeMethod* method)
  1521. {
  1522. {
  1523. String_t* L_0 = ___value0;
  1524. __this->set_U3CNameU3Ek__BackingField_0(L_0);
  1525. return;
  1526. }
  1527. }
  1528. // System.Void UnityEngine.Bindings.StaticAccessorAttribute::set_Type(UnityEngine.Bindings.StaticAccessorType)
  1529. extern "C" IL2CPP_METHOD_ATTR void StaticAccessorAttribute_set_Type_m2333258271 (StaticAccessorAttribute_t2432663902 * __this, int32_t ___value0, const RuntimeMethod* method)
  1530. {
  1531. {
  1532. int32_t L_0 = ___value0;
  1533. __this->set_U3CTypeU3Ek__BackingField_1(L_0);
  1534. return;
  1535. }
  1536. }
  1537. #ifdef __clang__
  1538. #pragma clang diagnostic pop
  1539. #endif
  1540. #ifdef __clang__
  1541. #pragma clang diagnostic push
  1542. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1543. #pragma clang diagnostic ignored "-Wunused-variable"
  1544. #endif
  1545. #ifdef __clang__
  1546. #pragma clang diagnostic pop
  1547. #endif
  1548. #ifdef __clang__
  1549. #pragma clang diagnostic push
  1550. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1551. #pragma clang diagnostic ignored "-Wunused-variable"
  1552. #endif
  1553. // System.Void UnityEngine.Bindings.ThreadSafeAttribute::.ctor()
  1554. extern "C" IL2CPP_METHOD_ATTR void ThreadSafeAttribute__ctor_m601575521 (ThreadSafeAttribute_t3376653515 * __this, const RuntimeMethod* method)
  1555. {
  1556. {
  1557. NativeMethodAttribute__ctor_m3134540192(__this, /*hidden argument*/NULL);
  1558. NativeMethodAttribute_set_IsThreadSafe_m2457033065(__this, (bool)1, /*hidden argument*/NULL);
  1559. return;
  1560. }
  1561. }
  1562. #ifdef __clang__
  1563. #pragma clang diagnostic pop
  1564. #endif
  1565. #ifdef __clang__
  1566. #pragma clang diagnostic push
  1567. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1568. #pragma clang diagnostic ignored "-Wunused-variable"
  1569. #endif
  1570. // System.Void UnityEngine.Bindings.UnmarshalledAttribute::.ctor()
  1571. extern "C" IL2CPP_METHOD_ATTR void UnmarshalledAttribute__ctor_m534761184 (UnmarshalledAttribute_t1517743549 * __this, const RuntimeMethod* method)
  1572. {
  1573. {
  1574. Attribute__ctor_m1529526131(__this, /*hidden argument*/NULL);
  1575. return;
  1576. }
  1577. }
  1578. #ifdef __clang__
  1579. #pragma clang diagnostic pop
  1580. #endif
  1581. #ifdef __clang__
  1582. #pragma clang diagnostic push
  1583. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1584. #pragma clang diagnostic ignored "-Wunused-variable"
  1585. #endif
  1586. // System.Void UnityEngine.Scripting.GeneratedByOldBindingsGeneratorAttribute::.ctor()
  1587. extern "C" IL2CPP_METHOD_ATTR void GeneratedByOldBindingsGeneratorAttribute__ctor_m3683043001 (GeneratedByOldBindingsGeneratorAttribute_t433318409 * __this, const RuntimeMethod* method)
  1588. {
  1589. {
  1590. Attribute__ctor_m1529526131(__this, /*hidden argument*/NULL);
  1591. return;
  1592. }
  1593. }
  1594. #ifdef __clang__
  1595. #pragma clang diagnostic pop
  1596. #endif
  1597. #ifdef __clang__
  1598. #pragma clang diagnostic push
  1599. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1600. #pragma clang diagnostic ignored "-Wunused-variable"
  1601. #endif
  1602. // System.Void UnityEngine.Scripting.RequiredByNativeCodeAttribute::.ctor()
  1603. extern "C" IL2CPP_METHOD_ATTR void RequiredByNativeCodeAttribute__ctor_m119855101 (RequiredByNativeCodeAttribute_t4130846357 * __this, const RuntimeMethod* method)
  1604. {
  1605. {
  1606. Attribute__ctor_m1529526131(__this, /*hidden argument*/NULL);
  1607. return;
  1608. }
  1609. }
  1610. #ifdef __clang__
  1611. #pragma clang diagnostic pop
  1612. #endif
  1613. #ifdef __clang__
  1614. #pragma clang diagnostic push
  1615. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1616. #pragma clang diagnostic ignored "-Wunused-variable"
  1617. #endif
  1618. // System.Void UnityEngine.Scripting.UsedByNativeCodeAttribute::.ctor()
  1619. extern "C" IL2CPP_METHOD_ATTR void UsedByNativeCodeAttribute__ctor_m2647015777 (UsedByNativeCodeAttribute_t1703770351 * __this, const RuntimeMethod* method)
  1620. {
  1621. {
  1622. Attribute__ctor_m1529526131(__this, /*hidden argument*/NULL);
  1623. return;
  1624. }
  1625. }
  1626. #ifdef __clang__
  1627. #pragma clang diagnostic pop
  1628. #endif
  1629. #ifdef __clang__
  1630. #pragma clang diagnostic push
  1631. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1632. #pragma clang diagnostic ignored "-Wunused-variable"
  1633. #endif
  1634. // System.Void UnityEngine.ThreadAndSerializationSafeAttribute::.ctor()
  1635. extern "C" IL2CPP_METHOD_ATTR void ThreadAndSerializationSafeAttribute__ctor_m3739981144 (ThreadAndSerializationSafeAttribute_t363116225 * __this, const RuntimeMethod* method)
  1636. {
  1637. {
  1638. Attribute__ctor_m1529526131(__this, /*hidden argument*/NULL);
  1639. return;
  1640. }
  1641. }
  1642. #ifdef __clang__
  1643. #pragma clang diagnostic pop
  1644. #endif
  1645. #ifdef __clang__
  1646. #pragma clang diagnostic push
  1647. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1648. #pragma clang diagnostic ignored "-Wunused-variable"
  1649. #endif
  1650. // System.String UnityEngine.UnityString::Format(System.String,System.Object[])
  1651. extern "C" IL2CPP_METHOD_ATTR String_t* UnityString_Format_m261690510 (RuntimeObject * __this /* static, unused */, String_t* ___fmt0, ObjectU5BU5D_t2843939325* ___args1, const RuntimeMethod* method)
  1652. {
  1653. static bool s_Il2CppMethodInitialized;
  1654. if (!s_Il2CppMethodInitialized)
  1655. {
  1656. il2cpp_codegen_initialize_method (UnityString_Format_m261690510_MetadataUsageId);
  1657. s_Il2CppMethodInitialized = true;
  1658. }
  1659. String_t* V_0 = NULL;
  1660. {
  1661. String_t* L_0 = ___fmt0;
  1662. ObjectU5BU5D_t2843939325* L_1 = ___args1;
  1663. IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
  1664. String_t* L_2 = String_Format_m630303134(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
  1665. V_0 = L_2;
  1666. goto IL_000e;
  1667. }
  1668. IL_000e:
  1669. {
  1670. String_t* L_3 = V_0;
  1671. return L_3;
  1672. }
  1673. }
  1674. #ifdef __clang__
  1675. #pragma clang diagnostic pop
  1676. #endif
  1677. #ifdef __clang__
  1678. #pragma clang diagnostic push
  1679. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1680. #pragma clang diagnostic ignored "-Wunused-variable"
  1681. #endif
  1682. // System.Void UnityEngine.WritableAttribute::.ctor()
  1683. extern "C" IL2CPP_METHOD_ATTR void WritableAttribute__ctor_m1991076220 (WritableAttribute_t812406054 * __this, const RuntimeMethod* method)
  1684. {
  1685. {
  1686. Attribute__ctor_m1529526131(__this, /*hidden argument*/NULL);
  1687. return;
  1688. }
  1689. }
  1690. #ifdef __clang__
  1691. #pragma clang diagnostic pop
  1692. #endif