| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847 |
- #include "pch-cpp.hpp"
- #ifndef _MSC_VER
- # include <alloca.h>
- #else
- # include <malloc.h>
- #endif
- #include <stdint.h>
- #include <limits>
- // System.Byte[][]
- struct ByteU5BU5DU5BU5D_t19A0C6D66F22DF673E9CDB37DEF566FE0EC947FA;
- // System.Char[][]
- struct CharU5BU5DU5BU5D_tE6ABF380CD3BBDBB52C3EF725A02224F2B4AA680;
- // System.Int32[][]
- struct Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E;
- // System.Object[][]
- struct ObjectU5BU5DU5BU5D_t6491927494F825352C40DCE9D447C97B17297969;
- // System.Byte[]
- struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
- // System.Int32[]
- struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
- // System.Threading.ManualResetEvent
- struct ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158;
- // System.Reflection.MemberInfo
- struct MemberInfo_t;
- // UnityEngine.RenderTexture
- struct RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27;
- // System.Threading.SendOrPostCallback
- struct SendOrPostCallback_t5C292A12062F24027A98492F52ECFE9802AA6F0E;
- // System.String
- struct String_t;
- // System.Type
- struct Type_t;
- // UnityEngine.Events.UnityAction
- struct UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7;
- // System.Void
- struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
- IL2CPP_EXTERN_C_BEGIN
- IL2CPP_EXTERN_C_END
- #ifdef __clang__
- #pragma clang diagnostic push
- #pragma clang diagnostic ignored "-Winvalid-offsetof"
- #pragma clang diagnostic ignored "-Wunused-variable"
- #endif
- // System.ValueType
- struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
- {
- };
- // Native definition for P/Invoke marshalling of System.ValueType
- struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
- {
- };
- // Native definition for COM marshalling of System.ValueType
- struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
- {
- };
- // System.Collections.Generic.KeyValuePair`2<System.Byte[][],System.Object>
- struct KeyValuePair_2_t8E0D15B87910CDDA42560D1A46FD995D80D1210F
- {
- // TKey System.Collections.Generic.KeyValuePair`2::key
- ByteU5BU5DU5BU5D_t19A0C6D66F22DF673E9CDB37DEF566FE0EC947FA* ___key_0;
- // TValue System.Collections.Generic.KeyValuePair`2::value
- RuntimeObject* ___value_1;
- };
- // System.Collections.Generic.KeyValuePair`2<System.Char[][],System.Object>
- struct KeyValuePair_2_tA15A2CDE2D0067F592CD9373418E53A418842273
- {
- // TKey System.Collections.Generic.KeyValuePair`2::key
- CharU5BU5DU5BU5D_tE6ABF380CD3BBDBB52C3EF725A02224F2B4AA680* ___key_0;
- // TValue System.Collections.Generic.KeyValuePair`2::value
- RuntimeObject* ___value_1;
- };
- // System.Collections.Generic.KeyValuePair`2<System.Int32[][],System.Object>
- struct KeyValuePair_2_tFA55EACE445F07ED0E758AB6E024B85AB8FD089D
- {
- // TKey System.Collections.Generic.KeyValuePair`2::key
- Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* ___key_0;
- // TValue System.Collections.Generic.KeyValuePair`2::value
- RuntimeObject* ___value_1;
- };
- // System.Collections.Generic.KeyValuePair`2<System.Object[][],System.Object>
- struct KeyValuePair_2_tB705E6AEB2BE5DC110A8BC6390AC36BB0F127B47
- {
- // TKey System.Collections.Generic.KeyValuePair`2::key
- ObjectU5BU5DU5BU5D_t6491927494F825352C40DCE9D447C97B17297969* ___key_0;
- // TValue System.Collections.Generic.KeyValuePair`2::value
- RuntimeObject* ___value_1;
- };
- // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
- struct KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230
- {
- // TKey System.Collections.Generic.KeyValuePair`2::key
- RuntimeObject* ___key_0;
- // TValue System.Collections.Generic.KeyValuePair`2::value
- RuntimeObject* ___value_1;
- };
- // Unity.Collections.NativeArray`1<UnityEngine.Rendering.BatchVisibility>
- struct NativeArray_1_t88F04A6A2FC556B8A7EE20276F7A2BB13F420AB9
- {
- // System.Void* Unity.Collections.NativeArray`1::m_Buffer
- void* ___m_Buffer_0;
- // System.Int32 Unity.Collections.NativeArray`1::m_Length
- int32_t ___m_Length_1;
- // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
- int32_t ___m_AllocatorLabel_2;
- };
- // Unity.Collections.NativeArray`1<System.Byte>
- struct NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF
- {
- // System.Void* Unity.Collections.NativeArray`1::m_Buffer
- void* ___m_Buffer_0;
- // System.Int32 Unity.Collections.NativeArray`1::m_Length
- int32_t ___m_Length_1;
- // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
- int32_t ___m_AllocatorLabel_2;
- };
- // Unity.Collections.NativeArray`1<System.Int32>
- struct NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C
- {
- // System.Void* Unity.Collections.NativeArray`1::m_Buffer
- void* ___m_Buffer_0;
- // System.Int32 Unity.Collections.NativeArray`1::m_Length
- int32_t ___m_Length_1;
- // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
- int32_t ___m_AllocatorLabel_2;
- };
- // Unity.Collections.NativeArray`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>
- struct NativeArray_1_tDF6A1978B5813BF4DAD7948E398009FFC9BEA38D
- {
- // System.Void* Unity.Collections.NativeArray`1::m_Buffer
- void* ___m_Buffer_0;
- // System.Int32 Unity.Collections.NativeArray`1::m_Length
- int32_t ___m_Length_1;
- // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
- int32_t ___m_AllocatorLabel_2;
- };
- // Unity.Collections.NativeArray`1<UnityEngine.Plane>
- struct NativeArray_1_t4020B6981295FB915DCE82EF368535F680C13A49
- {
- // System.Void* Unity.Collections.NativeArray`1::m_Buffer
- void* ___m_Buffer_0;
- // System.Int32 Unity.Collections.NativeArray`1::m_Length
- int32_t ___m_Length_1;
- // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
- int32_t ___m_AllocatorLabel_2;
- };
- // System.Nullable`1<System.Int32>
- struct Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28
- {
- // System.Boolean System.Nullable`1::hasValue
- bool ___hasValue_0;
- // T System.Nullable`1::value
- int32_t ___value_1;
- };
- // System.ValueTuple`2<System.Object,System.Object>
- struct ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A
- {
- // T1 System.ValueTuple`2::Item1
- RuntimeObject* ___Item1_0;
- // T2 System.ValueTuple`2::Item2
- RuntimeObject* ___Item2_1;
- };
- // System.ValueTuple`3<System.Object,System.Int32,System.Int32>
- struct ValueTuple_3_tFD2ADB3DA89E958885034AAFEF1ABDA8C814D987
- {
- // T1 System.ValueTuple`3::Item1
- RuntimeObject* ___Item1_0;
- // T2 System.ValueTuple`3::Item2
- int32_t ___Item2_1;
- // T3 System.ValueTuple`3::Item3
- int32_t ___Item3_2;
- };
- // GooglePlayGames.BasicApi.Nearby.AdvertisingResult
- struct AdvertisingResult_tC2A0D13DAF5903AFA04349C2874575FC621D1E2C
- {
- // GooglePlayGames.BasicApi.ResponseStatus GooglePlayGames.BasicApi.Nearby.AdvertisingResult::mStatus
- int32_t ___mStatus_0;
- // System.String GooglePlayGames.BasicApi.Nearby.AdvertisingResult::mLocalEndpointName
- String_t* ___mLocalEndpointName_1;
- };
- // Native definition for P/Invoke marshalling of GooglePlayGames.BasicApi.Nearby.AdvertisingResult
- struct AdvertisingResult_tC2A0D13DAF5903AFA04349C2874575FC621D1E2C_marshaled_pinvoke
- {
- int32_t ___mStatus_0;
- char* ___mLocalEndpointName_1;
- };
- // Native definition for COM marshalling of GooglePlayGames.BasicApi.Nearby.AdvertisingResult
- struct AdvertisingResult_tC2A0D13DAF5903AFA04349C2874575FC621D1E2C_marshaled_com
- {
- int32_t ___mStatus_0;
- Il2CppChar* ___mLocalEndpointName_1;
- };
- // GooglePlayGames.BasicApi.Nearby.ConnectionResponse
- struct ConnectionResponse_tD4B45BF8C81F4514392521939BA9A60D4C175A71
- {
- // System.Int64 GooglePlayGames.BasicApi.Nearby.ConnectionResponse::mLocalClientId
- int64_t ___mLocalClientId_1;
- // System.String GooglePlayGames.BasicApi.Nearby.ConnectionResponse::mRemoteEndpointId
- String_t* ___mRemoteEndpointId_2;
- // GooglePlayGames.BasicApi.Nearby.ConnectionResponse/Status GooglePlayGames.BasicApi.Nearby.ConnectionResponse::mResponseStatus
- int32_t ___mResponseStatus_3;
- // System.Byte[] GooglePlayGames.BasicApi.Nearby.ConnectionResponse::mPayload
- ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___mPayload_4;
- };
- struct ConnectionResponse_tD4B45BF8C81F4514392521939BA9A60D4C175A71_StaticFields
- {
- // System.Byte[] GooglePlayGames.BasicApi.Nearby.ConnectionResponse::EmptyPayload
- ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___EmptyPayload_0;
- };
- // Native definition for P/Invoke marshalling of GooglePlayGames.BasicApi.Nearby.ConnectionResponse
- struct ConnectionResponse_tD4B45BF8C81F4514392521939BA9A60D4C175A71_marshaled_pinvoke
- {
- int64_t ___mLocalClientId_1;
- char* ___mRemoteEndpointId_2;
- int32_t ___mResponseStatus_3;
- Il2CppSafeArray/*NONE*/* ___mPayload_4;
- };
- // Native definition for COM marshalling of GooglePlayGames.BasicApi.Nearby.ConnectionResponse
- struct ConnectionResponse_tD4B45BF8C81F4514392521939BA9A60D4C175A71_marshaled_com
- {
- int64_t ___mLocalClientId_1;
- Il2CppChar* ___mRemoteEndpointId_2;
- int32_t ___mResponseStatus_3;
- Il2CppSafeArray/*NONE*/* ___mPayload_4;
- };
- // System.ConsoleKeyInfo
- struct ConsoleKeyInfo_t84640C60F53D0F6946B147ADAAF0366BBF1DE900
- {
- // System.Char System.ConsoleKeyInfo::_keyChar
- Il2CppChar ____keyChar_0;
- // System.ConsoleKey System.ConsoleKeyInfo::_key
- int32_t ____key_1;
- // System.ConsoleModifiers System.ConsoleKeyInfo::_mods
- int32_t ____mods_2;
- };
- // Native definition for P/Invoke marshalling of System.ConsoleKeyInfo
- struct ConsoleKeyInfo_t84640C60F53D0F6946B147ADAAF0366BBF1DE900_marshaled_pinvoke
- {
- uint8_t ____keyChar_0;
- int32_t ____key_1;
- int32_t ____mods_2;
- };
- // Native definition for COM marshalling of System.ConsoleKeyInfo
- struct ConsoleKeyInfo_t84640C60F53D0F6946B147ADAAF0366BBF1DE900_marshaled_com
- {
- uint8_t ____keyChar_0;
- int32_t ____key_1;
- int32_t ____mods_2;
- };
- // UnityEngine.CullingGroupEvent
- struct CullingGroupEvent_tC79BA328A8280C29F6002F591614081A0E87D110
- {
- // System.Int32 UnityEngine.CullingGroupEvent::m_Index
- int32_t ___m_Index_0;
- // System.Byte UnityEngine.CullingGroupEvent::m_PrevState
- uint8_t ___m_PrevState_1;
- // System.Byte UnityEngine.CullingGroupEvent::m_ThisState
- uint8_t ___m_ThisState_2;
- };
- // System.Reflection.CustomAttributeTypedArgument
- struct CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F
- {
- // System.Type System.Reflection.CustomAttributeTypedArgument::<ArgumentType>k__BackingField
- Type_t* ___U3CArgumentTypeU3Ek__BackingField_0;
- // System.Object System.Reflection.CustomAttributeTypedArgument::<Value>k__BackingField
- RuntimeObject* ___U3CValueU3Ek__BackingField_1;
- };
- // Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeTypedArgument
- struct CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F_marshaled_pinvoke
- {
- Type_t* ___U3CArgumentTypeU3Ek__BackingField_0;
- Il2CppIUnknown* ___U3CValueU3Ek__BackingField_1;
- };
- // Native definition for COM marshalling of System.Reflection.CustomAttributeTypedArgument
- struct CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F_marshaled_com
- {
- Type_t* ___U3CArgumentTypeU3Ek__BackingField_0;
- Il2CppIUnknown* ___U3CValueU3Ek__BackingField_1;
- };
- // System.DateTime
- struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D
- {
- // System.UInt64 System.DateTime::_dateData
- uint64_t ____dateData_46;
- };
- struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields
- {
- // System.Int32[] System.DateTime::s_daysToMonth365
- Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth365_30;
- // System.Int32[] System.DateTime::s_daysToMonth366
- Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth366_31;
- // System.DateTime System.DateTime::MinValue
- DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MinValue_32;
- // System.DateTime System.DateTime::MaxValue
- DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MaxValue_33;
- // System.DateTime System.DateTime::UnixEpoch
- DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___UnixEpoch_34;
- };
- // System.Decimal
- struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F
- {
- union
- {
- #pragma pack(push, tp, 1)
- struct
- {
- // System.Int32 System.Decimal::flags
- int32_t ___flags_5;
- };
- #pragma pack(pop, tp)
- struct
- {
- int32_t ___flags_5_forAlignmentOnly;
- };
- #pragma pack(push, tp, 1)
- struct
- {
- char ___hi_6_OffsetPadding[4];
- // System.Int32 System.Decimal::hi
- int32_t ___hi_6;
- };
- #pragma pack(pop, tp)
- struct
- {
- char ___hi_6_OffsetPadding_forAlignmentOnly[4];
- int32_t ___hi_6_forAlignmentOnly;
- };
- #pragma pack(push, tp, 1)
- struct
- {
- char ___lo_7_OffsetPadding[8];
- // System.Int32 System.Decimal::lo
- int32_t ___lo_7;
- };
- #pragma pack(pop, tp)
- struct
- {
- char ___lo_7_OffsetPadding_forAlignmentOnly[8];
- int32_t ___lo_7_forAlignmentOnly;
- };
- #pragma pack(push, tp, 1)
- struct
- {
- char ___mid_8_OffsetPadding[12];
- // System.Int32 System.Decimal::mid
- int32_t ___mid_8;
- };
- #pragma pack(pop, tp)
- struct
- {
- char ___mid_8_OffsetPadding_forAlignmentOnly[12];
- int32_t ___mid_8_forAlignmentOnly;
- };
- #pragma pack(push, tp, 1)
- struct
- {
- char ___ulomidLE_9_OffsetPadding[8];
- // System.UInt64 System.Decimal::ulomidLE
- uint64_t ___ulomidLE_9;
- };
- #pragma pack(pop, tp)
- struct
- {
- char ___ulomidLE_9_OffsetPadding_forAlignmentOnly[8];
- uint64_t ___ulomidLE_9_forAlignmentOnly;
- };
- };
- };
- struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields
- {
- // System.Decimal System.Decimal::Zero
- Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___Zero_0;
- // System.Decimal System.Decimal::One
- Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___One_1;
- // System.Decimal System.Decimal::MinusOne
- Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinusOne_2;
- // System.Decimal System.Decimal::MaxValue
- Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MaxValue_3;
- // System.Decimal System.Decimal::MinValue
- Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinValue_4;
- };
- // System.Collections.DictionaryEntry
- struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB
- {
- // System.Object System.Collections.DictionaryEntry::_key
- RuntimeObject* ____key_0;
- // System.Object System.Collections.DictionaryEntry::_value
- RuntimeObject* ____value_1;
- };
- // Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry
- struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_marshaled_pinvoke
- {
- Il2CppIUnknown* ____key_0;
- Il2CppIUnknown* ____value_1;
- };
- // Native definition for COM marshalling of System.Collections.DictionaryEntry
- struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_marshaled_com
- {
- Il2CppIUnknown* ____key_0;
- Il2CppIUnknown* ____value_1;
- };
- // GooglePlayGames.BasicApi.Nearby.EndpointDetails
- struct EndpointDetails_t95EEA60E16EE0F4CD6834AF29B6BCDE20C10520C
- {
- // System.String GooglePlayGames.BasicApi.Nearby.EndpointDetails::mEndpointId
- String_t* ___mEndpointId_0;
- // System.String GooglePlayGames.BasicApi.Nearby.EndpointDetails::mName
- String_t* ___mName_1;
- // System.String GooglePlayGames.BasicApi.Nearby.EndpointDetails::mServiceId
- String_t* ___mServiceId_2;
- };
- // Native definition for P/Invoke marshalling of GooglePlayGames.BasicApi.Nearby.EndpointDetails
- struct EndpointDetails_t95EEA60E16EE0F4CD6834AF29B6BCDE20C10520C_marshaled_pinvoke
- {
- char* ___mEndpointId_0;
- char* ___mName_1;
- char* ___mServiceId_2;
- };
- // Native definition for COM marshalling of GooglePlayGames.BasicApi.Nearby.EndpointDetails
- struct EndpointDetails_t95EEA60E16EE0F4CD6834AF29B6BCDE20C10520C_marshaled_com
- {
- Il2CppChar* ___mEndpointId_0;
- Il2CppChar* ___mName_1;
- Il2CppChar* ___mServiceId_2;
- };
- // System.Guid
- struct Guid_t
- {
- // System.Int32 System.Guid::_a
- int32_t ____a_1;
- // System.Int16 System.Guid::_b
- int16_t ____b_2;
- // System.Int16 System.Guid::_c
- int16_t ____c_3;
- // System.Byte System.Guid::_d
- uint8_t ____d_4;
- // System.Byte System.Guid::_e
- uint8_t ____e_5;
- // System.Byte System.Guid::_f
- uint8_t ____f_6;
- // System.Byte System.Guid::_g
- uint8_t ____g_7;
- // System.Byte System.Guid::_h
- uint8_t ____h_8;
- // System.Byte System.Guid::_i
- uint8_t ____i_9;
- // System.Byte System.Guid::_j
- uint8_t ____j_10;
- // System.Byte System.Guid::_k
- uint8_t ____k_11;
- };
- struct Guid_t_StaticFields
- {
- // System.Guid System.Guid::Empty
- Guid_t ___Empty_0;
- };
- // System.IntPtr
- struct IntPtr_t
- {
- // System.Void* System.IntPtr::m_value
- void* ___m_value_0;
- };
- struct IntPtr_t_StaticFields
- {
- // System.IntPtr System.IntPtr::Zero
- intptr_t ___Zero_1;
- };
- // UnityEngine.Matrix4x4
- struct Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6
- {
- // System.Single UnityEngine.Matrix4x4::m00
- float ___m00_0;
- // System.Single UnityEngine.Matrix4x4::m10
- float ___m10_1;
- // System.Single UnityEngine.Matrix4x4::m20
- float ___m20_2;
- // System.Single UnityEngine.Matrix4x4::m30
- float ___m30_3;
- // System.Single UnityEngine.Matrix4x4::m01
- float ___m01_4;
- // System.Single UnityEngine.Matrix4x4::m11
- float ___m11_5;
- // System.Single UnityEngine.Matrix4x4::m21
- float ___m21_6;
- // System.Single UnityEngine.Matrix4x4::m31
- float ___m31_7;
- // System.Single UnityEngine.Matrix4x4::m02
- float ___m02_8;
- // System.Single UnityEngine.Matrix4x4::m12
- float ___m12_9;
- // System.Single UnityEngine.Matrix4x4::m22
- float ___m22_10;
- // System.Single UnityEngine.Matrix4x4::m32
- float ___m32_11;
- // System.Single UnityEngine.Matrix4x4::m03
- float ___m03_12;
- // System.Single UnityEngine.Matrix4x4::m13
- float ___m13_13;
- // System.Single UnityEngine.Matrix4x4::m23
- float ___m23_14;
- // System.Single UnityEngine.Matrix4x4::m33
- float ___m33_15;
- };
- struct Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_StaticFields
- {
- // UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::zeroMatrix
- Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___zeroMatrix_16;
- // UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::identityMatrix
- Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___identityMatrix_17;
- };
- // UnityEngine.SocialPlatforms.Range
- struct Range_tDDBAD7CBDC5DD273DA4330F4E9CDF24C62F16ED6
- {
- // System.Int32 UnityEngine.SocialPlatforms.Range::from
- int32_t ___from_0;
- // System.Int32 UnityEngine.SocialPlatforms.Range::count
- int32_t ___count_1;
- };
- // System.Resources.ResourceLocator
- struct ResourceLocator_t84F68A0DD2AA185761938E49BBE9B2C46A47E122
- {
- // System.Object System.Resources.ResourceLocator::_value
- RuntimeObject* ____value_0;
- // System.Int32 System.Resources.ResourceLocator::_dataPos
- int32_t ____dataPos_1;
- };
- // Native definition for P/Invoke marshalling of System.Resources.ResourceLocator
- struct ResourceLocator_t84F68A0DD2AA185761938E49BBE9B2C46A47E122_marshaled_pinvoke
- {
- Il2CppIUnknown* ____value_0;
- int32_t ____dataPos_1;
- };
- // Native definition for COM marshalling of System.Resources.ResourceLocator
- struct ResourceLocator_t84F68A0DD2AA185761938E49BBE9B2C46A47E122_marshaled_com
- {
- Il2CppIUnknown* ____value_0;
- int32_t ____dataPos_1;
- };
- // UnityEngine.SceneManagement.Scene
- struct Scene_tA1DC762B79745EB5140F054C884855B922318356
- {
- // System.Int32 UnityEngine.SceneManagement.Scene::m_Handle
- int32_t ___m_Handle_0;
- };
- // UnityEngine.Rendering.ShaderTagId
- struct ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0
- {
- // System.Int32 UnityEngine.Rendering.ShaderTagId::m_Id
- int32_t ___m_Id_0;
- };
- // System.Runtime.Serialization.StreamingContext
- struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677
- {
- // System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext
- RuntimeObject* ___m_additionalContext_0;
- // System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state
- int32_t ___m_state_1;
- };
- // Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext
- struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_pinvoke
- {
- Il2CppIUnknown* ___m_additionalContext_0;
- int32_t ___m_state_1;
- };
- // Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext
- struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_com
- {
- Il2CppIUnknown* ___m_additionalContext_0;
- int32_t ___m_state_1;
- };
- // System.TimeSpan
- struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A
- {
- // System.Int64 System.TimeSpan::_ticks
- int64_t ____ticks_3;
- };
- struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields
- {
- // System.TimeSpan System.TimeSpan::Zero
- TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___Zero_0;
- // System.TimeSpan System.TimeSpan::MaxValue
- TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MaxValue_1;
- // System.TimeSpan System.TimeSpan::MinValue
- TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MinValue_2;
- };
- // UnityEngine.Vector3
- struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2
- {
- // System.Single UnityEngine.Vector3::x
- float ___x_0;
- // System.Single UnityEngine.Vector3::y
- float ___y_1;
- // System.Single UnityEngine.Vector3::z
- float ___z_2;
- };
- struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields
- {
- // UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
- Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___zeroVector_3;
- // UnityEngine.Vector3 UnityEngine.Vector3::oneVector
- Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___oneVector_4;
- // UnityEngine.Vector3 UnityEngine.Vector3::upVector
- Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___upVector_5;
- // UnityEngine.Vector3 UnityEngine.Vector3::downVector
- Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___downVector_6;
- // UnityEngine.Vector3 UnityEngine.Vector3::leftVector
- Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___leftVector_7;
- // UnityEngine.Vector3 UnityEngine.Vector3::rightVector
- Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rightVector_8;
- // UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
- Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___forwardVector_9;
- // UnityEngine.Vector3 UnityEngine.Vector3::backVector
- Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___backVector_10;
- // UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
- Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___positiveInfinityVector_11;
- // UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
- Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___negativeInfinityVector_12;
- };
- // System.Threading.Tasks.VoidTaskResult
- struct VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC
- {
- union
- {
- struct
- {
- };
- uint8_t VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC__padding[1];
- };
- };
- // UnityEngine.BeforeRenderHelper/OrderBlock
- struct OrderBlock_t62FD6F6544F34B5298DEF2F77AAE446F269B7837
- {
- // System.Int32 UnityEngine.BeforeRenderHelper/OrderBlock::order
- int32_t ___order_0;
- // UnityEngine.Events.UnityAction UnityEngine.BeforeRenderHelper/OrderBlock::callback
- UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* ___callback_1;
- };
- // Native definition for P/Invoke marshalling of UnityEngine.BeforeRenderHelper/OrderBlock
- struct OrderBlock_t62FD6F6544F34B5298DEF2F77AAE446F269B7837_marshaled_pinvoke
- {
- int32_t ___order_0;
- Il2CppMethodPointer ___callback_1;
- };
- // Native definition for COM marshalling of UnityEngine.BeforeRenderHelper/OrderBlock
- struct OrderBlock_t62FD6F6544F34B5298DEF2F77AAE446F269B7837_marshaled_com
- {
- int32_t ___order_0;
- Il2CppMethodPointer ___callback_1;
- };
- // UnityEngine.Camera/RenderRequest
- struct RenderRequest_t432931B06439AC4704282E924DE8A9A474DB6B9A
- {
- // UnityEngine.Camera/RenderRequestMode UnityEngine.Camera/RenderRequest::m_CameraRenderMode
- int32_t ___m_CameraRenderMode_0;
- // UnityEngine.RenderTexture UnityEngine.Camera/RenderRequest::m_ResultRT
- RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___m_ResultRT_1;
- // UnityEngine.Camera/RenderRequestOutputSpace UnityEngine.Camera/RenderRequest::m_OutputSpace
- int32_t ___m_OutputSpace_2;
- };
- // Native definition for P/Invoke marshalling of UnityEngine.Camera/RenderRequest
- struct RenderRequest_t432931B06439AC4704282E924DE8A9A474DB6B9A_marshaled_pinvoke
- {
- int32_t ___m_CameraRenderMode_0;
- RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___m_ResultRT_1;
- int32_t ___m_OutputSpace_2;
- };
- // Native definition for COM marshalling of UnityEngine.Camera/RenderRequest
- struct RenderRequest_t432931B06439AC4704282E924DE8A9A474DB6B9A_marshaled_com
- {
- int32_t ___m_CameraRenderMode_0;
- RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___m_ResultRT_1;
- int32_t ___m_OutputSpace_2;
- };
- // System.Text.RegularExpressions.Regex/CachedCodeEntryKey
- struct CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31
- {
- // System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.Regex/CachedCodeEntryKey::_options
- int32_t ____options_0;
- // System.String System.Text.RegularExpressions.Regex/CachedCodeEntryKey::_cultureKey
- String_t* ____cultureKey_1;
- // System.String System.Text.RegularExpressions.Regex/CachedCodeEntryKey::_pattern
- String_t* ____pattern_2;
- };
- // Native definition for P/Invoke marshalling of System.Text.RegularExpressions.Regex/CachedCodeEntryKey
- struct CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31_marshaled_pinvoke
- {
- int32_t ____options_0;
- char* ____cultureKey_1;
- char* ____pattern_2;
- };
- // Native definition for COM marshalling of System.Text.RegularExpressions.Regex/CachedCodeEntryKey
- struct CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31_marshaled_com
- {
- int32_t ____options_0;
- Il2CppChar* ____cultureKey_1;
- Il2CppChar* ____pattern_2;
- };
- // System.Text.RegularExpressions.RegexCharClass/SingleRange
- struct SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC
- {
- // System.Char System.Text.RegularExpressions.RegexCharClass/SingleRange::First
- Il2CppChar ___First_0;
- // System.Char System.Text.RegularExpressions.RegexCharClass/SingleRange::Last
- Il2CppChar ___Last_1;
- };
- // Native definition for P/Invoke marshalling of System.Text.RegularExpressions.RegexCharClass/SingleRange
- struct SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_marshaled_pinvoke
- {
- uint8_t ___First_0;
- uint8_t ___Last_1;
- };
- // Native definition for COM marshalling of System.Text.RegularExpressions.RegexCharClass/SingleRange
- struct SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC_marshaled_com
- {
- uint8_t ___First_0;
- uint8_t ___Last_1;
- };
- // UnityEngine.UnitySynchronizationContext/WorkRequest
- struct WorkRequest_t8AF542F2E248D9234341817CDB5F76C27D348B44
- {
- // System.Threading.SendOrPostCallback UnityEngine.UnitySynchronizationContext/WorkRequest::m_DelagateCallback
- SendOrPostCallback_t5C292A12062F24027A98492F52ECFE9802AA6F0E* ___m_DelagateCallback_0;
- // System.Object UnityEngine.UnitySynchronizationContext/WorkRequest::m_DelagateState
- RuntimeObject* ___m_DelagateState_1;
- // System.Threading.ManualResetEvent UnityEngine.UnitySynchronizationContext/WorkRequest::m_WaitHandle
- ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* ___m_WaitHandle_2;
- };
- // Native definition for P/Invoke marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest
- struct WorkRequest_t8AF542F2E248D9234341817CDB5F76C27D348B44_marshaled_pinvoke
- {
- Il2CppMethodPointer ___m_DelagateCallback_0;
- Il2CppIUnknown* ___m_DelagateState_1;
- ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* ___m_WaitHandle_2;
- };
- // Native definition for COM marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest
- struct WorkRequest_t8AF542F2E248D9234341817CDB5F76C27D348B44_marshaled_com
- {
- Il2CppMethodPointer ___m_DelagateCallback_0;
- Il2CppIUnknown* ___m_DelagateState_1;
- ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* ___m_WaitHandle_2;
- };
- // System.ByReference`1<System.Byte>
- struct ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC
- {
- // System.IntPtr System.ByReference`1::_value
- intptr_t ____value_0;
- };
- // System.ByReference`1<System.Char>
- struct ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5
- {
- // System.IntPtr System.ByReference`1::_value
- intptr_t ____value_0;
- };
- // System.ByReference`1<System.Object>
- struct ByReference_1_t98B79BFB40A2CA0814BC183B09B4339A5EBF8524
- {
- // System.IntPtr System.ByReference`1::_value
- intptr_t ____value_0;
- };
- // System.ValueTuple`5<System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.Boolean>
- struct ValueTuple_5_t558B9F95CA55DE5694FC58A3BEAE441BF728FB57
- {
- // T1 System.ValueTuple`5::Item1
- intptr_t ___Item1_0;
- // T2 System.ValueTuple`5::Item2
- int32_t ___Item2_1;
- // T3 System.ValueTuple`5::Item3
- intptr_t ___Item3_2;
- // T4 System.ValueTuple`5::Item4
- int32_t ___Item4_3;
- // T5 System.ValueTuple`5::Item5
- bool ___Item5_4;
- };
- // GooglePlayGames.BasicApi.Nearby.ConnectionRequest
- struct ConnectionRequest_t91E30890E727FF25CC25A9DBB5CF83894E4F4EFF
- {
- // GooglePlayGames.BasicApi.Nearby.EndpointDetails GooglePlayGames.BasicApi.Nearby.ConnectionRequest::mRemoteEndpoint
- EndpointDetails_t95EEA60E16EE0F4CD6834AF29B6BCDE20C10520C ___mRemoteEndpoint_0;
- // System.Byte[] GooglePlayGames.BasicApi.Nearby.ConnectionRequest::mPayload
- ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___mPayload_1;
- };
- // Native definition for P/Invoke marshalling of GooglePlayGames.BasicApi.Nearby.ConnectionRequest
- struct ConnectionRequest_t91E30890E727FF25CC25A9DBB5CF83894E4F4EFF_marshaled_pinvoke
- {
- EndpointDetails_t95EEA60E16EE0F4CD6834AF29B6BCDE20C10520C_marshaled_pinvoke ___mRemoteEndpoint_0;
- Il2CppSafeArray/*NONE*/* ___mPayload_1;
- };
- // Native definition for COM marshalling of GooglePlayGames.BasicApi.Nearby.ConnectionRequest
- struct ConnectionRequest_t91E30890E727FF25CC25A9DBB5CF83894E4F4EFF_marshaled_com
- {
- EndpointDetails_t95EEA60E16EE0F4CD6834AF29B6BCDE20C10520C_marshaled_com ___mRemoteEndpoint_0;
- Il2CppSafeArray/*NONE*/* ___mPayload_1;
- };
- // System.Reflection.CustomAttributeNamedArgument
- struct CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02
- {
- // System.Reflection.CustomAttributeTypedArgument System.Reflection.CustomAttributeNamedArgument::<TypedValue>k__BackingField
- CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F ___U3CTypedValueU3Ek__BackingField_0;
- // System.Boolean System.Reflection.CustomAttributeNamedArgument::<IsField>k__BackingField
- bool ___U3CIsFieldU3Ek__BackingField_1;
- // System.String System.Reflection.CustomAttributeNamedArgument::<MemberName>k__BackingField
- String_t* ___U3CMemberNameU3Ek__BackingField_2;
- // System.Type System.Reflection.CustomAttributeNamedArgument::_attributeType
- Type_t* ____attributeType_3;
- // System.Reflection.MemberInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Reflection.CustomAttributeNamedArgument::_lazyMemberInfo
- MemberInfo_t* ____lazyMemberInfo_4;
- };
- // Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeNamedArgument
- struct CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02_marshaled_pinvoke
- {
- CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F_marshaled_pinvoke ___U3CTypedValueU3Ek__BackingField_0;
- int32_t ___U3CIsFieldU3Ek__BackingField_1;
- char* ___U3CMemberNameU3Ek__BackingField_2;
- Type_t* ____attributeType_3;
- MemberInfo_t* ____lazyMemberInfo_4;
- };
- // Native definition for COM marshalling of System.Reflection.CustomAttributeNamedArgument
- struct CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02_marshaled_com
- {
- CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F_marshaled_com ___U3CTypedValueU3Ek__BackingField_0;
- int32_t ___U3CIsFieldU3Ek__BackingField_1;
- Il2CppChar* ___U3CMemberNameU3Ek__BackingField_2;
- Type_t* ____attributeType_3;
- MemberInfo_t* ____lazyMemberInfo_4;
- };
- // UnityEngine.Profiling.Experimental.DebugScreenCapture
- struct DebugScreenCapture_t859E4E87C94587A08893C726D4FF84BD8F288CC5
- {
- // Unity.Collections.NativeArray`1<System.Byte> UnityEngine.Profiling.Experimental.DebugScreenCapture::<rawImageDataReference>k__BackingField
- NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___U3CrawImageDataReferenceU3Ek__BackingField_0;
- // UnityEngine.TextureFormat UnityEngine.Profiling.Experimental.DebugScreenCapture::<imageFormat>k__BackingField
- int32_t ___U3CimageFormatU3Ek__BackingField_1;
- // System.Int32 UnityEngine.Profiling.Experimental.DebugScreenCapture::<width>k__BackingField
- int32_t ___U3CwidthU3Ek__BackingField_2;
- // System.Int32 UnityEngine.Profiling.Experimental.DebugScreenCapture::<height>k__BackingField
- int32_t ___U3CheightU3Ek__BackingField_3;
- };
- // Unity.Jobs.JobHandle
- struct JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08
- {
- // System.IntPtr Unity.Jobs.JobHandle::jobGroup
- intptr_t ___jobGroup_0;
- // System.Int32 Unity.Jobs.JobHandle::version
- int32_t ___version_1;
- };
- // UnityEngine.Rendering.LODParameters
- struct LODParameters_t54D2AA0FD8E53BCF51D7A42BC1A72FCA8C78A08A
- {
- // System.Int32 UnityEngine.Rendering.LODParameters::m_IsOrthographic
- int32_t ___m_IsOrthographic_0;
- // UnityEngine.Vector3 UnityEngine.Rendering.LODParameters::m_CameraPosition
- Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_CameraPosition_1;
- // System.Single UnityEngine.Rendering.LODParameters::m_FieldOfView
- float ___m_FieldOfView_2;
- // System.Single UnityEngine.Rendering.LODParameters::m_OrthoSize
- float ___m_OrthoSize_3;
- // System.Int32 UnityEngine.Rendering.LODParameters::m_CameraPixelHeight
- int32_t ___m_CameraPixelHeight_4;
- };
- // UnityEngine.Playables.PlayableGraph
- struct PlayableGraph_t4A5B0B45343A240F0761574FD7C672E0CFFF7A6E
- {
- // System.IntPtr UnityEngine.Playables.PlayableGraph::m_Handle
- intptr_t ___m_Handle_0;
- // System.UInt32 UnityEngine.Playables.PlayableGraph::m_Version
- uint32_t ___m_Version_1;
- };
- // UnityEngine.Playables.PlayableHandle
- struct PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4
- {
- // System.IntPtr UnityEngine.Playables.PlayableHandle::m_Handle
- intptr_t ___m_Handle_0;
- // System.UInt32 UnityEngine.Playables.PlayableHandle::m_Version
- uint32_t ___m_Version_1;
- };
- struct PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4_StaticFields
- {
- // UnityEngine.Playables.PlayableHandle UnityEngine.Playables.PlayableHandle::m_Null
- PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Null_2;
- };
- // UnityEngine.Playables.PlayableOutputHandle
- struct PlayableOutputHandle_tEB217645A8C0356A3AC6F964F283003B9740E883
- {
- // System.IntPtr UnityEngine.Playables.PlayableOutputHandle::m_Handle
- intptr_t ___m_Handle_0;
- // System.UInt32 UnityEngine.Playables.PlayableOutputHandle::m_Version
- uint32_t ___m_Version_1;
- };
- struct PlayableOutputHandle_tEB217645A8C0356A3AC6F964F283003B9740E883_StaticFields
- {
- // UnityEngine.Playables.PlayableOutputHandle UnityEngine.Playables.PlayableOutputHandle::m_Null
- PlayableOutputHandle_tEB217645A8C0356A3AC6F964F283003B9740E883 ___m_Null_2;
- };
- // System.RuntimeFieldHandle
- struct RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5
- {
- // System.IntPtr System.RuntimeFieldHandle::value
- intptr_t ___value_0;
- };
- // System.RuntimeMethodHandle
- struct RuntimeMethodHandle_tB35B96E97214DCBE20B0B02B1E687884B34680B2
- {
- // System.IntPtr System.RuntimeMethodHandle::value
- intptr_t ___value_0;
- };
- // System.RuntimeTypeHandle
- struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
- {
- // System.IntPtr System.RuntimeTypeHandle::value
- intptr_t ___value_0;
- };
- // UnityEngine.Rendering.ScriptableRenderContext
- struct ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36
- {
- // System.IntPtr UnityEngine.Rendering.ScriptableRenderContext::m_Ptr
- intptr_t ___m_Ptr_1;
- };
- struct ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_StaticFields
- {
- // UnityEngine.Rendering.ShaderTagId UnityEngine.Rendering.ScriptableRenderContext::kRenderTypeTag
- ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 ___kRenderTypeTag_0;
- };
- // System.ReadOnlySpan`1<System.Byte>
- struct ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D
- {
- // System.ByReference`1<T> System.ReadOnlySpan`1::_pointer
- ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC ____pointer_0;
- // System.Int32 System.ReadOnlySpan`1::_length
- int32_t ____length_1;
- };
- // System.ReadOnlySpan`1<System.Char>
- struct ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1
- {
- // System.ByReference`1<T> System.ReadOnlySpan`1::_pointer
- ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 ____pointer_0;
- // System.Int32 System.ReadOnlySpan`1::_length
- int32_t ____length_1;
- };
- // System.Span`1<System.Byte>
- struct Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305
- {
- // System.ByReference`1<T> System.Span`1::_pointer
- ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC ____pointer_0;
- // System.Int32 System.Span`1::_length
- int32_t ____length_1;
- };
- // System.Span`1<System.Char>
- struct Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D
- {
- // System.ByReference`1<T> System.Span`1::_pointer
- ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 ____pointer_0;
- // System.Int32 System.Span`1::_length
- int32_t ____length_1;
- };
- // System.Span`1<System.Object>
- struct Span_1_t3F436092261253E8F2AF9867CA253C3B370766C2
- {
- // System.ByReference`1<T> System.Span`1::_pointer
- ByReference_1_t98B79BFB40A2CA0814BC183B09B4339A5EBF8524 ____pointer_0;
- // System.Int32 System.Span`1::_length
- int32_t ____length_1;
- };
- // UnityEngine.Rendering.BatchCullingContext
- struct BatchCullingContext_t6133D8CF3B9A93AED429E017C62DC2F5BD64A659
- {
- // Unity.Collections.NativeArray`1<UnityEngine.Plane> UnityEngine.Rendering.BatchCullingContext::cullingPlanes
- NativeArray_1_t4020B6981295FB915DCE82EF368535F680C13A49 ___cullingPlanes_0;
- // Unity.Collections.NativeArray`1<UnityEngine.Rendering.BatchVisibility> UnityEngine.Rendering.BatchCullingContext::batchVisibility
- NativeArray_1_t88F04A6A2FC556B8A7EE20276F7A2BB13F420AB9 ___batchVisibility_1;
- // Unity.Collections.NativeArray`1<System.Int32> UnityEngine.Rendering.BatchCullingContext::visibleIndices
- NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C ___visibleIndices_2;
- // Unity.Collections.NativeArray`1<System.Int32> UnityEngine.Rendering.BatchCullingContext::visibleIndicesY
- NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C ___visibleIndicesY_3;
- // UnityEngine.Rendering.LODParameters UnityEngine.Rendering.BatchCullingContext::lodParameters
- LODParameters_t54D2AA0FD8E53BCF51D7A42BC1A72FCA8C78A08A ___lodParameters_4;
- // UnityEngine.Matrix4x4 UnityEngine.Rendering.BatchCullingContext::cullingMatrix
- Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___cullingMatrix_5;
- // System.Single UnityEngine.Rendering.BatchCullingContext::nearPlane
- float ___nearPlane_6;
- };
- // UnityEngine.Playables.Playable
- struct Playable_t95C6B795846BA0C7D96E4DA14897CCCF2554334F
- {
- // UnityEngine.Playables.PlayableHandle UnityEngine.Playables.Playable::m_Handle
- PlayableHandle_t5D6A01EF94382EFEDC047202F71DF882769654D4 ___m_Handle_0;
- };
- struct Playable_t95C6B795846BA0C7D96E4DA14897CCCF2554334F_StaticFields
- {
- // UnityEngine.Playables.Playable UnityEngine.Playables.Playable::m_NullPlayable
- Playable_t95C6B795846BA0C7D96E4DA14897CCCF2554334F ___m_NullPlayable_1;
- };
- // UnityEngine.Playables.PlayableOutput
- struct PlayableOutput_t2F7C45A58DA3E788EEDDB439549E21CF3FCF3680
- {
- // UnityEngine.Playables.PlayableOutputHandle UnityEngine.Playables.PlayableOutput::m_Handle
- PlayableOutputHandle_tEB217645A8C0356A3AC6F964F283003B9740E883 ___m_Handle_0;
- };
- struct PlayableOutput_t2F7C45A58DA3E788EEDDB439549E21CF3FCF3680_StaticFields
- {
- // UnityEngine.Playables.PlayableOutput UnityEngine.Playables.PlayableOutput::m_NullPlayableOutput
- PlayableOutput_t2F7C45A58DA3E788EEDDB439549E21CF3FCF3680 ___m_NullPlayableOutput_1;
- };
- // System.TypedReference
- struct TypedReference_tF20A82297BED597FD80BDA0E41F74746B0FD642B
- {
- // System.RuntimeTypeHandle System.TypedReference::type
- RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___type_0;
- // System.IntPtr System.TypedReference::Value
- intptr_t ___Value_1;
- // System.IntPtr System.TypedReference::Type
- intptr_t ___Type_2;
- };
- #ifdef __clang__
- #pragma clang diagnostic pop
- #endif
- static KeyValuePair_2_t8E0D15B87910CDDA42560D1A46FD995D80D1210F UnresolvedVirtualCall_0 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- KeyValuePair_2_t8E0D15B87910CDDA42560D1A46FD995D80D1210F il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static KeyValuePair_2_tA15A2CDE2D0067F592CD9373418E53A418842273 UnresolvedVirtualCall_1 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- KeyValuePair_2_tA15A2CDE2D0067F592CD9373418E53A418842273 il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static KeyValuePair_2_tFA55EACE445F07ED0E758AB6E024B85AB8FD089D UnresolvedVirtualCall_2 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- KeyValuePair_2_tFA55EACE445F07ED0E758AB6E024B85AB8FD089D il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static KeyValuePair_2_tB705E6AEB2BE5DC110A8BC6390AC36BB0F127B47 UnresolvedVirtualCall_3 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- KeyValuePair_2_tB705E6AEB2BE5DC110A8BC6390AC36BB0F127B47 il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 UnresolvedVirtualCall_4 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF UnresolvedVirtualCall_5 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 UnresolvedVirtualCall_6 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D UnresolvedVirtualCall_7 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static uint8_t UnresolvedVirtualCall_8 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- uint8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static uint8_t UnresolvedVirtualCall_9 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
- {
- void* args[] = {p1};
- uint8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static ConsoleKeyInfo_t84640C60F53D0F6946B147ADAAF0366BBF1DE900 UnresolvedVirtualCall_10 (RuntimeObject* __this, int8_t p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- ConsoleKeyInfo_t84640C60F53D0F6946B147ADAAF0366BBF1DE900 il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02 UnresolvedVirtualCall_11 (RuntimeObject* __this, int32_t p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02 il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F UnresolvedVirtualCall_12 (RuntimeObject* __this, int32_t p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D UnresolvedVirtualCall_13 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- 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)
- {
- void* args[] = {&p1,&p2,&p3,&p4,&p5,&p6,&p7,&p8};
- DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D UnresolvedVirtualCall_15 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
- {
- void* args[] = {p1};
- DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F UnresolvedVirtualCall_16 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F UnresolvedVirtualCall_17 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
- {
- void* args[] = {p1};
- Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB UnresolvedVirtualCall_18 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static double UnresolvedVirtualCall_19 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- double il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static double UnresolvedVirtualCall_20 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
- {
- void* args[] = {p1};
- double il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static Guid_t UnresolvedVirtualCall_21 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- Guid_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int16_t UnresolvedVirtualCall_22 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- int16_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int16_t UnresolvedVirtualCall_23 (RuntimeObject* __this, int16_t p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int16_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int16_t UnresolvedVirtualCall_24 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
- {
- void* args[] = {p1};
- int16_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_25 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_26 (RuntimeObject* __this, ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D p1, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_27 (RuntimeObject* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 p1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_28 (RuntimeObject* __this, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_29 (RuntimeObject* __this, ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_30 (RuntimeObject* __this, uint8_t p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_31 (RuntimeObject* __this, CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02 p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_32 (RuntimeObject* __this, CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_33 (RuntimeObject* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_34 (RuntimeObject* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D p1, int32_t p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_35 (RuntimeObject* __this, int32_t p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_36 (RuntimeObject* __this, int32_t p1, int32_t p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_37 (RuntimeObject* __this, int32_t p1, int32_t p2, int32_t p3, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2,&p3};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_38 (RuntimeObject* __this, int64_t p1, int32_t p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_39 (RuntimeObject* __this, intptr_t p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_40 (RuntimeObject* __this, intptr_t p1, intptr_t p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_41 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
- {
- void* args[] = {p1};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_42 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_43 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, int32_t p3, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,&p3};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_44 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, int32_t p3, int32_t p4, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,&p3,&p4};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_45 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, int32_t p3, RuntimeObject* p4, int32_t p5, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,&p3,p4,&p5};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- 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)
- {
- void* args[] = {p1,&p2,&p3,p4,&p5,&p6,&p7};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- 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)
- {
- void* args[] = {p1,&p2,&p3,p4,&p5,&p6};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_48 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, int32_t p3, int8_t p4, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,&p3,&p4};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_49 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, RuntimeObject* p3, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,p3};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_50 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, RuntimeObject* p3, int32_t p4, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,p3,&p4};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_51 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, RuntimeObject* p3, int32_t p4, RuntimeObject* p5, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,p3,&p4,p5};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_52 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, RuntimeObject* p3, int32_t p4, int8_t p5, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,p3,&p4,&p5};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_53 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, int8_t p3, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,&p3};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_54 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, const RuntimeMethod* method)
- {
- void* args[] = {p1,p2};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_55 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, int32_t p3, const RuntimeMethod* method)
- {
- void* args[] = {p1,p2,&p3};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_56 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, int32_t p3, int32_t p4, const RuntimeMethod* method)
- {
- void* args[] = {p1,p2,&p3,&p4};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_57 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, int32_t p3, int32_t p4, int32_t p5, const RuntimeMethod* method)
- {
- void* args[] = {p1,p2,&p3,&p4,&p5};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_58 (RuntimeObject* __this, RuntimeObject* p1, int8_t p2, int32_t p3, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,&p3};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_59 (RuntimeObject* __this, RuntimeObject* p1, OrderBlock_t62FD6F6544F34B5298DEF2F77AAE446F269B7837 p2, int32_t p3, int32_t p4, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,&p3,&p4};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_60 (RuntimeObject* __this, RuntimeObject* p1, RenderRequest_t432931B06439AC4704282E924DE8A9A474DB6B9A p2, int32_t p3, int32_t p4, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,&p3,&p4};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_61 (RuntimeObject* __this, RuntimeObject* p1, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC p2, int32_t p3, int32_t p4, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,&p3,&p4};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_62 (RuntimeObject* __this, RuntimeObject* p1, WorkRequest_t8AF542F2E248D9234341817CDB5F76C27D348B44 p2, int32_t p3, int32_t p4, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,&p3,&p4};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_63 (RuntimeObject* __this, ResourceLocator_t84F68A0DD2AA185761938E49BBE9B2C46A47E122 p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_64 (RuntimeObject* __this, int8_t p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_65 (RuntimeObject* __this, int8_t p1, int8_t p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_66 (RuntimeObject* __this, uint64_t p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_67 (RuntimeObject* __this, uint64_t p1, uint64_t p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_68 (RuntimeObject* __this, OrderBlock_t62FD6F6544F34B5298DEF2F77AAE446F269B7837 p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_69 (RuntimeObject* __this, OrderBlock_t62FD6F6544F34B5298DEF2F77AAE446F269B7837 p1, OrderBlock_t62FD6F6544F34B5298DEF2F77AAE446F269B7837 p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_70 (RuntimeObject* __this, RenderRequest_t432931B06439AC4704282E924DE8A9A474DB6B9A p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_71 (RuntimeObject* __this, RenderRequest_t432931B06439AC4704282E924DE8A9A474DB6B9A p1, RenderRequest_t432931B06439AC4704282E924DE8A9A474DB6B9A p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_72 (RuntimeObject* __this, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_73 (RuntimeObject* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_74 (RuntimeObject* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC p1, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_75 (RuntimeObject* __this, WorkRequest_t8AF542F2E248D9234341817CDB5F76C27D348B44 p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int32_t UnresolvedVirtualCall_76 (RuntimeObject* __this, WorkRequest_t8AF542F2E248D9234341817CDB5F76C27D348B44 p1, WorkRequest_t8AF542F2E248D9234341817CDB5F76C27D348B44 p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int64_t UnresolvedVirtualCall_77 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- int64_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int64_t UnresolvedVirtualCall_78 (RuntimeObject* __this, int64_t p1, int32_t p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int64_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int64_t UnresolvedVirtualCall_79 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
- {
- void* args[] = {p1};
- int64_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int64_t UnresolvedVirtualCall_80 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, const RuntimeMethod* method)
- {
- void* args[] = {p1,p2};
- int64_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static intptr_t UnresolvedVirtualCall_81 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- intptr_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 UnresolvedVirtualCall_82 (RuntimeObject* __this, BatchCullingContext_t6133D8CF3B9A93AED429E017C62DC2F5BD64A659 p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 UnresolvedVirtualCall_83 (RuntimeObject* __this, RuntimeObject* p1, BatchCullingContext_t6133D8CF3B9A93AED429E017C62DC2F5BD64A659 p2, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2};
- JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_84 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_85 (RuntimeObject* __this, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_86 (RuntimeObject* __this, int32_t p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_87 (RuntimeObject* __this, int32_t p1, RuntimeObject* p2, int32_t p3, RuntimeObject* p4, RuntimeObject* p5, const RuntimeMethod* method)
- {
- void* args[] = {&p1,p2,&p3,p4,p5};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_88 (RuntimeObject* __this, int32_t p1, RuntimeObject* p2, RuntimeObject* p3, const RuntimeMethod* method)
- {
- void* args[] = {&p1,p2,p3};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_89 (RuntimeObject* __this, int32_t p1, RuntimeObject* p2, RuntimeObject* p3, RuntimeObject* p4, const RuntimeMethod* method)
- {
- void* args[] = {&p1,p2,p3,p4};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_90 (RuntimeObject* __this, int32_t p1, RuntimeObject* p2, RuntimeObject* p3, RuntimeObject* p4, RuntimeObject* p5, const RuntimeMethod* method)
- {
- void* args[] = {&p1,p2,p3,p4,p5};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_91 (RuntimeObject* __this, int32_t p1, RuntimeObject* p2, RuntimeObject* p3, RuntimeObject* p4, RuntimeObject* p5, RuntimeObject* p6, RuntimeObject* p7, const RuntimeMethod* method)
- {
- void* args[] = {&p1,p2,p3,p4,p5,p6,p7};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_92 (RuntimeObject* __this, int64_t p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_93 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
- {
- void* args[] = {p1};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_94 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_95 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, int32_t p3, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,&p3};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_96 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, int32_t p3, RuntimeObject* p4, RuntimeObject* p5, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,&p3,p4,p5};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_97 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, RuntimeObject* p3, int32_t p4, RuntimeObject* p5, RuntimeObject* p6, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,p3,&p4,p5,p6};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_98 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, RuntimeObject* p3, RuntimeObject* p4, RuntimeObject* p5, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,p3,p4,p5};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_99 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, RuntimeObject* p3, RuntimeObject* p4, RuntimeObject* p5, RuntimeObject* p6, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,p3,p4,p5,p6};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- 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)
- {
- void* args[] = {p1,&p2,p3,p4,p5,p6,p7,p8};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_101 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, const RuntimeMethod* method)
- {
- void* args[] = {p1,p2};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_102 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, RuntimeObject* p3, const RuntimeMethod* method)
- {
- void* args[] = {p1,p2,p3};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_103 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, RuntimeObject* p3, RuntimeObject* p4, const RuntimeMethod* method)
- {
- void* args[] = {p1,p2,p3,p4};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_104 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, int8_t p3, const RuntimeMethod* method)
- {
- void* args[] = {p1,p2,&p3};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_105 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 p3, RuntimeObject* p4, const RuntimeMethod* method)
- {
- void* args[] = {p1,p2,&p3,p4};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_106 (RuntimeObject* __this, RuntimeObject* p1, int8_t p2, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_107 (RuntimeObject* __this, RuntimeObject* p1, int8_t p2, int8_t p3, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,&p3};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_108 (RuntimeObject* __this, RuntimeObject* p1, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 p2, RuntimeObject* p3, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,p3};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_109 (RuntimeObject* __this, int8_t p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeObject* UnresolvedVirtualCall_110 (RuntimeObject* __this, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- RuntimeObject* il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static Playable_t95C6B795846BA0C7D96E4DA14897CCCF2554334F UnresolvedVirtualCall_111 (RuntimeObject* __this, PlayableGraph_t4A5B0B45343A240F0761574FD7C672E0CFFF7A6E p1, RuntimeObject* p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,p2};
- Playable_t95C6B795846BA0C7D96E4DA14897CCCF2554334F il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static PlayableOutput_t2F7C45A58DA3E788EEDDB439549E21CF3FCF3680 UnresolvedVirtualCall_112 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
- {
- void* args[] = {p1};
- PlayableOutput_t2F7C45A58DA3E788EEDDB439549E21CF3FCF3680 il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static PlayableOutput_t2F7C45A58DA3E788EEDDB439549E21CF3FCF3680 UnresolvedVirtualCall_113 (RuntimeObject* __this, PlayableGraph_t4A5B0B45343A240F0761574FD7C672E0CFFF7A6E p1, RuntimeObject* p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,p2};
- PlayableOutput_t2F7C45A58DA3E788EEDDB439549E21CF3FCF3680 il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static Range_tDDBAD7CBDC5DD273DA4330F4E9CDF24C62F16ED6 UnresolvedVirtualCall_114 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- Range_tDDBAD7CBDC5DD273DA4330F4E9CDF24C62F16ED6 il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 UnresolvedVirtualCall_115 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeMethodHandle_tB35B96E97214DCBE20B0B02B1E687884B34680B2 UnresolvedVirtualCall_116 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- RuntimeMethodHandle_tB35B96E97214DCBE20B0B02B1E687884B34680B2 il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B UnresolvedVirtualCall_117 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_118 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_119 (RuntimeObject* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D p1, RuntimeObject* p2, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 p3, RuntimeObject* p4, const RuntimeMethod* method)
- {
- void* args[] = {&p1,p2,&p3,p4};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_120 (RuntimeObject* __this, ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A p1, ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_121 (RuntimeObject* __this, uint8_t p1, uint8_t p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_122 (RuntimeObject* __this, CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02 p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_123 (RuntimeObject* __this, CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_124 (RuntimeObject* __this, Guid_t p1, RuntimeObject* p2, int32_t p3, const RuntimeMethod* method)
- {
- void* args[] = {&p1,p2,&p3};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_125 (RuntimeObject* __this, int16_t p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_126 (RuntimeObject* __this, int16_t p1, int16_t p2, int32_t p3, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2,&p3};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_127 (RuntimeObject* __this, int16_t p1, int32_t p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_128 (RuntimeObject* __this, int16_t p1, RuntimeObject* p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,p2};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_129 (RuntimeObject* __this, int32_t p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_130 (RuntimeObject* __this, int32_t p1, int32_t p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_131 (RuntimeObject* __this, int32_t p1, int32_t p2, int32_t p3, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2,&p3};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_132 (RuntimeObject* __this, int32_t p1, int32_t p2, int32_t p3, int32_t p4, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2,&p3,&p4};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- 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)
- {
- void* args[] = {&p1,&p2,&p3,&p4,&p5,&p6,&p7,&p8,p9};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_134 (RuntimeObject* __this, int32_t p1, int8_t p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_135 (RuntimeObject* __this, intptr_t p1, intptr_t p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_136 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
- {
- void* args[] = {p1};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_137 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_138 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, const RuntimeMethod* method)
- {
- void* args[] = {p1,p2};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_139 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, int32_t p3, const RuntimeMethod* method)
- {
- void* args[] = {p1,p2,&p3};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_140 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, RuntimeObject* p3, const RuntimeMethod* method)
- {
- void* args[] = {p1,p2,p3};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_141 (RuntimeObject* __this, RuntimeObject* p1, int8_t p2, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_142 (RuntimeObject* __this, ResourceLocator_t84F68A0DD2AA185761938E49BBE9B2C46A47E122 p1, ResourceLocator_t84F68A0DD2AA185761938E49BBE9B2C46A47E122 p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_143 (RuntimeObject* __this, int8_t p1, int8_t p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_144 (RuntimeObject* __this, OrderBlock_t62FD6F6544F34B5298DEF2F77AAE446F269B7837 p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_145 (RuntimeObject* __this, OrderBlock_t62FD6F6544F34B5298DEF2F77AAE446F269B7837 p1, OrderBlock_t62FD6F6544F34B5298DEF2F77AAE446F269B7837 p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_146 (RuntimeObject* __this, RenderRequest_t432931B06439AC4704282E924DE8A9A474DB6B9A p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_147 (RuntimeObject* __this, RenderRequest_t432931B06439AC4704282E924DE8A9A474DB6B9A p1, RenderRequest_t432931B06439AC4704282E924DE8A9A474DB6B9A p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_148 (RuntimeObject* __this, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 p1, CachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31 p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_149 (RuntimeObject* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_150 (RuntimeObject* __this, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC p1, SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_151 (RuntimeObject* __this, WorkRequest_t8AF542F2E248D9234341817CDB5F76C27D348B44 p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static int8_t UnresolvedVirtualCall_152 (RuntimeObject* __this, WorkRequest_t8AF542F2E248D9234341817CDB5F76C27D348B44 p1, WorkRequest_t8AF542F2E248D9234341817CDB5F76C27D348B44 p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- int8_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static float UnresolvedVirtualCall_153 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- float il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static float UnresolvedVirtualCall_154 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
- {
- void* args[] = {p1};
- float il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A UnresolvedVirtualCall_155 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A UnresolvedVirtualCall_156 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
- {
- void* args[] = {p1};
- TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A UnresolvedVirtualCall_157 (RuntimeObject* __this, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static uint16_t UnresolvedVirtualCall_158 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- uint16_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static uint16_t UnresolvedVirtualCall_159 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
- {
- void* args[] = {p1};
- uint16_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static uint32_t UnresolvedVirtualCall_160 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- uint32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static uint32_t UnresolvedVirtualCall_161 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
- {
- void* args[] = {p1};
- uint32_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static uint64_t UnresolvedVirtualCall_162 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- uint64_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static uint64_t UnresolvedVirtualCall_163 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
- {
- void* args[] = {p1};
- uint64_t il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static void UnresolvedVirtualCall_164 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, NULL);
- }
- static void UnresolvedVirtualCall_165 (RuntimeObject* __this, NativeArray_1_tDF6A1978B5813BF4DAD7948E398009FFC9BEA38D p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_166 (RuntimeObject* __this, ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_167 (RuntimeObject* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D p1, ValueTuple_3_tFD2ADB3DA89E958885034AAFEF1ABDA8C814D987 p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_168 (RuntimeObject* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D p1, ValueTuple_5_t558B9F95CA55DE5694FC58A3BEAE441BF728FB57 p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_169 (RuntimeObject* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D p1, RuntimeObject* p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,p2};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_170 (RuntimeObject* __this, Span_1_t3F436092261253E8F2AF9867CA253C3B370766C2 p1, RuntimeObject* p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,p2};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_171 (RuntimeObject* __this, ValueTuple_3_tFD2ADB3DA89E958885034AAFEF1ABDA8C814D987 p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_172 (RuntimeObject* __this, ValueTuple_5_t558B9F95CA55DE5694FC58A3BEAE441BF728FB57 p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_173 (RuntimeObject* __this, AdvertisingResult_tC2A0D13DAF5903AFA04349C2874575FC621D1E2C p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_174 (RuntimeObject* __this, uint8_t p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_175 (RuntimeObject* __this, ConnectionRequest_t91E30890E727FF25CC25A9DBB5CF83894E4F4EFF p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_176 (RuntimeObject* __this, ConnectionResponse_tD4B45BF8C81F4514392521939BA9A60D4C175A71 p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_177 (RuntimeObject* __this, CullingGroupEvent_tC79BA328A8280C29F6002F591614081A0E87D110 p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_178 (RuntimeObject* __this, double p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_179 (RuntimeObject* __this, double p1, RuntimeObject* p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,p2};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_180 (RuntimeObject* __this, EndpointDetails_t95EEA60E16EE0F4CD6834AF29B6BCDE20C10520C p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_181 (RuntimeObject* __this, Guid_t p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_182 (RuntimeObject* __this, Guid_t p1, RuntimeObject* p2, int32_t p3, const RuntimeMethod* method)
- {
- void* args[] = {&p1,p2,&p3};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_183 (RuntimeObject* __this, int16_t p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_184 (RuntimeObject* __this, int32_t p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_185 (RuntimeObject* __this, int32_t p1, int32_t p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_186 (RuntimeObject* __this, int32_t p1, int32_t p2, int32_t p3, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2,&p3};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_187 (RuntimeObject* __this, int32_t p1, int32_t p2, int32_t p3, int32_t p4, int32_t p5, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2,&p3,&p4,&p5};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_188 (RuntimeObject* __this, int32_t p1, RuntimeObject* p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,p2};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_189 (RuntimeObject* __this, int32_t p1, RuntimeObject* p2, RuntimeObject* p3, const RuntimeMethod* method)
- {
- void* args[] = {&p1,p2,p3};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_190 (RuntimeObject* __this, int32_t p1, RuntimeObject* p2, RuntimeObject* p3, RuntimeObject* p4, const RuntimeMethod* method)
- {
- void* args[] = {&p1,p2,p3,p4};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_191 (RuntimeObject* __this, int32_t p1, int8_t p2, RuntimeObject* p3, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2,p3};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_192 (RuntimeObject* __this, int64_t p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_193 (RuntimeObject* __this, int64_t p1, RuntimeObject* p2, int64_t p3, const RuntimeMethod* method)
- {
- void* args[] = {&p1,p2,&p3};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_194 (RuntimeObject* __this, intptr_t p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_195 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
- {
- void* args[] = {p1};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_196 (RuntimeObject* __this, RuntimeObject* p1, NativeArray_1_tDF6A1978B5813BF4DAD7948E398009FFC9BEA38D p2, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_197 (RuntimeObject* __this, RuntimeObject* p1, double p2, RuntimeObject* p3, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,p3};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_198 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_199 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, int32_t p3, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,&p3};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- 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)
- {
- void* args[] = {p1,&p2,&p3,&p4,&p5,p6};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_201 (RuntimeObject* __this, RuntimeObject* p1, int32_t p2, RuntimeObject* p3, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,p3};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_202 (RuntimeObject* __this, RuntimeObject* p1, int64_t p2, RuntimeObject* p3, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,p3};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_203 (RuntimeObject* __this, RuntimeObject* p1, int64_t p2, RuntimeObject* p3, RuntimeObject* p4, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,p3,p4};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_204 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, const RuntimeMethod* method)
- {
- void* args[] = {p1,p2};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_205 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, int32_t p3, const RuntimeMethod* method)
- {
- void* args[] = {p1,p2,&p3};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_206 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, int32_t p3, int32_t p4, int32_t p5, const RuntimeMethod* method)
- {
- void* args[] = {p1,p2,&p3,&p4,&p5};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_207 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, int32_t p3, RuntimeObject* p4, RuntimeObject* p5, const RuntimeMethod* method)
- {
- void* args[] = {p1,p2,&p3,p4,p5};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_208 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, RuntimeObject* p3, const RuntimeMethod* method)
- {
- void* args[] = {p1,p2,p3};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_209 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, RuntimeObject* p3, RuntimeObject* p4, const RuntimeMethod* method)
- {
- void* args[] = {p1,p2,p3,p4};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_210 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, RuntimeObject* p3, RuntimeObject* p4, RuntimeObject* p5, const RuntimeMethod* method)
- {
- void* args[] = {p1,p2,p3,p4,p5};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_211 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, int8_t p3, const RuntimeMethod* method)
- {
- void* args[] = {p1,p2,&p3};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_212 (RuntimeObject* __this, RuntimeObject* p1, RuntimeObject* p2, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 p3, const RuntimeMethod* method)
- {
- void* args[] = {p1,p2,&p3};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_213 (RuntimeObject* __this, RuntimeObject* p1, int8_t p2, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_214 (RuntimeObject* __this, RuntimeObject* p1, int8_t p2, DebugScreenCapture_t859E4E87C94587A08893C726D4FF84BD8F288CC5 p3, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,&p3};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_215 (RuntimeObject* __this, RuntimeObject* p1, int8_t p2, int8_t p3, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2,&p3};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_216 (RuntimeObject* __this, RuntimeObject* p1, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 p2, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_217 (RuntimeObject* __this, RuntimeObject* p1, uint32_t p2, const RuntimeMethod* method)
- {
- void* args[] = {p1,&p2};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_218 (RuntimeObject* __this, int8_t p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_219 (RuntimeObject* __this, int8_t p1, DebugScreenCapture_t859E4E87C94587A08893C726D4FF84BD8F288CC5 p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_220 (RuntimeObject* __this, int8_t p1, RuntimeObject* p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,p2};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_221 (RuntimeObject* __this, Scene_tA1DC762B79745EB5140F054C884855B922318356 p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_222 (RuntimeObject* __this, Scene_tA1DC762B79745EB5140F054C884855B922318356 p1, int32_t p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_223 (RuntimeObject* __this, Scene_tA1DC762B79745EB5140F054C884855B922318356 p1, Scene_tA1DC762B79745EB5140F054C884855B922318356 p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,&p2};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_224 (RuntimeObject* __this, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 p1, RuntimeObject* p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,p2};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_225 (RuntimeObject* __this, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 p1, RuntimeObject* p2, RuntimeObject* p3, const RuntimeMethod* method)
- {
- void* args[] = {&p1,p2,p3};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_226 (RuntimeObject* __this, float p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_227 (RuntimeObject* __this, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_228 (RuntimeObject* __this, TypedReference_tF20A82297BED597FD80BDA0E41F74746B0FD642B p1, RuntimeObject* p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,p2};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_229 (RuntimeObject* __this, uint16_t p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_230 (RuntimeObject* __this, uint32_t p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_231 (RuntimeObject* __this, uint64_t p1, const RuntimeMethod* method)
- {
- void* args[] = {&p1};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static void UnresolvedVirtualCall_232 (RuntimeObject* __this, uint64_t p1, RuntimeObject* p2, const RuntimeMethod* method)
- {
- void* args[] = {&p1,p2};
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, NULL);
- }
- static VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC UnresolvedVirtualCall_233 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC UnresolvedVirtualCall_234 (RuntimeObject* __this, RuntimeObject* p1, const RuntimeMethod* method)
- {
- void* args[] = {p1};
- VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, args, &il2cppRetVal);
- return il2cppRetVal;
- }
- static OrderBlock_t62FD6F6544F34B5298DEF2F77AAE446F269B7837 UnresolvedVirtualCall_235 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- OrderBlock_t62FD6F6544F34B5298DEF2F77AAE446F269B7837 il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static RenderRequest_t432931B06439AC4704282E924DE8A9A474DB6B9A UnresolvedVirtualCall_236 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- RenderRequest_t432931B06439AC4704282E924DE8A9A474DB6B9A il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC UnresolvedVirtualCall_237 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- SingleRange_tB50C1C2B62BDC445BDBA41FD3CDC77A45A211BBC il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- static WorkRequest_t8AF542F2E248D9234341817CDB5F76C27D348B44 UnresolvedVirtualCall_238 (RuntimeObject* __this, const RuntimeMethod* method)
- {
- WorkRequest_t8AF542F2E248D9234341817CDB5F76C27D348B44 il2cppRetVal;
- method->invoker_method(il2cpp_codegen_get_method_pointer(method), method, __this, NULL, &il2cppRetVal);
- return il2cppRetVal;
- }
- IL2CPP_EXTERN_C const Il2CppMethodPointer g_UnresolvedVirtualMethodPointers[];
- const Il2CppMethodPointer g_UnresolvedVirtualMethodPointers[239] =
- {
- (const Il2CppMethodPointer) UnresolvedVirtualCall_0,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_1,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_2,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_3,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_4,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_5,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_6,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_7,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_8,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_9,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_10,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_11,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_12,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_13,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_14,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_15,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_16,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_17,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_18,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_19,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_20,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_21,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_22,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_23,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_24,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_25,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_26,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_27,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_28,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_29,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_30,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_31,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_32,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_33,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_34,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_35,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_36,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_37,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_38,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_39,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_40,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_41,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_42,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_43,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_44,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_45,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_46,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_47,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_48,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_49,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_50,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_51,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_52,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_53,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_54,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_55,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_56,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_57,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_58,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_59,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_60,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_61,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_62,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_63,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_64,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_65,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_66,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_67,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_68,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_69,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_70,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_71,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_72,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_73,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_74,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_75,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_76,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_77,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_78,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_79,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_80,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_81,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_82,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_83,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_84,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_85,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_86,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_87,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_88,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_89,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_90,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_91,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_92,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_93,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_94,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_95,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_96,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_97,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_98,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_99,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_100,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_101,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_102,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_103,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_104,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_105,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_106,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_107,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_108,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_109,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_110,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_111,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_112,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_113,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_114,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_115,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_116,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_117,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_118,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_119,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_120,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_121,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_122,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_123,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_124,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_125,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_126,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_127,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_128,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_129,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_130,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_131,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_132,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_133,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_134,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_135,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_136,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_137,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_138,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_139,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_140,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_141,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_142,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_143,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_144,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_145,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_146,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_147,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_148,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_149,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_150,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_151,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_152,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_153,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_154,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_155,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_156,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_157,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_158,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_159,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_160,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_161,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_162,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_163,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_164,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_165,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_166,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_167,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_168,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_169,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_170,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_171,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_172,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_173,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_174,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_175,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_176,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_177,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_178,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_179,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_180,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_181,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_182,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_183,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_184,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_185,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_186,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_187,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_188,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_189,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_190,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_191,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_192,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_193,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_194,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_195,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_196,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_197,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_198,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_199,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_200,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_201,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_202,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_203,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_204,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_205,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_206,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_207,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_208,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_209,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_210,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_211,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_212,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_213,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_214,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_215,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_216,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_217,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_218,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_219,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_220,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_221,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_222,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_223,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_224,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_225,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_226,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_227,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_228,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_229,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_230,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_231,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_232,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_233,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_234,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_235,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_236,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_237,
- (const Il2CppMethodPointer) UnresolvedVirtualCall_238,
- };
|