UnresolvedVirtualCallStubs.cpp 126 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847
  1. #include "pch-cpp.hpp"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <stdint.h>
  8. #include <limits>
  9. // System.Byte[][]
  10. struct ByteU5BU5DU5BU5D_t19A0C6D66F22DF673E9CDB37DEF566FE0EC947FA;
  11. // System.Char[][]
  12. struct CharU5BU5DU5BU5D_tE6ABF380CD3BBDBB52C3EF725A02224F2B4AA680;
  13. // System.Int32[][]
  14. struct Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E;
  15. // System.Object[][]
  16. struct ObjectU5BU5DU5BU5D_t6491927494F825352C40DCE9D447C97B17297969;
  17. // System.Byte[]
  18. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
  19. // System.Int32[]
  20. struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
  21. // System.Threading.ManualResetEvent
  22. struct ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158;
  23. // System.Reflection.MemberInfo
  24. struct MemberInfo_t;
  25. // UnityEngine.RenderTexture
  26. struct RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27;
  27. // System.Threading.SendOrPostCallback
  28. struct SendOrPostCallback_t5C292A12062F24027A98492F52ECFE9802AA6F0E;
  29. // System.String
  30. struct String_t;
  31. // System.Type
  32. struct Type_t;
  33. // UnityEngine.Events.UnityAction
  34. struct UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7;
  35. // System.Void
  36. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
  37. IL2CPP_EXTERN_C_BEGIN
  38. IL2CPP_EXTERN_C_END
  39. #ifdef __clang__
  40. #pragma clang diagnostic push
  41. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  42. #pragma clang diagnostic ignored "-Wunused-variable"
  43. #endif
  44. // System.ValueType
  45. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
  46. {
  47. };
  48. // Native definition for P/Invoke marshalling of System.ValueType
  49. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
  50. {
  51. };
  52. // Native definition for COM marshalling of System.ValueType
  53. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
  54. {
  55. };
  56. // System.Collections.Generic.KeyValuePair`2<System.Byte[][],System.Object>
  57. struct KeyValuePair_2_t8E0D15B87910CDDA42560D1A46FD995D80D1210F
  58. {
  59. // TKey System.Collections.Generic.KeyValuePair`2::key
  60. ByteU5BU5DU5BU5D_t19A0C6D66F22DF673E9CDB37DEF566FE0EC947FA* ___key_0;
  61. // TValue System.Collections.Generic.KeyValuePair`2::value
  62. RuntimeObject* ___value_1;
  63. };
  64. // System.Collections.Generic.KeyValuePair`2<System.Char[][],System.Object>
  65. struct KeyValuePair_2_tA15A2CDE2D0067F592CD9373418E53A418842273
  66. {
  67. // TKey System.Collections.Generic.KeyValuePair`2::key
  68. CharU5BU5DU5BU5D_tE6ABF380CD3BBDBB52C3EF725A02224F2B4AA680* ___key_0;
  69. // TValue System.Collections.Generic.KeyValuePair`2::value
  70. RuntimeObject* ___value_1;
  71. };
  72. // System.Collections.Generic.KeyValuePair`2<System.Int32[][],System.Object>
  73. struct KeyValuePair_2_tFA55EACE445F07ED0E758AB6E024B85AB8FD089D
  74. {
  75. // TKey System.Collections.Generic.KeyValuePair`2::key
  76. Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* ___key_0;
  77. // TValue System.Collections.Generic.KeyValuePair`2::value
  78. RuntimeObject* ___value_1;
  79. };
  80. // System.Collections.Generic.KeyValuePair`2<System.Object[][],System.Object>
  81. struct KeyValuePair_2_tB705E6AEB2BE5DC110A8BC6390AC36BB0F127B47
  82. {
  83. // TKey System.Collections.Generic.KeyValuePair`2::key
  84. ObjectU5BU5DU5BU5D_t6491927494F825352C40DCE9D447C97B17297969* ___key_0;
  85. // TValue System.Collections.Generic.KeyValuePair`2::value
  86. RuntimeObject* ___value_1;
  87. };
  88. // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
  89. struct KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230
  90. {
  91. // TKey System.Collections.Generic.KeyValuePair`2::key
  92. RuntimeObject* ___key_0;
  93. // TValue System.Collections.Generic.KeyValuePair`2::value
  94. RuntimeObject* ___value_1;
  95. };
  96. // Unity.Collections.NativeArray`1<UnityEngine.Rendering.BatchVisibility>
  97. struct NativeArray_1_t88F04A6A2FC556B8A7EE20276F7A2BB13F420AB9
  98. {
  99. // System.Void* Unity.Collections.NativeArray`1::m_Buffer
  100. void* ___m_Buffer_0;
  101. // System.Int32 Unity.Collections.NativeArray`1::m_Length
  102. int32_t ___m_Length_1;
  103. // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
  104. int32_t ___m_AllocatorLabel_2;
  105. };
  106. // Unity.Collections.NativeArray`1<System.Byte>
  107. struct NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF
  108. {
  109. // System.Void* Unity.Collections.NativeArray`1::m_Buffer
  110. void* ___m_Buffer_0;
  111. // System.Int32 Unity.Collections.NativeArray`1::m_Length
  112. int32_t ___m_Length_1;
  113. // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
  114. int32_t ___m_AllocatorLabel_2;
  115. };
  116. // Unity.Collections.NativeArray`1<System.Int32>
  117. struct NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C
  118. {
  119. // System.Void* Unity.Collections.NativeArray`1::m_Buffer
  120. void* ___m_Buffer_0;
  121. // System.Int32 Unity.Collections.NativeArray`1::m_Length
  122. int32_t ___m_Length_1;
  123. // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
  124. int32_t ___m_AllocatorLabel_2;
  125. };
  126. // Unity.Collections.NativeArray`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>
  127. struct NativeArray_1_tDF6A1978B5813BF4DAD7948E398009FFC9BEA38D
  128. {
  129. // System.Void* Unity.Collections.NativeArray`1::m_Buffer
  130. void* ___m_Buffer_0;
  131. // System.Int32 Unity.Collections.NativeArray`1::m_Length
  132. int32_t ___m_Length_1;
  133. // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
  134. int32_t ___m_AllocatorLabel_2;
  135. };
  136. // Unity.Collections.NativeArray`1<UnityEngine.Plane>
  137. struct NativeArray_1_t4020B6981295FB915DCE82EF368535F680C13A49
  138. {
  139. // System.Void* Unity.Collections.NativeArray`1::m_Buffer
  140. void* ___m_Buffer_0;
  141. // System.Int32 Unity.Collections.NativeArray`1::m_Length
  142. int32_t ___m_Length_1;
  143. // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
  144. int32_t ___m_AllocatorLabel_2;
  145. };
  146. // System.Nullable`1<System.Int32>
  147. struct Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28
  148. {
  149. // System.Boolean System.Nullable`1::hasValue
  150. bool ___hasValue_0;
  151. // T System.Nullable`1::value
  152. int32_t ___value_1;
  153. };
  154. // System.ValueTuple`2<System.Object,System.Object>
  155. struct ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A
  156. {
  157. // T1 System.ValueTuple`2::Item1
  158. RuntimeObject* ___Item1_0;
  159. // T2 System.ValueTuple`2::Item2
  160. RuntimeObject* ___Item2_1;
  161. };
  162. // System.ValueTuple`3<System.Object,System.Int32,System.Int32>
  163. struct ValueTuple_3_tFD2ADB3DA89E958885034AAFEF1ABDA8C814D987
  164. {
  165. // T1 System.ValueTuple`3::Item1
  166. RuntimeObject* ___Item1_0;
  167. // T2 System.ValueTuple`3::Item2
  168. int32_t ___Item2_1;
  169. // T3 System.ValueTuple`3::Item3
  170. int32_t ___Item3_2;
  171. };
  172. // GooglePlayGames.BasicApi.Nearby.AdvertisingResult
  173. struct AdvertisingResult_tC2A0D13DAF5903AFA04349C2874575FC621D1E2C
  174. {
  175. // GooglePlayGames.BasicApi.ResponseStatus GooglePlayGames.BasicApi.Nearby.AdvertisingResult::mStatus
  176. int32_t ___mStatus_0;
  177. // System.String GooglePlayGames.BasicApi.Nearby.AdvertisingResult::mLocalEndpointName
  178. String_t* ___mLocalEndpointName_1;
  179. };
  180. // Native definition for P/Invoke marshalling of GooglePlayGames.BasicApi.Nearby.AdvertisingResult
  181. struct AdvertisingResult_tC2A0D13DAF5903AFA04349C2874575FC621D1E2C_marshaled_pinvoke
  182. {
  183. int32_t ___mStatus_0;
  184. char* ___mLocalEndpointName_1;
  185. };
  186. // Native definition for COM marshalling of GooglePlayGames.BasicApi.Nearby.AdvertisingResult
  187. struct AdvertisingResult_tC2A0D13DAF5903AFA04349C2874575FC621D1E2C_marshaled_com
  188. {
  189. int32_t ___mStatus_0;
  190. Il2CppChar* ___mLocalEndpointName_1;
  191. };
  192. // GooglePlayGames.BasicApi.Nearby.ConnectionResponse
  193. struct ConnectionResponse_tD4B45BF8C81F4514392521939BA9A60D4C175A71
  194. {
  195. // System.Int64 GooglePlayGames.BasicApi.Nearby.ConnectionResponse::mLocalClientId
  196. int64_t ___mLocalClientId_1;
  197. // System.String GooglePlayGames.BasicApi.Nearby.ConnectionResponse::mRemoteEndpointId
  198. String_t* ___mRemoteEndpointId_2;
  199. // GooglePlayGames.BasicApi.Nearby.ConnectionResponse/Status GooglePlayGames.BasicApi.Nearby.ConnectionResponse::mResponseStatus
  200. int32_t ___mResponseStatus_3;
  201. // System.Byte[] GooglePlayGames.BasicApi.Nearby.ConnectionResponse::mPayload
  202. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___mPayload_4;
  203. };
  204. struct ConnectionResponse_tD4B45BF8C81F4514392521939BA9A60D4C175A71_StaticFields
  205. {
  206. // System.Byte[] GooglePlayGames.BasicApi.Nearby.ConnectionResponse::EmptyPayload
  207. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___EmptyPayload_0;
  208. };
  209. // Native definition for P/Invoke marshalling of GooglePlayGames.BasicApi.Nearby.ConnectionResponse
  210. struct ConnectionResponse_tD4B45BF8C81F4514392521939BA9A60D4C175A71_marshaled_pinvoke
  211. {
  212. int64_t ___mLocalClientId_1;
  213. char* ___mRemoteEndpointId_2;
  214. int32_t ___mResponseStatus_3;
  215. Il2CppSafeArray/*NONE*/* ___mPayload_4;
  216. };
  217. // Native definition for COM marshalling of GooglePlayGames.BasicApi.Nearby.ConnectionResponse
  218. struct ConnectionResponse_tD4B45BF8C81F4514392521939BA9A60D4C175A71_marshaled_com
  219. {
  220. int64_t ___mLocalClientId_1;
  221. Il2CppChar* ___mRemoteEndpointId_2;
  222. int32_t ___mResponseStatus_3;
  223. Il2CppSafeArray/*NONE*/* ___mPayload_4;
  224. };
  225. // System.ConsoleKeyInfo
  226. struct ConsoleKeyInfo_t84640C60F53D0F6946B147ADAAF0366BBF1DE900
  227. {
  228. // System.Char System.ConsoleKeyInfo::_keyChar
  229. Il2CppChar ____keyChar_0;
  230. // System.ConsoleKey System.ConsoleKeyInfo::_key
  231. int32_t ____key_1;
  232. // System.ConsoleModifiers System.ConsoleKeyInfo::_mods
  233. int32_t ____mods_2;
  234. };
  235. // Native definition for P/Invoke marshalling of System.ConsoleKeyInfo
  236. struct ConsoleKeyInfo_t84640C60F53D0F6946B147ADAAF0366BBF1DE900_marshaled_pinvoke
  237. {
  238. uint8_t ____keyChar_0;
  239. int32_t ____key_1;
  240. int32_t ____mods_2;
  241. };
  242. // Native definition for COM marshalling of System.ConsoleKeyInfo
  243. struct ConsoleKeyInfo_t84640C60F53D0F6946B147ADAAF0366BBF1DE900_marshaled_com
  244. {
  245. uint8_t ____keyChar_0;
  246. int32_t ____key_1;
  247. int32_t ____mods_2;
  248. };
  249. // UnityEngine.CullingGroupEvent
  250. struct CullingGroupEvent_tC79BA328A8280C29F6002F591614081A0E87D110
  251. {
  252. // System.Int32 UnityEngine.CullingGroupEvent::m_Index
  253. int32_t ___m_Index_0;
  254. // System.Byte UnityEngine.CullingGroupEvent::m_PrevState
  255. uint8_t ___m_PrevState_1;
  256. // System.Byte UnityEngine.CullingGroupEvent::m_ThisState
  257. uint8_t ___m_ThisState_2;
  258. };
  259. // System.Reflection.CustomAttributeTypedArgument
  260. struct CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F
  261. {
  262. // System.Type System.Reflection.CustomAttributeTypedArgument::<ArgumentType>k__BackingField
  263. Type_t* ___U3CArgumentTypeU3Ek__BackingField_0;
  264. // System.Object System.Reflection.CustomAttributeTypedArgument::<Value>k__BackingField
  265. RuntimeObject* ___U3CValueU3Ek__BackingField_1;
  266. };
  267. // Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeTypedArgument
  268. struct CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F_marshaled_pinvoke
  269. {
  270. Type_t* ___U3CArgumentTypeU3Ek__BackingField_0;
  271. Il2CppIUnknown* ___U3CValueU3Ek__BackingField_1;
  272. };
  273. // Native definition for COM marshalling of System.Reflection.CustomAttributeTypedArgument
  274. struct CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F_marshaled_com
  275. {
  276. Type_t* ___U3CArgumentTypeU3Ek__BackingField_0;
  277. Il2CppIUnknown* ___U3CValueU3Ek__BackingField_1;
  278. };
  279. // System.DateTime
  280. struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D
  281. {
  282. // System.UInt64 System.DateTime::_dateData
  283. uint64_t ____dateData_46;
  284. };
  285. struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields
  286. {
  287. // System.Int32[] System.DateTime::s_daysToMonth365
  288. Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth365_30;
  289. // System.Int32[] System.DateTime::s_daysToMonth366
  290. Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth366_31;
  291. // System.DateTime System.DateTime::MinValue
  292. DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MinValue_32;
  293. // System.DateTime System.DateTime::MaxValue
  294. DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MaxValue_33;
  295. // System.DateTime System.DateTime::UnixEpoch
  296. DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___UnixEpoch_34;
  297. };
  298. // System.Decimal
  299. struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F
  300. {
  301. union
  302. {
  303. #pragma pack(push, tp, 1)
  304. struct
  305. {
  306. // System.Int32 System.Decimal::flags
  307. int32_t ___flags_5;
  308. };
  309. #pragma pack(pop, tp)
  310. struct
  311. {
  312. int32_t ___flags_5_forAlignmentOnly;
  313. };
  314. #pragma pack(push, tp, 1)
  315. struct
  316. {
  317. char ___hi_6_OffsetPadding[4];
  318. // System.Int32 System.Decimal::hi
  319. int32_t ___hi_6;
  320. };
  321. #pragma pack(pop, tp)
  322. struct
  323. {
  324. char ___hi_6_OffsetPadding_forAlignmentOnly[4];
  325. int32_t ___hi_6_forAlignmentOnly;
  326. };
  327. #pragma pack(push, tp, 1)
  328. struct
  329. {
  330. char ___lo_7_OffsetPadding[8];
  331. // System.Int32 System.Decimal::lo
  332. int32_t ___lo_7;
  333. };
  334. #pragma pack(pop, tp)
  335. struct
  336. {
  337. char ___lo_7_OffsetPadding_forAlignmentOnly[8];
  338. int32_t ___lo_7_forAlignmentOnly;
  339. };
  340. #pragma pack(push, tp, 1)
  341. struct
  342. {
  343. char ___mid_8_OffsetPadding[12];
  344. // System.Int32 System.Decimal::mid
  345. int32_t ___mid_8;
  346. };
  347. #pragma pack(pop, tp)
  348. struct
  349. {
  350. char ___mid_8_OffsetPadding_forAlignmentOnly[12];
  351. int32_t ___mid_8_forAlignmentOnly;
  352. };
  353. #pragma pack(push, tp, 1)
  354. struct
  355. {
  356. char ___ulomidLE_9_OffsetPadding[8];
  357. // System.UInt64 System.Decimal::ulomidLE
  358. uint64_t ___ulomidLE_9;
  359. };
  360. #pragma pack(pop, tp)
  361. struct
  362. {
  363. char ___ulomidLE_9_OffsetPadding_forAlignmentOnly[8];
  364. uint64_t ___ulomidLE_9_forAlignmentOnly;
  365. };
  366. };
  367. };
  368. struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields
  369. {
  370. // System.Decimal System.Decimal::Zero
  371. Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___Zero_0;
  372. // System.Decimal System.Decimal::One
  373. Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___One_1;
  374. // System.Decimal System.Decimal::MinusOne
  375. Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinusOne_2;
  376. // System.Decimal System.Decimal::MaxValue
  377. Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MaxValue_3;
  378. // System.Decimal System.Decimal::MinValue
  379. Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinValue_4;
  380. };
  381. // System.Collections.DictionaryEntry
  382. struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB
  383. {
  384. // System.Object System.Collections.DictionaryEntry::_key
  385. RuntimeObject* ____key_0;
  386. // System.Object System.Collections.DictionaryEntry::_value
  387. RuntimeObject* ____value_1;
  388. };
  389. // Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry
  390. struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_marshaled_pinvoke
  391. {
  392. Il2CppIUnknown* ____key_0;
  393. Il2CppIUnknown* ____value_1;
  394. };
  395. // Native definition for COM marshalling of System.Collections.DictionaryEntry
  396. struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_marshaled_com
  397. {
  398. Il2CppIUnknown* ____key_0;
  399. Il2CppIUnknown* ____value_1;
  400. };
  401. // GooglePlayGames.BasicApi.Nearby.EndpointDetails
  402. struct EndpointDetails_t95EEA60E16EE0F4CD6834AF29B6BCDE20C10520C
  403. {
  404. // System.String GooglePlayGames.BasicApi.Nearby.EndpointDetails::mEndpointId
  405. String_t* ___mEndpointId_0;
  406. // System.String GooglePlayGames.BasicApi.Nearby.EndpointDetails::mName
  407. String_t* ___mName_1;
  408. // System.String GooglePlayGames.BasicApi.Nearby.EndpointDetails::mServiceId
  409. String_t* ___mServiceId_2;
  410. };
  411. // Native definition for P/Invoke marshalling of GooglePlayGames.BasicApi.Nearby.EndpointDetails
  412. struct EndpointDetails_t95EEA60E16EE0F4CD6834AF29B6BCDE20C10520C_marshaled_pinvoke
  413. {
  414. char* ___mEndpointId_0;
  415. char* ___mName_1;
  416. char* ___mServiceId_2;
  417. };
  418. // Native definition for COM marshalling of GooglePlayGames.BasicApi.Nearby.EndpointDetails
  419. struct EndpointDetails_t95EEA60E16EE0F4CD6834AF29B6BCDE20C10520C_marshaled_com
  420. {
  421. Il2CppChar* ___mEndpointId_0;
  422. Il2CppChar* ___mName_1;
  423. Il2CppChar* ___mServiceId_2;
  424. };
  425. // System.Guid
  426. struct Guid_t
  427. {
  428. // System.Int32 System.Guid::_a
  429. int32_t ____a_1;
  430. // System.Int16 System.Guid::_b
  431. int16_t ____b_2;
  432. // System.Int16 System.Guid::_c
  433. int16_t ____c_3;
  434. // System.Byte System.Guid::_d
  435. uint8_t ____d_4;
  436. // System.Byte System.Guid::_e
  437. uint8_t ____e_5;
  438. // System.Byte System.Guid::_f
  439. uint8_t ____f_6;
  440. // System.Byte System.Guid::_g
  441. uint8_t ____g_7;
  442. // System.Byte System.Guid::_h
  443. uint8_t ____h_8;
  444. // System.Byte System.Guid::_i
  445. uint8_t ____i_9;
  446. // System.Byte System.Guid::_j
  447. uint8_t ____j_10;
  448. // System.Byte System.Guid::_k
  449. uint8_t ____k_11;
  450. };
  451. struct Guid_t_StaticFields
  452. {
  453. // System.Guid System.Guid::Empty
  454. Guid_t ___Empty_0;
  455. };
  456. // System.IntPtr
  457. struct IntPtr_t
  458. {
  459. // System.Void* System.IntPtr::m_value
  460. void* ___m_value_0;
  461. };
  462. struct IntPtr_t_StaticFields
  463. {
  464. // System.IntPtr System.IntPtr::Zero
  465. intptr_t ___Zero_1;
  466. };
  467. // UnityEngine.Matrix4x4
  468. struct Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6
  469. {
  470. // System.Single UnityEngine.Matrix4x4::m00
  471. float ___m00_0;
  472. // System.Single UnityEngine.Matrix4x4::m10
  473. float ___m10_1;
  474. // System.Single UnityEngine.Matrix4x4::m20
  475. float ___m20_2;
  476. // System.Single UnityEngine.Matrix4x4::m30
  477. float ___m30_3;
  478. // System.Single UnityEngine.Matrix4x4::m01
  479. float ___m01_4;
  480. // System.Single UnityEngine.Matrix4x4::m11
  481. float ___m11_5;
  482. // System.Single UnityEngine.Matrix4x4::m21
  483. float ___m21_6;
  484. // System.Single UnityEngine.Matrix4x4::m31
  485. float ___m31_7;
  486. // System.Single UnityEngine.Matrix4x4::m02
  487. float ___m02_8;
  488. // System.Single UnityEngine.Matrix4x4::m12
  489. float ___m12_9;
  490. // System.Single UnityEngine.Matrix4x4::m22
  491. float ___m22_10;
  492. // System.Single UnityEngine.Matrix4x4::m32
  493. float ___m32_11;
  494. // System.Single UnityEngine.Matrix4x4::m03
  495. float ___m03_12;
  496. // System.Single UnityEngine.Matrix4x4::m13
  497. float ___m13_13;
  498. // System.Single UnityEngine.Matrix4x4::m23
  499. float ___m23_14;
  500. // System.Single UnityEngine.Matrix4x4::m33
  501. float ___m33_15;
  502. };
  503. struct Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_StaticFields
  504. {
  505. // UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::zeroMatrix
  506. Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___zeroMatrix_16;
  507. // UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::identityMatrix
  508. Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___identityMatrix_17;
  509. };
  510. // UnityEngine.SocialPlatforms.Range
  511. struct Range_tDDBAD7CBDC5DD273DA4330F4E9CDF24C62F16ED6
  512. {
  513. // System.Int32 UnityEngine.SocialPlatforms.Range::from
  514. int32_t ___from_0;
  515. // System.Int32 UnityEngine.SocialPlatforms.Range::count
  516. int32_t ___count_1;
  517. };
  518. // System.Resources.ResourceLocator
  519. struct ResourceLocator_t84F68A0DD2AA185761938E49BBE9B2C46A47E122
  520. {
  521. // System.Object System.Resources.ResourceLocator::_value
  522. RuntimeObject* ____value_0;
  523. // System.Int32 System.Resources.ResourceLocator::_dataPos
  524. int32_t ____dataPos_1;
  525. };
  526. // Native definition for P/Invoke marshalling of System.Resources.ResourceLocator
  527. struct ResourceLocator_t84F68A0DD2AA185761938E49BBE9B2C46A47E122_marshaled_pinvoke
  528. {
  529. Il2CppIUnknown* ____value_0;
  530. int32_t ____dataPos_1;
  531. };
  532. // Native definition for COM marshalling of System.Resources.ResourceLocator
  533. struct ResourceLocator_t84F68A0DD2AA185761938E49BBE9B2C46A47E122_marshaled_com
  534. {
  535. Il2CppIUnknown* ____value_0;
  536. int32_t ____dataPos_1;
  537. };
  538. // UnityEngine.SceneManagement.Scene
  539. struct Scene_tA1DC762B79745EB5140F054C884855B922318356
  540. {
  541. // System.Int32 UnityEngine.SceneManagement.Scene::m_Handle
  542. int32_t ___m_Handle_0;
  543. };
  544. // UnityEngine.Rendering.ShaderTagId
  545. struct ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0
  546. {
  547. // System.Int32 UnityEngine.Rendering.ShaderTagId::m_Id
  548. int32_t ___m_Id_0;
  549. };
  550. // System.Runtime.Serialization.StreamingContext
  551. struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677
  552. {
  553. // System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext
  554. RuntimeObject* ___m_additionalContext_0;
  555. // System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state
  556. int32_t ___m_state_1;
  557. };
  558. // Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext
  559. struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_pinvoke
  560. {
  561. Il2CppIUnknown* ___m_additionalContext_0;
  562. int32_t ___m_state_1;
  563. };
  564. // Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext
  565. struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_com
  566. {
  567. Il2CppIUnknown* ___m_additionalContext_0;
  568. int32_t ___m_state_1;
  569. };
  570. // System.TimeSpan
  571. struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A
  572. {
  573. // System.Int64 System.TimeSpan::_ticks
  574. int64_t ____ticks_3;
  575. };
  576. struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields
  577. {
  578. // System.TimeSpan System.TimeSpan::Zero
  579. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___Zero_0;
  580. // System.TimeSpan System.TimeSpan::MaxValue
  581. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MaxValue_1;
  582. // System.TimeSpan System.TimeSpan::MinValue
  583. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MinValue_2;
  584. };
  585. // UnityEngine.Vector3
  586. struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2
  587. {
  588. // System.Single UnityEngine.Vector3::x
  589. float ___x_0;
  590. // System.Single UnityEngine.Vector3::y
  591. float ___y_1;
  592. // System.Single UnityEngine.Vector3::z
  593. float ___z_2;
  594. };
  595. struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields
  596. {
  597. // UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
  598. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___zeroVector_3;
  599. // UnityEngine.Vector3 UnityEngine.Vector3::oneVector
  600. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___oneVector_4;
  601. // UnityEngine.Vector3 UnityEngine.Vector3::upVector
  602. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___upVector_5;
  603. // UnityEngine.Vector3 UnityEngine.Vector3::downVector
  604. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___downVector_6;
  605. // UnityEngine.Vector3 UnityEngine.Vector3::leftVector
  606. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___leftVector_7;
  607. // UnityEngine.Vector3 UnityEngine.Vector3::rightVector
  608. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rightVector_8;
  609. // UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
  610. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___forwardVector_9;
  611. // UnityEngine.Vector3 UnityEngine.Vector3::backVector
  612. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___backVector_10;
  613. // UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
  614. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___positiveInfinityVector_11;
  615. // UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
  616. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___negativeInfinityVector_12;
  617. };
  618. // System.Threading.Tasks.VoidTaskResult
  619. struct VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC
  620. {
  621. union
  622. {
  623. struct
  624. {
  625. };
  626. uint8_t VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC__padding[1];
  627. };
  628. };
  629. // UnityEngine.BeforeRenderHelper/OrderBlock
  630. struct OrderBlock_t62FD6F6544F34B5298DEF2F77AAE446F269B7837
  631. {
  632. // System.Int32 UnityEngine.BeforeRenderHelper/OrderBlock::order
  633. int32_t ___order_0;
  634. // UnityEngine.Events.UnityAction UnityEngine.BeforeRenderHelper/OrderBlock::callback
  635. UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* ___callback_1;
  636. };
  637. // Native definition for P/Invoke marshalling of UnityEngine.BeforeRenderHelper/OrderBlock
  638. struct OrderBlock_t62FD6F6544F34B5298DEF2F77AAE446F269B7837_marshaled_pinvoke
  639. {
  640. int32_t ___order_0;
  641. Il2CppMethodPointer ___callback_1;
  642. };
  643. // Native definition for COM marshalling of UnityEngine.BeforeRenderHelper/OrderBlock
  644. struct OrderBlock_t62FD6F6544F34B5298DEF2F77AAE446F269B7837_marshaled_com
  645. {
  646. int32_t ___order_0;
  647. Il2CppMethodPointer ___callback_1;
  648. };
  649. // UnityEngine.Camera/RenderRequest
  650. struct RenderRequest_t432931B06439AC4704282E924DE8A9A474DB6B9A
  651. {
  652. // UnityEngine.Camera/RenderRequestMode UnityEngine.Camera/RenderRequest::m_CameraRenderMode
  653. int32_t ___m_CameraRenderMode_0;
  654. // UnityEngine.RenderTexture UnityEngine.Camera/RenderRequest::m_ResultRT
  655. RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___m_ResultRT_1;
  656. // UnityEngine.Camera/RenderRequestOutputSpace UnityEngine.Camera/RenderRequest::m_OutputSpace
  657. int32_t ___m_OutputSpace_2;
  658. };
  659. // Native definition for P/Invoke marshalling of UnityEngine.Camera/RenderRequest
  660. struct RenderRequest_t432931B06439AC4704282E924DE8A9A474DB6B9A_marshaled_pinvoke
  661. {
  662. int32_t ___m_CameraRenderMode_0;
  663. RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___m_ResultRT_1;
  664. int32_t ___m_OutputSpace_2;
  665. };
  666. // Native definition for COM marshalling of UnityEngine.Camera/RenderRequest
  667. struct RenderRequest_t432931B06439AC4704282E924DE8A9A474DB6B9A_marshaled_com
  668. {
  669. int32_t ___m_CameraRenderMode_0;
  670. RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___m_ResultRT_1;
  671. int32_t ___m_OutputSpace_2;
  672. };
  673. // System.Text.RegularExpressions.Regex/CachedCodeEntryKey
  674. struct CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31
  675. {
  676. // System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.Regex/CachedCodeEntryKey::_options
  677. int32_t ____options_0;
  678. // System.String System.Text.RegularExpressions.Regex/CachedCodeEntryKey::_cultureKey
  679. String_t* ____cultureKey_1;
  680. // System.String System.Text.RegularExpressions.Regex/CachedCodeEntryKey::_pattern
  681. String_t* ____pattern_2;
  682. };
  683. // Native definition for P/Invoke marshalling of System.Text.RegularExpressions.Regex/CachedCodeEntryKey
  684. struct CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31_marshaled_pinvoke
  685. {
  686. int32_t ____options_0;
  687. char* ____cultureKey_1;
  688. char* ____pattern_2;
  689. };
  690. // Native definition for COM marshalling of System.Text.RegularExpressions.Regex/CachedCodeEntryKey
  691. struct CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31_marshaled_com
  692. {
  693. int32_t ____options_0;
  694. Il2CppChar* ____cultureKey_1;
  695. Il2CppChar* ____pattern_2;
  696. };
  697. // System.Text.RegularExpressions.RegexCharClass/SingleRange
  698. struct SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC
  699. {
  700. // System.Char System.Text.RegularExpressions.RegexCharClass/SingleRange::First
  701. Il2CppChar ___First_0;
  702. // System.Char System.Text.RegularExpressions.RegexCharClass/SingleRange::Last
  703. Il2CppChar ___Last_1;
  704. };
  705. // Native definition for P/Invoke marshalling of System.Text.RegularExpressions.RegexCharClass/SingleRange
  706. struct SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_marshaled_pinvoke
  707. {
  708. uint8_t ___First_0;
  709. uint8_t ___Last_1;
  710. };
  711. // Native definition for COM marshalling of System.Text.RegularExpressions.RegexCharClass/SingleRange
  712. struct SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_marshaled_com
  713. {
  714. uint8_t ___First_0;
  715. uint8_t ___Last_1;
  716. };
  717. // UnityEngine.UnitySynchronizationContext/WorkRequest
  718. struct WorkRequest_t8AF542F2E248D9234341817CDB5F76C27D348B44
  719. {
  720. // System.Threading.SendOrPostCallback UnityEngine.UnitySynchronizationContext/WorkRequest::m_DelagateCallback
  721. SendOrPostCallback_t5C292A12062F24027A98492F52ECFE9802AA6F0E* ___m_DelagateCallback_0;
  722. // System.Object UnityEngine.UnitySynchronizationContext/WorkRequest::m_DelagateState
  723. RuntimeObject* ___m_DelagateState_1;
  724. // System.Threading.ManualResetEvent UnityEngine.UnitySynchronizationContext/WorkRequest::m_WaitHandle
  725. ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* ___m_WaitHandle_2;
  726. };
  727. // Native definition for P/Invoke marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest
  728. struct WorkRequest_t8AF542F2E248D9234341817CDB5F76C27D348B44_marshaled_pinvoke
  729. {
  730. Il2CppMethodPointer ___m_DelagateCallback_0;
  731. Il2CppIUnknown* ___m_DelagateState_1;
  732. ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* ___m_WaitHandle_2;
  733. };
  734. // Native definition for COM marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest
  735. struct WorkRequest_t8AF542F2E248D9234341817CDB5F76C27D348B44_marshaled_com
  736. {
  737. Il2CppMethodPointer ___m_DelagateCallback_0;
  738. Il2CppIUnknown* ___m_DelagateState_1;
  739. ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* ___m_WaitHandle_2;
  740. };
  741. // System.ByReference`1<System.Byte>
  742. struct ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC
  743. {
  744. // System.IntPtr System.ByReference`1::_value
  745. intptr_t ____value_0;
  746. };
  747. // System.ByReference`1<System.Char>
  748. struct ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5
  749. {
  750. // System.IntPtr System.ByReference`1::_value
  751. intptr_t ____value_0;
  752. };
  753. // System.ByReference`1<System.Object>
  754. struct ByReference_1_t98B79BFB40A2CA0814BC183B09B4339A5EBF8524
  755. {
  756. // System.IntPtr System.ByReference`1::_value
  757. intptr_t ____value_0;
  758. };
  759. // System.ValueTuple`5<System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.Boolean>
  760. struct ValueTuple_5_t558B9F95CA55DE5694FC58A3BEAE441BF728FB57
  761. {
  762. // T1 System.ValueTuple`5::Item1
  763. intptr_t ___Item1_0;
  764. // T2 System.ValueTuple`5::Item2
  765. int32_t ___Item2_1;
  766. // T3 System.ValueTuple`5::Item3
  767. intptr_t ___Item3_2;
  768. // T4 System.ValueTuple`5::Item4
  769. int32_t ___Item4_3;
  770. // T5 System.ValueTuple`5::Item5
  771. bool ___Item5_4;
  772. };
  773. // GooglePlayGames.BasicApi.Nearby.ConnectionRequest
  774. struct ConnectionRequest_t91E30890E727FF25CC25A9DBB5CF83894E4F4EFF
  775. {
  776. // GooglePlayGames.BasicApi.Nearby.EndpointDetails GooglePlayGames.BasicApi.Nearby.ConnectionRequest::mRemoteEndpoint
  777. EndpointDetails_t95EEA60E16EE0F4CD6834AF29B6BCDE20C10520C ___mRemoteEndpoint_0;
  778. // System.Byte[] GooglePlayGames.BasicApi.Nearby.ConnectionRequest::mPayload
  779. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___mPayload_1;
  780. };
  781. // Native definition for P/Invoke marshalling of GooglePlayGames.BasicApi.Nearby.ConnectionRequest
  782. struct ConnectionRequest_t91E30890E727FF25CC25A9DBB5CF83894E4F4EFF_marshaled_pinvoke
  783. {
  784. EndpointDetails_t95EEA60E16EE0F4CD6834AF29B6BCDE20C10520C_marshaled_pinvoke ___mRemoteEndpoint_0;
  785. Il2CppSafeArray/*NONE*/* ___mPayload_1;
  786. };
  787. // Native definition for COM marshalling of GooglePlayGames.BasicApi.Nearby.ConnectionRequest
  788. struct ConnectionRequest_t91E30890E727FF25CC25A9DBB5CF83894E4F4EFF_marshaled_com
  789. {
  790. EndpointDetails_t95EEA60E16EE0F4CD6834AF29B6BCDE20C10520C_marshaled_com ___mRemoteEndpoint_0;
  791. Il2CppSafeArray/*NONE*/* ___mPayload_1;
  792. };
  793. // System.Reflection.CustomAttributeNamedArgument
  794. struct CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02
  795. {
  796. // System.Reflection.CustomAttributeTypedArgument System.Reflection.CustomAttributeNamedArgument::<TypedValue>k__BackingField
  797. CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F ___U3CTypedValueU3Ek__BackingField_0;
  798. // System.Boolean System.Reflection.CustomAttributeNamedArgument::<IsField>k__BackingField
  799. bool ___U3CIsFieldU3Ek__BackingField_1;
  800. // System.String System.Reflection.CustomAttributeNamedArgument::<MemberName>k__BackingField
  801. String_t* ___U3CMemberNameU3Ek__BackingField_2;
  802. // System.Type System.Reflection.CustomAttributeNamedArgument::_attributeType
  803. Type_t* ____attributeType_3;
  804. // System.Reflection.MemberInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Reflection.CustomAttributeNamedArgument::_lazyMemberInfo
  805. MemberInfo_t* ____lazyMemberInfo_4;
  806. };
  807. // Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeNamedArgument
  808. struct CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02_marshaled_pinvoke
  809. {
  810. CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F_marshaled_pinvoke ___U3CTypedValueU3Ek__BackingField_0;
  811. int32_t ___U3CIsFieldU3Ek__BackingField_1;
  812. char* ___U3CMemberNameU3Ek__BackingField_2;
  813. Type_t* ____attributeType_3;
  814. MemberInfo_t* ____lazyMemberInfo_4;
  815. };
  816. // Native definition for COM marshalling of System.Reflection.CustomAttributeNamedArgument
  817. struct CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02_marshaled_com
  818. {
  819. CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F_marshaled_com ___U3CTypedValueU3Ek__BackingField_0;
  820. int32_t ___U3CIsFieldU3Ek__BackingField_1;
  821. Il2CppChar* ___U3CMemberNameU3Ek__BackingField_2;
  822. Type_t* ____attributeType_3;
  823. MemberInfo_t* ____lazyMemberInfo_4;
  824. };
  825. // UnityEngine.Profiling.Experimental.DebugScreenCapture
  826. struct DebugScreenCapture_t859E4E87C94587A08893C726D4FF84BD8F288CC5
  827. {
  828. // Unity.Collections.NativeArray`1<System.Byte> UnityEngine.Profiling.Experimental.DebugScreenCapture::<rawImageDataReference>k__BackingField
  829. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___U3CrawImageDataReferenceU3Ek__BackingField_0;
  830. // UnityEngine.TextureFormat UnityEngine.Profiling.Experimental.DebugScreenCapture::<imageFormat>k__BackingField
  831. int32_t ___U3CimageFormatU3Ek__BackingField_1;
  832. // System.Int32 UnityEngine.Profiling.Experimental.DebugScreenCapture::<width>k__BackingField
  833. int32_t ___U3CwidthU3Ek__BackingField_2;
  834. // System.Int32 UnityEngine.Profiling.Experimental.DebugScreenCapture::<height>k__BackingField
  835. int32_t ___U3CheightU3Ek__BackingField_3;
  836. };
  837. // Unity.Jobs.JobHandle
  838. struct JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08
  839. {
  840. // System.IntPtr Unity.Jobs.JobHandle::jobGroup
  841. intptr_t ___jobGroup_0;
  842. // System.Int32 Unity.Jobs.JobHandle::version
  843. int32_t ___version_1;
  844. };
  845. // UnityEngine.Rendering.LODParameters
  846. struct LODParameters_t54D2AA0FD8E53BCF51D7A42BC1A72FCA8C78A08A
  847. {
  848. // System.Int32 UnityEngine.Rendering.LODParameters::m_IsOrthographic
  849. int32_t ___m_IsOrthographic_0;
  850. // UnityEngine.Vector3 UnityEngine.Rendering.LODParameters::m_CameraPosition
  851. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_CameraPosition_1;
  852. // System.Single UnityEngine.Rendering.LODParameters::m_FieldOfView
  853. float ___m_FieldOfView_2;
  854. // System.Single UnityEngine.Rendering.LODParameters::m_OrthoSize
  855. float ___m_OrthoSize_3;
  856. // System.Int32 UnityEngine.Rendering.LODParameters::m_CameraPixelHeight
  857. int32_t ___m_CameraPixelHeight_4;
  858. };
  859. // UnityEngine.Playables.PlayableGraph
  860. struct PlayableGraph_t4A5B0B45343A240F0761574FD7C672E0CFFF7A6E
  861. {
  862. // System.IntPtr UnityEngine.Playables.PlayableGraph::m_Handle
  863. intptr_t ___m_Handle_0;
  864. // System.UInt32 UnityEngine.Playables.PlayableGraph::m_Version
  865. uint32_t ___m_Version_1;
  866. };
  867. // UnityEngine.Playables.PlayableHandle
  868. struct PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4
  869. {
  870. // System.IntPtr UnityEngine.Playables.PlayableHandle::m_Handle
  871. intptr_t ___m_Handle_0;
  872. // System.UInt32 UnityEngine.Playables.PlayableHandle::m_Version
  873. uint32_t ___m_Version_1;
  874. };
  875. struct PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_StaticFields
  876. {
  877. // UnityEngine.Playables.PlayableHandle UnityEngine.Playables.PlayableHandle::m_Null
  878. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Null_2;
  879. };
  880. // UnityEngine.Playables.PlayableOutputHandle
  881. struct PlayableOutputHandle_tEB217645A8C0356A3AC6F964F283003B9740E883
  882. {
  883. // System.IntPtr UnityEngine.Playables.PlayableOutputHandle::m_Handle
  884. intptr_t ___m_Handle_0;
  885. // System.UInt32 UnityEngine.Playables.PlayableOutputHandle::m_Version
  886. uint32_t ___m_Version_1;
  887. };
  888. struct PlayableOutputHandle_tEB217645A8C0356A3AC6F964F283003B9740E883_StaticFields
  889. {
  890. // UnityEngine.Playables.PlayableOutputHandle UnityEngine.Playables.PlayableOutputHandle::m_Null
  891. PlayableOutputHandle_tEB217645A8C0356A3AC6F964F283003B9740E883 ___m_Null_2;
  892. };
  893. // System.RuntimeFieldHandle
  894. struct RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5
  895. {
  896. // System.IntPtr System.RuntimeFieldHandle::value
  897. intptr_t ___value_0;
  898. };
  899. // System.RuntimeMethodHandle
  900. struct RuntimeMethodHandle_tB35B96E97214DCBE20B0B02B1E687884B34680B2
  901. {
  902. // System.IntPtr System.RuntimeMethodHandle::value
  903. intptr_t ___value_0;
  904. };
  905. // System.RuntimeTypeHandle
  906. struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
  907. {
  908. // System.IntPtr System.RuntimeTypeHandle::value
  909. intptr_t ___value_0;
  910. };
  911. // UnityEngine.Rendering.ScriptableRenderContext
  912. struct ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36
  913. {
  914. // System.IntPtr UnityEngine.Rendering.ScriptableRenderContext::m_Ptr
  915. intptr_t ___m_Ptr_1;
  916. };
  917. struct ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_StaticFields
  918. {
  919. // UnityEngine.Rendering.ShaderTagId UnityEngine.Rendering.ScriptableRenderContext::kRenderTypeTag
  920. ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 ___kRenderTypeTag_0;
  921. };
  922. // System.ReadOnlySpan`1<System.Byte>
  923. struct ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D
  924. {
  925. // System.ByReference`1<T> System.ReadOnlySpan`1::_pointer
  926. ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC ____pointer_0;
  927. // System.Int32 System.ReadOnlySpan`1::_length
  928. int32_t ____length_1;
  929. };
  930. // System.ReadOnlySpan`1<System.Char>
  931. struct ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1
  932. {
  933. // System.ByReference`1<T> System.ReadOnlySpan`1::_pointer
  934. ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 ____pointer_0;
  935. // System.Int32 System.ReadOnlySpan`1::_length
  936. int32_t ____length_1;
  937. };
  938. // System.Span`1<System.Byte>
  939. struct Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305
  940. {
  941. // System.ByReference`1<T> System.Span`1::_pointer
  942. ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC ____pointer_0;
  943. // System.Int32 System.Span`1::_length
  944. int32_t ____length_1;
  945. };
  946. // System.Span`1<System.Char>
  947. struct Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D
  948. {
  949. // System.ByReference`1<T> System.Span`1::_pointer
  950. ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 ____pointer_0;
  951. // System.Int32 System.Span`1::_length
  952. int32_t ____length_1;
  953. };
  954. // System.Span`1<System.Object>
  955. struct Span_1_t3F436092261253E8F2AF9867CA253C3B370766C2
  956. {
  957. // System.ByReference`1<T> System.Span`1::_pointer
  958. ByReference_1_t98B79BFB40A2CA0814BC183B09B4339A5EBF8524 ____pointer_0;
  959. // System.Int32 System.Span`1::_length
  960. int32_t ____length_1;
  961. };
  962. // UnityEngine.Rendering.BatchCullingContext
  963. struct BatchCullingContext_t6133D8CF3B9A93AED429E017C62DC2F5BD64A659
  964. {
  965. // Unity.Collections.NativeArray`1<UnityEngine.Plane> UnityEngine.Rendering.BatchCullingContext::cullingPlanes
  966. NativeArray_1_t4020B6981295FB915DCE82EF368535F680C13A49 ___cullingPlanes_0;
  967. // Unity.Collections.NativeArray`1<UnityEngine.Rendering.BatchVisibility> UnityEngine.Rendering.BatchCullingContext::batchVisibility
  968. NativeArray_1_t88F04A6A2FC556B8A7EE20276F7A2BB13F420AB9 ___batchVisibility_1;
  969. // Unity.Collections.NativeArray`1<System.Int32> UnityEngine.Rendering.BatchCullingContext::visibleIndices
  970. NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C ___visibleIndices_2;
  971. // Unity.Collections.NativeArray`1<System.Int32> UnityEngine.Rendering.BatchCullingContext::visibleIndicesY
  972. NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C ___visibleIndicesY_3;
  973. // UnityEngine.Rendering.LODParameters UnityEngine.Rendering.BatchCullingContext::lodParameters
  974. LODParameters_t54D2AA0FD8E53BCF51D7A42BC1A72FCA8C78A08A ___lodParameters_4;
  975. // UnityEngine.Matrix4x4 UnityEngine.Rendering.BatchCullingContext::cullingMatrix
  976. Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___cullingMatrix_5;
  977. // System.Single UnityEngine.Rendering.BatchCullingContext::nearPlane
  978. float ___nearPlane_6;
  979. };
  980. // UnityEngine.Playables.Playable
  981. struct Playable_t95C6B795846BA0C7D96E4DA14897CCCF2554334F
  982. {
  983. // UnityEngine.Playables.PlayableHandle UnityEngine.Playables.Playable::m_Handle
  984. PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Handle_0;
  985. };
  986. struct Playable_t95C6B795846BA0C7D96E4DA14897CCCF2554334F_StaticFields
  987. {
  988. // UnityEngine.Playables.Playable UnityEngine.Playables.Playable::m_NullPlayable
  989. Playable_t95C6B795846BA0C7D96E4DA14897CCCF2554334F ___m_NullPlayable_1;
  990. };
  991. // UnityEngine.Playables.PlayableOutput
  992. struct PlayableOutput_t2F7C45A58DA3E788EEDDB439549E21CF3FCF3680
  993. {
  994. // UnityEngine.Playables.PlayableOutputHandle UnityEngine.Playables.PlayableOutput::m_Handle
  995. PlayableOutputHandle_tEB217645A8C0356A3AC6F964F283003B9740E883 ___m_Handle_0;
  996. };
  997. struct PlayableOutput_t2F7C45A58DA3E788EEDDB439549E21CF3FCF3680_StaticFields
  998. {
  999. // UnityEngine.Playables.PlayableOutput UnityEngine.Playables.PlayableOutput::m_NullPlayableOutput
  1000. PlayableOutput_t2F7C45A58DA3E788EEDDB439549E21CF3FCF3680 ___m_NullPlayableOutput_1;
  1001. };
  1002. // System.TypedReference
  1003. struct TypedReference_tF20A82297BED597FD80BDA0E41F74746B0FD642B
  1004. {
  1005. // System.RuntimeTypeHandle System.TypedReference::type
  1006. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___type_0;
  1007. // System.IntPtr System.TypedReference::Value
  1008. intptr_t ___Value_1;
  1009. // System.IntPtr System.TypedReference::Type
  1010. intptr_t ___Type_2;
  1011. };
  1012. #ifdef __clang__
  1013. #pragma clang diagnostic pop
  1014. #endif
  1015. static KeyValuePair_2_t8E0D15B87910CDDA42560D1A46FD995D80D1210F UnresolvedVirtualCall_0 (RuntimeObject* __this, const RuntimeMethod* method)
  1016. {
  1017. KeyValuePair_2_t8E0D15B87910CDDA42560D1A46FD995D80D1210F il2cppRetVal;
  1018. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  1019. return il2cppRetVal;
  1020. }
  1021. static KeyValuePair_2_tA15A2CDE2D0067F592CD9373418E53A418842273 UnresolvedVirtualCall_1 (RuntimeObject* __this, const RuntimeMethod* method)
  1022. {
  1023. KeyValuePair_2_tA15A2CDE2D0067F592CD9373418E53A418842273 il2cppRetVal;
  1024. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  1025. return il2cppRetVal;
  1026. }
  1027. static KeyValuePair_2_tFA55EACE445F07ED0E758AB6E024B85AB8FD089D UnresolvedVirtualCall_2 (RuntimeObject* __this, const RuntimeMethod* method)
  1028. {
  1029. KeyValuePair_2_tFA55EACE445F07ED0E758AB6E024B85AB8FD089D il2cppRetVal;
  1030. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  1031. return il2cppRetVal;
  1032. }
  1033. static KeyValuePair_2_tB705E6AEB2BE5DC110A8BC6390AC36BB0F127B47 UnresolvedVirtualCall_3 (RuntimeObject* __this, const RuntimeMethod* method)
  1034. {
  1035. KeyValuePair_2_tB705E6AEB2BE5DC110A8BC6390AC36BB0F127B47 il2cppRetVal;
  1036. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  1037. return il2cppRetVal;
  1038. }
  1039. static KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 UnresolvedVirtualCall_4 (RuntimeObject* __this, const RuntimeMethod* method)
  1040. {
  1041. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 il2cppRetVal;
  1042. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  1043. return il2cppRetVal;
  1044. }
  1045. static NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF UnresolvedVirtualCall_5 (RuntimeObject* __this, const RuntimeMethod* method)
  1046. {
  1047. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF il2cppRetVal;
  1048. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  1049. return il2cppRetVal;
  1050. }
  1051. static Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 UnresolvedVirtualCall_6 (RuntimeObject* __this, const RuntimeMethod* method)
  1052. {
  1053. Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 il2cppRetVal;
  1054. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  1055. return il2cppRetVal;
  1056. }
  1057. static ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D UnresolvedVirtualCall_7 (RuntimeObject* __this, const RuntimeMethod* method)
  1058. {
  1059. ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D il2cppRetVal;
  1060. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  1061. return il2cppRetVal;
  1062. }
  1063. static uint8_t UnresolvedVirtualCall_8 (RuntimeObject* __this, const RuntimeMethod* method)
  1064. {
  1065. uint8_t il2cppRetVal;
  1066. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  1067. return il2cppRetVal;
  1068. }
  1069. static uint8_t UnresolvedVirtualCall_9 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
  1070. {
  1071. void* args[] = {p1};
  1072. uint8_t il2cppRetVal;
  1073. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1074. return il2cppRetVal;
  1075. }
  1076. static ConsoleKeyInfo_t84640C60F53D0F6946B147ADAAF0366BBF1DE900 UnresolvedVirtualCall_10 (RuntimeObject* __this, int8_t p1, const RuntimeMethod* method)
  1077. {
  1078. void* args[] = {&p1};
  1079. ConsoleKeyInfo_t84640C60F53D0F6946B147ADAAF0366BBF1DE900 il2cppRetVal;
  1080. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1081. return il2cppRetVal;
  1082. }
  1083. static CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02 UnresolvedVirtualCall_11 (RuntimeObject* __this, int32_t p1, const RuntimeMethod* method)
  1084. {
  1085. void* args[] = {&p1};
  1086. CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02 il2cppRetVal;
  1087. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1088. return il2cppRetVal;
  1089. }
  1090. static CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F UnresolvedVirtualCall_12 (RuntimeObject* __this, int32_t p1, const RuntimeMethod* method)
  1091. {
  1092. void* args[] = {&p1};
  1093. CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F il2cppRetVal;
  1094. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1095. return il2cppRetVal;
  1096. }
  1097. static DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D UnresolvedVirtualCall_13 (RuntimeObject* __this, const RuntimeMethod* method)
  1098. {
  1099. DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D il2cppRetVal;
  1100. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  1101. return il2cppRetVal;
  1102. }
  1103. static DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D UnresolvedVirtualCall_14 (RuntimeObject* __this, int32_t p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, int32_t p6, int32_t p7, int32_t p8, const RuntimeMethod* method)
  1104. {
  1105. void* args[] = {&p1,&p2,&p3,&p4,&p5,&p6,&p7,&p8};
  1106. DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D il2cppRetVal;
  1107. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1108. return il2cppRetVal;
  1109. }
  1110. static DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D UnresolvedVirtualCall_15 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
  1111. {
  1112. void* args[] = {p1};
  1113. DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D il2cppRetVal;
  1114. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1115. return il2cppRetVal;
  1116. }
  1117. static Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F UnresolvedVirtualCall_16 (RuntimeObject* __this, const RuntimeMethod* method)
  1118. {
  1119. Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F il2cppRetVal;
  1120. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  1121. return il2cppRetVal;
  1122. }
  1123. static Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F UnresolvedVirtualCall_17 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
  1124. {
  1125. void* args[] = {p1};
  1126. Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F il2cppRetVal;
  1127. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1128. return il2cppRetVal;
  1129. }
  1130. static DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB UnresolvedVirtualCall_18 (RuntimeObject* __this, const RuntimeMethod* method)
  1131. {
  1132. DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB il2cppRetVal;
  1133. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  1134. return il2cppRetVal;
  1135. }
  1136. static double UnresolvedVirtualCall_19 (RuntimeObject* __this, const RuntimeMethod* method)
  1137. {
  1138. double il2cppRetVal;
  1139. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  1140. return il2cppRetVal;
  1141. }
  1142. static double UnresolvedVirtualCall_20 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
  1143. {
  1144. void* args[] = {p1};
  1145. double il2cppRetVal;
  1146. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1147. return il2cppRetVal;
  1148. }
  1149. static Guid_t UnresolvedVirtualCall_21 (RuntimeObject* __this, const RuntimeMethod* method)
  1150. {
  1151. Guid_t il2cppRetVal;
  1152. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  1153. return il2cppRetVal;
  1154. }
  1155. static int16_t UnresolvedVirtualCall_22 (RuntimeObject* __this, const RuntimeMethod* method)
  1156. {
  1157. int16_t il2cppRetVal;
  1158. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  1159. return il2cppRetVal;
  1160. }
  1161. static int16_t UnresolvedVirtualCall_23 (RuntimeObject* __this, int16_t p1, const RuntimeMethod* method)
  1162. {
  1163. void* args[] = {&p1};
  1164. int16_t il2cppRetVal;
  1165. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1166. return il2cppRetVal;
  1167. }
  1168. static int16_t UnresolvedVirtualCall_24 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
  1169. {
  1170. void* args[] = {p1};
  1171. int16_t il2cppRetVal;
  1172. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1173. return il2cppRetVal;
  1174. }
  1175. static int32_t UnresolvedVirtualCall_25 (RuntimeObject* __this, const RuntimeMethod* method)
  1176. {
  1177. int32_t il2cppRetVal;
  1178. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  1179. return il2cppRetVal;
  1180. }
  1181. static int32_t UnresolvedVirtualCall_26 (RuntimeObject* __this, ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D p1, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D p2, const RuntimeMethod* method)
  1182. {
  1183. void* args[] = {&p1,&p2};
  1184. int32_t il2cppRetVal;
  1185. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1186. return il2cppRetVal;
  1187. }
  1188. static int32_t UnresolvedVirtualCall_27 (RuntimeObject* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 p1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 p2, const RuntimeMethod* method)
  1189. {
  1190. void* args[] = {&p1,&p2};
  1191. int32_t il2cppRetVal;
  1192. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1193. return il2cppRetVal;
  1194. }
  1195. static int32_t UnresolvedVirtualCall_28 (RuntimeObject* __this, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 p1, const RuntimeMethod* method)
  1196. {
  1197. void* args[] = {&p1};
  1198. int32_t il2cppRetVal;
  1199. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1200. return il2cppRetVal;
  1201. }
  1202. static int32_t UnresolvedVirtualCall_29 (RuntimeObject* __this, ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A p1, const RuntimeMethod* method)
  1203. {
  1204. void* args[] = {&p1};
  1205. int32_t il2cppRetVal;
  1206. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1207. return il2cppRetVal;
  1208. }
  1209. static int32_t UnresolvedVirtualCall_30 (RuntimeObject* __this, uint8_t p1, const RuntimeMethod* method)
  1210. {
  1211. void* args[] = {&p1};
  1212. int32_t il2cppRetVal;
  1213. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1214. return il2cppRetVal;
  1215. }
  1216. static int32_t UnresolvedVirtualCall_31 (RuntimeObject* __this, CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02 p1, const RuntimeMethod* method)
  1217. {
  1218. void* args[] = {&p1};
  1219. int32_t il2cppRetVal;
  1220. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1221. return il2cppRetVal;
  1222. }
  1223. static int32_t UnresolvedVirtualCall_32 (RuntimeObject* __this, CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F p1, const RuntimeMethod* method)
  1224. {
  1225. void* args[] = {&p1};
  1226. int32_t il2cppRetVal;
  1227. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1228. return il2cppRetVal;
  1229. }
  1230. static int32_t UnresolvedVirtualCall_33 (RuntimeObject* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D p1, const RuntimeMethod* method)
  1231. {
  1232. void* args[] = {&p1};
  1233. int32_t il2cppRetVal;
  1234. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1235. return il2cppRetVal;
  1236. }
  1237. static int32_t UnresolvedVirtualCall_34 (RuntimeObject* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D p1, int32_t p2, const RuntimeMethod* method)
  1238. {
  1239. void* args[] = {&p1,&p2};
  1240. int32_t il2cppRetVal;
  1241. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1242. return il2cppRetVal;
  1243. }
  1244. static int32_t UnresolvedVirtualCall_35 (RuntimeObject* __this, int32_t p1, const RuntimeMethod* method)
  1245. {
  1246. void* args[] = {&p1};
  1247. int32_t il2cppRetVal;
  1248. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1249. return il2cppRetVal;
  1250. }
  1251. static int32_t UnresolvedVirtualCall_36 (RuntimeObject* __this, int32_t p1, int32_t p2, const RuntimeMethod* method)
  1252. {
  1253. void* args[] = {&p1,&p2};
  1254. int32_t il2cppRetVal;
  1255. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1256. return il2cppRetVal;
  1257. }
  1258. static int32_t UnresolvedVirtualCall_37 (RuntimeObject* __this, int32_t p1, int32_t p2, int32_t p3, const RuntimeMethod* method)
  1259. {
  1260. void* args[] = {&p1,&p2,&p3};
  1261. int32_t il2cppRetVal;
  1262. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1263. return il2cppRetVal;
  1264. }
  1265. static int32_t UnresolvedVirtualCall_38 (RuntimeObject* __this, int64_t p1, int32_t p2, const RuntimeMethod* method)
  1266. {
  1267. void* args[] = {&p1,&p2};
  1268. int32_t il2cppRetVal;
  1269. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1270. return il2cppRetVal;
  1271. }
  1272. static int32_t UnresolvedVirtualCall_39 (RuntimeObject* __this, intptr_t p1, const RuntimeMethod* method)
  1273. {
  1274. void* args[] = {&p1};
  1275. int32_t il2cppRetVal;
  1276. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1277. return il2cppRetVal;
  1278. }
  1279. static int32_t UnresolvedVirtualCall_40 (RuntimeObject* __this, intptr_t p1, intptr_t p2, const RuntimeMethod* method)
  1280. {
  1281. void* args[] = {&p1,&p2};
  1282. int32_t il2cppRetVal;
  1283. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1284. return il2cppRetVal;
  1285. }
  1286. static int32_t UnresolvedVirtualCall_41 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
  1287. {
  1288. void* args[] = {p1};
  1289. int32_t il2cppRetVal;
  1290. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1291. return il2cppRetVal;
  1292. }
  1293. static int32_t UnresolvedVirtualCall_42 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, const RuntimeMethod* method)
  1294. {
  1295. void* args[] = {p1,&p2};
  1296. int32_t il2cppRetVal;
  1297. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1298. return il2cppRetVal;
  1299. }
  1300. static int32_t UnresolvedVirtualCall_43 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, int32_t p3, const RuntimeMethod* method)
  1301. {
  1302. void* args[] = {p1,&p2,&p3};
  1303. int32_t il2cppRetVal;
  1304. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1305. return il2cppRetVal;
  1306. }
  1307. static int32_t UnresolvedVirtualCall_44 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, int32_t p3, int32_t p4, const RuntimeMethod* method)
  1308. {
  1309. void* args[] = {p1,&p2,&p3,&p4};
  1310. int32_t il2cppRetVal;
  1311. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1312. return il2cppRetVal;
  1313. }
  1314. static int32_t UnresolvedVirtualCall_45 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, int32_t p3, RuntimeObject* p4, int32_t p5, const RuntimeMethod* method)
  1315. {
  1316. void* args[] = {p1,&p2,&p3,p4,&p5};
  1317. int32_t il2cppRetVal;
  1318. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1319. return il2cppRetVal;
  1320. }
  1321. static int32_t UnresolvedVirtualCall_46 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, int32_t p3, RuntimeObject* p4, int32_t p5, int32_t p6, int32_t p7, const RuntimeMethod* method)
  1322. {
  1323. void* args[] = {p1,&p2,&p3,p4,&p5,&p6,&p7};
  1324. int32_t il2cppRetVal;
  1325. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1326. return il2cppRetVal;
  1327. }
  1328. static int32_t UnresolvedVirtualCall_47 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, int32_t p3, RuntimeObject* p4, int32_t p5, int8_t p6, const RuntimeMethod* method)
  1329. {
  1330. void* args[] = {p1,&p2,&p3,p4,&p5,&p6};
  1331. int32_t il2cppRetVal;
  1332. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1333. return il2cppRetVal;
  1334. }
  1335. static int32_t UnresolvedVirtualCall_48 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, int32_t p3, int8_t p4, const RuntimeMethod* method)
  1336. {
  1337. void* args[] = {p1,&p2,&p3,&p4};
  1338. int32_t il2cppRetVal;
  1339. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1340. return il2cppRetVal;
  1341. }
  1342. static int32_t UnresolvedVirtualCall_49 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, RuntimeObject* p3, const RuntimeMethod* method)
  1343. {
  1344. void* args[] = {p1,&p2,p3};
  1345. int32_t il2cppRetVal;
  1346. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1347. return il2cppRetVal;
  1348. }
  1349. static int32_t UnresolvedVirtualCall_50 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, RuntimeObject* p3, int32_t p4, const RuntimeMethod* method)
  1350. {
  1351. void* args[] = {p1,&p2,p3,&p4};
  1352. int32_t il2cppRetVal;
  1353. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1354. return il2cppRetVal;
  1355. }
  1356. static int32_t UnresolvedVirtualCall_51 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, RuntimeObject* p3, int32_t p4, RuntimeObject* p5, const RuntimeMethod* method)
  1357. {
  1358. void* args[] = {p1,&p2,p3,&p4,p5};
  1359. int32_t il2cppRetVal;
  1360. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1361. return il2cppRetVal;
  1362. }
  1363. static int32_t UnresolvedVirtualCall_52 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, RuntimeObject* p3, int32_t p4, int8_t p5, const RuntimeMethod* method)
  1364. {
  1365. void* args[] = {p1,&p2,p3,&p4,&p5};
  1366. int32_t il2cppRetVal;
  1367. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1368. return il2cppRetVal;
  1369. }
  1370. static int32_t UnresolvedVirtualCall_53 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, int8_t p3, const RuntimeMethod* method)
  1371. {
  1372. void* args[] = {p1,&p2,&p3};
  1373. int32_t il2cppRetVal;
  1374. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1375. return il2cppRetVal;
  1376. }
  1377. static int32_t UnresolvedVirtualCall_54 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, const RuntimeMethod* method)
  1378. {
  1379. void* args[] = {p1,p2};
  1380. int32_t il2cppRetVal;
  1381. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1382. return il2cppRetVal;
  1383. }
  1384. static int32_t UnresolvedVirtualCall_55 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, int32_t p3, const RuntimeMethod* method)
  1385. {
  1386. void* args[] = {p1,p2,&p3};
  1387. int32_t il2cppRetVal;
  1388. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1389. return il2cppRetVal;
  1390. }
  1391. static int32_t UnresolvedVirtualCall_56 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, int32_t p3, int32_t p4, const RuntimeMethod* method)
  1392. {
  1393. void* args[] = {p1,p2,&p3,&p4};
  1394. int32_t il2cppRetVal;
  1395. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1396. return il2cppRetVal;
  1397. }
  1398. static int32_t UnresolvedVirtualCall_57 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, int32_t p3, int32_t p4, int32_t p5, const RuntimeMethod* method)
  1399. {
  1400. void* args[] = {p1,p2,&p3,&p4,&p5};
  1401. int32_t il2cppRetVal;
  1402. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1403. return il2cppRetVal;
  1404. }
  1405. static int32_t UnresolvedVirtualCall_58 (RuntimeObject* __this, RuntimeObject* p1, int8_t p2, int32_t p3, const RuntimeMethod* method)
  1406. {
  1407. void* args[] = {p1,&p2,&p3};
  1408. int32_t il2cppRetVal;
  1409. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1410. return il2cppRetVal;
  1411. }
  1412. static int32_t UnresolvedVirtualCall_59 (RuntimeObject* __this, RuntimeObject* p1, OrderBlock_t62FD6F6544F34B5298DEF2F77AAE446F269B7837 p2, int32_t p3, int32_t p4, const RuntimeMethod* method)
  1413. {
  1414. void* args[] = {p1,&p2,&p3,&p4};
  1415. int32_t il2cppRetVal;
  1416. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1417. return il2cppRetVal;
  1418. }
  1419. static int32_t UnresolvedVirtualCall_60 (RuntimeObject* __this, RuntimeObject* p1, RenderRequest_t432931B06439AC4704282E924DE8A9A474DB6B9A p2, int32_t p3, int32_t p4, const RuntimeMethod* method)
  1420. {
  1421. void* args[] = {p1,&p2,&p3,&p4};
  1422. int32_t il2cppRetVal;
  1423. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1424. return il2cppRetVal;
  1425. }
  1426. static int32_t UnresolvedVirtualCall_61 (RuntimeObject* __this, RuntimeObject* p1, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC p2, int32_t p3, int32_t p4, const RuntimeMethod* method)
  1427. {
  1428. void* args[] = {p1,&p2,&p3,&p4};
  1429. int32_t il2cppRetVal;
  1430. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1431. return il2cppRetVal;
  1432. }
  1433. static int32_t UnresolvedVirtualCall_62 (RuntimeObject* __this, RuntimeObject* p1, WorkRequest_t8AF542F2E248D9234341817CDB5F76C27D348B44 p2, int32_t p3, int32_t p4, const RuntimeMethod* method)
  1434. {
  1435. void* args[] = {p1,&p2,&p3,&p4};
  1436. int32_t il2cppRetVal;
  1437. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1438. return il2cppRetVal;
  1439. }
  1440. static int32_t UnresolvedVirtualCall_63 (RuntimeObject* __this, ResourceLocator_t84F68A0DD2AA185761938E49BBE9B2C46A47E122 p1, const RuntimeMethod* method)
  1441. {
  1442. void* args[] = {&p1};
  1443. int32_t il2cppRetVal;
  1444. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1445. return il2cppRetVal;
  1446. }
  1447. static int32_t UnresolvedVirtualCall_64 (RuntimeObject* __this, int8_t p1, const RuntimeMethod* method)
  1448. {
  1449. void* args[] = {&p1};
  1450. int32_t il2cppRetVal;
  1451. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1452. return il2cppRetVal;
  1453. }
  1454. static int32_t UnresolvedVirtualCall_65 (RuntimeObject* __this, int8_t p1, int8_t p2, const RuntimeMethod* method)
  1455. {
  1456. void* args[] = {&p1,&p2};
  1457. int32_t il2cppRetVal;
  1458. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1459. return il2cppRetVal;
  1460. }
  1461. static int32_t UnresolvedVirtualCall_66 (RuntimeObject* __this, uint64_t p1, const RuntimeMethod* method)
  1462. {
  1463. void* args[] = {&p1};
  1464. int32_t il2cppRetVal;
  1465. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1466. return il2cppRetVal;
  1467. }
  1468. static int32_t UnresolvedVirtualCall_67 (RuntimeObject* __this, uint64_t p1, uint64_t p2, const RuntimeMethod* method)
  1469. {
  1470. void* args[] = {&p1,&p2};
  1471. int32_t il2cppRetVal;
  1472. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1473. return il2cppRetVal;
  1474. }
  1475. static int32_t UnresolvedVirtualCall_68 (RuntimeObject* __this, OrderBlock_t62FD6F6544F34B5298DEF2F77AAE446F269B7837 p1, const RuntimeMethod* method)
  1476. {
  1477. void* args[] = {&p1};
  1478. int32_t il2cppRetVal;
  1479. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1480. return il2cppRetVal;
  1481. }
  1482. static int32_t UnresolvedVirtualCall_69 (RuntimeObject* __this, OrderBlock_t62FD6F6544F34B5298DEF2F77AAE446F269B7837 p1, OrderBlock_t62FD6F6544F34B5298DEF2F77AAE446F269B7837 p2, const RuntimeMethod* method)
  1483. {
  1484. void* args[] = {&p1,&p2};
  1485. int32_t il2cppRetVal;
  1486. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1487. return il2cppRetVal;
  1488. }
  1489. static int32_t UnresolvedVirtualCall_70 (RuntimeObject* __this, RenderRequest_t432931B06439AC4704282E924DE8A9A474DB6B9A p1, const RuntimeMethod* method)
  1490. {
  1491. void* args[] = {&p1};
  1492. int32_t il2cppRetVal;
  1493. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1494. return il2cppRetVal;
  1495. }
  1496. static int32_t UnresolvedVirtualCall_71 (RuntimeObject* __this, RenderRequest_t432931B06439AC4704282E924DE8A9A474DB6B9A p1, RenderRequest_t432931B06439AC4704282E924DE8A9A474DB6B9A p2, const RuntimeMethod* method)
  1497. {
  1498. void* args[] = {&p1,&p2};
  1499. int32_t il2cppRetVal;
  1500. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1501. return il2cppRetVal;
  1502. }
  1503. static int32_t UnresolvedVirtualCall_72 (RuntimeObject* __this, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 p1, const RuntimeMethod* method)
  1504. {
  1505. void* args[] = {&p1};
  1506. int32_t il2cppRetVal;
  1507. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1508. return il2cppRetVal;
  1509. }
  1510. static int32_t UnresolvedVirtualCall_73 (RuntimeObject* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC p1, const RuntimeMethod* method)
  1511. {
  1512. void* args[] = {&p1};
  1513. int32_t il2cppRetVal;
  1514. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1515. return il2cppRetVal;
  1516. }
  1517. static int32_t UnresolvedVirtualCall_74 (RuntimeObject* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC p1, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC p2, const RuntimeMethod* method)
  1518. {
  1519. void* args[] = {&p1,&p2};
  1520. int32_t il2cppRetVal;
  1521. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1522. return il2cppRetVal;
  1523. }
  1524. static int32_t UnresolvedVirtualCall_75 (RuntimeObject* __this, WorkRequest_t8AF542F2E248D9234341817CDB5F76C27D348B44 p1, const RuntimeMethod* method)
  1525. {
  1526. void* args[] = {&p1};
  1527. int32_t il2cppRetVal;
  1528. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1529. return il2cppRetVal;
  1530. }
  1531. static int32_t UnresolvedVirtualCall_76 (RuntimeObject* __this, WorkRequest_t8AF542F2E248D9234341817CDB5F76C27D348B44 p1, WorkRequest_t8AF542F2E248D9234341817CDB5F76C27D348B44 p2, const RuntimeMethod* method)
  1532. {
  1533. void* args[] = {&p1,&p2};
  1534. int32_t il2cppRetVal;
  1535. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1536. return il2cppRetVal;
  1537. }
  1538. static int64_t UnresolvedVirtualCall_77 (RuntimeObject* __this, const RuntimeMethod* method)
  1539. {
  1540. int64_t il2cppRetVal;
  1541. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  1542. return il2cppRetVal;
  1543. }
  1544. static int64_t UnresolvedVirtualCall_78 (RuntimeObject* __this, int64_t p1, int32_t p2, const RuntimeMethod* method)
  1545. {
  1546. void* args[] = {&p1,&p2};
  1547. int64_t il2cppRetVal;
  1548. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1549. return il2cppRetVal;
  1550. }
  1551. static int64_t UnresolvedVirtualCall_79 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
  1552. {
  1553. void* args[] = {p1};
  1554. int64_t il2cppRetVal;
  1555. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1556. return il2cppRetVal;
  1557. }
  1558. static int64_t UnresolvedVirtualCall_80 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, const RuntimeMethod* method)
  1559. {
  1560. void* args[] = {p1,p2};
  1561. int64_t il2cppRetVal;
  1562. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1563. return il2cppRetVal;
  1564. }
  1565. static intptr_t UnresolvedVirtualCall_81 (RuntimeObject* __this, const RuntimeMethod* method)
  1566. {
  1567. intptr_t il2cppRetVal;
  1568. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  1569. return il2cppRetVal;
  1570. }
  1571. static JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 UnresolvedVirtualCall_82 (RuntimeObject* __this, BatchCullingContext_t6133D8CF3B9A93AED429E017C62DC2F5BD64A659 p1, const RuntimeMethod* method)
  1572. {
  1573. void* args[] = {&p1};
  1574. JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 il2cppRetVal;
  1575. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1576. return il2cppRetVal;
  1577. }
  1578. static JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 UnresolvedVirtualCall_83 (RuntimeObject* __this, RuntimeObject* p1, BatchCullingContext_t6133D8CF3B9A93AED429E017C62DC2F5BD64A659 p2, const RuntimeMethod* method)
  1579. {
  1580. void* args[] = {p1,&p2};
  1581. JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 il2cppRetVal;
  1582. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1583. return il2cppRetVal;
  1584. }
  1585. static RuntimeObject* UnresolvedVirtualCall_84 (RuntimeObject* __this, const RuntimeMethod* method)
  1586. {
  1587. RuntimeObject* il2cppRetVal;
  1588. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  1589. return il2cppRetVal;
  1590. }
  1591. static RuntimeObject* UnresolvedVirtualCall_85 (RuntimeObject* __this, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 p1, const RuntimeMethod* method)
  1592. {
  1593. void* args[] = {&p1};
  1594. RuntimeObject* il2cppRetVal;
  1595. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1596. return il2cppRetVal;
  1597. }
  1598. static RuntimeObject* UnresolvedVirtualCall_86 (RuntimeObject* __this, int32_t p1, const RuntimeMethod* method)
  1599. {
  1600. void* args[] = {&p1};
  1601. RuntimeObject* il2cppRetVal;
  1602. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1603. return il2cppRetVal;
  1604. }
  1605. static RuntimeObject* UnresolvedVirtualCall_87 (RuntimeObject* __this, int32_t p1, RuntimeObject* p2, int32_t p3, RuntimeObject* p4, RuntimeObject* p5, const RuntimeMethod* method)
  1606. {
  1607. void* args[] = {&p1,p2,&p3,p4,p5};
  1608. RuntimeObject* il2cppRetVal;
  1609. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1610. return il2cppRetVal;
  1611. }
  1612. static RuntimeObject* UnresolvedVirtualCall_88 (RuntimeObject* __this, int32_t p1, RuntimeObject* p2, RuntimeObject* p3, const RuntimeMethod* method)
  1613. {
  1614. void* args[] = {&p1,p2,p3};
  1615. RuntimeObject* il2cppRetVal;
  1616. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1617. return il2cppRetVal;
  1618. }
  1619. static RuntimeObject* UnresolvedVirtualCall_89 (RuntimeObject* __this, int32_t p1, RuntimeObject* p2, RuntimeObject* p3, RuntimeObject* p4, const RuntimeMethod* method)
  1620. {
  1621. void* args[] = {&p1,p2,p3,p4};
  1622. RuntimeObject* il2cppRetVal;
  1623. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1624. return il2cppRetVal;
  1625. }
  1626. static RuntimeObject* UnresolvedVirtualCall_90 (RuntimeObject* __this, int32_t p1, RuntimeObject* p2, RuntimeObject* p3, RuntimeObject* p4, RuntimeObject* p5, const RuntimeMethod* method)
  1627. {
  1628. void* args[] = {&p1,p2,p3,p4,p5};
  1629. RuntimeObject* il2cppRetVal;
  1630. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1631. return il2cppRetVal;
  1632. }
  1633. static RuntimeObject* UnresolvedVirtualCall_91 (RuntimeObject* __this, int32_t p1, RuntimeObject* p2, RuntimeObject* p3, RuntimeObject* p4, RuntimeObject* p5, RuntimeObject* p6, RuntimeObject* p7, const RuntimeMethod* method)
  1634. {
  1635. void* args[] = {&p1,p2,p3,p4,p5,p6,p7};
  1636. RuntimeObject* il2cppRetVal;
  1637. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1638. return il2cppRetVal;
  1639. }
  1640. static RuntimeObject* UnresolvedVirtualCall_92 (RuntimeObject* __this, int64_t p1, const RuntimeMethod* method)
  1641. {
  1642. void* args[] = {&p1};
  1643. RuntimeObject* il2cppRetVal;
  1644. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1645. return il2cppRetVal;
  1646. }
  1647. static RuntimeObject* UnresolvedVirtualCall_93 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
  1648. {
  1649. void* args[] = {p1};
  1650. RuntimeObject* il2cppRetVal;
  1651. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1652. return il2cppRetVal;
  1653. }
  1654. static RuntimeObject* UnresolvedVirtualCall_94 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, const RuntimeMethod* method)
  1655. {
  1656. void* args[] = {p1,&p2};
  1657. RuntimeObject* il2cppRetVal;
  1658. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1659. return il2cppRetVal;
  1660. }
  1661. static RuntimeObject* UnresolvedVirtualCall_95 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, int32_t p3, const RuntimeMethod* method)
  1662. {
  1663. void* args[] = {p1,&p2,&p3};
  1664. RuntimeObject* il2cppRetVal;
  1665. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1666. return il2cppRetVal;
  1667. }
  1668. static RuntimeObject* UnresolvedVirtualCall_96 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, int32_t p3, RuntimeObject* p4, RuntimeObject* p5, const RuntimeMethod* method)
  1669. {
  1670. void* args[] = {p1,&p2,&p3,p4,p5};
  1671. RuntimeObject* il2cppRetVal;
  1672. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1673. return il2cppRetVal;
  1674. }
  1675. static RuntimeObject* UnresolvedVirtualCall_97 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, RuntimeObject* p3, int32_t p4, RuntimeObject* p5, RuntimeObject* p6, const RuntimeMethod* method)
  1676. {
  1677. void* args[] = {p1,&p2,p3,&p4,p5,p6};
  1678. RuntimeObject* il2cppRetVal;
  1679. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1680. return il2cppRetVal;
  1681. }
  1682. static RuntimeObject* UnresolvedVirtualCall_98 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, RuntimeObject* p3, RuntimeObject* p4, RuntimeObject* p5, const RuntimeMethod* method)
  1683. {
  1684. void* args[] = {p1,&p2,p3,p4,p5};
  1685. RuntimeObject* il2cppRetVal;
  1686. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1687. return il2cppRetVal;
  1688. }
  1689. static RuntimeObject* UnresolvedVirtualCall_99 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, RuntimeObject* p3, RuntimeObject* p4, RuntimeObject* p5, RuntimeObject* p6, const RuntimeMethod* method)
  1690. {
  1691. void* args[] = {p1,&p2,p3,p4,p5,p6};
  1692. RuntimeObject* il2cppRetVal;
  1693. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1694. return il2cppRetVal;
  1695. }
  1696. static RuntimeObject* UnresolvedVirtualCall_100 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, RuntimeObject* p3, RuntimeObject* p4, RuntimeObject* p5, RuntimeObject* p6, RuntimeObject* p7, RuntimeObject* p8, const RuntimeMethod* method)
  1697. {
  1698. void* args[] = {p1,&p2,p3,p4,p5,p6,p7,p8};
  1699. RuntimeObject* il2cppRetVal;
  1700. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1701. return il2cppRetVal;
  1702. }
  1703. static RuntimeObject* UnresolvedVirtualCall_101 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, const RuntimeMethod* method)
  1704. {
  1705. void* args[] = {p1,p2};
  1706. RuntimeObject* il2cppRetVal;
  1707. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1708. return il2cppRetVal;
  1709. }
  1710. static RuntimeObject* UnresolvedVirtualCall_102 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, RuntimeObject* p3, const RuntimeMethod* method)
  1711. {
  1712. void* args[] = {p1,p2,p3};
  1713. RuntimeObject* il2cppRetVal;
  1714. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1715. return il2cppRetVal;
  1716. }
  1717. static RuntimeObject* UnresolvedVirtualCall_103 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, RuntimeObject* p3, RuntimeObject* p4, const RuntimeMethod* method)
  1718. {
  1719. void* args[] = {p1,p2,p3,p4};
  1720. RuntimeObject* il2cppRetVal;
  1721. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1722. return il2cppRetVal;
  1723. }
  1724. static RuntimeObject* UnresolvedVirtualCall_104 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, int8_t p3, const RuntimeMethod* method)
  1725. {
  1726. void* args[] = {p1,p2,&p3};
  1727. RuntimeObject* il2cppRetVal;
  1728. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1729. return il2cppRetVal;
  1730. }
  1731. static RuntimeObject* UnresolvedVirtualCall_105 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 p3, RuntimeObject* p4, const RuntimeMethod* method)
  1732. {
  1733. void* args[] = {p1,p2,&p3,p4};
  1734. RuntimeObject* il2cppRetVal;
  1735. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1736. return il2cppRetVal;
  1737. }
  1738. static RuntimeObject* UnresolvedVirtualCall_106 (RuntimeObject* __this, RuntimeObject* p1, int8_t p2, const RuntimeMethod* method)
  1739. {
  1740. void* args[] = {p1,&p2};
  1741. RuntimeObject* il2cppRetVal;
  1742. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1743. return il2cppRetVal;
  1744. }
  1745. static RuntimeObject* UnresolvedVirtualCall_107 (RuntimeObject* __this, RuntimeObject* p1, int8_t p2, int8_t p3, const RuntimeMethod* method)
  1746. {
  1747. void* args[] = {p1,&p2,&p3};
  1748. RuntimeObject* il2cppRetVal;
  1749. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1750. return il2cppRetVal;
  1751. }
  1752. static RuntimeObject* UnresolvedVirtualCall_108 (RuntimeObject* __this, RuntimeObject* p1, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 p2, RuntimeObject* p3, const RuntimeMethod* method)
  1753. {
  1754. void* args[] = {p1,&p2,p3};
  1755. RuntimeObject* il2cppRetVal;
  1756. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1757. return il2cppRetVal;
  1758. }
  1759. static RuntimeObject* UnresolvedVirtualCall_109 (RuntimeObject* __this, int8_t p1, const RuntimeMethod* method)
  1760. {
  1761. void* args[] = {&p1};
  1762. RuntimeObject* il2cppRetVal;
  1763. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1764. return il2cppRetVal;
  1765. }
  1766. static RuntimeObject* UnresolvedVirtualCall_110 (RuntimeObject* __this, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 p1, const RuntimeMethod* method)
  1767. {
  1768. void* args[] = {&p1};
  1769. RuntimeObject* il2cppRetVal;
  1770. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1771. return il2cppRetVal;
  1772. }
  1773. static Playable_t95C6B795846BA0C7D96E4DA14897CCCF2554334F UnresolvedVirtualCall_111 (RuntimeObject* __this, PlayableGraph_t4A5B0B45343A240F0761574FD7C672E0CFFF7A6E p1, RuntimeObject* p2, const RuntimeMethod* method)
  1774. {
  1775. void* args[] = {&p1,p2};
  1776. Playable_t95C6B795846BA0C7D96E4DA14897CCCF2554334F il2cppRetVal;
  1777. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1778. return il2cppRetVal;
  1779. }
  1780. static PlayableOutput_t2F7C45A58DA3E788EEDDB439549E21CF3FCF3680 UnresolvedVirtualCall_112 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
  1781. {
  1782. void* args[] = {p1};
  1783. PlayableOutput_t2F7C45A58DA3E788EEDDB439549E21CF3FCF3680 il2cppRetVal;
  1784. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1785. return il2cppRetVal;
  1786. }
  1787. static PlayableOutput_t2F7C45A58DA3E788EEDDB439549E21CF3FCF3680 UnresolvedVirtualCall_113 (RuntimeObject* __this, PlayableGraph_t4A5B0B45343A240F0761574FD7C672E0CFFF7A6E p1, RuntimeObject* p2, const RuntimeMethod* method)
  1788. {
  1789. void* args[] = {&p1,p2};
  1790. PlayableOutput_t2F7C45A58DA3E788EEDDB439549E21CF3FCF3680 il2cppRetVal;
  1791. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1792. return il2cppRetVal;
  1793. }
  1794. static Range_tDDBAD7CBDC5DD273DA4330F4E9CDF24C62F16ED6 UnresolvedVirtualCall_114 (RuntimeObject* __this, const RuntimeMethod* method)
  1795. {
  1796. Range_tDDBAD7CBDC5DD273DA4330F4E9CDF24C62F16ED6 il2cppRetVal;
  1797. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  1798. return il2cppRetVal;
  1799. }
  1800. static RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 UnresolvedVirtualCall_115 (RuntimeObject* __this, const RuntimeMethod* method)
  1801. {
  1802. RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 il2cppRetVal;
  1803. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  1804. return il2cppRetVal;
  1805. }
  1806. static RuntimeMethodHandle_tB35B96E97214DCBE20B0B02B1E687884B34680B2 UnresolvedVirtualCall_116 (RuntimeObject* __this, const RuntimeMethod* method)
  1807. {
  1808. RuntimeMethodHandle_tB35B96E97214DCBE20B0B02B1E687884B34680B2 il2cppRetVal;
  1809. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  1810. return il2cppRetVal;
  1811. }
  1812. static RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B UnresolvedVirtualCall_117 (RuntimeObject* __this, const RuntimeMethod* method)
  1813. {
  1814. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B il2cppRetVal;
  1815. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  1816. return il2cppRetVal;
  1817. }
  1818. static int8_t UnresolvedVirtualCall_118 (RuntimeObject* __this, const RuntimeMethod* method)
  1819. {
  1820. int8_t il2cppRetVal;
  1821. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  1822. return il2cppRetVal;
  1823. }
  1824. static int8_t UnresolvedVirtualCall_119 (RuntimeObject* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D p1, RuntimeObject* p2, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 p3, RuntimeObject* p4, const RuntimeMethod* method)
  1825. {
  1826. void* args[] = {&p1,p2,&p3,p4};
  1827. int8_t il2cppRetVal;
  1828. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1829. return il2cppRetVal;
  1830. }
  1831. static int8_t UnresolvedVirtualCall_120 (RuntimeObject* __this, ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A p1, ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A p2, const RuntimeMethod* method)
  1832. {
  1833. void* args[] = {&p1,&p2};
  1834. int8_t il2cppRetVal;
  1835. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1836. return il2cppRetVal;
  1837. }
  1838. static int8_t UnresolvedVirtualCall_121 (RuntimeObject* __this, uint8_t p1, uint8_t p2, const RuntimeMethod* method)
  1839. {
  1840. void* args[] = {&p1,&p2};
  1841. int8_t il2cppRetVal;
  1842. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1843. return il2cppRetVal;
  1844. }
  1845. static int8_t UnresolvedVirtualCall_122 (RuntimeObject* __this, CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02 p1, const RuntimeMethod* method)
  1846. {
  1847. void* args[] = {&p1};
  1848. int8_t il2cppRetVal;
  1849. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1850. return il2cppRetVal;
  1851. }
  1852. static int8_t UnresolvedVirtualCall_123 (RuntimeObject* __this, CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F p1, const RuntimeMethod* method)
  1853. {
  1854. void* args[] = {&p1};
  1855. int8_t il2cppRetVal;
  1856. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1857. return il2cppRetVal;
  1858. }
  1859. static int8_t UnresolvedVirtualCall_124 (RuntimeObject* __this, Guid_t p1, RuntimeObject* p2, int32_t p3, const RuntimeMethod* method)
  1860. {
  1861. void* args[] = {&p1,p2,&p3};
  1862. int8_t il2cppRetVal;
  1863. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1864. return il2cppRetVal;
  1865. }
  1866. static int8_t UnresolvedVirtualCall_125 (RuntimeObject* __this, int16_t p1, const RuntimeMethod* method)
  1867. {
  1868. void* args[] = {&p1};
  1869. int8_t il2cppRetVal;
  1870. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1871. return il2cppRetVal;
  1872. }
  1873. static int8_t UnresolvedVirtualCall_126 (RuntimeObject* __this, int16_t p1, int16_t p2, int32_t p3, const RuntimeMethod* method)
  1874. {
  1875. void* args[] = {&p1,&p2,&p3};
  1876. int8_t il2cppRetVal;
  1877. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1878. return il2cppRetVal;
  1879. }
  1880. static int8_t UnresolvedVirtualCall_127 (RuntimeObject* __this, int16_t p1, int32_t p2, const RuntimeMethod* method)
  1881. {
  1882. void* args[] = {&p1,&p2};
  1883. int8_t il2cppRetVal;
  1884. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1885. return il2cppRetVal;
  1886. }
  1887. static int8_t UnresolvedVirtualCall_128 (RuntimeObject* __this, int16_t p1, RuntimeObject* p2, const RuntimeMethod* method)
  1888. {
  1889. void* args[] = {&p1,p2};
  1890. int8_t il2cppRetVal;
  1891. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1892. return il2cppRetVal;
  1893. }
  1894. static int8_t UnresolvedVirtualCall_129 (RuntimeObject* __this, int32_t p1, const RuntimeMethod* method)
  1895. {
  1896. void* args[] = {&p1};
  1897. int8_t il2cppRetVal;
  1898. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1899. return il2cppRetVal;
  1900. }
  1901. static int8_t UnresolvedVirtualCall_130 (RuntimeObject* __this, int32_t p1, int32_t p2, const RuntimeMethod* method)
  1902. {
  1903. void* args[] = {&p1,&p2};
  1904. int8_t il2cppRetVal;
  1905. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1906. return il2cppRetVal;
  1907. }
  1908. static int8_t UnresolvedVirtualCall_131 (RuntimeObject* __this, int32_t p1, int32_t p2, int32_t p3, const RuntimeMethod* method)
  1909. {
  1910. void* args[] = {&p1,&p2,&p3};
  1911. int8_t il2cppRetVal;
  1912. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1913. return il2cppRetVal;
  1914. }
  1915. static int8_t UnresolvedVirtualCall_132 (RuntimeObject* __this, int32_t p1, int32_t p2, int32_t p3, int32_t p4, const RuntimeMethod* method)
  1916. {
  1917. void* args[] = {&p1,&p2,&p3,&p4};
  1918. int8_t il2cppRetVal;
  1919. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1920. return il2cppRetVal;
  1921. }
  1922. static int8_t UnresolvedVirtualCall_133 (RuntimeObject* __this, int32_t p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, int32_t p6, int32_t p7, int32_t p8, RuntimeObject* p9, const RuntimeMethod* method)
  1923. {
  1924. void* args[] = {&p1,&p2,&p3,&p4,&p5,&p6,&p7,&p8,p9};
  1925. int8_t il2cppRetVal;
  1926. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1927. return il2cppRetVal;
  1928. }
  1929. static int8_t UnresolvedVirtualCall_134 (RuntimeObject* __this, int32_t p1, int8_t p2, const RuntimeMethod* method)
  1930. {
  1931. void* args[] = {&p1,&p2};
  1932. int8_t il2cppRetVal;
  1933. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1934. return il2cppRetVal;
  1935. }
  1936. static int8_t UnresolvedVirtualCall_135 (RuntimeObject* __this, intptr_t p1, intptr_t p2, const RuntimeMethod* method)
  1937. {
  1938. void* args[] = {&p1,&p2};
  1939. int8_t il2cppRetVal;
  1940. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1941. return il2cppRetVal;
  1942. }
  1943. static int8_t UnresolvedVirtualCall_136 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
  1944. {
  1945. void* args[] = {p1};
  1946. int8_t il2cppRetVal;
  1947. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1948. return il2cppRetVal;
  1949. }
  1950. static int8_t UnresolvedVirtualCall_137 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, const RuntimeMethod* method)
  1951. {
  1952. void* args[] = {p1,&p2};
  1953. int8_t il2cppRetVal;
  1954. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1955. return il2cppRetVal;
  1956. }
  1957. static int8_t UnresolvedVirtualCall_138 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, const RuntimeMethod* method)
  1958. {
  1959. void* args[] = {p1,p2};
  1960. int8_t il2cppRetVal;
  1961. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1962. return il2cppRetVal;
  1963. }
  1964. static int8_t UnresolvedVirtualCall_139 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, int32_t p3, const RuntimeMethod* method)
  1965. {
  1966. void* args[] = {p1,p2,&p3};
  1967. int8_t il2cppRetVal;
  1968. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1969. return il2cppRetVal;
  1970. }
  1971. static int8_t UnresolvedVirtualCall_140 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, RuntimeObject* p3, const RuntimeMethod* method)
  1972. {
  1973. void* args[] = {p1,p2,p3};
  1974. int8_t il2cppRetVal;
  1975. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1976. return il2cppRetVal;
  1977. }
  1978. static int8_t UnresolvedVirtualCall_141 (RuntimeObject* __this, RuntimeObject* p1, int8_t p2, const RuntimeMethod* method)
  1979. {
  1980. void* args[] = {p1,&p2};
  1981. int8_t il2cppRetVal;
  1982. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1983. return il2cppRetVal;
  1984. }
  1985. static int8_t UnresolvedVirtualCall_142 (RuntimeObject* __this, ResourceLocator_t84F68A0DD2AA185761938E49BBE9B2C46A47E122 p1, ResourceLocator_t84F68A0DD2AA185761938E49BBE9B2C46A47E122 p2, const RuntimeMethod* method)
  1986. {
  1987. void* args[] = {&p1,&p2};
  1988. int8_t il2cppRetVal;
  1989. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1990. return il2cppRetVal;
  1991. }
  1992. static int8_t UnresolvedVirtualCall_143 (RuntimeObject* __this, int8_t p1, int8_t p2, const RuntimeMethod* method)
  1993. {
  1994. void* args[] = {&p1,&p2};
  1995. int8_t il2cppRetVal;
  1996. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  1997. return il2cppRetVal;
  1998. }
  1999. static int8_t UnresolvedVirtualCall_144 (RuntimeObject* __this, OrderBlock_t62FD6F6544F34B5298DEF2F77AAE446F269B7837 p1, const RuntimeMethod* method)
  2000. {
  2001. void* args[] = {&p1};
  2002. int8_t il2cppRetVal;
  2003. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  2004. return il2cppRetVal;
  2005. }
  2006. static int8_t UnresolvedVirtualCall_145 (RuntimeObject* __this, OrderBlock_t62FD6F6544F34B5298DEF2F77AAE446F269B7837 p1, OrderBlock_t62FD6F6544F34B5298DEF2F77AAE446F269B7837 p2, const RuntimeMethod* method)
  2007. {
  2008. void* args[] = {&p1,&p2};
  2009. int8_t il2cppRetVal;
  2010. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  2011. return il2cppRetVal;
  2012. }
  2013. static int8_t UnresolvedVirtualCall_146 (RuntimeObject* __this, RenderRequest_t432931B06439AC4704282E924DE8A9A474DB6B9A p1, const RuntimeMethod* method)
  2014. {
  2015. void* args[] = {&p1};
  2016. int8_t il2cppRetVal;
  2017. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  2018. return il2cppRetVal;
  2019. }
  2020. static int8_t UnresolvedVirtualCall_147 (RuntimeObject* __this, RenderRequest_t432931B06439AC4704282E924DE8A9A474DB6B9A p1, RenderRequest_t432931B06439AC4704282E924DE8A9A474DB6B9A p2, const RuntimeMethod* method)
  2021. {
  2022. void* args[] = {&p1,&p2};
  2023. int8_t il2cppRetVal;
  2024. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  2025. return il2cppRetVal;
  2026. }
  2027. static int8_t UnresolvedVirtualCall_148 (RuntimeObject* __this, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 p1, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 p2, const RuntimeMethod* method)
  2028. {
  2029. void* args[] = {&p1,&p2};
  2030. int8_t il2cppRetVal;
  2031. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  2032. return il2cppRetVal;
  2033. }
  2034. static int8_t UnresolvedVirtualCall_149 (RuntimeObject* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC p1, const RuntimeMethod* method)
  2035. {
  2036. void* args[] = {&p1};
  2037. int8_t il2cppRetVal;
  2038. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  2039. return il2cppRetVal;
  2040. }
  2041. static int8_t UnresolvedVirtualCall_150 (RuntimeObject* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC p1, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC p2, const RuntimeMethod* method)
  2042. {
  2043. void* args[] = {&p1,&p2};
  2044. int8_t il2cppRetVal;
  2045. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  2046. return il2cppRetVal;
  2047. }
  2048. static int8_t UnresolvedVirtualCall_151 (RuntimeObject* __this, WorkRequest_t8AF542F2E248D9234341817CDB5F76C27D348B44 p1, const RuntimeMethod* method)
  2049. {
  2050. void* args[] = {&p1};
  2051. int8_t il2cppRetVal;
  2052. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  2053. return il2cppRetVal;
  2054. }
  2055. static int8_t UnresolvedVirtualCall_152 (RuntimeObject* __this, WorkRequest_t8AF542F2E248D9234341817CDB5F76C27D348B44 p1, WorkRequest_t8AF542F2E248D9234341817CDB5F76C27D348B44 p2, const RuntimeMethod* method)
  2056. {
  2057. void* args[] = {&p1,&p2};
  2058. int8_t il2cppRetVal;
  2059. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  2060. return il2cppRetVal;
  2061. }
  2062. static float UnresolvedVirtualCall_153 (RuntimeObject* __this, const RuntimeMethod* method)
  2063. {
  2064. float il2cppRetVal;
  2065. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  2066. return il2cppRetVal;
  2067. }
  2068. static float UnresolvedVirtualCall_154 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
  2069. {
  2070. void* args[] = {p1};
  2071. float il2cppRetVal;
  2072. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  2073. return il2cppRetVal;
  2074. }
  2075. static TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A UnresolvedVirtualCall_155 (RuntimeObject* __this, const RuntimeMethod* method)
  2076. {
  2077. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A il2cppRetVal;
  2078. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  2079. return il2cppRetVal;
  2080. }
  2081. static TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A UnresolvedVirtualCall_156 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
  2082. {
  2083. void* args[] = {p1};
  2084. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A il2cppRetVal;
  2085. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  2086. return il2cppRetVal;
  2087. }
  2088. static TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A UnresolvedVirtualCall_157 (RuntimeObject* __this, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A p1, const RuntimeMethod* method)
  2089. {
  2090. void* args[] = {&p1};
  2091. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A il2cppRetVal;
  2092. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  2093. return il2cppRetVal;
  2094. }
  2095. static uint16_t UnresolvedVirtualCall_158 (RuntimeObject* __this, const RuntimeMethod* method)
  2096. {
  2097. uint16_t il2cppRetVal;
  2098. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  2099. return il2cppRetVal;
  2100. }
  2101. static uint16_t UnresolvedVirtualCall_159 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
  2102. {
  2103. void* args[] = {p1};
  2104. uint16_t il2cppRetVal;
  2105. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  2106. return il2cppRetVal;
  2107. }
  2108. static uint32_t UnresolvedVirtualCall_160 (RuntimeObject* __this, const RuntimeMethod* method)
  2109. {
  2110. uint32_t il2cppRetVal;
  2111. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  2112. return il2cppRetVal;
  2113. }
  2114. static uint32_t UnresolvedVirtualCall_161 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
  2115. {
  2116. void* args[] = {p1};
  2117. uint32_t il2cppRetVal;
  2118. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  2119. return il2cppRetVal;
  2120. }
  2121. static uint64_t UnresolvedVirtualCall_162 (RuntimeObject* __this, const RuntimeMethod* method)
  2122. {
  2123. uint64_t il2cppRetVal;
  2124. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  2125. return il2cppRetVal;
  2126. }
  2127. static uint64_t UnresolvedVirtualCall_163 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
  2128. {
  2129. void* args[] = {p1};
  2130. uint64_t il2cppRetVal;
  2131. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  2132. return il2cppRetVal;
  2133. }
  2134. static void UnresolvedVirtualCall_164 (RuntimeObject* __this, const RuntimeMethod* method)
  2135. {
  2136. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, NULL);
  2137. }
  2138. static void UnresolvedVirtualCall_165 (RuntimeObject* __this, NativeArray_1_tDF6A1978B5813BF4DAD7948E398009FFC9BEA38D p1, const RuntimeMethod* method)
  2139. {
  2140. void* args[] = {&p1};
  2141. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2142. }
  2143. static void UnresolvedVirtualCall_166 (RuntimeObject* __this, ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D p1, const RuntimeMethod* method)
  2144. {
  2145. void* args[] = {&p1};
  2146. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2147. }
  2148. static void UnresolvedVirtualCall_167 (RuntimeObject* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D p1, ValueTuple_3_tFD2ADB3DA89E958885034AAFEF1ABDA8C814D987 p2, const RuntimeMethod* method)
  2149. {
  2150. void* args[] = {&p1,&p2};
  2151. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2152. }
  2153. static void UnresolvedVirtualCall_168 (RuntimeObject* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D p1, ValueTuple_5_t558B9F95CA55DE5694FC58A3BEAE441BF728FB57 p2, const RuntimeMethod* method)
  2154. {
  2155. void* args[] = {&p1,&p2};
  2156. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2157. }
  2158. static void UnresolvedVirtualCall_169 (RuntimeObject* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D p1, RuntimeObject* p2, const RuntimeMethod* method)
  2159. {
  2160. void* args[] = {&p1,p2};
  2161. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2162. }
  2163. static void UnresolvedVirtualCall_170 (RuntimeObject* __this, Span_1_t3F436092261253E8F2AF9867CA253C3B370766C2 p1, RuntimeObject* p2, const RuntimeMethod* method)
  2164. {
  2165. void* args[] = {&p1,p2};
  2166. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2167. }
  2168. static void UnresolvedVirtualCall_171 (RuntimeObject* __this, ValueTuple_3_tFD2ADB3DA89E958885034AAFEF1ABDA8C814D987 p1, const RuntimeMethod* method)
  2169. {
  2170. void* args[] = {&p1};
  2171. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2172. }
  2173. static void UnresolvedVirtualCall_172 (RuntimeObject* __this, ValueTuple_5_t558B9F95CA55DE5694FC58A3BEAE441BF728FB57 p1, const RuntimeMethod* method)
  2174. {
  2175. void* args[] = {&p1};
  2176. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2177. }
  2178. static void UnresolvedVirtualCall_173 (RuntimeObject* __this, AdvertisingResult_tC2A0D13DAF5903AFA04349C2874575FC621D1E2C p1, const RuntimeMethod* method)
  2179. {
  2180. void* args[] = {&p1};
  2181. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2182. }
  2183. static void UnresolvedVirtualCall_174 (RuntimeObject* __this, uint8_t p1, const RuntimeMethod* method)
  2184. {
  2185. void* args[] = {&p1};
  2186. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2187. }
  2188. static void UnresolvedVirtualCall_175 (RuntimeObject* __this, ConnectionRequest_t91E30890E727FF25CC25A9DBB5CF83894E4F4EFF p1, const RuntimeMethod* method)
  2189. {
  2190. void* args[] = {&p1};
  2191. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2192. }
  2193. static void UnresolvedVirtualCall_176 (RuntimeObject* __this, ConnectionResponse_tD4B45BF8C81F4514392521939BA9A60D4C175A71 p1, const RuntimeMethod* method)
  2194. {
  2195. void* args[] = {&p1};
  2196. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2197. }
  2198. static void UnresolvedVirtualCall_177 (RuntimeObject* __this, CullingGroupEvent_tC79BA328A8280C29F6002F591614081A0E87D110 p1, const RuntimeMethod* method)
  2199. {
  2200. void* args[] = {&p1};
  2201. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2202. }
  2203. static void UnresolvedVirtualCall_178 (RuntimeObject* __this, double p1, const RuntimeMethod* method)
  2204. {
  2205. void* args[] = {&p1};
  2206. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2207. }
  2208. static void UnresolvedVirtualCall_179 (RuntimeObject* __this, double p1, RuntimeObject* p2, const RuntimeMethod* method)
  2209. {
  2210. void* args[] = {&p1,p2};
  2211. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2212. }
  2213. static void UnresolvedVirtualCall_180 (RuntimeObject* __this, EndpointDetails_t95EEA60E16EE0F4CD6834AF29B6BCDE20C10520C p1, const RuntimeMethod* method)
  2214. {
  2215. void* args[] = {&p1};
  2216. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2217. }
  2218. static void UnresolvedVirtualCall_181 (RuntimeObject* __this, Guid_t p1, const RuntimeMethod* method)
  2219. {
  2220. void* args[] = {&p1};
  2221. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2222. }
  2223. static void UnresolvedVirtualCall_182 (RuntimeObject* __this, Guid_t p1, RuntimeObject* p2, int32_t p3, const RuntimeMethod* method)
  2224. {
  2225. void* args[] = {&p1,p2,&p3};
  2226. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2227. }
  2228. static void UnresolvedVirtualCall_183 (RuntimeObject* __this, int16_t p1, const RuntimeMethod* method)
  2229. {
  2230. void* args[] = {&p1};
  2231. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2232. }
  2233. static void UnresolvedVirtualCall_184 (RuntimeObject* __this, int32_t p1, const RuntimeMethod* method)
  2234. {
  2235. void* args[] = {&p1};
  2236. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2237. }
  2238. static void UnresolvedVirtualCall_185 (RuntimeObject* __this, int32_t p1, int32_t p2, const RuntimeMethod* method)
  2239. {
  2240. void* args[] = {&p1,&p2};
  2241. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2242. }
  2243. static void UnresolvedVirtualCall_186 (RuntimeObject* __this, int32_t p1, int32_t p2, int32_t p3, const RuntimeMethod* method)
  2244. {
  2245. void* args[] = {&p1,&p2,&p3};
  2246. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2247. }
  2248. static void UnresolvedVirtualCall_187 (RuntimeObject* __this, int32_t p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, const RuntimeMethod* method)
  2249. {
  2250. void* args[] = {&p1,&p2,&p3,&p4,&p5};
  2251. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2252. }
  2253. static void UnresolvedVirtualCall_188 (RuntimeObject* __this, int32_t p1, RuntimeObject* p2, const RuntimeMethod* method)
  2254. {
  2255. void* args[] = {&p1,p2};
  2256. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2257. }
  2258. static void UnresolvedVirtualCall_189 (RuntimeObject* __this, int32_t p1, RuntimeObject* p2, RuntimeObject* p3, const RuntimeMethod* method)
  2259. {
  2260. void* args[] = {&p1,p2,p3};
  2261. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2262. }
  2263. static void UnresolvedVirtualCall_190 (RuntimeObject* __this, int32_t p1, RuntimeObject* p2, RuntimeObject* p3, RuntimeObject* p4, const RuntimeMethod* method)
  2264. {
  2265. void* args[] = {&p1,p2,p3,p4};
  2266. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2267. }
  2268. static void UnresolvedVirtualCall_191 (RuntimeObject* __this, int32_t p1, int8_t p2, RuntimeObject* p3, const RuntimeMethod* method)
  2269. {
  2270. void* args[] = {&p1,&p2,p3};
  2271. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2272. }
  2273. static void UnresolvedVirtualCall_192 (RuntimeObject* __this, int64_t p1, const RuntimeMethod* method)
  2274. {
  2275. void* args[] = {&p1};
  2276. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2277. }
  2278. static void UnresolvedVirtualCall_193 (RuntimeObject* __this, int64_t p1, RuntimeObject* p2, int64_t p3, const RuntimeMethod* method)
  2279. {
  2280. void* args[] = {&p1,p2,&p3};
  2281. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2282. }
  2283. static void UnresolvedVirtualCall_194 (RuntimeObject* __this, intptr_t p1, const RuntimeMethod* method)
  2284. {
  2285. void* args[] = {&p1};
  2286. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2287. }
  2288. static void UnresolvedVirtualCall_195 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
  2289. {
  2290. void* args[] = {p1};
  2291. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2292. }
  2293. static void UnresolvedVirtualCall_196 (RuntimeObject* __this, RuntimeObject* p1, NativeArray_1_tDF6A1978B5813BF4DAD7948E398009FFC9BEA38D p2, const RuntimeMethod* method)
  2294. {
  2295. void* args[] = {p1,&p2};
  2296. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2297. }
  2298. static void UnresolvedVirtualCall_197 (RuntimeObject* __this, RuntimeObject* p1, double p2, RuntimeObject* p3, const RuntimeMethod* method)
  2299. {
  2300. void* args[] = {p1,&p2,p3};
  2301. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2302. }
  2303. static void UnresolvedVirtualCall_198 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, const RuntimeMethod* method)
  2304. {
  2305. void* args[] = {p1,&p2};
  2306. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2307. }
  2308. static void UnresolvedVirtualCall_199 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, int32_t p3, const RuntimeMethod* method)
  2309. {
  2310. void* args[] = {p1,&p2,&p3};
  2311. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2312. }
  2313. static void UnresolvedVirtualCall_200 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, RuntimeObject* p6, const RuntimeMethod* method)
  2314. {
  2315. void* args[] = {p1,&p2,&p3,&p4,&p5,p6};
  2316. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2317. }
  2318. static void UnresolvedVirtualCall_201 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, RuntimeObject* p3, const RuntimeMethod* method)
  2319. {
  2320. void* args[] = {p1,&p2,p3};
  2321. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2322. }
  2323. static void UnresolvedVirtualCall_202 (RuntimeObject* __this, RuntimeObject* p1, int64_t p2, RuntimeObject* p3, const RuntimeMethod* method)
  2324. {
  2325. void* args[] = {p1,&p2,p3};
  2326. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2327. }
  2328. static void UnresolvedVirtualCall_203 (RuntimeObject* __this, RuntimeObject* p1, int64_t p2, RuntimeObject* p3, RuntimeObject* p4, const RuntimeMethod* method)
  2329. {
  2330. void* args[] = {p1,&p2,p3,p4};
  2331. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2332. }
  2333. static void UnresolvedVirtualCall_204 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, const RuntimeMethod* method)
  2334. {
  2335. void* args[] = {p1,p2};
  2336. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2337. }
  2338. static void UnresolvedVirtualCall_205 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, int32_t p3, const RuntimeMethod* method)
  2339. {
  2340. void* args[] = {p1,p2,&p3};
  2341. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2342. }
  2343. static void UnresolvedVirtualCall_206 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, int32_t p3, int32_t p4, int32_t p5, const RuntimeMethod* method)
  2344. {
  2345. void* args[] = {p1,p2,&p3,&p4,&p5};
  2346. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2347. }
  2348. static void UnresolvedVirtualCall_207 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, int32_t p3, RuntimeObject* p4, RuntimeObject* p5, const RuntimeMethod* method)
  2349. {
  2350. void* args[] = {p1,p2,&p3,p4,p5};
  2351. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2352. }
  2353. static void UnresolvedVirtualCall_208 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, RuntimeObject* p3, const RuntimeMethod* method)
  2354. {
  2355. void* args[] = {p1,p2,p3};
  2356. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2357. }
  2358. static void UnresolvedVirtualCall_209 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, RuntimeObject* p3, RuntimeObject* p4, const RuntimeMethod* method)
  2359. {
  2360. void* args[] = {p1,p2,p3,p4};
  2361. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2362. }
  2363. static void UnresolvedVirtualCall_210 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, RuntimeObject* p3, RuntimeObject* p4, RuntimeObject* p5, const RuntimeMethod* method)
  2364. {
  2365. void* args[] = {p1,p2,p3,p4,p5};
  2366. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2367. }
  2368. static void UnresolvedVirtualCall_211 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, int8_t p3, const RuntimeMethod* method)
  2369. {
  2370. void* args[] = {p1,p2,&p3};
  2371. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2372. }
  2373. static void UnresolvedVirtualCall_212 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 p3, const RuntimeMethod* method)
  2374. {
  2375. void* args[] = {p1,p2,&p3};
  2376. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2377. }
  2378. static void UnresolvedVirtualCall_213 (RuntimeObject* __this, RuntimeObject* p1, int8_t p2, const RuntimeMethod* method)
  2379. {
  2380. void* args[] = {p1,&p2};
  2381. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2382. }
  2383. static void UnresolvedVirtualCall_214 (RuntimeObject* __this, RuntimeObject* p1, int8_t p2, DebugScreenCapture_t859E4E87C94587A08893C726D4FF84BD8F288CC5 p3, const RuntimeMethod* method)
  2384. {
  2385. void* args[] = {p1,&p2,&p3};
  2386. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2387. }
  2388. static void UnresolvedVirtualCall_215 (RuntimeObject* __this, RuntimeObject* p1, int8_t p2, int8_t p3, const RuntimeMethod* method)
  2389. {
  2390. void* args[] = {p1,&p2,&p3};
  2391. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2392. }
  2393. static void UnresolvedVirtualCall_216 (RuntimeObject* __this, RuntimeObject* p1, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 p2, const RuntimeMethod* method)
  2394. {
  2395. void* args[] = {p1,&p2};
  2396. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2397. }
  2398. static void UnresolvedVirtualCall_217 (RuntimeObject* __this, RuntimeObject* p1, uint32_t p2, const RuntimeMethod* method)
  2399. {
  2400. void* args[] = {p1,&p2};
  2401. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2402. }
  2403. static void UnresolvedVirtualCall_218 (RuntimeObject* __this, int8_t p1, const RuntimeMethod* method)
  2404. {
  2405. void* args[] = {&p1};
  2406. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2407. }
  2408. static void UnresolvedVirtualCall_219 (RuntimeObject* __this, int8_t p1, DebugScreenCapture_t859E4E87C94587A08893C726D4FF84BD8F288CC5 p2, const RuntimeMethod* method)
  2409. {
  2410. void* args[] = {&p1,&p2};
  2411. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2412. }
  2413. static void UnresolvedVirtualCall_220 (RuntimeObject* __this, int8_t p1, RuntimeObject* p2, const RuntimeMethod* method)
  2414. {
  2415. void* args[] = {&p1,p2};
  2416. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2417. }
  2418. static void UnresolvedVirtualCall_221 (RuntimeObject* __this, Scene_tA1DC762B79745EB5140F054C884855B922318356 p1, const RuntimeMethod* method)
  2419. {
  2420. void* args[] = {&p1};
  2421. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2422. }
  2423. static void UnresolvedVirtualCall_222 (RuntimeObject* __this, Scene_tA1DC762B79745EB5140F054C884855B922318356 p1, int32_t p2, const RuntimeMethod* method)
  2424. {
  2425. void* args[] = {&p1,&p2};
  2426. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2427. }
  2428. static void UnresolvedVirtualCall_223 (RuntimeObject* __this, Scene_tA1DC762B79745EB5140F054C884855B922318356 p1, Scene_tA1DC762B79745EB5140F054C884855B922318356 p2, const RuntimeMethod* method)
  2429. {
  2430. void* args[] = {&p1,&p2};
  2431. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2432. }
  2433. static void UnresolvedVirtualCall_224 (RuntimeObject* __this, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 p1, RuntimeObject* p2, const RuntimeMethod* method)
  2434. {
  2435. void* args[] = {&p1,p2};
  2436. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2437. }
  2438. static void UnresolvedVirtualCall_225 (RuntimeObject* __this, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 p1, RuntimeObject* p2, RuntimeObject* p3, const RuntimeMethod* method)
  2439. {
  2440. void* args[] = {&p1,p2,p3};
  2441. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2442. }
  2443. static void UnresolvedVirtualCall_226 (RuntimeObject* __this, float p1, const RuntimeMethod* method)
  2444. {
  2445. void* args[] = {&p1};
  2446. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2447. }
  2448. static void UnresolvedVirtualCall_227 (RuntimeObject* __this, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 p1, const RuntimeMethod* method)
  2449. {
  2450. void* args[] = {&p1};
  2451. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2452. }
  2453. static void UnresolvedVirtualCall_228 (RuntimeObject* __this, TypedReference_tF20A82297BED597FD80BDA0E41F74746B0FD642B p1, RuntimeObject* p2, const RuntimeMethod* method)
  2454. {
  2455. void* args[] = {&p1,p2};
  2456. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2457. }
  2458. static void UnresolvedVirtualCall_229 (RuntimeObject* __this, uint16_t p1, const RuntimeMethod* method)
  2459. {
  2460. void* args[] = {&p1};
  2461. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2462. }
  2463. static void UnresolvedVirtualCall_230 (RuntimeObject* __this, uint32_t p1, const RuntimeMethod* method)
  2464. {
  2465. void* args[] = {&p1};
  2466. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2467. }
  2468. static void UnresolvedVirtualCall_231 (RuntimeObject* __this, uint64_t p1, const RuntimeMethod* method)
  2469. {
  2470. void* args[] = {&p1};
  2471. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2472. }
  2473. static void UnresolvedVirtualCall_232 (RuntimeObject* __this, uint64_t p1, RuntimeObject* p2, const RuntimeMethod* method)
  2474. {
  2475. void* args[] = {&p1,p2};
  2476. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
  2477. }
  2478. static VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC UnresolvedVirtualCall_233 (RuntimeObject* __this, const RuntimeMethod* method)
  2479. {
  2480. VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC il2cppRetVal;
  2481. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  2482. return il2cppRetVal;
  2483. }
  2484. static VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC UnresolvedVirtualCall_234 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
  2485. {
  2486. void* args[] = {p1};
  2487. VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC il2cppRetVal;
  2488. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
  2489. return il2cppRetVal;
  2490. }
  2491. static OrderBlock_t62FD6F6544F34B5298DEF2F77AAE446F269B7837 UnresolvedVirtualCall_235 (RuntimeObject* __this, const RuntimeMethod* method)
  2492. {
  2493. OrderBlock_t62FD6F6544F34B5298DEF2F77AAE446F269B7837 il2cppRetVal;
  2494. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  2495. return il2cppRetVal;
  2496. }
  2497. static RenderRequest_t432931B06439AC4704282E924DE8A9A474DB6B9A UnresolvedVirtualCall_236 (RuntimeObject* __this, const RuntimeMethod* method)
  2498. {
  2499. RenderRequest_t432931B06439AC4704282E924DE8A9A474DB6B9A il2cppRetVal;
  2500. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  2501. return il2cppRetVal;
  2502. }
  2503. static SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC UnresolvedVirtualCall_237 (RuntimeObject* __this, const RuntimeMethod* method)
  2504. {
  2505. SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC il2cppRetVal;
  2506. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  2507. return il2cppRetVal;
  2508. }
  2509. static WorkRequest_t8AF542F2E248D9234341817CDB5F76C27D348B44 UnresolvedVirtualCall_238 (RuntimeObject* __this, const RuntimeMethod* method)
  2510. {
  2511. WorkRequest_t8AF542F2E248D9234341817CDB5F76C27D348B44 il2cppRetVal;
  2512. method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
  2513. return il2cppRetVal;
  2514. }
  2515. IL2CPP_EXTERN_C const Il2CppMethodPointer g_UnresolvedVirtualMethodPointers[];
  2516. const Il2CppMethodPointer g_UnresolvedVirtualMethodPointers[239] =
  2517. {
  2518. (const Il2CppMethodPointer) UnresolvedVirtualCall_0,
  2519. (const Il2CppMethodPointer) UnresolvedVirtualCall_1,
  2520. (const Il2CppMethodPointer) UnresolvedVirtualCall_2,
  2521. (const Il2CppMethodPointer) UnresolvedVirtualCall_3,
  2522. (const Il2CppMethodPointer) UnresolvedVirtualCall_4,
  2523. (const Il2CppMethodPointer) UnresolvedVirtualCall_5,
  2524. (const Il2CppMethodPointer) UnresolvedVirtualCall_6,
  2525. (const Il2CppMethodPointer) UnresolvedVirtualCall_7,
  2526. (const Il2CppMethodPointer) UnresolvedVirtualCall_8,
  2527. (const Il2CppMethodPointer) UnresolvedVirtualCall_9,
  2528. (const Il2CppMethodPointer) UnresolvedVirtualCall_10,
  2529. (const Il2CppMethodPointer) UnresolvedVirtualCall_11,
  2530. (const Il2CppMethodPointer) UnresolvedVirtualCall_12,
  2531. (const Il2CppMethodPointer) UnresolvedVirtualCall_13,
  2532. (const Il2CppMethodPointer) UnresolvedVirtualCall_14,
  2533. (const Il2CppMethodPointer) UnresolvedVirtualCall_15,
  2534. (const Il2CppMethodPointer) UnresolvedVirtualCall_16,
  2535. (const Il2CppMethodPointer) UnresolvedVirtualCall_17,
  2536. (const Il2CppMethodPointer) UnresolvedVirtualCall_18,
  2537. (const Il2CppMethodPointer) UnresolvedVirtualCall_19,
  2538. (const Il2CppMethodPointer) UnresolvedVirtualCall_20,
  2539. (const Il2CppMethodPointer) UnresolvedVirtualCall_21,
  2540. (const Il2CppMethodPointer) UnresolvedVirtualCall_22,
  2541. (const Il2CppMethodPointer) UnresolvedVirtualCall_23,
  2542. (const Il2CppMethodPointer) UnresolvedVirtualCall_24,
  2543. (const Il2CppMethodPointer) UnresolvedVirtualCall_25,
  2544. (const Il2CppMethodPointer) UnresolvedVirtualCall_26,
  2545. (const Il2CppMethodPointer) UnresolvedVirtualCall_27,
  2546. (const Il2CppMethodPointer) UnresolvedVirtualCall_28,
  2547. (const Il2CppMethodPointer) UnresolvedVirtualCall_29,
  2548. (const Il2CppMethodPointer) UnresolvedVirtualCall_30,
  2549. (const Il2CppMethodPointer) UnresolvedVirtualCall_31,
  2550. (const Il2CppMethodPointer) UnresolvedVirtualCall_32,
  2551. (const Il2CppMethodPointer) UnresolvedVirtualCall_33,
  2552. (const Il2CppMethodPointer) UnresolvedVirtualCall_34,
  2553. (const Il2CppMethodPointer) UnresolvedVirtualCall_35,
  2554. (const Il2CppMethodPointer) UnresolvedVirtualCall_36,
  2555. (const Il2CppMethodPointer) UnresolvedVirtualCall_37,
  2556. (const Il2CppMethodPointer) UnresolvedVirtualCall_38,
  2557. (const Il2CppMethodPointer) UnresolvedVirtualCall_39,
  2558. (const Il2CppMethodPointer) UnresolvedVirtualCall_40,
  2559. (const Il2CppMethodPointer) UnresolvedVirtualCall_41,
  2560. (const Il2CppMethodPointer) UnresolvedVirtualCall_42,
  2561. (const Il2CppMethodPointer) UnresolvedVirtualCall_43,
  2562. (const Il2CppMethodPointer) UnresolvedVirtualCall_44,
  2563. (const Il2CppMethodPointer) UnresolvedVirtualCall_45,
  2564. (const Il2CppMethodPointer) UnresolvedVirtualCall_46,
  2565. (const Il2CppMethodPointer) UnresolvedVirtualCall_47,
  2566. (const Il2CppMethodPointer) UnresolvedVirtualCall_48,
  2567. (const Il2CppMethodPointer) UnresolvedVirtualCall_49,
  2568. (const Il2CppMethodPointer) UnresolvedVirtualCall_50,
  2569. (const Il2CppMethodPointer) UnresolvedVirtualCall_51,
  2570. (const Il2CppMethodPointer) UnresolvedVirtualCall_52,
  2571. (const Il2CppMethodPointer) UnresolvedVirtualCall_53,
  2572. (const Il2CppMethodPointer) UnresolvedVirtualCall_54,
  2573. (const Il2CppMethodPointer) UnresolvedVirtualCall_55,
  2574. (const Il2CppMethodPointer) UnresolvedVirtualCall_56,
  2575. (const Il2CppMethodPointer) UnresolvedVirtualCall_57,
  2576. (const Il2CppMethodPointer) UnresolvedVirtualCall_58,
  2577. (const Il2CppMethodPointer) UnresolvedVirtualCall_59,
  2578. (const Il2CppMethodPointer) UnresolvedVirtualCall_60,
  2579. (const Il2CppMethodPointer) UnresolvedVirtualCall_61,
  2580. (const Il2CppMethodPointer) UnresolvedVirtualCall_62,
  2581. (const Il2CppMethodPointer) UnresolvedVirtualCall_63,
  2582. (const Il2CppMethodPointer) UnresolvedVirtualCall_64,
  2583. (const Il2CppMethodPointer) UnresolvedVirtualCall_65,
  2584. (const Il2CppMethodPointer) UnresolvedVirtualCall_66,
  2585. (const Il2CppMethodPointer) UnresolvedVirtualCall_67,
  2586. (const Il2CppMethodPointer) UnresolvedVirtualCall_68,
  2587. (const Il2CppMethodPointer) UnresolvedVirtualCall_69,
  2588. (const Il2CppMethodPointer) UnresolvedVirtualCall_70,
  2589. (const Il2CppMethodPointer) UnresolvedVirtualCall_71,
  2590. (const Il2CppMethodPointer) UnresolvedVirtualCall_72,
  2591. (const Il2CppMethodPointer) UnresolvedVirtualCall_73,
  2592. (const Il2CppMethodPointer) UnresolvedVirtualCall_74,
  2593. (const Il2CppMethodPointer) UnresolvedVirtualCall_75,
  2594. (const Il2CppMethodPointer) UnresolvedVirtualCall_76,
  2595. (const Il2CppMethodPointer) UnresolvedVirtualCall_77,
  2596. (const Il2CppMethodPointer) UnresolvedVirtualCall_78,
  2597. (const Il2CppMethodPointer) UnresolvedVirtualCall_79,
  2598. (const Il2CppMethodPointer) UnresolvedVirtualCall_80,
  2599. (const Il2CppMethodPointer) UnresolvedVirtualCall_81,
  2600. (const Il2CppMethodPointer) UnresolvedVirtualCall_82,
  2601. (const Il2CppMethodPointer) UnresolvedVirtualCall_83,
  2602. (const Il2CppMethodPointer) UnresolvedVirtualCall_84,
  2603. (const Il2CppMethodPointer) UnresolvedVirtualCall_85,
  2604. (const Il2CppMethodPointer) UnresolvedVirtualCall_86,
  2605. (const Il2CppMethodPointer) UnresolvedVirtualCall_87,
  2606. (const Il2CppMethodPointer) UnresolvedVirtualCall_88,
  2607. (const Il2CppMethodPointer) UnresolvedVirtualCall_89,
  2608. (const Il2CppMethodPointer) UnresolvedVirtualCall_90,
  2609. (const Il2CppMethodPointer) UnresolvedVirtualCall_91,
  2610. (const Il2CppMethodPointer) UnresolvedVirtualCall_92,
  2611. (const Il2CppMethodPointer) UnresolvedVirtualCall_93,
  2612. (const Il2CppMethodPointer) UnresolvedVirtualCall_94,
  2613. (const Il2CppMethodPointer) UnresolvedVirtualCall_95,
  2614. (const Il2CppMethodPointer) UnresolvedVirtualCall_96,
  2615. (const Il2CppMethodPointer) UnresolvedVirtualCall_97,
  2616. (const Il2CppMethodPointer) UnresolvedVirtualCall_98,
  2617. (const Il2CppMethodPointer) UnresolvedVirtualCall_99,
  2618. (const Il2CppMethodPointer) UnresolvedVirtualCall_100,
  2619. (const Il2CppMethodPointer) UnresolvedVirtualCall_101,
  2620. (const Il2CppMethodPointer) UnresolvedVirtualCall_102,
  2621. (const Il2CppMethodPointer) UnresolvedVirtualCall_103,
  2622. (const Il2CppMethodPointer) UnresolvedVirtualCall_104,
  2623. (const Il2CppMethodPointer) UnresolvedVirtualCall_105,
  2624. (const Il2CppMethodPointer) UnresolvedVirtualCall_106,
  2625. (const Il2CppMethodPointer) UnresolvedVirtualCall_107,
  2626. (const Il2CppMethodPointer) UnresolvedVirtualCall_108,
  2627. (const Il2CppMethodPointer) UnresolvedVirtualCall_109,
  2628. (const Il2CppMethodPointer) UnresolvedVirtualCall_110,
  2629. (const Il2CppMethodPointer) UnresolvedVirtualCall_111,
  2630. (const Il2CppMethodPointer) UnresolvedVirtualCall_112,
  2631. (const Il2CppMethodPointer) UnresolvedVirtualCall_113,
  2632. (const Il2CppMethodPointer) UnresolvedVirtualCall_114,
  2633. (const Il2CppMethodPointer) UnresolvedVirtualCall_115,
  2634. (const Il2CppMethodPointer) UnresolvedVirtualCall_116,
  2635. (const Il2CppMethodPointer) UnresolvedVirtualCall_117,
  2636. (const Il2CppMethodPointer) UnresolvedVirtualCall_118,
  2637. (const Il2CppMethodPointer) UnresolvedVirtualCall_119,
  2638. (const Il2CppMethodPointer) UnresolvedVirtualCall_120,
  2639. (const Il2CppMethodPointer) UnresolvedVirtualCall_121,
  2640. (const Il2CppMethodPointer) UnresolvedVirtualCall_122,
  2641. (const Il2CppMethodPointer) UnresolvedVirtualCall_123,
  2642. (const Il2CppMethodPointer) UnresolvedVirtualCall_124,
  2643. (const Il2CppMethodPointer) UnresolvedVirtualCall_125,
  2644. (const Il2CppMethodPointer) UnresolvedVirtualCall_126,
  2645. (const Il2CppMethodPointer) UnresolvedVirtualCall_127,
  2646. (const Il2CppMethodPointer) UnresolvedVirtualCall_128,
  2647. (const Il2CppMethodPointer) UnresolvedVirtualCall_129,
  2648. (const Il2CppMethodPointer) UnresolvedVirtualCall_130,
  2649. (const Il2CppMethodPointer) UnresolvedVirtualCall_131,
  2650. (const Il2CppMethodPointer) UnresolvedVirtualCall_132,
  2651. (const Il2CppMethodPointer) UnresolvedVirtualCall_133,
  2652. (const Il2CppMethodPointer) UnresolvedVirtualCall_134,
  2653. (const Il2CppMethodPointer) UnresolvedVirtualCall_135,
  2654. (const Il2CppMethodPointer) UnresolvedVirtualCall_136,
  2655. (const Il2CppMethodPointer) UnresolvedVirtualCall_137,
  2656. (const Il2CppMethodPointer) UnresolvedVirtualCall_138,
  2657. (const Il2CppMethodPointer) UnresolvedVirtualCall_139,
  2658. (const Il2CppMethodPointer) UnresolvedVirtualCall_140,
  2659. (const Il2CppMethodPointer) UnresolvedVirtualCall_141,
  2660. (const Il2CppMethodPointer) UnresolvedVirtualCall_142,
  2661. (const Il2CppMethodPointer) UnresolvedVirtualCall_143,
  2662. (const Il2CppMethodPointer) UnresolvedVirtualCall_144,
  2663. (const Il2CppMethodPointer) UnresolvedVirtualCall_145,
  2664. (const Il2CppMethodPointer) UnresolvedVirtualCall_146,
  2665. (const Il2CppMethodPointer) UnresolvedVirtualCall_147,
  2666. (const Il2CppMethodPointer) UnresolvedVirtualCall_148,
  2667. (const Il2CppMethodPointer) UnresolvedVirtualCall_149,
  2668. (const Il2CppMethodPointer) UnresolvedVirtualCall_150,
  2669. (const Il2CppMethodPointer) UnresolvedVirtualCall_151,
  2670. (const Il2CppMethodPointer) UnresolvedVirtualCall_152,
  2671. (const Il2CppMethodPointer) UnresolvedVirtualCall_153,
  2672. (const Il2CppMethodPointer) UnresolvedVirtualCall_154,
  2673. (const Il2CppMethodPointer) UnresolvedVirtualCall_155,
  2674. (const Il2CppMethodPointer) UnresolvedVirtualCall_156,
  2675. (const Il2CppMethodPointer) UnresolvedVirtualCall_157,
  2676. (const Il2CppMethodPointer) UnresolvedVirtualCall_158,
  2677. (const Il2CppMethodPointer) UnresolvedVirtualCall_159,
  2678. (const Il2CppMethodPointer) UnresolvedVirtualCall_160,
  2679. (const Il2CppMethodPointer) UnresolvedVirtualCall_161,
  2680. (const Il2CppMethodPointer) UnresolvedVirtualCall_162,
  2681. (const Il2CppMethodPointer) UnresolvedVirtualCall_163,
  2682. (const Il2CppMethodPointer) UnresolvedVirtualCall_164,
  2683. (const Il2CppMethodPointer) UnresolvedVirtualCall_165,
  2684. (const Il2CppMethodPointer) UnresolvedVirtualCall_166,
  2685. (const Il2CppMethodPointer) UnresolvedVirtualCall_167,
  2686. (const Il2CppMethodPointer) UnresolvedVirtualCall_168,
  2687. (const Il2CppMethodPointer) UnresolvedVirtualCall_169,
  2688. (const Il2CppMethodPointer) UnresolvedVirtualCall_170,
  2689. (const Il2CppMethodPointer) UnresolvedVirtualCall_171,
  2690. (const Il2CppMethodPointer) UnresolvedVirtualCall_172,
  2691. (const Il2CppMethodPointer) UnresolvedVirtualCall_173,
  2692. (const Il2CppMethodPointer) UnresolvedVirtualCall_174,
  2693. (const Il2CppMethodPointer) UnresolvedVirtualCall_175,
  2694. (const Il2CppMethodPointer) UnresolvedVirtualCall_176,
  2695. (const Il2CppMethodPointer) UnresolvedVirtualCall_177,
  2696. (const Il2CppMethodPointer) UnresolvedVirtualCall_178,
  2697. (const Il2CppMethodPointer) UnresolvedVirtualCall_179,
  2698. (const Il2CppMethodPointer) UnresolvedVirtualCall_180,
  2699. (const Il2CppMethodPointer) UnresolvedVirtualCall_181,
  2700. (const Il2CppMethodPointer) UnresolvedVirtualCall_182,
  2701. (const Il2CppMethodPointer) UnresolvedVirtualCall_183,
  2702. (const Il2CppMethodPointer) UnresolvedVirtualCall_184,
  2703. (const Il2CppMethodPointer) UnresolvedVirtualCall_185,
  2704. (const Il2CppMethodPointer) UnresolvedVirtualCall_186,
  2705. (const Il2CppMethodPointer) UnresolvedVirtualCall_187,
  2706. (const Il2CppMethodPointer) UnresolvedVirtualCall_188,
  2707. (const Il2CppMethodPointer) UnresolvedVirtualCall_189,
  2708. (const Il2CppMethodPointer) UnresolvedVirtualCall_190,
  2709. (const Il2CppMethodPointer) UnresolvedVirtualCall_191,
  2710. (const Il2CppMethodPointer) UnresolvedVirtualCall_192,
  2711. (const Il2CppMethodPointer) UnresolvedVirtualCall_193,
  2712. (const Il2CppMethodPointer) UnresolvedVirtualCall_194,
  2713. (const Il2CppMethodPointer) UnresolvedVirtualCall_195,
  2714. (const Il2CppMethodPointer) UnresolvedVirtualCall_196,
  2715. (const Il2CppMethodPointer) UnresolvedVirtualCall_197,
  2716. (const Il2CppMethodPointer) UnresolvedVirtualCall_198,
  2717. (const Il2CppMethodPointer) UnresolvedVirtualCall_199,
  2718. (const Il2CppMethodPointer) UnresolvedVirtualCall_200,
  2719. (const Il2CppMethodPointer) UnresolvedVirtualCall_201,
  2720. (const Il2CppMethodPointer) UnresolvedVirtualCall_202,
  2721. (const Il2CppMethodPointer) UnresolvedVirtualCall_203,
  2722. (const Il2CppMethodPointer) UnresolvedVirtualCall_204,
  2723. (const Il2CppMethodPointer) UnresolvedVirtualCall_205,
  2724. (const Il2CppMethodPointer) UnresolvedVirtualCall_206,
  2725. (const Il2CppMethodPointer) UnresolvedVirtualCall_207,
  2726. (const Il2CppMethodPointer) UnresolvedVirtualCall_208,
  2727. (const Il2CppMethodPointer) UnresolvedVirtualCall_209,
  2728. (const Il2CppMethodPointer) UnresolvedVirtualCall_210,
  2729. (const Il2CppMethodPointer) UnresolvedVirtualCall_211,
  2730. (const Il2CppMethodPointer) UnresolvedVirtualCall_212,
  2731. (const Il2CppMethodPointer) UnresolvedVirtualCall_213,
  2732. (const Il2CppMethodPointer) UnresolvedVirtualCall_214,
  2733. (const Il2CppMethodPointer) UnresolvedVirtualCall_215,
  2734. (const Il2CppMethodPointer) UnresolvedVirtualCall_216,
  2735. (const Il2CppMethodPointer) UnresolvedVirtualCall_217,
  2736. (const Il2CppMethodPointer) UnresolvedVirtualCall_218,
  2737. (const Il2CppMethodPointer) UnresolvedVirtualCall_219,
  2738. (const Il2CppMethodPointer) UnresolvedVirtualCall_220,
  2739. (const Il2CppMethodPointer) UnresolvedVirtualCall_221,
  2740. (const Il2CppMethodPointer) UnresolvedVirtualCall_222,
  2741. (const Il2CppMethodPointer) UnresolvedVirtualCall_223,
  2742. (const Il2CppMethodPointer) UnresolvedVirtualCall_224,
  2743. (const Il2CppMethodPointer) UnresolvedVirtualCall_225,
  2744. (const Il2CppMethodPointer) UnresolvedVirtualCall_226,
  2745. (const Il2CppMethodPointer) UnresolvedVirtualCall_227,
  2746. (const Il2CppMethodPointer) UnresolvedVirtualCall_228,
  2747. (const Il2CppMethodPointer) UnresolvedVirtualCall_229,
  2748. (const Il2CppMethodPointer) UnresolvedVirtualCall_230,
  2749. (const Il2CppMethodPointer) UnresolvedVirtualCall_231,
  2750. (const Il2CppMethodPointer) UnresolvedVirtualCall_232,
  2751. (const Il2CppMethodPointer) UnresolvedVirtualCall_233,
  2752. (const Il2CppMethodPointer) UnresolvedVirtualCall_234,
  2753. (const Il2CppMethodPointer) UnresolvedVirtualCall_235,
  2754. (const Il2CppMethodPointer) UnresolvedVirtualCall_236,
  2755. (const Il2CppMethodPointer) UnresolvedVirtualCall_237,
  2756. (const Il2CppMethodPointer) UnresolvedVirtualCall_238,
  2757. };