Geen omschrijving
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UnityEngine.CoreModule2.cpp 133KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452
  1. #include "pch-cpp.hpp"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <limits>
  8. template <typename T1>
  9. struct VirtualActionInvoker1
  10. {
  11. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  12. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  13. {
  14. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  15. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  16. }
  17. };
  18. template <typename R>
  19. struct VirtualFuncInvoker0
  20. {
  21. typedef R (*Func)(void*, const RuntimeMethod*);
  22. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
  23. {
  24. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  25. return ((Func)invokeData.methodPtr)(obj, invokeData.method);
  26. }
  27. };
  28. struct InvokerActionInvoker0
  29. {
  30. static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj)
  31. {
  32. method->invoker_method(methodPtr, method, obj, NULL, NULL);
  33. }
  34. };
  35. template <typename T1>
  36. struct InvokerActionInvoker1;
  37. template <typename T1>
  38. struct InvokerActionInvoker1<T1*>
  39. {
  40. static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1)
  41. {
  42. void* params[1] = { p1 };
  43. method->invoker_method(methodPtr, method, obj, params, NULL);
  44. }
  45. };
  46. // System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>
  47. struct List_1_t91E36549D76184780FD8995722CD4A87A2650C23;
  48. // System.Collections.Generic.List`1<System.Object>
  49. struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
  50. // UnityEngine.Events.BaseInvokableCall[]
  51. struct BaseInvokableCallU5BU5D_tF8AC2AD8CB819841C1BA6BCAF4C2733CCD50296F;
  52. // System.Delegate[]
  53. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
  54. // System.Object[]
  55. struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
  56. // UnityEngine.LowLevel.PlayerLoopSystem[]
  57. struct PlayerLoopSystemU5BU5D_t07C04E53AAC3CDA17603E8BA1B41D7E1AC083C6D;
  58. // System.Type[]
  59. struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
  60. // UnityEngine.Events.BaseInvokableCall
  61. struct BaseInvokableCall_tB912356039B1D3806B23DFBC7E9CFA1BCC82F339;
  62. // System.Reflection.Binder
  63. struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
  64. // System.Delegate
  65. struct Delegate_t;
  66. // System.DelegateData
  67. struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
  68. // UnityEngine.Events.InvokableCall
  69. struct InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122;
  70. // UnityEngine.Events.InvokableCallList
  71. struct InvokableCallList_t309E1C8C7CE885A0D2F98C84CEA77A8935688382;
  72. // System.Reflection.MemberFilter
  73. struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
  74. // System.Reflection.MethodInfo
  75. struct MethodInfo_t;
  76. // UnityEngine.Events.PersistentCallGroup
  77. struct PersistentCallGroup_tB826EDF15DC80F71BCBCD8E410FD959A04C33F25;
  78. // UnityEngine.LowLevel.PlayerLoopSystem
  79. struct PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F;
  80. // System.String
  81. struct String_t;
  82. // System.Type
  83. struct Type_t;
  84. // UnityEngine.Events.UnityAction
  85. struct UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7;
  86. // UnityEngine.Events.UnityEvent
  87. struct UnityEvent_tDC2C3548799DBC91D1E3F3DE60083A66F4751977;
  88. // UnityEngine.Events.UnityEventBase
  89. struct UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8;
  90. // System.Void
  91. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
  92. // UnityEngine.LowLevel.PlayerLoopSystem/UpdateFunction
  93. struct UpdateFunction_t1C48B7EECBE47AC123A9D9D7D9D2A9EE951C56C4;
  94. IL2CPP_EXTERN_C RuntimeClass* InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122_il2cpp_TypeInfo_var;
  95. IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var;
  96. IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var;
  97. IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mD86BEA5DB3090332216B9FA14BD79A4E5247614B_RuntimeMethod_var;
  98. IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m2B51DFE114B7ED5612ABA800B8165A60BACE1279_RuntimeMethod_var;
  99. struct Delegate_t_marshaled_com;
  100. struct Delegate_t_marshaled_pinvoke;
  101. struct PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F;;
  102. struct PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshaled_com;
  103. struct PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshaled_com;;
  104. struct PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshaled_pinvoke;
  105. struct PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshaled_pinvoke;;
  106. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
  107. struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
  108. struct PlayerLoopSystemU5BU5D_t07C04E53AAC3CDA17603E8BA1B41D7E1AC083C6D;
  109. struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
  110. IL2CPP_EXTERN_C_BEGIN
  111. IL2CPP_EXTERN_C_END
  112. #ifdef __clang__
  113. #pragma clang diagnostic push
  114. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  115. #pragma clang diagnostic ignored "-Wunused-variable"
  116. #endif
  117. // System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>
  118. struct List_1_t91E36549D76184780FD8995722CD4A87A2650C23 : public RuntimeObject
  119. {
  120. // T[] System.Collections.Generic.List`1::_items
  121. BaseInvokableCallU5BU5D_tF8AC2AD8CB819841C1BA6BCAF4C2733CCD50296F* ____items_1;
  122. // System.Int32 System.Collections.Generic.List`1::_size
  123. int32_t ____size_2;
  124. // System.Int32 System.Collections.Generic.List`1::_version
  125. int32_t ____version_3;
  126. // System.Object System.Collections.Generic.List`1::_syncRoot
  127. RuntimeObject* ____syncRoot_4;
  128. };
  129. // System.Collections.Generic.List`1<System.Object>
  130. struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
  131. {
  132. // T[] System.Collections.Generic.List`1::_items
  133. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_1;
  134. // System.Int32 System.Collections.Generic.List`1::_size
  135. int32_t ____size_2;
  136. // System.Int32 System.Collections.Generic.List`1::_version
  137. int32_t ____version_3;
  138. // System.Object System.Collections.Generic.List`1::_syncRoot
  139. RuntimeObject* ____syncRoot_4;
  140. };
  141. // UnityEngine.Events.BaseInvokableCall
  142. struct BaseInvokableCall_tB912356039B1D3806B23DFBC7E9CFA1BCC82F339 : public RuntimeObject
  143. {
  144. };
  145. // System.Reflection.MemberInfo
  146. struct MemberInfo_t : public RuntimeObject
  147. {
  148. };
  149. // System.String
  150. struct String_t : public RuntimeObject
  151. {
  152. // System.Int32 System.String::_stringLength
  153. int32_t ____stringLength_4;
  154. // System.Char System.String::_firstChar
  155. Il2CppChar ____firstChar_5;
  156. };
  157. // UnityEngine.Events.UnityEventBase
  158. struct UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8 : public RuntimeObject
  159. {
  160. // UnityEngine.Events.InvokableCallList UnityEngine.Events.UnityEventBase::m_Calls
  161. InvokableCallList_t309E1C8C7CE885A0D2F98C84CEA77A8935688382* ___m_Calls_0;
  162. // UnityEngine.Events.PersistentCallGroup UnityEngine.Events.UnityEventBase::m_PersistentCalls
  163. PersistentCallGroup_tB826EDF15DC80F71BCBCD8E410FD959A04C33F25* ___m_PersistentCalls_1;
  164. // System.Boolean UnityEngine.Events.UnityEventBase::m_CallsDirty
  165. bool ___m_CallsDirty_2;
  166. };
  167. // System.ValueType
  168. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
  169. {
  170. };
  171. // Native definition for P/Invoke marshalling of System.ValueType
  172. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
  173. {
  174. };
  175. // Native definition for COM marshalling of System.ValueType
  176. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
  177. {
  178. };
  179. // System.Boolean
  180. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
  181. {
  182. // System.Boolean System.Boolean::m_value
  183. bool ___m_value_0;
  184. };
  185. // UnityEngine.PlayerLoop.EarlyUpdate
  186. struct EarlyUpdate_t3FEEF0153D8D192317CEFD9EE3F3E1573955095B
  187. {
  188. union
  189. {
  190. struct
  191. {
  192. };
  193. uint8_t EarlyUpdate_t3FEEF0153D8D192317CEFD9EE3F3E1573955095B__padding[1];
  194. };
  195. };
  196. // UnityEngine.PlayerLoop.FixedUpdate
  197. struct FixedUpdate_tCF8FD444F9ACA24B19A6697CB873E558CC06A2D1
  198. {
  199. union
  200. {
  201. struct
  202. {
  203. };
  204. uint8_t FixedUpdate_tCF8FD444F9ACA24B19A6697CB873E558CC06A2D1__padding[1];
  205. };
  206. };
  207. // UnityEngine.PlayerLoop.Initialization
  208. struct Initialization_tDAACE77B534B3BDAC1A482FEA5917F2AB58A1016
  209. {
  210. union
  211. {
  212. struct
  213. {
  214. };
  215. uint8_t Initialization_tDAACE77B534B3BDAC1A482FEA5917F2AB58A1016__padding[1];
  216. };
  217. };
  218. // System.Int32
  219. struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
  220. {
  221. // System.Int32 System.Int32::m_value
  222. int32_t ___m_value_0;
  223. };
  224. // System.IntPtr
  225. struct IntPtr_t
  226. {
  227. // System.Void* System.IntPtr::m_value
  228. void* ___m_value_0;
  229. };
  230. // UnityEngine.Events.InvokableCall
  231. struct InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122 : public BaseInvokableCall_tB912356039B1D3806B23DFBC7E9CFA1BCC82F339
  232. {
  233. // UnityEngine.Events.UnityAction UnityEngine.Events.InvokableCall::Delegate
  234. UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* ___Delegate_0;
  235. };
  236. // System.Reflection.MethodBase
  237. struct MethodBase_t : public MemberInfo_t
  238. {
  239. };
  240. // UnityEngine.PlayerLoop.PostLateUpdate
  241. struct PostLateUpdate_t8D100B8147895DB5492ABDC2ABF8ACACA3EA1256
  242. {
  243. union
  244. {
  245. struct
  246. {
  247. };
  248. uint8_t PostLateUpdate_t8D100B8147895DB5492ABDC2ABF8ACACA3EA1256__padding[1];
  249. };
  250. };
  251. // UnityEngine.PlayerLoop.PreLateUpdate
  252. struct PreLateUpdate_t2DCE1BE25ACE7BC92CEE04C59E9F2F68A9C78FE6
  253. {
  254. union
  255. {
  256. struct
  257. {
  258. };
  259. uint8_t PreLateUpdate_t2DCE1BE25ACE7BC92CEE04C59E9F2F68A9C78FE6__padding[1];
  260. };
  261. };
  262. // UnityEngine.PlayerLoop.PreUpdate
  263. struct PreUpdate_tD3D2902387A8CA02CEED9FD2BFE8435ED80A51ED
  264. {
  265. union
  266. {
  267. struct
  268. {
  269. };
  270. uint8_t PreUpdate_tD3D2902387A8CA02CEED9FD2BFE8435ED80A51ED__padding[1];
  271. };
  272. };
  273. // UnityEngine.PlayerLoop.TimeUpdate
  274. struct TimeUpdate_t81E3446F4486BC0736BFE3CBAE8FFA6848583E51
  275. {
  276. union
  277. {
  278. struct
  279. {
  280. };
  281. uint8_t TimeUpdate_t81E3446F4486BC0736BFE3CBAE8FFA6848583E51__padding[1];
  282. };
  283. };
  284. // UnityEngine.Events.UnityEvent
  285. struct UnityEvent_tDC2C3548799DBC91D1E3F3DE60083A66F4751977 : public UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8
  286. {
  287. // System.Object[] UnityEngine.Events.UnityEvent::m_InvokeArray
  288. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_InvokeArray_3;
  289. };
  290. // UnityEngine.PlayerLoop.Update
  291. struct Update_tFCBD46F301DE58EC1756B662441FF6E0F6733A89
  292. {
  293. union
  294. {
  295. struct
  296. {
  297. };
  298. uint8_t Update_tFCBD46F301DE58EC1756B662441FF6E0F6733A89__padding[1];
  299. };
  300. };
  301. // System.Void
  302. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
  303. {
  304. union
  305. {
  306. struct
  307. {
  308. };
  309. uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
  310. };
  311. };
  312. // UnityEngine.PlayerLoop.EarlyUpdate/ARCoreUpdate
  313. struct ARCoreUpdate_t0870925EB7DB96EFA85333F36698760A8861C270
  314. {
  315. union
  316. {
  317. struct
  318. {
  319. };
  320. uint8_t ARCoreUpdate_t0870925EB7DB96EFA85333F36698760A8861C270__padding[1];
  321. };
  322. };
  323. // UnityEngine.PlayerLoop.EarlyUpdate/AnalyticsCoreStatsUpdate
  324. struct AnalyticsCoreStatsUpdate_t0AC27EABB00A0681E6915B93878E94FAE8DD9C1E
  325. {
  326. union
  327. {
  328. struct
  329. {
  330. };
  331. uint8_t AnalyticsCoreStatsUpdate_t0AC27EABB00A0681E6915B93878E94FAE8DD9C1E__padding[1];
  332. };
  333. };
  334. // UnityEngine.PlayerLoop.EarlyUpdate/ClearIntermediateRenderers
  335. struct ClearIntermediateRenderers_t3870E195EEF160DB91F9F67A109DFCE8EB630FB5
  336. {
  337. union
  338. {
  339. struct
  340. {
  341. };
  342. uint8_t ClearIntermediateRenderers_t3870E195EEF160DB91F9F67A109DFCE8EB630FB5__padding[1];
  343. };
  344. };
  345. // UnityEngine.PlayerLoop.EarlyUpdate/ClearLines
  346. struct ClearLines_tCA55FECEBB3CB979817F2331F7DE68FB037CFFCA
  347. {
  348. union
  349. {
  350. struct
  351. {
  352. };
  353. uint8_t ClearLines_tCA55FECEBB3CB979817F2331F7DE68FB037CFFCA__padding[1];
  354. };
  355. };
  356. // UnityEngine.PlayerLoop.EarlyUpdate/DeliverIosPlatformEvents
  357. struct DeliverIosPlatformEvents_t1F56F9C02CC5108CCBFD4B87570C7DDB9E15FD6A
  358. {
  359. union
  360. {
  361. struct
  362. {
  363. };
  364. uint8_t DeliverIosPlatformEvents_t1F56F9C02CC5108CCBFD4B87570C7DDB9E15FD6A__padding[1];
  365. };
  366. };
  367. // UnityEngine.PlayerLoop.EarlyUpdate/DispatchEventQueueEvents
  368. struct DispatchEventQueueEvents_t6A8B38D90EFC8731159C218D19FC8739A0ED7232
  369. {
  370. union
  371. {
  372. struct
  373. {
  374. };
  375. uint8_t DispatchEventQueueEvents_t6A8B38D90EFC8731159C218D19FC8739A0ED7232__padding[1];
  376. };
  377. };
  378. // UnityEngine.PlayerLoop.EarlyUpdate/ExecuteMainThreadJobs
  379. struct ExecuteMainThreadJobs_t2AF302649970650DD66001B9F9DB0DA2F46E17C3
  380. {
  381. union
  382. {
  383. struct
  384. {
  385. };
  386. uint8_t ExecuteMainThreadJobs_t2AF302649970650DD66001B9F9DB0DA2F46E17C3__padding[1];
  387. };
  388. };
  389. // UnityEngine.PlayerLoop.EarlyUpdate/GpuTimestamp
  390. struct GpuTimestamp_t5B6C8013AEC6F086F0366993EB0153A6E1C11A35
  391. {
  392. union
  393. {
  394. struct
  395. {
  396. };
  397. uint8_t GpuTimestamp_t5B6C8013AEC6F086F0366993EB0153A6E1C11A35__padding[1];
  398. };
  399. };
  400. // UnityEngine.PlayerLoop.EarlyUpdate/PerformanceAnalyticsUpdate
  401. struct PerformanceAnalyticsUpdate_t8B6378DF3D9F24091428D1F944CA9867C30BE4C2
  402. {
  403. union
  404. {
  405. struct
  406. {
  407. };
  408. uint8_t PerformanceAnalyticsUpdate_t8B6378DF3D9F24091428D1F944CA9867C30BE4C2__padding[1];
  409. };
  410. };
  411. // UnityEngine.PlayerLoop.EarlyUpdate/PhysicsResetInterpolatedTransformPosition
  412. struct PhysicsResetInterpolatedTransformPosition_t1048CAAC4D8DBC7AA534BFE62473D2D12C4E6D1F
  413. {
  414. union
  415. {
  416. struct
  417. {
  418. };
  419. uint8_t PhysicsResetInterpolatedTransformPosition_t1048CAAC4D8DBC7AA534BFE62473D2D12C4E6D1F__padding[1];
  420. };
  421. };
  422. // UnityEngine.PlayerLoop.EarlyUpdate/PlayerCleanupCachedData
  423. struct PlayerCleanupCachedData_t03AAFC538395693086152E6BF5AFAAFF0F9444DB
  424. {
  425. union
  426. {
  427. struct
  428. {
  429. };
  430. uint8_t PlayerCleanupCachedData_t03AAFC538395693086152E6BF5AFAAFF0F9444DB__padding[1];
  431. };
  432. };
  433. // UnityEngine.PlayerLoop.EarlyUpdate/PollHtcsPlayerConnection
  434. struct PollHtcsPlayerConnection_t2498151E6AFBCC1C68848C08C8540E8F741EF209
  435. {
  436. union
  437. {
  438. struct
  439. {
  440. };
  441. uint8_t PollHtcsPlayerConnection_t2498151E6AFBCC1C68848C08C8540E8F741EF209__padding[1];
  442. };
  443. };
  444. // UnityEngine.PlayerLoop.EarlyUpdate/PollPlayerConnection
  445. struct PollPlayerConnection_tA188E9A07C41BA07CE3C73E2D45608F7D551057A
  446. {
  447. union
  448. {
  449. struct
  450. {
  451. };
  452. uint8_t PollPlayerConnection_tA188E9A07C41BA07CE3C73E2D45608F7D551057A__padding[1];
  453. };
  454. };
  455. // UnityEngine.PlayerLoop.EarlyUpdate/PresentBeforeUpdate
  456. struct PresentBeforeUpdate_t9B96C36B1A049894E20D367554C2D00F54EE3A52
  457. {
  458. union
  459. {
  460. struct
  461. {
  462. };
  463. uint8_t PresentBeforeUpdate_t9B96C36B1A049894E20D367554C2D00F54EE3A52__padding[1];
  464. };
  465. };
  466. // UnityEngine.PlayerLoop.EarlyUpdate/ProcessMouseInWindow
  467. struct ProcessMouseInWindow_t7759A2277757FE54B719695E47C7AC5E9A920112
  468. {
  469. union
  470. {
  471. struct
  472. {
  473. };
  474. uint8_t ProcessMouseInWindow_t7759A2277757FE54B719695E47C7AC5E9A920112__padding[1];
  475. };
  476. };
  477. // UnityEngine.PlayerLoop.EarlyUpdate/ProcessRemoteInput
  478. struct ProcessRemoteInput_t268646D8132AA773DC3D8AEDCE53F0DC2FE88996
  479. {
  480. union
  481. {
  482. struct
  483. {
  484. };
  485. uint8_t ProcessRemoteInput_t268646D8132AA773DC3D8AEDCE53F0DC2FE88996__padding[1];
  486. };
  487. };
  488. // UnityEngine.PlayerLoop.EarlyUpdate/RendererNotifyInvisible
  489. struct RendererNotifyInvisible_tC43ACAF01E9D5C34252E8B4B99A05EB2ACA191FE
  490. {
  491. union
  492. {
  493. struct
  494. {
  495. };
  496. uint8_t RendererNotifyInvisible_tC43ACAF01E9D5C34252E8B4B99A05EB2ACA191FE__padding[1];
  497. };
  498. };
  499. // UnityEngine.PlayerLoop.EarlyUpdate/ResetFrameStatsAfterPresent
  500. struct ResetFrameStatsAfterPresent_t511B4B8D887E68EB91B888E92C2D8258CB5BAAA2
  501. {
  502. union
  503. {
  504. struct
  505. {
  506. };
  507. uint8_t ResetFrameStatsAfterPresent_t511B4B8D887E68EB91B888E92C2D8258CB5BAAA2__padding[1];
  508. };
  509. };
  510. // UnityEngine.PlayerLoop.EarlyUpdate/ScriptRunDelayedStartupFrame
  511. struct ScriptRunDelayedStartupFrame_t437517E506EB51DF22436E8A2D517D627D9D1A35
  512. {
  513. union
  514. {
  515. struct
  516. {
  517. };
  518. uint8_t ScriptRunDelayedStartupFrame_t437517E506EB51DF22436E8A2D517D627D9D1A35__padding[1];
  519. };
  520. };
  521. // UnityEngine.PlayerLoop.EarlyUpdate/SpriteAtlasManagerUpdate
  522. struct SpriteAtlasManagerUpdate_t23345CA37B85F095F76F78D51130AA713DF706AB
  523. {
  524. union
  525. {
  526. struct
  527. {
  528. };
  529. uint8_t SpriteAtlasManagerUpdate_t23345CA37B85F095F76F78D51130AA713DF706AB__padding[1];
  530. };
  531. };
  532. // UnityEngine.PlayerLoop.EarlyUpdate/TangoUpdate
  533. struct TangoUpdate_t0773D7F4190273AC99FEAD6DB5AB43C671AA56D2
  534. {
  535. union
  536. {
  537. struct
  538. {
  539. };
  540. uint8_t TangoUpdate_t0773D7F4190273AC99FEAD6DB5AB43C671AA56D2__padding[1];
  541. };
  542. };
  543. // UnityEngine.PlayerLoop.EarlyUpdate/UnityWebRequestUpdate
  544. struct UnityWebRequestUpdate_tD66FF44EB2E15D5F3F34D6E016FE11ABFE364E7D
  545. {
  546. union
  547. {
  548. struct
  549. {
  550. };
  551. uint8_t UnityWebRequestUpdate_tD66FF44EB2E15D5F3F34D6E016FE11ABFE364E7D__padding[1];
  552. };
  553. };
  554. // UnityEngine.PlayerLoop.EarlyUpdate/UpdateAsyncReadbackManager
  555. struct UpdateAsyncReadbackManager_t438EC08527D0B0543D920C30750BCD94A690126A
  556. {
  557. union
  558. {
  559. struct
  560. {
  561. };
  562. uint8_t UpdateAsyncReadbackManager_t438EC08527D0B0543D920C30750BCD94A690126A__padding[1];
  563. };
  564. };
  565. // UnityEngine.PlayerLoop.EarlyUpdate/UpdateCanvasRectTransform
  566. struct UpdateCanvasRectTransform_t41CECA98EFF313B8463EEFF63BFB15DF0513A428
  567. {
  568. union
  569. {
  570. struct
  571. {
  572. };
  573. uint8_t UpdateCanvasRectTransform_t41CECA98EFF313B8463EEFF63BFB15DF0513A428__padding[1];
  574. };
  575. };
  576. // UnityEngine.PlayerLoop.EarlyUpdate/UpdateInputManager
  577. struct UpdateInputManager_tBC43869EB39DE6B92FBA117E2EA22B4DCD788F2A
  578. {
  579. union
  580. {
  581. struct
  582. {
  583. };
  584. uint8_t UpdateInputManager_tBC43869EB39DE6B92FBA117E2EA22B4DCD788F2A__padding[1];
  585. };
  586. };
  587. // UnityEngine.PlayerLoop.EarlyUpdate/UpdateKinect
  588. struct UpdateKinect_tDDC4C28D19025796CB94F9DE552BA9C0ADEDCE45
  589. {
  590. union
  591. {
  592. struct
  593. {
  594. };
  595. uint8_t UpdateKinect_tDDC4C28D19025796CB94F9DE552BA9C0ADEDCE45__padding[1];
  596. };
  597. };
  598. // UnityEngine.PlayerLoop.EarlyUpdate/UpdateMainGameViewRect
  599. struct UpdateMainGameViewRect_tE725390DFE266FA0F34148D2184B9CCE9A7C46C6
  600. {
  601. union
  602. {
  603. struct
  604. {
  605. };
  606. uint8_t UpdateMainGameViewRect_tE725390DFE266FA0F34148D2184B9CCE9A7C46C6__padding[1];
  607. };
  608. };
  609. // UnityEngine.PlayerLoop.EarlyUpdate/UpdatePreloading
  610. struct UpdatePreloading_t45C914112124AD6E405EE2B11DA76D265C20F77F
  611. {
  612. union
  613. {
  614. struct
  615. {
  616. };
  617. uint8_t UpdatePreloading_t45C914112124AD6E405EE2B11DA76D265C20F77F__padding[1];
  618. };
  619. };
  620. // UnityEngine.PlayerLoop.EarlyUpdate/UpdateStreamingManager
  621. struct UpdateStreamingManager_tC612A33DB9BEFE10B1970D4A655B2F9EAF407D42
  622. {
  623. union
  624. {
  625. struct
  626. {
  627. };
  628. uint8_t UpdateStreamingManager_tC612A33DB9BEFE10B1970D4A655B2F9EAF407D42__padding[1];
  629. };
  630. };
  631. // UnityEngine.PlayerLoop.EarlyUpdate/UpdateTextureStreamingManager
  632. struct UpdateTextureStreamingManager_t0E74B3EDF837DFE1179C4CDB979B969DC58E3A2F
  633. {
  634. union
  635. {
  636. struct
  637. {
  638. };
  639. uint8_t UpdateTextureStreamingManager_t0E74B3EDF837DFE1179C4CDB979B969DC58E3A2F__padding[1];
  640. };
  641. };
  642. // UnityEngine.PlayerLoop.EarlyUpdate/XRUpdate
  643. struct XRUpdate_tDF532E307AA39BCF2FB4780E252EC0CCE1C124B9
  644. {
  645. union
  646. {
  647. struct
  648. {
  649. };
  650. uint8_t XRUpdate_tDF532E307AA39BCF2FB4780E252EC0CCE1C124B9__padding[1];
  651. };
  652. };
  653. // UnityEngine.PlayerLoop.FixedUpdate/AudioFixedUpdate
  654. struct AudioFixedUpdate_tFF50E2AD8BE118EE03F1E31B5B5BDFB91D0418F2
  655. {
  656. union
  657. {
  658. struct
  659. {
  660. };
  661. uint8_t AudioFixedUpdate_tFF50E2AD8BE118EE03F1E31B5B5BDFB91D0418F2__padding[1];
  662. };
  663. };
  664. // UnityEngine.PlayerLoop.FixedUpdate/ClearLines
  665. struct ClearLines_tCAF10AEE1122923282F5586C7ED0CFE4FCB6D0E3
  666. {
  667. union
  668. {
  669. struct
  670. {
  671. };
  672. uint8_t ClearLines_tCAF10AEE1122923282F5586C7ED0CFE4FCB6D0E3__padding[1];
  673. };
  674. };
  675. // UnityEngine.PlayerLoop.FixedUpdate/DirectorFixedSampleTime
  676. struct DirectorFixedSampleTime_tE4F7C94C031FD40BBBF938DE47BD701409110219
  677. {
  678. union
  679. {
  680. struct
  681. {
  682. };
  683. uint8_t DirectorFixedSampleTime_tE4F7C94C031FD40BBBF938DE47BD701409110219__padding[1];
  684. };
  685. };
  686. // UnityEngine.PlayerLoop.FixedUpdate/DirectorFixedUpdate
  687. struct DirectorFixedUpdate_t010D8D27494573A4CCD9A3F65EB96DBD0F0AC9D9
  688. {
  689. union
  690. {
  691. struct
  692. {
  693. };
  694. uint8_t DirectorFixedUpdate_t010D8D27494573A4CCD9A3F65EB96DBD0F0AC9D9__padding[1];
  695. };
  696. };
  697. // UnityEngine.PlayerLoop.FixedUpdate/DirectorFixedUpdatePostPhysics
  698. struct DirectorFixedUpdatePostPhysics_tB860502DD096EC153005619C9607049E7DEF408A
  699. {
  700. union
  701. {
  702. struct
  703. {
  704. };
  705. uint8_t DirectorFixedUpdatePostPhysics_tB860502DD096EC153005619C9607049E7DEF408A__padding[1];
  706. };
  707. };
  708. // UnityEngine.PlayerLoop.FixedUpdate/LegacyFixedAnimationUpdate
  709. struct LegacyFixedAnimationUpdate_t2F56DD05BE773AF12B8024A86FBB03175BD99C6D
  710. {
  711. union
  712. {
  713. struct
  714. {
  715. };
  716. uint8_t LegacyFixedAnimationUpdate_t2F56DD05BE773AF12B8024A86FBB03175BD99C6D__padding[1];
  717. };
  718. };
  719. // UnityEngine.PlayerLoop.FixedUpdate/NewInputFixedUpdate
  720. struct NewInputFixedUpdate_tDD791A781B81753165645E5A6B24C54524BAB373
  721. {
  722. union
  723. {
  724. struct
  725. {
  726. };
  727. uint8_t NewInputFixedUpdate_tDD791A781B81753165645E5A6B24C54524BAB373__padding[1];
  728. };
  729. };
  730. // UnityEngine.PlayerLoop.FixedUpdate/Physics2DFixedUpdate
  731. struct Physics2DFixedUpdate_t1A722B7DD754C177785AB6A4948CC9DD8B4E13C5
  732. {
  733. union
  734. {
  735. struct
  736. {
  737. };
  738. uint8_t Physics2DFixedUpdate_t1A722B7DD754C177785AB6A4948CC9DD8B4E13C5__padding[1];
  739. };
  740. };
  741. // UnityEngine.PlayerLoop.FixedUpdate/PhysicsClothFixedUpdate
  742. struct PhysicsClothFixedUpdate_tC2A56A2FB665B621E7D60D0691150D01C669362B
  743. {
  744. union
  745. {
  746. struct
  747. {
  748. };
  749. uint8_t PhysicsClothFixedUpdate_tC2A56A2FB665B621E7D60D0691150D01C669362B__padding[1];
  750. };
  751. };
  752. // UnityEngine.PlayerLoop.FixedUpdate/PhysicsFixedUpdate
  753. struct PhysicsFixedUpdate_tF76C7633EB2FC69A88CE7DE7B95C98FA3E4641E6
  754. {
  755. union
  756. {
  757. struct
  758. {
  759. };
  760. uint8_t PhysicsFixedUpdate_tF76C7633EB2FC69A88CE7DE7B95C98FA3E4641E6__padding[1];
  761. };
  762. };
  763. // UnityEngine.PlayerLoop.FixedUpdate/ScriptRunBehaviourFixedUpdate
  764. struct ScriptRunBehaviourFixedUpdate_tC21CDED0EB965CC4170728A1428C331E9FC0D04D
  765. {
  766. union
  767. {
  768. struct
  769. {
  770. };
  771. uint8_t ScriptRunBehaviourFixedUpdate_tC21CDED0EB965CC4170728A1428C331E9FC0D04D__padding[1];
  772. };
  773. };
  774. // UnityEngine.PlayerLoop.FixedUpdate/ScriptRunDelayedFixedFrameRate
  775. struct ScriptRunDelayedFixedFrameRate_t8A96D1EF94E7948A73808C8D8B264CD001C901BB
  776. {
  777. union
  778. {
  779. struct
  780. {
  781. };
  782. uint8_t ScriptRunDelayedFixedFrameRate_t8A96D1EF94E7948A73808C8D8B264CD001C901BB__padding[1];
  783. };
  784. };
  785. // UnityEngine.PlayerLoop.FixedUpdate/XRFixedUpdate
  786. struct XRFixedUpdate_tA04D874E51DDD5CEA43B0052193F17C7F5FFB006
  787. {
  788. union
  789. {
  790. struct
  791. {
  792. };
  793. uint8_t XRFixedUpdate_tA04D874E51DDD5CEA43B0052193F17C7F5FFB006__padding[1];
  794. };
  795. };
  796. // UnityEngine.PlayerLoop.Initialization/AsyncUploadTimeSlicedUpdate
  797. struct AsyncUploadTimeSlicedUpdate_t5EBE201AE7C230BDE8B8F4EB414DB244DCC386B6
  798. {
  799. union
  800. {
  801. struct
  802. {
  803. };
  804. uint8_t AsyncUploadTimeSlicedUpdate_t5EBE201AE7C230BDE8B8F4EB414DB244DCC386B6__padding[1];
  805. };
  806. };
  807. // UnityEngine.PlayerLoop.Initialization/DirectorSampleTime
  808. struct DirectorSampleTime_t36E04867AC7305A062E990E2F8E30ED8652883A0
  809. {
  810. union
  811. {
  812. struct
  813. {
  814. };
  815. uint8_t DirectorSampleTime_t36E04867AC7305A062E990E2F8E30ED8652883A0__padding[1];
  816. };
  817. };
  818. // UnityEngine.PlayerLoop.Initialization/ProfilerStartFrame
  819. struct ProfilerStartFrame_t80452E048B09F684583B024353CEF1C50B650E43
  820. {
  821. union
  822. {
  823. struct
  824. {
  825. };
  826. uint8_t ProfilerStartFrame_t80452E048B09F684583B024353CEF1C50B650E43__padding[1];
  827. };
  828. };
  829. // UnityEngine.PlayerLoop.Initialization/SynchronizeInputs
  830. struct SynchronizeInputs_tDEECB3386F5E73129815BA3BFA47F033D31CC9EF
  831. {
  832. union
  833. {
  834. struct
  835. {
  836. };
  837. uint8_t SynchronizeInputs_tDEECB3386F5E73129815BA3BFA47F033D31CC9EF__padding[1];
  838. };
  839. };
  840. // UnityEngine.PlayerLoop.Initialization/SynchronizeState
  841. struct SynchronizeState_t46EEC7F26CE1203D756418F000A011081D74923A
  842. {
  843. union
  844. {
  845. struct
  846. {
  847. };
  848. uint8_t SynchronizeState_t46EEC7F26CE1203D756418F000A011081D74923A__padding[1];
  849. };
  850. };
  851. // UnityEngine.PlayerLoop.Initialization/UpdateCameraMotionVectors
  852. struct UpdateCameraMotionVectors_t67A02B2283F2C5C3FC6E456F46AB5E6BE4126391
  853. {
  854. union
  855. {
  856. struct
  857. {
  858. };
  859. uint8_t UpdateCameraMotionVectors_t67A02B2283F2C5C3FC6E456F46AB5E6BE4126391__padding[1];
  860. };
  861. };
  862. // UnityEngine.PlayerLoop.Initialization/XREarlyUpdate
  863. struct XREarlyUpdate_t2FE37D888210382039DD766A0911539EBB10D015
  864. {
  865. union
  866. {
  867. struct
  868. {
  869. };
  870. uint8_t XREarlyUpdate_t2FE37D888210382039DD766A0911539EBB10D015__padding[1];
  871. };
  872. };
  873. // UnityEngine.PlayerLoop.PostLateUpdate/BatchModeUpdate
  874. struct BatchModeUpdate_t686C5FBF3907281713E45590481A06FCF403325D
  875. {
  876. union
  877. {
  878. struct
  879. {
  880. };
  881. uint8_t BatchModeUpdate_t686C5FBF3907281713E45590481A06FCF403325D__padding[1];
  882. };
  883. };
  884. // UnityEngine.PlayerLoop.PostLateUpdate/ClearImmediateRenderers
  885. struct ClearImmediateRenderers_tD5807343A690F45CD8EAAE07F9224F80986F17EB
  886. {
  887. union
  888. {
  889. struct
  890. {
  891. };
  892. uint8_t ClearImmediateRenderers_tD5807343A690F45CD8EAAE07F9224F80986F17EB__padding[1];
  893. };
  894. };
  895. // UnityEngine.PlayerLoop.PostLateUpdate/DirectorLateUpdate
  896. struct DirectorLateUpdate_t6D55F5058BD025D280245CBD42C162C483E1D512
  897. {
  898. union
  899. {
  900. struct
  901. {
  902. };
  903. uint8_t DirectorLateUpdate_t6D55F5058BD025D280245CBD42C162C483E1D512__padding[1];
  904. };
  905. };
  906. // UnityEngine.PlayerLoop.PostLateUpdate/DirectorRenderImage
  907. struct DirectorRenderImage_t8250BBB821B976257F3EAEC1448C3991AFF63C1B
  908. {
  909. union
  910. {
  911. struct
  912. {
  913. };
  914. uint8_t DirectorRenderImage_t8250BBB821B976257F3EAEC1448C3991AFF63C1B__padding[1];
  915. };
  916. };
  917. // UnityEngine.PlayerLoop.PostLateUpdate/EndGraphicsJobsAfterScriptLateUpdate
  918. struct EndGraphicsJobsAfterScriptLateUpdate_tEE7D7895D684058F163063191B2D2874BE7FA562
  919. {
  920. union
  921. {
  922. struct
  923. {
  924. };
  925. uint8_t EndGraphicsJobsAfterScriptLateUpdate_tEE7D7895D684058F163063191B2D2874BE7FA562__padding[1];
  926. };
  927. };
  928. // UnityEngine.PlayerLoop.PostLateUpdate/EnlightenRuntimeUpdate
  929. struct EnlightenRuntimeUpdate_tF0560FB54CCF2F4A32DA721EBA26E848DF5D76E3
  930. {
  931. union
  932. {
  933. struct
  934. {
  935. };
  936. uint8_t EnlightenRuntimeUpdate_tF0560FB54CCF2F4A32DA721EBA26E848DF5D76E3__padding[1];
  937. };
  938. };
  939. // UnityEngine.PlayerLoop.PostLateUpdate/ExecuteGameCenterCallbacks
  940. struct ExecuteGameCenterCallbacks_tCD187757744592AED2400D913D99DD4180E48857
  941. {
  942. union
  943. {
  944. struct
  945. {
  946. };
  947. uint8_t ExecuteGameCenterCallbacks_tCD187757744592AED2400D913D99DD4180E48857__padding[1];
  948. };
  949. };
  950. // UnityEngine.PlayerLoop.PostLateUpdate/FinishFrameRendering
  951. struct FinishFrameRendering_tEAE352E2A0817EF409C36B50BC74A0AE91403039
  952. {
  953. union
  954. {
  955. struct
  956. {
  957. };
  958. uint8_t FinishFrameRendering_tEAE352E2A0817EF409C36B50BC74A0AE91403039__padding[1];
  959. };
  960. };
  961. // UnityEngine.PlayerLoop.PostLateUpdate/GUIClearEvents
  962. struct GUIClearEvents_tAD3C9126D5AB5761F35668BB8D192901D0654FD2
  963. {
  964. union
  965. {
  966. struct
  967. {
  968. };
  969. uint8_t GUIClearEvents_tAD3C9126D5AB5761F35668BB8D192901D0654FD2__padding[1];
  970. };
  971. };
  972. // UnityEngine.PlayerLoop.PostLateUpdate/GraphicsWarmupPreloadedShaders
  973. struct GraphicsWarmupPreloadedShaders_tF4CA3BFEDAEFF58490F38AD9FC40668CFCE3EA3D
  974. {
  975. union
  976. {
  977. struct
  978. {
  979. };
  980. uint8_t GraphicsWarmupPreloadedShaders_tF4CA3BFEDAEFF58490F38AD9FC40668CFCE3EA3D__padding[1];
  981. };
  982. };
  983. // UnityEngine.PlayerLoop.PostLateUpdate/InputEndFrame
  984. struct InputEndFrame_t42B7FD0989A122BDDE757062094FBD3AAF900B33
  985. {
  986. union
  987. {
  988. struct
  989. {
  990. };
  991. uint8_t InputEndFrame_t42B7FD0989A122BDDE757062094FBD3AAF900B33__padding[1];
  992. };
  993. };
  994. // UnityEngine.PlayerLoop.PostLateUpdate/MemoryFrameMaintenance
  995. struct MemoryFrameMaintenance_t0E4EADC6A05D1699FDC722959D64FB3F30DD6E90
  996. {
  997. union
  998. {
  999. struct
  1000. {
  1001. };
  1002. uint8_t MemoryFrameMaintenance_t0E4EADC6A05D1699FDC722959D64FB3F30DD6E90__padding[1];
  1003. };
  1004. };
  1005. // UnityEngine.PlayerLoop.PostLateUpdate/ParticleSystemEndUpdateAll
  1006. struct ParticleSystemEndUpdateAll_tA5B846F08C725EB3642F2F9C30B721F335C96410
  1007. {
  1008. union
  1009. {
  1010. struct
  1011. {
  1012. };
  1013. uint8_t ParticleSystemEndUpdateAll_tA5B846F08C725EB3642F2F9C30B721F335C96410__padding[1];
  1014. };
  1015. };
  1016. // UnityEngine.PlayerLoop.PostLateUpdate/PhysicsSkinnedClothBeginUpdate
  1017. struct PhysicsSkinnedClothBeginUpdate_t7594D90D7261A07D1753941535C489D7CF38E696
  1018. {
  1019. union
  1020. {
  1021. struct
  1022. {
  1023. };
  1024. uint8_t PhysicsSkinnedClothBeginUpdate_t7594D90D7261A07D1753941535C489D7CF38E696__padding[1];
  1025. };
  1026. };
  1027. // UnityEngine.PlayerLoop.PostLateUpdate/PhysicsSkinnedClothFinishUpdate
  1028. struct PhysicsSkinnedClothFinishUpdate_tF276BC670113332DE88FD62F6139F1126AA23C75
  1029. {
  1030. union
  1031. {
  1032. struct
  1033. {
  1034. };
  1035. uint8_t PhysicsSkinnedClothFinishUpdate_tF276BC670113332DE88FD62F6139F1126AA23C75__padding[1];
  1036. };
  1037. };
  1038. // UnityEngine.PlayerLoop.PostLateUpdate/PlayerEmitCanvasGeometry
  1039. struct PlayerEmitCanvasGeometry_t5C1E32B15900188F564F4E318B352EEDF3910375
  1040. {
  1041. union
  1042. {
  1043. struct
  1044. {
  1045. };
  1046. uint8_t PlayerEmitCanvasGeometry_t5C1E32B15900188F564F4E318B352EEDF3910375__padding[1];
  1047. };
  1048. };
  1049. // UnityEngine.PlayerLoop.PostLateUpdate/PlayerSendFrameComplete
  1050. struct PlayerSendFrameComplete_tBACAC212A197B5446CB6F593799C7695BB24EC05
  1051. {
  1052. union
  1053. {
  1054. struct
  1055. {
  1056. };
  1057. uint8_t PlayerSendFrameComplete_tBACAC212A197B5446CB6F593799C7695BB24EC05__padding[1];
  1058. };
  1059. };
  1060. // UnityEngine.PlayerLoop.PostLateUpdate/PlayerSendFramePostPresent
  1061. struct PlayerSendFramePostPresent_t84861404A02490869D3F46F7F2C0A17290545EC1
  1062. {
  1063. union
  1064. {
  1065. struct
  1066. {
  1067. };
  1068. uint8_t PlayerSendFramePostPresent_t84861404A02490869D3F46F7F2C0A17290545EC1__padding[1];
  1069. };
  1070. };
  1071. // UnityEngine.PlayerLoop.PostLateUpdate/PlayerSendFrameStarted
  1072. struct PlayerSendFrameStarted_t4DDB339CF02291AAF8CB8FBBF4011458A485FD94
  1073. {
  1074. union
  1075. {
  1076. struct
  1077. {
  1078. };
  1079. uint8_t PlayerSendFrameStarted_t4DDB339CF02291AAF8CB8FBBF4011458A485FD94__padding[1];
  1080. };
  1081. };
  1082. // UnityEngine.PlayerLoop.PostLateUpdate/PlayerUpdateCanvases
  1083. struct PlayerUpdateCanvases_t14545D10F675BACF66AD183C46A48D9242713404
  1084. {
  1085. union
  1086. {
  1087. struct
  1088. {
  1089. };
  1090. uint8_t PlayerUpdateCanvases_t14545D10F675BACF66AD183C46A48D9242713404__padding[1];
  1091. };
  1092. };
  1093. // UnityEngine.PlayerLoop.PostLateUpdate/PresentAfterDraw
  1094. struct PresentAfterDraw_t9C61FF8A9FE7A311D239FD7FC1E4F7E24B6549ED
  1095. {
  1096. union
  1097. {
  1098. struct
  1099. {
  1100. };
  1101. uint8_t PresentAfterDraw_t9C61FF8A9FE7A311D239FD7FC1E4F7E24B6549ED__padding[1];
  1102. };
  1103. };
  1104. // UnityEngine.PlayerLoop.PostLateUpdate/ProcessWebSendMessages
  1105. struct ProcessWebSendMessages_tC8FFF5536FFB6F2AFFA10F33E65A5077DBF5B930
  1106. {
  1107. union
  1108. {
  1109. struct
  1110. {
  1111. };
  1112. uint8_t ProcessWebSendMessages_tC8FFF5536FFB6F2AFFA10F33E65A5077DBF5B930__padding[1];
  1113. };
  1114. };
  1115. // UnityEngine.PlayerLoop.PostLateUpdate/ProfilerEndFrame
  1116. struct ProfilerEndFrame_t2A94DA438D46971D71B8288F52C4FFF2F02A2E33
  1117. {
  1118. union
  1119. {
  1120. struct
  1121. {
  1122. };
  1123. uint8_t ProfilerEndFrame_t2A94DA438D46971D71B8288F52C4FFF2F02A2E33__padding[1];
  1124. };
  1125. };
  1126. // UnityEngine.PlayerLoop.PostLateUpdate/ProfilerSynchronizeStats
  1127. struct ProfilerSynchronizeStats_tD6DE0BB1F779FBFFB312E5BCC793E40219F28C06
  1128. {
  1129. union
  1130. {
  1131. struct
  1132. {
  1133. };
  1134. uint8_t ProfilerSynchronizeStats_tD6DE0BB1F779FBFFB312E5BCC793E40219F28C06__padding[1];
  1135. };
  1136. };
  1137. // UnityEngine.PlayerLoop.PostLateUpdate/ResetInputAxis
  1138. struct ResetInputAxis_tEB27E7DE3846A88D2D4E021C916D8D6D88EFE413
  1139. {
  1140. union
  1141. {
  1142. struct
  1143. {
  1144. };
  1145. uint8_t ResetInputAxis_tEB27E7DE3846A88D2D4E021C916D8D6D88EFE413__padding[1];
  1146. };
  1147. };
  1148. // UnityEngine.PlayerLoop.PostLateUpdate/ScriptRunDelayedDynamicFrameRate
  1149. struct ScriptRunDelayedDynamicFrameRate_t7071432D555EBFC8DD4E534B45F4EDF27E080F13
  1150. {
  1151. union
  1152. {
  1153. struct
  1154. {
  1155. };
  1156. uint8_t ScriptRunDelayedDynamicFrameRate_t7071432D555EBFC8DD4E534B45F4EDF27E080F13__padding[1];
  1157. };
  1158. };
  1159. // UnityEngine.PlayerLoop.PostLateUpdate/ShaderHandleErrors
  1160. struct ShaderHandleErrors_tF94E0D773C1DB05AF604B2DE50724E860E1AF013
  1161. {
  1162. union
  1163. {
  1164. struct
  1165. {
  1166. };
  1167. uint8_t ShaderHandleErrors_tF94E0D773C1DB05AF604B2DE50724E860E1AF013__padding[1];
  1168. };
  1169. };
  1170. // UnityEngine.PlayerLoop.PostLateUpdate/SortingGroupsUpdate
  1171. struct SortingGroupsUpdate_tB67116E697EFCB74353FE78178E7B77CFF508A07
  1172. {
  1173. union
  1174. {
  1175. struct
  1176. {
  1177. };
  1178. uint8_t SortingGroupsUpdate_tB67116E697EFCB74353FE78178E7B77CFF508A07__padding[1];
  1179. };
  1180. };
  1181. // UnityEngine.PlayerLoop.PostLateUpdate/ThreadedLoadingDebug
  1182. struct ThreadedLoadingDebug_tDB72068BDFB2257670DA53B21B3D09F760DAFF6A
  1183. {
  1184. union
  1185. {
  1186. struct
  1187. {
  1188. };
  1189. uint8_t ThreadedLoadingDebug_tDB72068BDFB2257670DA53B21B3D09F760DAFF6A__padding[1];
  1190. };
  1191. };
  1192. // UnityEngine.PlayerLoop.PostLateUpdate/TriggerEndOfFrameCallbacks
  1193. struct TriggerEndOfFrameCallbacks_tBA66DD23D1D0C1E192F89C2F300BAD5F92C93F1B
  1194. {
  1195. union
  1196. {
  1197. struct
  1198. {
  1199. };
  1200. uint8_t TriggerEndOfFrameCallbacks_tBA66DD23D1D0C1E192F89C2F300BAD5F92C93F1B__padding[1];
  1201. };
  1202. };
  1203. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateAllRenderers
  1204. struct UpdateAllRenderers_tDFCEDEFC02C1B3B96770B06559B45FADA50445BC
  1205. {
  1206. union
  1207. {
  1208. struct
  1209. {
  1210. };
  1211. uint8_t UpdateAllRenderers_tDFCEDEFC02C1B3B96770B06559B45FADA50445BC__padding[1];
  1212. };
  1213. };
  1214. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateAllSkinnedMeshes
  1215. struct UpdateAllSkinnedMeshes_t9015D4D4B19DE28DD05617E082E2B8304DC5E942
  1216. {
  1217. union
  1218. {
  1219. struct
  1220. {
  1221. };
  1222. uint8_t UpdateAllSkinnedMeshes_t9015D4D4B19DE28DD05617E082E2B8304DC5E942__padding[1];
  1223. };
  1224. };
  1225. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateAudio
  1226. struct UpdateAudio_t1EE346D361B4338A8CFA185A4705AEFDAEE801AE
  1227. {
  1228. union
  1229. {
  1230. struct
  1231. {
  1232. };
  1233. uint8_t UpdateAudio_t1EE346D361B4338A8CFA185A4705AEFDAEE801AE__padding[1];
  1234. };
  1235. };
  1236. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateCanvasRectTransform
  1237. struct UpdateCanvasRectTransform_t43DD3FE6666F14E5619AA847D7FC83A31B4AB2DF
  1238. {
  1239. union
  1240. {
  1241. struct
  1242. {
  1243. };
  1244. uint8_t UpdateCanvasRectTransform_t43DD3FE6666F14E5619AA847D7FC83A31B4AB2DF__padding[1];
  1245. };
  1246. };
  1247. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateCaptureScreenshot
  1248. struct UpdateCaptureScreenshot_tAF9CC0F6E0462EAB2BEF9EE8BA1DAC7D5BABA360
  1249. {
  1250. union
  1251. {
  1252. struct
  1253. {
  1254. };
  1255. uint8_t UpdateCaptureScreenshot_tAF9CC0F6E0462EAB2BEF9EE8BA1DAC7D5BABA360__padding[1];
  1256. };
  1257. };
  1258. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateCustomRenderTextures
  1259. struct UpdateCustomRenderTextures_tDCCB1380EB126CE1146781F90D4DC397502707EA
  1260. {
  1261. union
  1262. {
  1263. struct
  1264. {
  1265. };
  1266. uint8_t UpdateCustomRenderTextures_tDCCB1380EB126CE1146781F90D4DC397502707EA__padding[1];
  1267. };
  1268. };
  1269. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateLightProbeProxyVolumes
  1270. struct UpdateLightProbeProxyVolumes_t7E61DB4527509062E7DE783C2E8292C5CC822B56
  1271. {
  1272. union
  1273. {
  1274. struct
  1275. {
  1276. };
  1277. uint8_t UpdateLightProbeProxyVolumes_t7E61DB4527509062E7DE783C2E8292C5CC822B56__padding[1];
  1278. };
  1279. };
  1280. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateRectTransform
  1281. struct UpdateRectTransform_tFB89399C3715A7AE18439EDA43A8A246A70307C4
  1282. {
  1283. union
  1284. {
  1285. struct
  1286. {
  1287. };
  1288. uint8_t UpdateRectTransform_tFB89399C3715A7AE18439EDA43A8A246A70307C4__padding[1];
  1289. };
  1290. };
  1291. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateResolution
  1292. struct UpdateResolution_t6B90CB8B3407D59509AC4D0477435FD44682D4ED
  1293. {
  1294. union
  1295. {
  1296. struct
  1297. {
  1298. };
  1299. uint8_t UpdateResolution_t6B90CB8B3407D59509AC4D0477435FD44682D4ED__padding[1];
  1300. };
  1301. };
  1302. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateSubstance
  1303. struct UpdateSubstance_tB7ADB49C519BBE5D1B5DA7F6BA7177DE1FC1217A
  1304. {
  1305. union
  1306. {
  1307. struct
  1308. {
  1309. };
  1310. uint8_t UpdateSubstance_tB7ADB49C519BBE5D1B5DA7F6BA7177DE1FC1217A__padding[1];
  1311. };
  1312. };
  1313. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateVideo
  1314. struct UpdateVideo_tB21C695C93D9ECA1F8821B359B71C03EABD0E1EF
  1315. {
  1316. union
  1317. {
  1318. struct
  1319. {
  1320. };
  1321. uint8_t UpdateVideo_tB21C695C93D9ECA1F8821B359B71C03EABD0E1EF__padding[1];
  1322. };
  1323. };
  1324. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateVideoTextures
  1325. struct UpdateVideoTextures_t41EC68C3F07C66A6A9F8ADF81EC4622B680CAA7E
  1326. {
  1327. union
  1328. {
  1329. struct
  1330. {
  1331. };
  1332. uint8_t UpdateVideoTextures_t41EC68C3F07C66A6A9F8ADF81EC4622B680CAA7E__padding[1];
  1333. };
  1334. };
  1335. // UnityEngine.PlayerLoop.PostLateUpdate/VFXUpdate
  1336. struct VFXUpdate_t816F9323A8CB3A06A0D9D213B1277904CD457252
  1337. {
  1338. union
  1339. {
  1340. struct
  1341. {
  1342. };
  1343. uint8_t VFXUpdate_t816F9323A8CB3A06A0D9D213B1277904CD457252__padding[1];
  1344. };
  1345. };
  1346. // UnityEngine.PlayerLoop.PostLateUpdate/XRPostLateUpdate
  1347. struct XRPostLateUpdate_t1EE8EAA2697F9C758F0C8C1974C59EE578EFC15F
  1348. {
  1349. union
  1350. {
  1351. struct
  1352. {
  1353. };
  1354. uint8_t XRPostLateUpdate_t1EE8EAA2697F9C758F0C8C1974C59EE578EFC15F__padding[1];
  1355. };
  1356. };
  1357. // UnityEngine.PlayerLoop.PostLateUpdate/XRPostPresent
  1358. struct XRPostPresent_tFF910652581DF94C8DF5BAE50633725ED22E1354
  1359. {
  1360. union
  1361. {
  1362. struct
  1363. {
  1364. };
  1365. uint8_t XRPostPresent_tFF910652581DF94C8DF5BAE50633725ED22E1354__padding[1];
  1366. };
  1367. };
  1368. // UnityEngine.PlayerLoop.PostLateUpdate/XRPreEndFrame
  1369. struct XRPreEndFrame_t78A1DA8FD45515933040E2B7B9CBB384967C46BF
  1370. {
  1371. union
  1372. {
  1373. struct
  1374. {
  1375. };
  1376. uint8_t XRPreEndFrame_t78A1DA8FD45515933040E2B7B9CBB384967C46BF__padding[1];
  1377. };
  1378. };
  1379. // UnityEngine.PlayerLoop.PreLateUpdate/AIUpdatePostScript
  1380. struct AIUpdatePostScript_t87451CCD704E89EC1C2BA0D35B3AEAA8563A33E6
  1381. {
  1382. union
  1383. {
  1384. struct
  1385. {
  1386. };
  1387. uint8_t AIUpdatePostScript_t87451CCD704E89EC1C2BA0D35B3AEAA8563A33E6__padding[1];
  1388. };
  1389. };
  1390. // UnityEngine.PlayerLoop.PreLateUpdate/ConstraintManagerUpdate
  1391. struct ConstraintManagerUpdate_tBB12AC594CE163F658DBBACC3853C383E1A05213
  1392. {
  1393. union
  1394. {
  1395. struct
  1396. {
  1397. };
  1398. uint8_t ConstraintManagerUpdate_tBB12AC594CE163F658DBBACC3853C383E1A05213__padding[1];
  1399. };
  1400. };
  1401. // UnityEngine.PlayerLoop.PreLateUpdate/DirectorDeferredEvaluate
  1402. struct DirectorDeferredEvaluate_t851C593FE275B53D22C79C8435BEB4891252F799
  1403. {
  1404. union
  1405. {
  1406. struct
  1407. {
  1408. };
  1409. uint8_t DirectorDeferredEvaluate_t851C593FE275B53D22C79C8435BEB4891252F799__padding[1];
  1410. };
  1411. };
  1412. // UnityEngine.PlayerLoop.PreLateUpdate/DirectorUpdateAnimationBegin
  1413. struct DirectorUpdateAnimationBegin_t81C50CAC81BD6EC4D9648822E86BF29A47936FEC
  1414. {
  1415. union
  1416. {
  1417. struct
  1418. {
  1419. };
  1420. uint8_t DirectorUpdateAnimationBegin_t81C50CAC81BD6EC4D9648822E86BF29A47936FEC__padding[1];
  1421. };
  1422. };
  1423. // UnityEngine.PlayerLoop.PreLateUpdate/DirectorUpdateAnimationEnd
  1424. struct DirectorUpdateAnimationEnd_tD58A96B3539A4F3A050B5116895857DFADB1609E
  1425. {
  1426. union
  1427. {
  1428. struct
  1429. {
  1430. };
  1431. uint8_t DirectorUpdateAnimationEnd_tD58A96B3539A4F3A050B5116895857DFADB1609E__padding[1];
  1432. };
  1433. };
  1434. // UnityEngine.PlayerLoop.PreLateUpdate/EndGraphicsJobsAfterScriptUpdate
  1435. struct EndGraphicsJobsAfterScriptUpdate_t31BA589CB2526B56986A3C5D9ED15FB859CA806C
  1436. {
  1437. union
  1438. {
  1439. struct
  1440. {
  1441. };
  1442. uint8_t EndGraphicsJobsAfterScriptUpdate_t31BA589CB2526B56986A3C5D9ED15FB859CA806C__padding[1];
  1443. };
  1444. };
  1445. // UnityEngine.PlayerLoop.PreLateUpdate/LegacyAnimationUpdate
  1446. struct LegacyAnimationUpdate_tCA1859B18933D179724E4EF67D3AD39AA70F9137
  1447. {
  1448. union
  1449. {
  1450. struct
  1451. {
  1452. };
  1453. uint8_t LegacyAnimationUpdate_tCA1859B18933D179724E4EF67D3AD39AA70F9137__padding[1];
  1454. };
  1455. };
  1456. // UnityEngine.PlayerLoop.PreLateUpdate/ParticleSystemBeginUpdateAll
  1457. struct ParticleSystemBeginUpdateAll_t1CC03454030208134371D7310A6983F583139D3B
  1458. {
  1459. union
  1460. {
  1461. struct
  1462. {
  1463. };
  1464. uint8_t ParticleSystemBeginUpdateAll_t1CC03454030208134371D7310A6983F583139D3B__padding[1];
  1465. };
  1466. };
  1467. // UnityEngine.PlayerLoop.PreLateUpdate/Physics2DLateUpdate
  1468. struct Physics2DLateUpdate_t8BCE5DD17E6F2423EEE2089613AFACB04D822381
  1469. {
  1470. union
  1471. {
  1472. struct
  1473. {
  1474. };
  1475. uint8_t Physics2DLateUpdate_t8BCE5DD17E6F2423EEE2089613AFACB04D822381__padding[1];
  1476. };
  1477. };
  1478. // UnityEngine.PlayerLoop.PreLateUpdate/ScriptRunBehaviourLateUpdate
  1479. struct ScriptRunBehaviourLateUpdate_t4FB72F632A4C0FD8A88708419FF10E910797D3A7
  1480. {
  1481. union
  1482. {
  1483. struct
  1484. {
  1485. };
  1486. uint8_t ScriptRunBehaviourLateUpdate_t4FB72F632A4C0FD8A88708419FF10E910797D3A7__padding[1];
  1487. };
  1488. };
  1489. // UnityEngine.PlayerLoop.PreLateUpdate/UIElementsUpdatePanels
  1490. struct UIElementsUpdatePanels_t999A37AEB53E4F09E8193455832E7FE029299AA5
  1491. {
  1492. union
  1493. {
  1494. struct
  1495. {
  1496. };
  1497. uint8_t UIElementsUpdatePanels_t999A37AEB53E4F09E8193455832E7FE029299AA5__padding[1];
  1498. };
  1499. };
  1500. // UnityEngine.PlayerLoop.PreLateUpdate/UNetUpdate
  1501. struct UNetUpdate_tD789F426DEFBE083132EC295CFFA8C8A63BFA8E8
  1502. {
  1503. union
  1504. {
  1505. struct
  1506. {
  1507. };
  1508. uint8_t UNetUpdate_tD789F426DEFBE083132EC295CFFA8C8A63BFA8E8__padding[1];
  1509. };
  1510. };
  1511. // UnityEngine.PlayerLoop.PreLateUpdate/UpdateMasterServerInterface
  1512. struct UpdateMasterServerInterface_t5C89D280B0E06D2E5EE43DA200DB08F067CD8FEB
  1513. {
  1514. union
  1515. {
  1516. struct
  1517. {
  1518. };
  1519. uint8_t UpdateMasterServerInterface_t5C89D280B0E06D2E5EE43DA200DB08F067CD8FEB__padding[1];
  1520. };
  1521. };
  1522. // UnityEngine.PlayerLoop.PreLateUpdate/UpdateNetworkManager
  1523. struct UpdateNetworkManager_t32CBEA7AF5C6FB8F34C8F8AD050FB631C685DD31
  1524. {
  1525. union
  1526. {
  1527. struct
  1528. {
  1529. };
  1530. uint8_t UpdateNetworkManager_t32CBEA7AF5C6FB8F34C8F8AD050FB631C685DD31__padding[1];
  1531. };
  1532. };
  1533. // UnityEngine.PlayerLoop.PreUpdate/AIUpdate
  1534. struct AIUpdate_tA35AAF6E952364E15D0F164538EFB865E0B8DD35
  1535. {
  1536. union
  1537. {
  1538. struct
  1539. {
  1540. };
  1541. uint8_t AIUpdate_tA35AAF6E952364E15D0F164538EFB865E0B8DD35__padding[1];
  1542. };
  1543. };
  1544. // UnityEngine.PlayerLoop.PreUpdate/CheckTexFieldInput
  1545. struct CheckTexFieldInput_t82562A2FF4A6A96115095A22DE49B2C8C85592D0
  1546. {
  1547. union
  1548. {
  1549. struct
  1550. {
  1551. };
  1552. uint8_t CheckTexFieldInput_t82562A2FF4A6A96115095A22DE49B2C8C85592D0__padding[1];
  1553. };
  1554. };
  1555. // UnityEngine.PlayerLoop.PreUpdate/IMGUISendQueuedEvents
  1556. struct IMGUISendQueuedEvents_tCB68831D0D320C78C24F1D76D2FE2EE3461FDE0C
  1557. {
  1558. union
  1559. {
  1560. struct
  1561. {
  1562. };
  1563. uint8_t IMGUISendQueuedEvents_tCB68831D0D320C78C24F1D76D2FE2EE3461FDE0C__padding[1];
  1564. };
  1565. };
  1566. // UnityEngine.PlayerLoop.PreUpdate/NewInputUpdate
  1567. struct NewInputUpdate_t1564F13F15C464D3B914A6E9C043C6F2D93B9A9C
  1568. {
  1569. union
  1570. {
  1571. struct
  1572. {
  1573. };
  1574. uint8_t NewInputUpdate_t1564F13F15C464D3B914A6E9C043C6F2D93B9A9C__padding[1];
  1575. };
  1576. };
  1577. // UnityEngine.PlayerLoop.PreUpdate/Physics2DUpdate
  1578. struct Physics2DUpdate_t895E178622EB6CCC7BE36D01F8FED69820B4CED7
  1579. {
  1580. union
  1581. {
  1582. struct
  1583. {
  1584. };
  1585. uint8_t Physics2DUpdate_t895E178622EB6CCC7BE36D01F8FED69820B4CED7__padding[1];
  1586. };
  1587. };
  1588. // UnityEngine.PlayerLoop.PreUpdate/PhysicsUpdate
  1589. struct PhysicsUpdate_t5EA12922A6C5349E4F5B1F6EE3F67D90A92532A6
  1590. {
  1591. union
  1592. {
  1593. struct
  1594. {
  1595. };
  1596. uint8_t PhysicsUpdate_t5EA12922A6C5349E4F5B1F6EE3F67D90A92532A6__padding[1];
  1597. };
  1598. };
  1599. // UnityEngine.PlayerLoop.PreUpdate/SendMouseEvents
  1600. struct SendMouseEvents_t0D410EA28E53BEAFCDB37F8E58A46485D16B86F5
  1601. {
  1602. union
  1603. {
  1604. struct
  1605. {
  1606. };
  1607. uint8_t SendMouseEvents_t0D410EA28E53BEAFCDB37F8E58A46485D16B86F5__padding[1];
  1608. };
  1609. };
  1610. // UnityEngine.PlayerLoop.PreUpdate/UpdateVideo
  1611. struct UpdateVideo_tFC4416C8B8E1232540E981586130B2D7B1D9AFE3
  1612. {
  1613. union
  1614. {
  1615. struct
  1616. {
  1617. };
  1618. uint8_t UpdateVideo_tFC4416C8B8E1232540E981586130B2D7B1D9AFE3__padding[1];
  1619. };
  1620. };
  1621. // UnityEngine.PlayerLoop.PreUpdate/WindUpdate
  1622. struct WindUpdate_t62BB75F87B0E35ADAE8ED7A801F6EB044D22143B
  1623. {
  1624. union
  1625. {
  1626. struct
  1627. {
  1628. };
  1629. uint8_t WindUpdate_t62BB75F87B0E35ADAE8ED7A801F6EB044D22143B__padding[1];
  1630. };
  1631. };
  1632. // UnityEngine.PlayerLoop.TimeUpdate/WaitForLastPresentationAndUpdateTime
  1633. struct WaitForLastPresentationAndUpdateTime_tF885D5810C1C4B2AA28DBCC6CB6003E51792F51C
  1634. {
  1635. union
  1636. {
  1637. struct
  1638. {
  1639. };
  1640. uint8_t WaitForLastPresentationAndUpdateTime_tF885D5810C1C4B2AA28DBCC6CB6003E51792F51C__padding[1];
  1641. };
  1642. };
  1643. // UnityEngine.PlayerLoop.Update/DirectorUpdate
  1644. struct DirectorUpdate_t766FFE1AA1ADCA88ABEDAEFEF5A9B46DFE782E7D
  1645. {
  1646. union
  1647. {
  1648. struct
  1649. {
  1650. };
  1651. uint8_t DirectorUpdate_t766FFE1AA1ADCA88ABEDAEFEF5A9B46DFE782E7D__padding[1];
  1652. };
  1653. };
  1654. // UnityEngine.PlayerLoop.Update/ScriptRunBehaviourUpdate
  1655. struct ScriptRunBehaviourUpdate_tC1140F6DB2F045EB25C6B8E5C46DBE91A1CDBBC1
  1656. {
  1657. union
  1658. {
  1659. struct
  1660. {
  1661. };
  1662. uint8_t ScriptRunBehaviourUpdate_tC1140F6DB2F045EB25C6B8E5C46DBE91A1CDBBC1__padding[1];
  1663. };
  1664. };
  1665. // UnityEngine.PlayerLoop.Update/ScriptRunDelayedDynamicFrameRate
  1666. struct ScriptRunDelayedDynamicFrameRate_t6806DDF61653702F6F87D55ED9330215CD5BF033
  1667. {
  1668. union
  1669. {
  1670. struct
  1671. {
  1672. };
  1673. uint8_t ScriptRunDelayedDynamicFrameRate_t6806DDF61653702F6F87D55ED9330215CD5BF033__padding[1];
  1674. };
  1675. };
  1676. // UnityEngine.PlayerLoop.Update/ScriptRunDelayedTasks
  1677. struct ScriptRunDelayedTasks_t836195796CF358BFA2A1A24B90C69DB7F95EEC80
  1678. {
  1679. union
  1680. {
  1681. struct
  1682. {
  1683. };
  1684. uint8_t ScriptRunDelayedTasks_t836195796CF358BFA2A1A24B90C69DB7F95EEC80__padding[1];
  1685. };
  1686. };
  1687. // System.Delegate
  1688. struct Delegate_t : public RuntimeObject
  1689. {
  1690. // System.IntPtr System.Delegate::method_ptr
  1691. Il2CppMethodPointer ___method_ptr_0;
  1692. // System.IntPtr System.Delegate::invoke_impl
  1693. intptr_t ___invoke_impl_1;
  1694. // System.Object System.Delegate::m_target
  1695. RuntimeObject* ___m_target_2;
  1696. // System.IntPtr System.Delegate::method
  1697. intptr_t ___method_3;
  1698. // System.IntPtr System.Delegate::delegate_trampoline
  1699. intptr_t ___delegate_trampoline_4;
  1700. // System.IntPtr System.Delegate::extra_arg
  1701. intptr_t ___extra_arg_5;
  1702. // System.IntPtr System.Delegate::method_code
  1703. intptr_t ___method_code_6;
  1704. // System.IntPtr System.Delegate::interp_method
  1705. intptr_t ___interp_method_7;
  1706. // System.IntPtr System.Delegate::interp_invoke_impl
  1707. intptr_t ___interp_invoke_impl_8;
  1708. // System.Reflection.MethodInfo System.Delegate::method_info
  1709. MethodInfo_t* ___method_info_9;
  1710. // System.Reflection.MethodInfo System.Delegate::original_method_info
  1711. MethodInfo_t* ___original_method_info_10;
  1712. // System.DelegateData System.Delegate::data
  1713. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
  1714. // System.Boolean System.Delegate::method_is_virtual
  1715. bool ___method_is_virtual_12;
  1716. };
  1717. // Native definition for P/Invoke marshalling of System.Delegate
  1718. struct Delegate_t_marshaled_pinvoke
  1719. {
  1720. intptr_t ___method_ptr_0;
  1721. intptr_t ___invoke_impl_1;
  1722. Il2CppIUnknown* ___m_target_2;
  1723. intptr_t ___method_3;
  1724. intptr_t ___delegate_trampoline_4;
  1725. intptr_t ___extra_arg_5;
  1726. intptr_t ___method_code_6;
  1727. intptr_t ___interp_method_7;
  1728. intptr_t ___interp_invoke_impl_8;
  1729. MethodInfo_t* ___method_info_9;
  1730. MethodInfo_t* ___original_method_info_10;
  1731. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
  1732. int32_t ___method_is_virtual_12;
  1733. };
  1734. // Native definition for COM marshalling of System.Delegate
  1735. struct Delegate_t_marshaled_com
  1736. {
  1737. intptr_t ___method_ptr_0;
  1738. intptr_t ___invoke_impl_1;
  1739. Il2CppIUnknown* ___m_target_2;
  1740. intptr_t ___method_3;
  1741. intptr_t ___delegate_trampoline_4;
  1742. intptr_t ___extra_arg_5;
  1743. intptr_t ___method_code_6;
  1744. intptr_t ___interp_method_7;
  1745. intptr_t ___interp_invoke_impl_8;
  1746. MethodInfo_t* ___method_info_9;
  1747. MethodInfo_t* ___original_method_info_10;
  1748. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
  1749. int32_t ___method_is_virtual_12;
  1750. };
  1751. // System.Reflection.MethodInfo
  1752. struct MethodInfo_t : public MethodBase_t
  1753. {
  1754. };
  1755. // UnityEngine.LowLevel.PlayerLoopSystem
  1756. struct PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F
  1757. {
  1758. // System.Type UnityEngine.LowLevel.PlayerLoopSystem::type
  1759. Type_t* ___type_0;
  1760. // UnityEngine.LowLevel.PlayerLoopSystem[] UnityEngine.LowLevel.PlayerLoopSystem::subSystemList
  1761. PlayerLoopSystemU5BU5D_t07C04E53AAC3CDA17603E8BA1B41D7E1AC083C6D* ___subSystemList_1;
  1762. // UnityEngine.LowLevel.PlayerLoopSystem/UpdateFunction UnityEngine.LowLevel.PlayerLoopSystem::updateDelegate
  1763. UpdateFunction_t1C48B7EECBE47AC123A9D9D7D9D2A9EE951C56C4* ___updateDelegate_2;
  1764. // System.IntPtr UnityEngine.LowLevel.PlayerLoopSystem::updateFunction
  1765. intptr_t ___updateFunction_3;
  1766. // System.IntPtr UnityEngine.LowLevel.PlayerLoopSystem::loopConditionFunction
  1767. intptr_t ___loopConditionFunction_4;
  1768. };
  1769. // Native definition for P/Invoke marshalling of UnityEngine.LowLevel.PlayerLoopSystem
  1770. struct PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshaled_pinvoke
  1771. {
  1772. Type_t* ___type_0;
  1773. PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshaled_pinvoke* ___subSystemList_1;
  1774. Il2CppMethodPointer ___updateDelegate_2;
  1775. intptr_t ___updateFunction_3;
  1776. intptr_t ___loopConditionFunction_4;
  1777. };
  1778. // Native definition for COM marshalling of UnityEngine.LowLevel.PlayerLoopSystem
  1779. struct PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshaled_com
  1780. {
  1781. Type_t* ___type_0;
  1782. PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshaled_com* ___subSystemList_1;
  1783. Il2CppMethodPointer ___updateDelegate_2;
  1784. intptr_t ___updateFunction_3;
  1785. intptr_t ___loopConditionFunction_4;
  1786. };
  1787. // UnityEngine.LowLevel.PlayerLoopSystemInternal
  1788. struct PlayerLoopSystemInternal_tA4BFB5E55A895153CF14333B866219B77AAF1BC5
  1789. {
  1790. // System.Type UnityEngine.LowLevel.PlayerLoopSystemInternal::type
  1791. Type_t* ___type_0;
  1792. // UnityEngine.LowLevel.PlayerLoopSystem/UpdateFunction UnityEngine.LowLevel.PlayerLoopSystemInternal::updateDelegate
  1793. UpdateFunction_t1C48B7EECBE47AC123A9D9D7D9D2A9EE951C56C4* ___updateDelegate_1;
  1794. // System.IntPtr UnityEngine.LowLevel.PlayerLoopSystemInternal::updateFunction
  1795. intptr_t ___updateFunction_2;
  1796. // System.IntPtr UnityEngine.LowLevel.PlayerLoopSystemInternal::loopConditionFunction
  1797. intptr_t ___loopConditionFunction_3;
  1798. // System.Int32 UnityEngine.LowLevel.PlayerLoopSystemInternal::numSubSystems
  1799. int32_t ___numSubSystems_4;
  1800. };
  1801. // Native definition for P/Invoke marshalling of UnityEngine.LowLevel.PlayerLoopSystemInternal
  1802. struct PlayerLoopSystemInternal_tA4BFB5E55A895153CF14333B866219B77AAF1BC5_marshaled_pinvoke
  1803. {
  1804. Type_t* ___type_0;
  1805. Il2CppMethodPointer ___updateDelegate_1;
  1806. intptr_t ___updateFunction_2;
  1807. intptr_t ___loopConditionFunction_3;
  1808. int32_t ___numSubSystems_4;
  1809. };
  1810. // Native definition for COM marshalling of UnityEngine.LowLevel.PlayerLoopSystemInternal
  1811. struct PlayerLoopSystemInternal_tA4BFB5E55A895153CF14333B866219B77AAF1BC5_marshaled_com
  1812. {
  1813. Type_t* ___type_0;
  1814. Il2CppMethodPointer ___updateDelegate_1;
  1815. intptr_t ___updateFunction_2;
  1816. intptr_t ___loopConditionFunction_3;
  1817. int32_t ___numSubSystems_4;
  1818. };
  1819. // System.RuntimeTypeHandle
  1820. struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
  1821. {
  1822. // System.IntPtr System.RuntimeTypeHandle::value
  1823. intptr_t ___value_0;
  1824. };
  1825. // System.MulticastDelegate
  1826. struct MulticastDelegate_t : public Delegate_t
  1827. {
  1828. // System.Delegate[] System.MulticastDelegate::delegates
  1829. DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates_13;
  1830. };
  1831. // Native definition for P/Invoke marshalling of System.MulticastDelegate
  1832. struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
  1833. {
  1834. Delegate_t_marshaled_pinvoke** ___delegates_13;
  1835. };
  1836. // Native definition for COM marshalling of System.MulticastDelegate
  1837. struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
  1838. {
  1839. Delegate_t_marshaled_com** ___delegates_13;
  1840. };
  1841. // System.Type
  1842. struct Type_t : public MemberInfo_t
  1843. {
  1844. // System.RuntimeTypeHandle System.Type::_impl
  1845. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl_8;
  1846. };
  1847. // UnityEngine.Events.UnityAction
  1848. struct UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7 : public MulticastDelegate_t
  1849. {
  1850. };
  1851. // UnityEngine.LowLevel.PlayerLoopSystem/UpdateFunction
  1852. struct UpdateFunction_t1C48B7EECBE47AC123A9D9D7D9D2A9EE951C56C4 : public MulticastDelegate_t
  1853. {
  1854. };
  1855. // System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>
  1856. struct List_1_t91E36549D76184780FD8995722CD4A87A2650C23_StaticFields
  1857. {
  1858. // T[] System.Collections.Generic.List`1::s_emptyArray
  1859. BaseInvokableCallU5BU5D_tF8AC2AD8CB819841C1BA6BCAF4C2733CCD50296F* ___s_emptyArray_5;
  1860. };
  1861. // System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>
  1862. // System.Collections.Generic.List`1<System.Object>
  1863. struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
  1864. {
  1865. // T[] System.Collections.Generic.List`1::s_emptyArray
  1866. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray_5;
  1867. };
  1868. // System.Collections.Generic.List`1<System.Object>
  1869. // UnityEngine.Events.BaseInvokableCall
  1870. // UnityEngine.Events.BaseInvokableCall
  1871. // System.Reflection.MemberInfo
  1872. // System.Reflection.MemberInfo
  1873. // System.String
  1874. struct String_t_StaticFields
  1875. {
  1876. // System.String System.String::Empty
  1877. String_t* ___Empty_6;
  1878. };
  1879. // System.String
  1880. // UnityEngine.Events.UnityEventBase
  1881. // UnityEngine.Events.UnityEventBase
  1882. // System.Boolean
  1883. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
  1884. {
  1885. // System.String System.Boolean::TrueString
  1886. String_t* ___TrueString_5;
  1887. // System.String System.Boolean::FalseString
  1888. String_t* ___FalseString_6;
  1889. };
  1890. // System.Boolean
  1891. // UnityEngine.PlayerLoop.EarlyUpdate
  1892. // UnityEngine.PlayerLoop.EarlyUpdate
  1893. // UnityEngine.PlayerLoop.FixedUpdate
  1894. // UnityEngine.PlayerLoop.FixedUpdate
  1895. // UnityEngine.PlayerLoop.Initialization
  1896. // UnityEngine.PlayerLoop.Initialization
  1897. // System.Int32
  1898. // System.Int32
  1899. // System.IntPtr
  1900. struct IntPtr_t_StaticFields
  1901. {
  1902. // System.IntPtr System.IntPtr::Zero
  1903. intptr_t ___Zero_1;
  1904. };
  1905. // System.IntPtr
  1906. // UnityEngine.Events.InvokableCall
  1907. // UnityEngine.Events.InvokableCall
  1908. // UnityEngine.PlayerLoop.PostLateUpdate
  1909. // UnityEngine.PlayerLoop.PostLateUpdate
  1910. // UnityEngine.PlayerLoop.PreLateUpdate
  1911. // UnityEngine.PlayerLoop.PreLateUpdate
  1912. // UnityEngine.PlayerLoop.PreUpdate
  1913. // UnityEngine.PlayerLoop.PreUpdate
  1914. // UnityEngine.PlayerLoop.TimeUpdate
  1915. // UnityEngine.PlayerLoop.TimeUpdate
  1916. // UnityEngine.Events.UnityEvent
  1917. // UnityEngine.Events.UnityEvent
  1918. // UnityEngine.PlayerLoop.Update
  1919. // UnityEngine.PlayerLoop.Update
  1920. // System.Void
  1921. // System.Void
  1922. // UnityEngine.PlayerLoop.EarlyUpdate/ARCoreUpdate
  1923. // UnityEngine.PlayerLoop.EarlyUpdate/ARCoreUpdate
  1924. // UnityEngine.PlayerLoop.EarlyUpdate/AnalyticsCoreStatsUpdate
  1925. // UnityEngine.PlayerLoop.EarlyUpdate/AnalyticsCoreStatsUpdate
  1926. // UnityEngine.PlayerLoop.EarlyUpdate/ClearIntermediateRenderers
  1927. // UnityEngine.PlayerLoop.EarlyUpdate/ClearIntermediateRenderers
  1928. // UnityEngine.PlayerLoop.EarlyUpdate/ClearLines
  1929. // UnityEngine.PlayerLoop.EarlyUpdate/ClearLines
  1930. // UnityEngine.PlayerLoop.EarlyUpdate/DeliverIosPlatformEvents
  1931. // UnityEngine.PlayerLoop.EarlyUpdate/DeliverIosPlatformEvents
  1932. // UnityEngine.PlayerLoop.EarlyUpdate/DispatchEventQueueEvents
  1933. // UnityEngine.PlayerLoop.EarlyUpdate/DispatchEventQueueEvents
  1934. // UnityEngine.PlayerLoop.EarlyUpdate/ExecuteMainThreadJobs
  1935. // UnityEngine.PlayerLoop.EarlyUpdate/ExecuteMainThreadJobs
  1936. // UnityEngine.PlayerLoop.EarlyUpdate/GpuTimestamp
  1937. // UnityEngine.PlayerLoop.EarlyUpdate/GpuTimestamp
  1938. // UnityEngine.PlayerLoop.EarlyUpdate/PerformanceAnalyticsUpdate
  1939. // UnityEngine.PlayerLoop.EarlyUpdate/PerformanceAnalyticsUpdate
  1940. // UnityEngine.PlayerLoop.EarlyUpdate/PhysicsResetInterpolatedTransformPosition
  1941. // UnityEngine.PlayerLoop.EarlyUpdate/PhysicsResetInterpolatedTransformPosition
  1942. // UnityEngine.PlayerLoop.EarlyUpdate/PlayerCleanupCachedData
  1943. // UnityEngine.PlayerLoop.EarlyUpdate/PlayerCleanupCachedData
  1944. // UnityEngine.PlayerLoop.EarlyUpdate/PollHtcsPlayerConnection
  1945. // UnityEngine.PlayerLoop.EarlyUpdate/PollHtcsPlayerConnection
  1946. // UnityEngine.PlayerLoop.EarlyUpdate/PollPlayerConnection
  1947. // UnityEngine.PlayerLoop.EarlyUpdate/PollPlayerConnection
  1948. // UnityEngine.PlayerLoop.EarlyUpdate/PresentBeforeUpdate
  1949. // UnityEngine.PlayerLoop.EarlyUpdate/PresentBeforeUpdate
  1950. // UnityEngine.PlayerLoop.EarlyUpdate/ProcessMouseInWindow
  1951. // UnityEngine.PlayerLoop.EarlyUpdate/ProcessMouseInWindow
  1952. // UnityEngine.PlayerLoop.EarlyUpdate/ProcessRemoteInput
  1953. // UnityEngine.PlayerLoop.EarlyUpdate/ProcessRemoteInput
  1954. // UnityEngine.PlayerLoop.EarlyUpdate/RendererNotifyInvisible
  1955. // UnityEngine.PlayerLoop.EarlyUpdate/RendererNotifyInvisible
  1956. // UnityEngine.PlayerLoop.EarlyUpdate/ResetFrameStatsAfterPresent
  1957. // UnityEngine.PlayerLoop.EarlyUpdate/ResetFrameStatsAfterPresent
  1958. // UnityEngine.PlayerLoop.EarlyUpdate/ScriptRunDelayedStartupFrame
  1959. // UnityEngine.PlayerLoop.EarlyUpdate/ScriptRunDelayedStartupFrame
  1960. // UnityEngine.PlayerLoop.EarlyUpdate/SpriteAtlasManagerUpdate
  1961. // UnityEngine.PlayerLoop.EarlyUpdate/SpriteAtlasManagerUpdate
  1962. // UnityEngine.PlayerLoop.EarlyUpdate/TangoUpdate
  1963. // UnityEngine.PlayerLoop.EarlyUpdate/TangoUpdate
  1964. // UnityEngine.PlayerLoop.EarlyUpdate/UnityWebRequestUpdate
  1965. // UnityEngine.PlayerLoop.EarlyUpdate/UnityWebRequestUpdate
  1966. // UnityEngine.PlayerLoop.EarlyUpdate/UpdateAsyncReadbackManager
  1967. // UnityEngine.PlayerLoop.EarlyUpdate/UpdateAsyncReadbackManager
  1968. // UnityEngine.PlayerLoop.EarlyUpdate/UpdateCanvasRectTransform
  1969. // UnityEngine.PlayerLoop.EarlyUpdate/UpdateCanvasRectTransform
  1970. // UnityEngine.PlayerLoop.EarlyUpdate/UpdateInputManager
  1971. // UnityEngine.PlayerLoop.EarlyUpdate/UpdateInputManager
  1972. // UnityEngine.PlayerLoop.EarlyUpdate/UpdateKinect
  1973. // UnityEngine.PlayerLoop.EarlyUpdate/UpdateKinect
  1974. // UnityEngine.PlayerLoop.EarlyUpdate/UpdateMainGameViewRect
  1975. // UnityEngine.PlayerLoop.EarlyUpdate/UpdateMainGameViewRect
  1976. // UnityEngine.PlayerLoop.EarlyUpdate/UpdatePreloading
  1977. // UnityEngine.PlayerLoop.EarlyUpdate/UpdatePreloading
  1978. // UnityEngine.PlayerLoop.EarlyUpdate/UpdateStreamingManager
  1979. // UnityEngine.PlayerLoop.EarlyUpdate/UpdateStreamingManager
  1980. // UnityEngine.PlayerLoop.EarlyUpdate/UpdateTextureStreamingManager
  1981. // UnityEngine.PlayerLoop.EarlyUpdate/UpdateTextureStreamingManager
  1982. // UnityEngine.PlayerLoop.EarlyUpdate/XRUpdate
  1983. // UnityEngine.PlayerLoop.EarlyUpdate/XRUpdate
  1984. // UnityEngine.PlayerLoop.FixedUpdate/AudioFixedUpdate
  1985. // UnityEngine.PlayerLoop.FixedUpdate/AudioFixedUpdate
  1986. // UnityEngine.PlayerLoop.FixedUpdate/ClearLines
  1987. // UnityEngine.PlayerLoop.FixedUpdate/ClearLines
  1988. // UnityEngine.PlayerLoop.FixedUpdate/DirectorFixedSampleTime
  1989. // UnityEngine.PlayerLoop.FixedUpdate/DirectorFixedSampleTime
  1990. // UnityEngine.PlayerLoop.FixedUpdate/DirectorFixedUpdate
  1991. // UnityEngine.PlayerLoop.FixedUpdate/DirectorFixedUpdate
  1992. // UnityEngine.PlayerLoop.FixedUpdate/DirectorFixedUpdatePostPhysics
  1993. // UnityEngine.PlayerLoop.FixedUpdate/DirectorFixedUpdatePostPhysics
  1994. // UnityEngine.PlayerLoop.FixedUpdate/LegacyFixedAnimationUpdate
  1995. // UnityEngine.PlayerLoop.FixedUpdate/LegacyFixedAnimationUpdate
  1996. // UnityEngine.PlayerLoop.FixedUpdate/NewInputFixedUpdate
  1997. // UnityEngine.PlayerLoop.FixedUpdate/NewInputFixedUpdate
  1998. // UnityEngine.PlayerLoop.FixedUpdate/Physics2DFixedUpdate
  1999. // UnityEngine.PlayerLoop.FixedUpdate/Physics2DFixedUpdate
  2000. // UnityEngine.PlayerLoop.FixedUpdate/PhysicsClothFixedUpdate
  2001. // UnityEngine.PlayerLoop.FixedUpdate/PhysicsClothFixedUpdate
  2002. // UnityEngine.PlayerLoop.FixedUpdate/PhysicsFixedUpdate
  2003. // UnityEngine.PlayerLoop.FixedUpdate/PhysicsFixedUpdate
  2004. // UnityEngine.PlayerLoop.FixedUpdate/ScriptRunBehaviourFixedUpdate
  2005. // UnityEngine.PlayerLoop.FixedUpdate/ScriptRunBehaviourFixedUpdate
  2006. // UnityEngine.PlayerLoop.FixedUpdate/ScriptRunDelayedFixedFrameRate
  2007. // UnityEngine.PlayerLoop.FixedUpdate/ScriptRunDelayedFixedFrameRate
  2008. // UnityEngine.PlayerLoop.FixedUpdate/XRFixedUpdate
  2009. // UnityEngine.PlayerLoop.FixedUpdate/XRFixedUpdate
  2010. // UnityEngine.PlayerLoop.Initialization/AsyncUploadTimeSlicedUpdate
  2011. // UnityEngine.PlayerLoop.Initialization/AsyncUploadTimeSlicedUpdate
  2012. // UnityEngine.PlayerLoop.Initialization/DirectorSampleTime
  2013. // UnityEngine.PlayerLoop.Initialization/DirectorSampleTime
  2014. // UnityEngine.PlayerLoop.Initialization/ProfilerStartFrame
  2015. // UnityEngine.PlayerLoop.Initialization/ProfilerStartFrame
  2016. // UnityEngine.PlayerLoop.Initialization/SynchronizeInputs
  2017. // UnityEngine.PlayerLoop.Initialization/SynchronizeInputs
  2018. // UnityEngine.PlayerLoop.Initialization/SynchronizeState
  2019. // UnityEngine.PlayerLoop.Initialization/SynchronizeState
  2020. // UnityEngine.PlayerLoop.Initialization/UpdateCameraMotionVectors
  2021. // UnityEngine.PlayerLoop.Initialization/UpdateCameraMotionVectors
  2022. // UnityEngine.PlayerLoop.Initialization/XREarlyUpdate
  2023. // UnityEngine.PlayerLoop.Initialization/XREarlyUpdate
  2024. // UnityEngine.PlayerLoop.PostLateUpdate/BatchModeUpdate
  2025. // UnityEngine.PlayerLoop.PostLateUpdate/BatchModeUpdate
  2026. // UnityEngine.PlayerLoop.PostLateUpdate/ClearImmediateRenderers
  2027. // UnityEngine.PlayerLoop.PostLateUpdate/ClearImmediateRenderers
  2028. // UnityEngine.PlayerLoop.PostLateUpdate/DirectorLateUpdate
  2029. // UnityEngine.PlayerLoop.PostLateUpdate/DirectorLateUpdate
  2030. // UnityEngine.PlayerLoop.PostLateUpdate/DirectorRenderImage
  2031. // UnityEngine.PlayerLoop.PostLateUpdate/DirectorRenderImage
  2032. // UnityEngine.PlayerLoop.PostLateUpdate/EndGraphicsJobsAfterScriptLateUpdate
  2033. // UnityEngine.PlayerLoop.PostLateUpdate/EndGraphicsJobsAfterScriptLateUpdate
  2034. // UnityEngine.PlayerLoop.PostLateUpdate/EnlightenRuntimeUpdate
  2035. // UnityEngine.PlayerLoop.PostLateUpdate/EnlightenRuntimeUpdate
  2036. // UnityEngine.PlayerLoop.PostLateUpdate/ExecuteGameCenterCallbacks
  2037. // UnityEngine.PlayerLoop.PostLateUpdate/ExecuteGameCenterCallbacks
  2038. // UnityEngine.PlayerLoop.PostLateUpdate/FinishFrameRendering
  2039. // UnityEngine.PlayerLoop.PostLateUpdate/FinishFrameRendering
  2040. // UnityEngine.PlayerLoop.PostLateUpdate/GUIClearEvents
  2041. // UnityEngine.PlayerLoop.PostLateUpdate/GUIClearEvents
  2042. // UnityEngine.PlayerLoop.PostLateUpdate/GraphicsWarmupPreloadedShaders
  2043. // UnityEngine.PlayerLoop.PostLateUpdate/GraphicsWarmupPreloadedShaders
  2044. // UnityEngine.PlayerLoop.PostLateUpdate/InputEndFrame
  2045. // UnityEngine.PlayerLoop.PostLateUpdate/InputEndFrame
  2046. // UnityEngine.PlayerLoop.PostLateUpdate/MemoryFrameMaintenance
  2047. // UnityEngine.PlayerLoop.PostLateUpdate/MemoryFrameMaintenance
  2048. // UnityEngine.PlayerLoop.PostLateUpdate/ParticleSystemEndUpdateAll
  2049. // UnityEngine.PlayerLoop.PostLateUpdate/ParticleSystemEndUpdateAll
  2050. // UnityEngine.PlayerLoop.PostLateUpdate/PhysicsSkinnedClothBeginUpdate
  2051. // UnityEngine.PlayerLoop.PostLateUpdate/PhysicsSkinnedClothBeginUpdate
  2052. // UnityEngine.PlayerLoop.PostLateUpdate/PhysicsSkinnedClothFinishUpdate
  2053. // UnityEngine.PlayerLoop.PostLateUpdate/PhysicsSkinnedClothFinishUpdate
  2054. // UnityEngine.PlayerLoop.PostLateUpdate/PlayerEmitCanvasGeometry
  2055. // UnityEngine.PlayerLoop.PostLateUpdate/PlayerEmitCanvasGeometry
  2056. // UnityEngine.PlayerLoop.PostLateUpdate/PlayerSendFrameComplete
  2057. // UnityEngine.PlayerLoop.PostLateUpdate/PlayerSendFrameComplete
  2058. // UnityEngine.PlayerLoop.PostLateUpdate/PlayerSendFramePostPresent
  2059. // UnityEngine.PlayerLoop.PostLateUpdate/PlayerSendFramePostPresent
  2060. // UnityEngine.PlayerLoop.PostLateUpdate/PlayerSendFrameStarted
  2061. // UnityEngine.PlayerLoop.PostLateUpdate/PlayerSendFrameStarted
  2062. // UnityEngine.PlayerLoop.PostLateUpdate/PlayerUpdateCanvases
  2063. // UnityEngine.PlayerLoop.PostLateUpdate/PlayerUpdateCanvases
  2064. // UnityEngine.PlayerLoop.PostLateUpdate/PresentAfterDraw
  2065. // UnityEngine.PlayerLoop.PostLateUpdate/PresentAfterDraw
  2066. // UnityEngine.PlayerLoop.PostLateUpdate/ProcessWebSendMessages
  2067. // UnityEngine.PlayerLoop.PostLateUpdate/ProcessWebSendMessages
  2068. // UnityEngine.PlayerLoop.PostLateUpdate/ProfilerEndFrame
  2069. // UnityEngine.PlayerLoop.PostLateUpdate/ProfilerEndFrame
  2070. // UnityEngine.PlayerLoop.PostLateUpdate/ProfilerSynchronizeStats
  2071. // UnityEngine.PlayerLoop.PostLateUpdate/ProfilerSynchronizeStats
  2072. // UnityEngine.PlayerLoop.PostLateUpdate/ResetInputAxis
  2073. // UnityEngine.PlayerLoop.PostLateUpdate/ResetInputAxis
  2074. // UnityEngine.PlayerLoop.PostLateUpdate/ScriptRunDelayedDynamicFrameRate
  2075. // UnityEngine.PlayerLoop.PostLateUpdate/ScriptRunDelayedDynamicFrameRate
  2076. // UnityEngine.PlayerLoop.PostLateUpdate/ShaderHandleErrors
  2077. // UnityEngine.PlayerLoop.PostLateUpdate/ShaderHandleErrors
  2078. // UnityEngine.PlayerLoop.PostLateUpdate/SortingGroupsUpdate
  2079. // UnityEngine.PlayerLoop.PostLateUpdate/SortingGroupsUpdate
  2080. // UnityEngine.PlayerLoop.PostLateUpdate/ThreadedLoadingDebug
  2081. // UnityEngine.PlayerLoop.PostLateUpdate/ThreadedLoadingDebug
  2082. // UnityEngine.PlayerLoop.PostLateUpdate/TriggerEndOfFrameCallbacks
  2083. // UnityEngine.PlayerLoop.PostLateUpdate/TriggerEndOfFrameCallbacks
  2084. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateAllRenderers
  2085. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateAllRenderers
  2086. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateAllSkinnedMeshes
  2087. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateAllSkinnedMeshes
  2088. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateAudio
  2089. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateAudio
  2090. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateCanvasRectTransform
  2091. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateCanvasRectTransform
  2092. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateCaptureScreenshot
  2093. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateCaptureScreenshot
  2094. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateCustomRenderTextures
  2095. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateCustomRenderTextures
  2096. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateLightProbeProxyVolumes
  2097. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateLightProbeProxyVolumes
  2098. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateRectTransform
  2099. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateRectTransform
  2100. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateResolution
  2101. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateResolution
  2102. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateSubstance
  2103. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateSubstance
  2104. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateVideo
  2105. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateVideo
  2106. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateVideoTextures
  2107. // UnityEngine.PlayerLoop.PostLateUpdate/UpdateVideoTextures
  2108. // UnityEngine.PlayerLoop.PostLateUpdate/VFXUpdate
  2109. // UnityEngine.PlayerLoop.PostLateUpdate/VFXUpdate
  2110. // UnityEngine.PlayerLoop.PostLateUpdate/XRPostLateUpdate
  2111. // UnityEngine.PlayerLoop.PostLateUpdate/XRPostLateUpdate
  2112. // UnityEngine.PlayerLoop.PostLateUpdate/XRPostPresent
  2113. // UnityEngine.PlayerLoop.PostLateUpdate/XRPostPresent
  2114. // UnityEngine.PlayerLoop.PostLateUpdate/XRPreEndFrame
  2115. // UnityEngine.PlayerLoop.PostLateUpdate/XRPreEndFrame
  2116. // UnityEngine.PlayerLoop.PreLateUpdate/AIUpdatePostScript
  2117. // UnityEngine.PlayerLoop.PreLateUpdate/AIUpdatePostScript
  2118. // UnityEngine.PlayerLoop.PreLateUpdate/ConstraintManagerUpdate
  2119. // UnityEngine.PlayerLoop.PreLateUpdate/ConstraintManagerUpdate
  2120. // UnityEngine.PlayerLoop.PreLateUpdate/DirectorDeferredEvaluate
  2121. // UnityEngine.PlayerLoop.PreLateUpdate/DirectorDeferredEvaluate
  2122. // UnityEngine.PlayerLoop.PreLateUpdate/DirectorUpdateAnimationBegin
  2123. // UnityEngine.PlayerLoop.PreLateUpdate/DirectorUpdateAnimationBegin
  2124. // UnityEngine.PlayerLoop.PreLateUpdate/DirectorUpdateAnimationEnd
  2125. // UnityEngine.PlayerLoop.PreLateUpdate/DirectorUpdateAnimationEnd
  2126. // UnityEngine.PlayerLoop.PreLateUpdate/EndGraphicsJobsAfterScriptUpdate
  2127. // UnityEngine.PlayerLoop.PreLateUpdate/EndGraphicsJobsAfterScriptUpdate
  2128. // UnityEngine.PlayerLoop.PreLateUpdate/LegacyAnimationUpdate
  2129. // UnityEngine.PlayerLoop.PreLateUpdate/LegacyAnimationUpdate
  2130. // UnityEngine.PlayerLoop.PreLateUpdate/ParticleSystemBeginUpdateAll
  2131. // UnityEngine.PlayerLoop.PreLateUpdate/ParticleSystemBeginUpdateAll
  2132. // UnityEngine.PlayerLoop.PreLateUpdate/Physics2DLateUpdate
  2133. // UnityEngine.PlayerLoop.PreLateUpdate/Physics2DLateUpdate
  2134. // UnityEngine.PlayerLoop.PreLateUpdate/ScriptRunBehaviourLateUpdate
  2135. // UnityEngine.PlayerLoop.PreLateUpdate/ScriptRunBehaviourLateUpdate
  2136. // UnityEngine.PlayerLoop.PreLateUpdate/UIElementsUpdatePanels
  2137. // UnityEngine.PlayerLoop.PreLateUpdate/UIElementsUpdatePanels
  2138. // UnityEngine.PlayerLoop.PreLateUpdate/UNetUpdate
  2139. // UnityEngine.PlayerLoop.PreLateUpdate/UNetUpdate
  2140. // UnityEngine.PlayerLoop.PreLateUpdate/UpdateMasterServerInterface
  2141. // UnityEngine.PlayerLoop.PreLateUpdate/UpdateMasterServerInterface
  2142. // UnityEngine.PlayerLoop.PreLateUpdate/UpdateNetworkManager
  2143. // UnityEngine.PlayerLoop.PreLateUpdate/UpdateNetworkManager
  2144. // UnityEngine.PlayerLoop.PreUpdate/AIUpdate
  2145. // UnityEngine.PlayerLoop.PreUpdate/AIUpdate
  2146. // UnityEngine.PlayerLoop.PreUpdate/CheckTexFieldInput
  2147. // UnityEngine.PlayerLoop.PreUpdate/CheckTexFieldInput
  2148. // UnityEngine.PlayerLoop.PreUpdate/IMGUISendQueuedEvents
  2149. // UnityEngine.PlayerLoop.PreUpdate/IMGUISendQueuedEvents
  2150. // UnityEngine.PlayerLoop.PreUpdate/NewInputUpdate
  2151. // UnityEngine.PlayerLoop.PreUpdate/NewInputUpdate
  2152. // UnityEngine.PlayerLoop.PreUpdate/Physics2DUpdate
  2153. // UnityEngine.PlayerLoop.PreUpdate/Physics2DUpdate
  2154. // UnityEngine.PlayerLoop.PreUpdate/PhysicsUpdate
  2155. // UnityEngine.PlayerLoop.PreUpdate/PhysicsUpdate
  2156. // UnityEngine.PlayerLoop.PreUpdate/SendMouseEvents
  2157. // UnityEngine.PlayerLoop.PreUpdate/SendMouseEvents
  2158. // UnityEngine.PlayerLoop.PreUpdate/UpdateVideo
  2159. // UnityEngine.PlayerLoop.PreUpdate/UpdateVideo
  2160. // UnityEngine.PlayerLoop.PreUpdate/WindUpdate
  2161. // UnityEngine.PlayerLoop.PreUpdate/WindUpdate
  2162. // UnityEngine.PlayerLoop.TimeUpdate/WaitForLastPresentationAndUpdateTime
  2163. // UnityEngine.PlayerLoop.TimeUpdate/WaitForLastPresentationAndUpdateTime
  2164. // UnityEngine.PlayerLoop.Update/DirectorUpdate
  2165. // UnityEngine.PlayerLoop.Update/DirectorUpdate
  2166. // UnityEngine.PlayerLoop.Update/ScriptRunBehaviourUpdate
  2167. // UnityEngine.PlayerLoop.Update/ScriptRunBehaviourUpdate
  2168. // UnityEngine.PlayerLoop.Update/ScriptRunDelayedDynamicFrameRate
  2169. // UnityEngine.PlayerLoop.Update/ScriptRunDelayedDynamicFrameRate
  2170. // UnityEngine.PlayerLoop.Update/ScriptRunDelayedTasks
  2171. // UnityEngine.PlayerLoop.Update/ScriptRunDelayedTasks
  2172. // System.Delegate
  2173. // System.Delegate
  2174. // System.Reflection.MethodInfo
  2175. // System.Reflection.MethodInfo
  2176. // UnityEngine.LowLevel.PlayerLoopSystem
  2177. // UnityEngine.LowLevel.PlayerLoopSystem
  2178. // UnityEngine.LowLevel.PlayerLoopSystemInternal
  2179. // UnityEngine.LowLevel.PlayerLoopSystemInternal
  2180. // System.Type
  2181. struct Type_t_StaticFields
  2182. {
  2183. // System.Reflection.Binder modreq(System.Runtime.CompilerServices.IsVolatile) System.Type::s_defaultBinder
  2184. Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder_0;
  2185. // System.Char System.Type::Delimiter
  2186. Il2CppChar ___Delimiter_1;
  2187. // System.Type[] System.Type::EmptyTypes
  2188. TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes_2;
  2189. // System.Object System.Type::Missing
  2190. RuntimeObject* ___Missing_3;
  2191. // System.Reflection.MemberFilter System.Type::FilterAttribute
  2192. MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute_4;
  2193. // System.Reflection.MemberFilter System.Type::FilterName
  2194. MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName_5;
  2195. // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
  2196. MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase_6;
  2197. };
  2198. // System.Type
  2199. // UnityEngine.Events.UnityAction
  2200. // UnityEngine.Events.UnityAction
  2201. // UnityEngine.LowLevel.PlayerLoopSystem/UpdateFunction
  2202. // UnityEngine.LowLevel.PlayerLoopSystem/UpdateFunction
  2203. #ifdef __clang__
  2204. #pragma clang diagnostic pop
  2205. #endif
  2206. // System.Delegate[]
  2207. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771 : public RuntimeArray
  2208. {
  2209. ALIGN_FIELD (8) Delegate_t* m_Items[1];
  2210. inline Delegate_t* GetAt(il2cpp_array_size_t index) const
  2211. {
  2212. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2213. return m_Items[index];
  2214. }
  2215. inline Delegate_t** GetAddressAt(il2cpp_array_size_t index)
  2216. {
  2217. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2218. return m_Items + index;
  2219. }
  2220. inline void SetAt(il2cpp_array_size_t index, Delegate_t* value)
  2221. {
  2222. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2223. m_Items[index] = value;
  2224. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  2225. }
  2226. inline Delegate_t* GetAtUnchecked(il2cpp_array_size_t index) const
  2227. {
  2228. return m_Items[index];
  2229. }
  2230. inline Delegate_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
  2231. {
  2232. return m_Items + index;
  2233. }
  2234. inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t* value)
  2235. {
  2236. m_Items[index] = value;
  2237. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  2238. }
  2239. };
  2240. // System.Object[]
  2241. struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918 : public RuntimeArray
  2242. {
  2243. ALIGN_FIELD (8) RuntimeObject* m_Items[1];
  2244. inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
  2245. {
  2246. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2247. return m_Items[index];
  2248. }
  2249. inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
  2250. {
  2251. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2252. return m_Items + index;
  2253. }
  2254. inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
  2255. {
  2256. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2257. m_Items[index] = value;
  2258. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  2259. }
  2260. inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
  2261. {
  2262. return m_Items[index];
  2263. }
  2264. inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
  2265. {
  2266. return m_Items + index;
  2267. }
  2268. inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
  2269. {
  2270. m_Items[index] = value;
  2271. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  2272. }
  2273. };
  2274. // System.Type[]
  2275. struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB : public RuntimeArray
  2276. {
  2277. ALIGN_FIELD (8) Type_t* m_Items[1];
  2278. inline Type_t* GetAt(il2cpp_array_size_t index) const
  2279. {
  2280. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2281. return m_Items[index];
  2282. }
  2283. inline Type_t** GetAddressAt(il2cpp_array_size_t index)
  2284. {
  2285. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2286. return m_Items + index;
  2287. }
  2288. inline void SetAt(il2cpp_array_size_t index, Type_t* value)
  2289. {
  2290. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2291. m_Items[index] = value;
  2292. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  2293. }
  2294. inline Type_t* GetAtUnchecked(il2cpp_array_size_t index) const
  2295. {
  2296. return m_Items[index];
  2297. }
  2298. inline Type_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
  2299. {
  2300. return m_Items + index;
  2301. }
  2302. inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t* value)
  2303. {
  2304. m_Items[index] = value;
  2305. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  2306. }
  2307. };
  2308. // UnityEngine.LowLevel.PlayerLoopSystem[]
  2309. struct PlayerLoopSystemU5BU5D_t07C04E53AAC3CDA17603E8BA1B41D7E1AC083C6D : public RuntimeArray
  2310. {
  2311. ALIGN_FIELD (8) PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F m_Items[1];
  2312. inline PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F GetAt(il2cpp_array_size_t index) const
  2313. {
  2314. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2315. return m_Items[index];
  2316. }
  2317. inline PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F* GetAddressAt(il2cpp_array_size_t index)
  2318. {
  2319. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2320. return m_Items + index;
  2321. }
  2322. inline void SetAt(il2cpp_array_size_t index, PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F value)
  2323. {
  2324. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2325. m_Items[index] = value;
  2326. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___type_0), (void*)NULL);
  2327. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  2328. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___subSystemList_1), (void*)NULL);
  2329. #endif
  2330. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  2331. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___updateDelegate_2), (void*)NULL);
  2332. #endif
  2333. }
  2334. inline PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F GetAtUnchecked(il2cpp_array_size_t index) const
  2335. {
  2336. return m_Items[index];
  2337. }
  2338. inline PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F* GetAddressAtUnchecked(il2cpp_array_size_t index)
  2339. {
  2340. return m_Items + index;
  2341. }
  2342. inline void SetAtUnchecked(il2cpp_array_size_t index, PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F value)
  2343. {
  2344. m_Items[index] = value;
  2345. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___type_0), (void*)NULL);
  2346. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  2347. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___subSystemList_1), (void*)NULL);
  2348. #endif
  2349. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  2350. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___updateDelegate_2), (void*)NULL);
  2351. #endif
  2352. }
  2353. };
  2354. IL2CPP_EXTERN_C void PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshal_pinvoke(const PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F& unmarshaled, PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshaled_pinvoke& marshaled);
  2355. IL2CPP_EXTERN_C void PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshal_pinvoke_back(const PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshaled_pinvoke& marshaled, PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F& unmarshaled);
  2356. IL2CPP_EXTERN_C void PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshal_pinvoke_cleanup(PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshaled_pinvoke& marshaled);
  2357. IL2CPP_EXTERN_C void PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshal_com(const PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F& unmarshaled, PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshaled_com& marshaled);
  2358. IL2CPP_EXTERN_C void PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshal_com_back(const PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshaled_com& marshaled, PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F& unmarshaled);
  2359. IL2CPP_EXTERN_C void PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshal_com_cleanup(PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshaled_com& marshaled);
  2360. // T System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
  2361. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_index, const RuntimeMethod* method) ;
  2362. // System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
  2363. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
  2364. // System.Void UnityEngine.Events.UnityEventBase::.ctor()
  2365. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEventBase__ctor_mB1F958EAC1A7C4B31253F2E1FED173A628725DEC (UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8* __this, const RuntimeMethod* method) ;
  2366. // UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent::GetDelegate(UnityEngine.Events.UnityAction)
  2367. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tB912356039B1D3806B23DFBC7E9CFA1BCC82F339* UnityEvent_GetDelegate_mBD5D37CFB826CB3329477A509A62BF7CE26A9EF8 (UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* ___0_action, const RuntimeMethod* method) ;
  2368. // System.Void UnityEngine.Events.UnityEventBase::AddCall(UnityEngine.Events.BaseInvokableCall)
  2369. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEventBase_AddCall_mA78C058ED530789A28F42347B653190FEC84DBBC (UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8* __this, BaseInvokableCall_tB912356039B1D3806B23DFBC7E9CFA1BCC82F339* ___0_call, const RuntimeMethod* method) ;
  2370. // System.Reflection.MethodInfo UnityEngine.Events.UnityEventBase::GetValidMethodInfo(System.Type,System.String,System.Type[])
  2371. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* UnityEventBase_GetValidMethodInfo_mCFA9547C470F2F90619A1514108BCE0F49F9B0CD (Type_t* ___0_objectType, String_t* ___1_functionName, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___2_argumentTypes, const RuntimeMethod* method) ;
  2372. // System.Void UnityEngine.Events.InvokableCall::.ctor(System.Object,System.Reflection.MethodInfo)
  2373. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvokableCall__ctor_mF3F94B432C977EE2DE7834EC2936E90D271C0464 (InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122* __this, RuntimeObject* ___0_target, MethodInfo_t* ___1_theFunction, const RuntimeMethod* method) ;
  2374. // System.Void UnityEngine.Events.InvokableCall::.ctor(UnityEngine.Events.UnityAction)
  2375. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvokableCall__ctor_m4FA1428E3A33219B2C8C5C571A705AC6B862FA70 (InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122* __this, UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* ___0_action, const RuntimeMethod* method) ;
  2376. // System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall> UnityEngine.Events.UnityEventBase::PrepareInvoke()
  2377. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t91E36549D76184780FD8995722CD4A87A2650C23* UnityEventBase_PrepareInvoke_m4D04FA5D7025C093047DCD3DFEEFB9DF48764FC2 (UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8* __this, const RuntimeMethod* method) ;
  2378. // T System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>::get_Item(System.Int32)
  2379. inline BaseInvokableCall_tB912356039B1D3806B23DFBC7E9CFA1BCC82F339* List_1_get_Item_m2B51DFE114B7ED5612ABA800B8165A60BACE1279 (List_1_t91E36549D76184780FD8995722CD4A87A2650C23* __this, int32_t ___0_index, const RuntimeMethod* method)
  2380. {
  2381. return (( BaseInvokableCall_tB912356039B1D3806B23DFBC7E9CFA1BCC82F339* (*) (List_1_t91E36549D76184780FD8995722CD4A87A2650C23*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
  2382. }
  2383. // System.Void UnityEngine.Events.InvokableCall::Invoke()
  2384. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvokableCall_Invoke_m6F4828FD2B3E3BBB7AA6EECC2C37FB08538363F4 (InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122* __this, const RuntimeMethod* method) ;
  2385. // System.Int32 System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>::get_Count()
  2386. inline int32_t List_1_get_Count_mD86BEA5DB3090332216B9FA14BD79A4E5247614B_inline (List_1_t91E36549D76184780FD8995722CD4A87A2650C23* __this, const RuntimeMethod* method)
  2387. {
  2388. return (( int32_t (*) (List_1_t91E36549D76184780FD8995722CD4A87A2650C23*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
  2389. }
  2390. // System.String UnityEngine.LowLevel.PlayerLoopSystem::ToString()
  2391. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PlayerLoopSystem_ToString_m259B8533D2C64C15D381B16F32C710A0018684A0 (PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F* __this, const RuntimeMethod* method) ;
  2392. #ifdef __clang__
  2393. #pragma clang diagnostic push
  2394. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2395. #pragma clang diagnostic ignored "-Wunused-variable"
  2396. #endif
  2397. void UnityAction_Invoke_m5CB9EE17CCDF64D00DE5D96DF3553CDB20D66F70_Multicast(UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* __this, const RuntimeMethod* method)
  2398. {
  2399. il2cpp_array_size_t length = __this->___delegates_13->max_length;
  2400. Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates_13->GetAddressAtUnchecked(0));
  2401. for (il2cpp_array_size_t i = 0; i < length; i++)
  2402. {
  2403. UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* currentDelegate = reinterpret_cast<UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7*>(delegatesToInvoke[i]);
  2404. typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
  2405. ((FunctionPointerType)currentDelegate->___invoke_impl_1)((Il2CppObject*)currentDelegate->___method_code_6, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
  2406. }
  2407. }
  2408. void UnityAction_Invoke_m5CB9EE17CCDF64D00DE5D96DF3553CDB20D66F70_OpenInst(UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* __this, const RuntimeMethod* method)
  2409. {
  2410. typedef void (*FunctionPointerType) (const RuntimeMethod*);
  2411. ((FunctionPointerType)__this->___method_ptr_0)(method);
  2412. }
  2413. void UnityAction_Invoke_m5CB9EE17CCDF64D00DE5D96DF3553CDB20D66F70_OpenStatic(UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* __this, const RuntimeMethod* method)
  2414. {
  2415. typedef void (*FunctionPointerType) (const RuntimeMethod*);
  2416. ((FunctionPointerType)__this->___method_ptr_0)(method);
  2417. }
  2418. void UnityAction_Invoke_m5CB9EE17CCDF64D00DE5D96DF3553CDB20D66F70_OpenStaticInvoker(UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* __this, const RuntimeMethod* method)
  2419. {
  2420. InvokerActionInvoker0::Invoke(__this->___method_ptr_0, method, NULL);
  2421. }
  2422. void UnityAction_Invoke_m5CB9EE17CCDF64D00DE5D96DF3553CDB20D66F70_ClosedStaticInvoker(UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* __this, const RuntimeMethod* method)
  2423. {
  2424. InvokerActionInvoker1< RuntimeObject* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2);
  2425. }
  2426. IL2CPP_EXTERN_C void DelegatePInvokeWrapper_UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7 (UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* __this, const RuntimeMethod* method)
  2427. {
  2428. typedef void (DEFAULT_CALL *PInvokeFunc)();
  2429. PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
  2430. // Native function invocation
  2431. il2cppPInvokeFunc();
  2432. }
  2433. // System.Void UnityEngine.Events.UnityAction::.ctor(System.Object,System.IntPtr)
  2434. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction__ctor_mC53E20D6B66E0D5688CD81B88DBB34F5A58B7131 (UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
  2435. {
  2436. __this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___1_method);
  2437. __this->___method_3 = ___1_method;
  2438. __this->___m_target_2 = ___0_object;
  2439. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___0_object);
  2440. int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
  2441. __this->___method_code_6 = (intptr_t)__this;
  2442. if (MethodIsStatic((RuntimeMethod*)___1_method))
  2443. {
  2444. bool isOpen = parameterCount == 0;
  2445. if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___1_method))
  2446. if (isOpen)
  2447. __this->___invoke_impl_1 = (intptr_t)&UnityAction_Invoke_m5CB9EE17CCDF64D00DE5D96DF3553CDB20D66F70_OpenStaticInvoker;
  2448. else
  2449. __this->___invoke_impl_1 = (intptr_t)&UnityAction_Invoke_m5CB9EE17CCDF64D00DE5D96DF3553CDB20D66F70_ClosedStaticInvoker;
  2450. else
  2451. if (isOpen)
  2452. __this->___invoke_impl_1 = (intptr_t)&UnityAction_Invoke_m5CB9EE17CCDF64D00DE5D96DF3553CDB20D66F70_OpenStatic;
  2453. else
  2454. {
  2455. __this->___invoke_impl_1 = (intptr_t)__this->___method_ptr_0;
  2456. __this->___method_code_6 = (intptr_t)__this->___m_target_2;
  2457. }
  2458. }
  2459. else
  2460. {
  2461. if (___0_object == NULL)
  2462. il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
  2463. __this->___invoke_impl_1 = (intptr_t)__this->___method_ptr_0;
  2464. __this->___method_code_6 = (intptr_t)__this->___m_target_2;
  2465. }
  2466. __this->___extra_arg_5 = (intptr_t)&UnityAction_Invoke_m5CB9EE17CCDF64D00DE5D96DF3553CDB20D66F70_Multicast;
  2467. }
  2468. // System.Void UnityEngine.Events.UnityAction::Invoke()
  2469. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_Invoke_m5CB9EE17CCDF64D00DE5D96DF3553CDB20D66F70 (UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* __this, const RuntimeMethod* method)
  2470. {
  2471. typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
  2472. ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
  2473. }
  2474. #ifdef __clang__
  2475. #pragma clang diagnostic pop
  2476. #endif
  2477. #ifdef __clang__
  2478. #pragma clang diagnostic push
  2479. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2480. #pragma clang diagnostic ignored "-Wunused-variable"
  2481. #endif
  2482. // System.Void UnityEngine.Events.UnityEvent::.ctor()
  2483. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent__ctor_m03D3E5121B9A6100351984D0CE3050B909CD3235 (UnityEvent_tDC2C3548799DBC91D1E3F3DE60083A66F4751977* __this, const RuntimeMethod* method)
  2484. {
  2485. {
  2486. __this->___m_InvokeArray_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL;
  2487. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_InvokeArray_3), (void*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL);
  2488. UnityEventBase__ctor_mB1F958EAC1A7C4B31253F2E1FED173A628725DEC(__this, NULL);
  2489. return;
  2490. }
  2491. }
  2492. // System.Void UnityEngine.Events.UnityEvent::AddListener(UnityEngine.Events.UnityAction)
  2493. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_AddListener_m8AA4287C16628486B41DA41CA5E7A856A706D302 (UnityEvent_tDC2C3548799DBC91D1E3F3DE60083A66F4751977* __this, UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* ___0_call, const RuntimeMethod* method)
  2494. {
  2495. {
  2496. UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* L_0 = ___0_call;
  2497. BaseInvokableCall_tB912356039B1D3806B23DFBC7E9CFA1BCC82F339* L_1;
  2498. L_1 = UnityEvent_GetDelegate_mBD5D37CFB826CB3329477A509A62BF7CE26A9EF8(L_0, NULL);
  2499. UnityEventBase_AddCall_mA78C058ED530789A28F42347B653190FEC84DBBC(__this, L_1, NULL);
  2500. return;
  2501. }
  2502. }
  2503. // System.Reflection.MethodInfo UnityEngine.Events.UnityEvent::FindMethod_Impl(System.String,System.Type)
  2504. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* UnityEvent_FindMethod_Impl_m62E3D2795BACFF1BA2ED6A431ABD5FB2C7D3D681 (UnityEvent_tDC2C3548799DBC91D1E3F3DE60083A66F4751977* __this, String_t* ___0_name, Type_t* ___1_targetObjType, const RuntimeMethod* method)
  2505. {
  2506. static bool s_Il2CppMethodInitialized;
  2507. if (!s_Il2CppMethodInitialized)
  2508. {
  2509. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var);
  2510. s_Il2CppMethodInitialized = true;
  2511. }
  2512. MethodInfo_t* V_0 = NULL;
  2513. {
  2514. Type_t* L_0 = ___1_targetObjType;
  2515. String_t* L_1 = ___0_name;
  2516. TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_2 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)0);
  2517. MethodInfo_t* L_3;
  2518. L_3 = UnityEventBase_GetValidMethodInfo_mCFA9547C470F2F90619A1514108BCE0F49F9B0CD(L_0, L_1, L_2, NULL);
  2519. V_0 = L_3;
  2520. goto IL_0011;
  2521. }
  2522. IL_0011:
  2523. {
  2524. MethodInfo_t* L_4 = V_0;
  2525. return L_4;
  2526. }
  2527. }
  2528. // UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent::GetDelegate(System.Object,System.Reflection.MethodInfo)
  2529. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tB912356039B1D3806B23DFBC7E9CFA1BCC82F339* UnityEvent_GetDelegate_m6665C6282D3668BC57F2702FD0C3B108F4CFD226 (UnityEvent_tDC2C3548799DBC91D1E3F3DE60083A66F4751977* __this, RuntimeObject* ___0_target, MethodInfo_t* ___1_theFunction, const RuntimeMethod* method)
  2530. {
  2531. static bool s_Il2CppMethodInitialized;
  2532. if (!s_Il2CppMethodInitialized)
  2533. {
  2534. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122_il2cpp_TypeInfo_var);
  2535. s_Il2CppMethodInitialized = true;
  2536. }
  2537. BaseInvokableCall_tB912356039B1D3806B23DFBC7E9CFA1BCC82F339* V_0 = NULL;
  2538. {
  2539. RuntimeObject* L_0 = ___0_target;
  2540. MethodInfo_t* L_1 = ___1_theFunction;
  2541. InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122* L_2 = (InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122*)il2cpp_codegen_object_new(InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122_il2cpp_TypeInfo_var);
  2542. NullCheck(L_2);
  2543. InvokableCall__ctor_mF3F94B432C977EE2DE7834EC2936E90D271C0464(L_2, L_0, L_1, NULL);
  2544. V_0 = L_2;
  2545. goto IL_000b;
  2546. }
  2547. IL_000b:
  2548. {
  2549. BaseInvokableCall_tB912356039B1D3806B23DFBC7E9CFA1BCC82F339* L_3 = V_0;
  2550. return L_3;
  2551. }
  2552. }
  2553. // UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent::GetDelegate(UnityEngine.Events.UnityAction)
  2554. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInvokableCall_tB912356039B1D3806B23DFBC7E9CFA1BCC82F339* UnityEvent_GetDelegate_mBD5D37CFB826CB3329477A509A62BF7CE26A9EF8 (UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* ___0_action, const RuntimeMethod* method)
  2555. {
  2556. static bool s_Il2CppMethodInitialized;
  2557. if (!s_Il2CppMethodInitialized)
  2558. {
  2559. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122_il2cpp_TypeInfo_var);
  2560. s_Il2CppMethodInitialized = true;
  2561. }
  2562. BaseInvokableCall_tB912356039B1D3806B23DFBC7E9CFA1BCC82F339* V_0 = NULL;
  2563. {
  2564. UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* L_0 = ___0_action;
  2565. InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122* L_1 = (InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122*)il2cpp_codegen_object_new(InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122_il2cpp_TypeInfo_var);
  2566. NullCheck(L_1);
  2567. InvokableCall__ctor_m4FA1428E3A33219B2C8C5C571A705AC6B862FA70(L_1, L_0, NULL);
  2568. V_0 = L_1;
  2569. goto IL_000a;
  2570. }
  2571. IL_000a:
  2572. {
  2573. BaseInvokableCall_tB912356039B1D3806B23DFBC7E9CFA1BCC82F339* L_2 = V_0;
  2574. return L_2;
  2575. }
  2576. }
  2577. // System.Void UnityEngine.Events.UnityEvent::Invoke()
  2578. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_Invoke_mFBF80D59B03C30C5FE6A06F897D954ACADE061D2 (UnityEvent_tDC2C3548799DBC91D1E3F3DE60083A66F4751977* __this, const RuntimeMethod* method)
  2579. {
  2580. static bool s_Il2CppMethodInitialized;
  2581. if (!s_Il2CppMethodInitialized)
  2582. {
  2583. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122_il2cpp_TypeInfo_var);
  2584. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mD86BEA5DB3090332216B9FA14BD79A4E5247614B_RuntimeMethod_var);
  2585. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m2B51DFE114B7ED5612ABA800B8165A60BACE1279_RuntimeMethod_var);
  2586. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
  2587. s_Il2CppMethodInitialized = true;
  2588. }
  2589. List_1_t91E36549D76184780FD8995722CD4A87A2650C23* V_0 = NULL;
  2590. int32_t V_1 = 0;
  2591. InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122* V_2 = NULL;
  2592. bool V_3 = false;
  2593. InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122* V_4 = NULL;
  2594. bool V_5 = false;
  2595. BaseInvokableCall_tB912356039B1D3806B23DFBC7E9CFA1BCC82F339* V_6 = NULL;
  2596. bool V_7 = false;
  2597. bool V_8 = false;
  2598. {
  2599. List_1_t91E36549D76184780FD8995722CD4A87A2650C23* L_0;
  2600. L_0 = UnityEventBase_PrepareInvoke_m4D04FA5D7025C093047DCD3DFEEFB9DF48764FC2(__this, NULL);
  2601. V_0 = L_0;
  2602. V_1 = 0;
  2603. goto IL_0089;
  2604. }
  2605. IL_000c:
  2606. {
  2607. List_1_t91E36549D76184780FD8995722CD4A87A2650C23* L_1 = V_0;
  2608. int32_t L_2 = V_1;
  2609. NullCheck(L_1);
  2610. BaseInvokableCall_tB912356039B1D3806B23DFBC7E9CFA1BCC82F339* L_3;
  2611. L_3 = List_1_get_Item_m2B51DFE114B7ED5612ABA800B8165A60BACE1279(L_1, L_2, List_1_get_Item_m2B51DFE114B7ED5612ABA800B8165A60BACE1279_RuntimeMethod_var);
  2612. V_2 = ((InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122*)IsInstClass((RuntimeObject*)L_3, InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122_il2cpp_TypeInfo_var));
  2613. InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122* L_4 = V_2;
  2614. V_3 = (bool)((!(((RuntimeObject*)(InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122*)L_4) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  2615. bool L_5 = V_3;
  2616. if (!L_5)
  2617. {
  2618. goto IL_002b;
  2619. }
  2620. }
  2621. {
  2622. InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122* L_6 = V_2;
  2623. NullCheck(L_6);
  2624. InvokableCall_Invoke_m6F4828FD2B3E3BBB7AA6EECC2C37FB08538363F4(L_6, NULL);
  2625. goto IL_0084;
  2626. }
  2627. IL_002b:
  2628. {
  2629. List_1_t91E36549D76184780FD8995722CD4A87A2650C23* L_7 = V_0;
  2630. int32_t L_8 = V_1;
  2631. NullCheck(L_7);
  2632. BaseInvokableCall_tB912356039B1D3806B23DFBC7E9CFA1BCC82F339* L_9;
  2633. L_9 = List_1_get_Item_m2B51DFE114B7ED5612ABA800B8165A60BACE1279(L_7, L_8, List_1_get_Item_m2B51DFE114B7ED5612ABA800B8165A60BACE1279_RuntimeMethod_var);
  2634. V_4 = ((InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122*)IsInstClass((RuntimeObject*)L_9, InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122_il2cpp_TypeInfo_var));
  2635. InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122* L_10 = V_4;
  2636. V_5 = (bool)((!(((RuntimeObject*)(InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122*)L_10) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  2637. bool L_11 = V_5;
  2638. if (!L_11)
  2639. {
  2640. goto IL_004f;
  2641. }
  2642. }
  2643. {
  2644. InvokableCall_t8481C00D3B38904F5B77ACEA2ABAE6AC119D4122* L_12 = V_4;
  2645. NullCheck(L_12);
  2646. InvokableCall_Invoke_m6F4828FD2B3E3BBB7AA6EECC2C37FB08538363F4(L_12, NULL);
  2647. goto IL_0083;
  2648. }
  2649. IL_004f:
  2650. {
  2651. List_1_t91E36549D76184780FD8995722CD4A87A2650C23* L_13 = V_0;
  2652. int32_t L_14 = V_1;
  2653. NullCheck(L_13);
  2654. BaseInvokableCall_tB912356039B1D3806B23DFBC7E9CFA1BCC82F339* L_15;
  2655. L_15 = List_1_get_Item_m2B51DFE114B7ED5612ABA800B8165A60BACE1279(L_13, L_14, List_1_get_Item_m2B51DFE114B7ED5612ABA800B8165A60BACE1279_RuntimeMethod_var);
  2656. V_6 = L_15;
  2657. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_16 = __this->___m_InvokeArray_3;
  2658. V_7 = (bool)((((RuntimeObject*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)L_16) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  2659. bool L_17 = V_7;
  2660. if (!L_17)
  2661. {
  2662. goto IL_0074;
  2663. }
  2664. }
  2665. {
  2666. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_18 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0);
  2667. __this->___m_InvokeArray_3 = L_18;
  2668. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_InvokeArray_3), (void*)L_18);
  2669. }
  2670. IL_0074:
  2671. {
  2672. BaseInvokableCall_tB912356039B1D3806B23DFBC7E9CFA1BCC82F339* L_19 = V_6;
  2673. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_20 = __this->___m_InvokeArray_3;
  2674. NullCheck(L_19);
  2675. VirtualActionInvoker1< ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(4 /* System.Void UnityEngine.Events.BaseInvokableCall::Invoke(System.Object[]) */, L_19, L_20);
  2676. }
  2677. IL_0083:
  2678. {
  2679. }
  2680. IL_0084:
  2681. {
  2682. int32_t L_21 = V_1;
  2683. V_1 = ((int32_t)il2cpp_codegen_add(L_21, 1));
  2684. }
  2685. IL_0089:
  2686. {
  2687. int32_t L_22 = V_1;
  2688. List_1_t91E36549D76184780FD8995722CD4A87A2650C23* L_23 = V_0;
  2689. NullCheck(L_23);
  2690. int32_t L_24;
  2691. L_24 = List_1_get_Count_mD86BEA5DB3090332216B9FA14BD79A4E5247614B_inline(L_23, List_1_get_Count_mD86BEA5DB3090332216B9FA14BD79A4E5247614B_RuntimeMethod_var);
  2692. V_8 = (bool)((((int32_t)L_22) < ((int32_t)L_24))? 1 : 0);
  2693. bool L_25 = V_8;
  2694. if (L_25)
  2695. {
  2696. goto IL_000c;
  2697. }
  2698. }
  2699. {
  2700. return;
  2701. }
  2702. }
  2703. #ifdef __clang__
  2704. #pragma clang diagnostic pop
  2705. #endif
  2706. #ifdef __clang__
  2707. #pragma clang diagnostic push
  2708. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2709. #pragma clang diagnostic ignored "-Wunused-variable"
  2710. #endif
  2711. // Conversion methods for marshalling of: UnityEngine.LowLevel.PlayerLoopSystemInternal
  2712. IL2CPP_EXTERN_C void PlayerLoopSystemInternal_tA4BFB5E55A895153CF14333B866219B77AAF1BC5_marshal_pinvoke(const PlayerLoopSystemInternal_tA4BFB5E55A895153CF14333B866219B77AAF1BC5& unmarshaled, PlayerLoopSystemInternal_tA4BFB5E55A895153CF14333B866219B77AAF1BC5_marshaled_pinvoke& marshaled)
  2713. {
  2714. Exception_t* ___type_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'type' of type 'PlayerLoopSystemInternal': Reference type field marshaling is not supported.");
  2715. IL2CPP_RAISE_MANAGED_EXCEPTION(___type_0Exception, NULL);
  2716. }
  2717. IL2CPP_EXTERN_C void PlayerLoopSystemInternal_tA4BFB5E55A895153CF14333B866219B77AAF1BC5_marshal_pinvoke_back(const PlayerLoopSystemInternal_tA4BFB5E55A895153CF14333B866219B77AAF1BC5_marshaled_pinvoke& marshaled, PlayerLoopSystemInternal_tA4BFB5E55A895153CF14333B866219B77AAF1BC5& unmarshaled)
  2718. {
  2719. Exception_t* ___type_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'type' of type 'PlayerLoopSystemInternal': Reference type field marshaling is not supported.");
  2720. IL2CPP_RAISE_MANAGED_EXCEPTION(___type_0Exception, NULL);
  2721. }
  2722. // Conversion method for clean up from marshalling of: UnityEngine.LowLevel.PlayerLoopSystemInternal
  2723. IL2CPP_EXTERN_C void PlayerLoopSystemInternal_tA4BFB5E55A895153CF14333B866219B77AAF1BC5_marshal_pinvoke_cleanup(PlayerLoopSystemInternal_tA4BFB5E55A895153CF14333B866219B77AAF1BC5_marshaled_pinvoke& marshaled)
  2724. {
  2725. }
  2726. // Conversion methods for marshalling of: UnityEngine.LowLevel.PlayerLoopSystemInternal
  2727. IL2CPP_EXTERN_C void PlayerLoopSystemInternal_tA4BFB5E55A895153CF14333B866219B77AAF1BC5_marshal_com(const PlayerLoopSystemInternal_tA4BFB5E55A895153CF14333B866219B77AAF1BC5& unmarshaled, PlayerLoopSystemInternal_tA4BFB5E55A895153CF14333B866219B77AAF1BC5_marshaled_com& marshaled)
  2728. {
  2729. Exception_t* ___type_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'type' of type 'PlayerLoopSystemInternal': Reference type field marshaling is not supported.");
  2730. IL2CPP_RAISE_MANAGED_EXCEPTION(___type_0Exception, NULL);
  2731. }
  2732. IL2CPP_EXTERN_C void PlayerLoopSystemInternal_tA4BFB5E55A895153CF14333B866219B77AAF1BC5_marshal_com_back(const PlayerLoopSystemInternal_tA4BFB5E55A895153CF14333B866219B77AAF1BC5_marshaled_com& marshaled, PlayerLoopSystemInternal_tA4BFB5E55A895153CF14333B866219B77AAF1BC5& unmarshaled)
  2733. {
  2734. Exception_t* ___type_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'type' of type 'PlayerLoopSystemInternal': Reference type field marshaling is not supported.");
  2735. IL2CPP_RAISE_MANAGED_EXCEPTION(___type_0Exception, NULL);
  2736. }
  2737. // Conversion method for clean up from marshalling of: UnityEngine.LowLevel.PlayerLoopSystemInternal
  2738. IL2CPP_EXTERN_C void PlayerLoopSystemInternal_tA4BFB5E55A895153CF14333B866219B77AAF1BC5_marshal_com_cleanup(PlayerLoopSystemInternal_tA4BFB5E55A895153CF14333B866219B77AAF1BC5_marshaled_com& marshaled)
  2739. {
  2740. }
  2741. #ifdef __clang__
  2742. #pragma clang diagnostic pop
  2743. #endif
  2744. #ifdef __clang__
  2745. #pragma clang diagnostic push
  2746. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2747. #pragma clang diagnostic ignored "-Wunused-variable"
  2748. #endif
  2749. // Conversion methods for marshalling of: UnityEngine.LowLevel.PlayerLoopSystem
  2750. IL2CPP_EXTERN_C void PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshal_pinvoke(const PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F& unmarshaled, PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshaled_pinvoke& marshaled)
  2751. {
  2752. Exception_t* ___type_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'type' of type 'PlayerLoopSystem': Reference type field marshaling is not supported.");
  2753. IL2CPP_RAISE_MANAGED_EXCEPTION(___type_0Exception, NULL);
  2754. }
  2755. IL2CPP_EXTERN_C void PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshal_pinvoke_back(const PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshaled_pinvoke& marshaled, PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F& unmarshaled)
  2756. {
  2757. Exception_t* ___type_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'type' of type 'PlayerLoopSystem': Reference type field marshaling is not supported.");
  2758. IL2CPP_RAISE_MANAGED_EXCEPTION(___type_0Exception, NULL);
  2759. }
  2760. // Conversion method for clean up from marshalling of: UnityEngine.LowLevel.PlayerLoopSystem
  2761. IL2CPP_EXTERN_C void PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshal_pinvoke_cleanup(PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshaled_pinvoke& marshaled)
  2762. {
  2763. }
  2764. // Conversion methods for marshalling of: UnityEngine.LowLevel.PlayerLoopSystem
  2765. IL2CPP_EXTERN_C void PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshal_com(const PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F& unmarshaled, PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshaled_com& marshaled)
  2766. {
  2767. Exception_t* ___type_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'type' of type 'PlayerLoopSystem': Reference type field marshaling is not supported.");
  2768. IL2CPP_RAISE_MANAGED_EXCEPTION(___type_0Exception, NULL);
  2769. }
  2770. IL2CPP_EXTERN_C void PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshal_com_back(const PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshaled_com& marshaled, PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F& unmarshaled)
  2771. {
  2772. Exception_t* ___type_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'type' of type 'PlayerLoopSystem': Reference type field marshaling is not supported.");
  2773. IL2CPP_RAISE_MANAGED_EXCEPTION(___type_0Exception, NULL);
  2774. }
  2775. // Conversion method for clean up from marshalling of: UnityEngine.LowLevel.PlayerLoopSystem
  2776. IL2CPP_EXTERN_C void PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshal_com_cleanup(PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F_marshaled_com& marshaled)
  2777. {
  2778. }
  2779. // System.String UnityEngine.LowLevel.PlayerLoopSystem::ToString()
  2780. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PlayerLoopSystem_ToString_m259B8533D2C64C15D381B16F32C710A0018684A0 (PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F* __this, const RuntimeMethod* method)
  2781. {
  2782. {
  2783. Type_t* L_0 = __this->___type_0;
  2784. NullCheck(L_0);
  2785. String_t* L_1;
  2786. L_1 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_0);
  2787. return L_1;
  2788. }
  2789. }
  2790. IL2CPP_EXTERN_C String_t* PlayerLoopSystem_ToString_m259B8533D2C64C15D381B16F32C710A0018684A0_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2791. {
  2792. PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F* _thisAdjusted;
  2793. int32_t _offset = 1;
  2794. _thisAdjusted = reinterpret_cast<PlayerLoopSystem_t8AED6BF1C8A309CAA6FF71AC91DD33BDDFF7CF1F*>(__this + _offset);
  2795. String_t* _returnValue;
  2796. _returnValue = PlayerLoopSystem_ToString_m259B8533D2C64C15D381B16F32C710A0018684A0(_thisAdjusted, method);
  2797. return _returnValue;
  2798. }
  2799. #ifdef __clang__
  2800. #pragma clang diagnostic pop
  2801. #endif
  2802. #ifdef __clang__
  2803. #pragma clang diagnostic push
  2804. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2805. #pragma clang diagnostic ignored "-Wunused-variable"
  2806. #endif
  2807. void UpdateFunction_Invoke_m9BCEE4E5BEE924EB804DA64314B78D0E831C179B_Multicast(UpdateFunction_t1C48B7EECBE47AC123A9D9D7D9D2A9EE951C56C4* __this, const RuntimeMethod* method)
  2808. {
  2809. il2cpp_array_size_t length = __this->___delegates_13->max_length;
  2810. Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates_13->GetAddressAtUnchecked(0));
  2811. for (il2cpp_array_size_t i = 0; i < length; i++)
  2812. {
  2813. UpdateFunction_t1C48B7EECBE47AC123A9D9D7D9D2A9EE951C56C4* currentDelegate = reinterpret_cast<UpdateFunction_t1C48B7EECBE47AC123A9D9D7D9D2A9EE951C56C4*>(delegatesToInvoke[i]);
  2814. typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
  2815. ((FunctionPointerType)currentDelegate->___invoke_impl_1)((Il2CppObject*)currentDelegate->___method_code_6, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
  2816. }
  2817. }
  2818. void UpdateFunction_Invoke_m9BCEE4E5BEE924EB804DA64314B78D0E831C179B_OpenInst(UpdateFunction_t1C48B7EECBE47AC123A9D9D7D9D2A9EE951C56C4* __this, const RuntimeMethod* method)
  2819. {
  2820. typedef void (*FunctionPointerType) (const RuntimeMethod*);
  2821. ((FunctionPointerType)__this->___method_ptr_0)(method);
  2822. }
  2823. void UpdateFunction_Invoke_m9BCEE4E5BEE924EB804DA64314B78D0E831C179B_OpenStatic(UpdateFunction_t1C48B7EECBE47AC123A9D9D7D9D2A9EE951C56C4* __this, const RuntimeMethod* method)
  2824. {
  2825. typedef void (*FunctionPointerType) (const RuntimeMethod*);
  2826. ((FunctionPointerType)__this->___method_ptr_0)(method);
  2827. }
  2828. void UpdateFunction_Invoke_m9BCEE4E5BEE924EB804DA64314B78D0E831C179B_OpenStaticInvoker(UpdateFunction_t1C48B7EECBE47AC123A9D9D7D9D2A9EE951C56C4* __this, const RuntimeMethod* method)
  2829. {
  2830. InvokerActionInvoker0::Invoke(__this->___method_ptr_0, method, NULL);
  2831. }
  2832. void UpdateFunction_Invoke_m9BCEE4E5BEE924EB804DA64314B78D0E831C179B_ClosedStaticInvoker(UpdateFunction_t1C48B7EECBE47AC123A9D9D7D9D2A9EE951C56C4* __this, const RuntimeMethod* method)
  2833. {
  2834. InvokerActionInvoker1< RuntimeObject* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2);
  2835. }
  2836. IL2CPP_EXTERN_C void DelegatePInvokeWrapper_UpdateFunction_t1C48B7EECBE47AC123A9D9D7D9D2A9EE951C56C4 (UpdateFunction_t1C48B7EECBE47AC123A9D9D7D9D2A9EE951C56C4* __this, const RuntimeMethod* method)
  2837. {
  2838. typedef void (DEFAULT_CALL *PInvokeFunc)();
  2839. PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
  2840. // Native function invocation
  2841. il2cppPInvokeFunc();
  2842. }
  2843. // System.Void UnityEngine.LowLevel.PlayerLoopSystem/UpdateFunction::.ctor(System.Object,System.IntPtr)
  2844. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UpdateFunction__ctor_m0D1D766F22D02176396DA6745A60EA046EE8227B (UpdateFunction_t1C48B7EECBE47AC123A9D9D7D9D2A9EE951C56C4* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
  2845. {
  2846. __this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___1_method);
  2847. __this->___method_3 = ___1_method;
  2848. __this->___m_target_2 = ___0_object;
  2849. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___0_object);
  2850. int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
  2851. __this->___method_code_6 = (intptr_t)__this;
  2852. if (MethodIsStatic((RuntimeMethod*)___1_method))
  2853. {
  2854. bool isOpen = parameterCount == 0;
  2855. if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___1_method))
  2856. if (isOpen)
  2857. __this->___invoke_impl_1 = (intptr_t)&UpdateFunction_Invoke_m9BCEE4E5BEE924EB804DA64314B78D0E831C179B_OpenStaticInvoker;
  2858. else
  2859. __this->___invoke_impl_1 = (intptr_t)&UpdateFunction_Invoke_m9BCEE4E5BEE924EB804DA64314B78D0E831C179B_ClosedStaticInvoker;
  2860. else
  2861. if (isOpen)
  2862. __this->___invoke_impl_1 = (intptr_t)&UpdateFunction_Invoke_m9BCEE4E5BEE924EB804DA64314B78D0E831C179B_OpenStatic;
  2863. else
  2864. {
  2865. __this->___invoke_impl_1 = (intptr_t)__this->___method_ptr_0;
  2866. __this->___method_code_6 = (intptr_t)__this->___m_target_2;
  2867. }
  2868. }
  2869. else
  2870. {
  2871. if (___0_object == NULL)
  2872. il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
  2873. __this->___invoke_impl_1 = (intptr_t)__this->___method_ptr_0;
  2874. __this->___method_code_6 = (intptr_t)__this->___m_target_2;
  2875. }
  2876. __this->___extra_arg_5 = (intptr_t)&UpdateFunction_Invoke_m9BCEE4E5BEE924EB804DA64314B78D0E831C179B_Multicast;
  2877. }
  2878. // System.Void UnityEngine.LowLevel.PlayerLoopSystem/UpdateFunction::Invoke()
  2879. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UpdateFunction_Invoke_m9BCEE4E5BEE924EB804DA64314B78D0E831C179B (UpdateFunction_t1C48B7EECBE47AC123A9D9D7D9D2A9EE951C56C4* __this, const RuntimeMethod* method)
  2880. {
  2881. typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
  2882. ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
  2883. }
  2884. #ifdef __clang__
  2885. #pragma clang diagnostic pop
  2886. #endif
  2887. #ifdef __clang__
  2888. #pragma clang diagnostic push
  2889. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2890. #pragma clang diagnostic ignored "-Wunused-variable"
  2891. #endif
  2892. #ifdef __clang__
  2893. #pragma clang diagnostic pop
  2894. #endif
  2895. #ifdef __clang__
  2896. #pragma clang diagnostic push
  2897. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2898. #pragma clang diagnostic ignored "-Wunused-variable"
  2899. #endif
  2900. #ifdef __clang__
  2901. #pragma clang diagnostic pop
  2902. #endif
  2903. #ifdef __clang__
  2904. #pragma clang diagnostic push
  2905. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2906. #pragma clang diagnostic ignored "-Wunused-variable"
  2907. #endif
  2908. #ifdef __clang__
  2909. #pragma clang diagnostic pop
  2910. #endif
  2911. #ifdef __clang__
  2912. #pragma clang diagnostic push
  2913. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2914. #pragma clang diagnostic ignored "-Wunused-variable"
  2915. #endif
  2916. #ifdef __clang__
  2917. #pragma clang diagnostic pop
  2918. #endif
  2919. #ifdef __clang__
  2920. #pragma clang diagnostic push
  2921. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2922. #pragma clang diagnostic ignored "-Wunused-variable"
  2923. #endif
  2924. #ifdef __clang__
  2925. #pragma clang diagnostic pop
  2926. #endif
  2927. #ifdef __clang__
  2928. #pragma clang diagnostic push
  2929. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2930. #pragma clang diagnostic ignored "-Wunused-variable"
  2931. #endif
  2932. #ifdef __clang__
  2933. #pragma clang diagnostic pop
  2934. #endif
  2935. #ifdef __clang__
  2936. #pragma clang diagnostic push
  2937. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2938. #pragma clang diagnostic ignored "-Wunused-variable"
  2939. #endif
  2940. #ifdef __clang__
  2941. #pragma clang diagnostic pop
  2942. #endif
  2943. #ifdef __clang__
  2944. #pragma clang diagnostic push
  2945. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2946. #pragma clang diagnostic ignored "-Wunused-variable"
  2947. #endif
  2948. #ifdef __clang__
  2949. #pragma clang diagnostic pop
  2950. #endif
  2951. #ifdef __clang__
  2952. #pragma clang diagnostic push
  2953. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2954. #pragma clang diagnostic ignored "-Wunused-variable"
  2955. #endif
  2956. #ifdef __clang__
  2957. #pragma clang diagnostic pop
  2958. #endif
  2959. #ifdef __clang__
  2960. #pragma clang diagnostic push
  2961. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2962. #pragma clang diagnostic ignored "-Wunused-variable"
  2963. #endif
  2964. #ifdef __clang__
  2965. #pragma clang diagnostic pop
  2966. #endif
  2967. #ifdef __clang__
  2968. #pragma clang diagnostic push
  2969. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2970. #pragma clang diagnostic ignored "-Wunused-variable"
  2971. #endif
  2972. #ifdef __clang__
  2973. #pragma clang diagnostic pop
  2974. #endif
  2975. #ifdef __clang__
  2976. #pragma clang diagnostic push
  2977. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2978. #pragma clang diagnostic ignored "-Wunused-variable"
  2979. #endif
  2980. #ifdef __clang__
  2981. #pragma clang diagnostic pop
  2982. #endif
  2983. #ifdef __clang__
  2984. #pragma clang diagnostic push
  2985. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2986. #pragma clang diagnostic ignored "-Wunused-variable"
  2987. #endif
  2988. #ifdef __clang__
  2989. #pragma clang diagnostic pop
  2990. #endif
  2991. #ifdef __clang__
  2992. #pragma clang diagnostic push
  2993. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2994. #pragma clang diagnostic ignored "-Wunused-variable"
  2995. #endif
  2996. #ifdef __clang__
  2997. #pragma clang diagnostic pop
  2998. #endif
  2999. #ifdef __clang__
  3000. #pragma clang diagnostic push
  3001. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3002. #pragma clang diagnostic ignored "-Wunused-variable"
  3003. #endif
  3004. #ifdef __clang__
  3005. #pragma clang diagnostic pop
  3006. #endif
  3007. #ifdef __clang__
  3008. #pragma clang diagnostic push
  3009. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3010. #pragma clang diagnostic ignored "-Wunused-variable"
  3011. #endif
  3012. #ifdef __clang__
  3013. #pragma clang diagnostic pop
  3014. #endif
  3015. #ifdef __clang__
  3016. #pragma clang diagnostic push
  3017. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3018. #pragma clang diagnostic ignored "-Wunused-variable"
  3019. #endif
  3020. #ifdef __clang__
  3021. #pragma clang diagnostic pop
  3022. #endif
  3023. #ifdef __clang__
  3024. #pragma clang diagnostic push
  3025. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3026. #pragma clang diagnostic ignored "-Wunused-variable"
  3027. #endif
  3028. #ifdef __clang__
  3029. #pragma clang diagnostic pop
  3030. #endif
  3031. #ifdef __clang__
  3032. #pragma clang diagnostic push
  3033. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3034. #pragma clang diagnostic ignored "-Wunused-variable"
  3035. #endif
  3036. #ifdef __clang__
  3037. #pragma clang diagnostic pop
  3038. #endif
  3039. #ifdef __clang__
  3040. #pragma clang diagnostic push
  3041. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3042. #pragma clang diagnostic ignored "-Wunused-variable"
  3043. #endif
  3044. #ifdef __clang__
  3045. #pragma clang diagnostic pop
  3046. #endif
  3047. #ifdef __clang__
  3048. #pragma clang diagnostic push
  3049. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3050. #pragma clang diagnostic ignored "-Wunused-variable"
  3051. #endif
  3052. #ifdef __clang__
  3053. #pragma clang diagnostic pop
  3054. #endif
  3055. #ifdef __clang__
  3056. #pragma clang diagnostic push
  3057. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3058. #pragma clang diagnostic ignored "-Wunused-variable"
  3059. #endif
  3060. #ifdef __clang__
  3061. #pragma clang diagnostic pop
  3062. #endif
  3063. #ifdef __clang__
  3064. #pragma clang diagnostic push
  3065. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3066. #pragma clang diagnostic ignored "-Wunused-variable"
  3067. #endif
  3068. #ifdef __clang__
  3069. #pragma clang diagnostic pop
  3070. #endif
  3071. #ifdef __clang__
  3072. #pragma clang diagnostic push
  3073. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3074. #pragma clang diagnostic ignored "-Wunused-variable"
  3075. #endif
  3076. #ifdef __clang__
  3077. #pragma clang diagnostic pop
  3078. #endif
  3079. #ifdef __clang__
  3080. #pragma clang diagnostic push
  3081. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3082. #pragma clang diagnostic ignored "-Wunused-variable"
  3083. #endif
  3084. #ifdef __clang__
  3085. #pragma clang diagnostic pop
  3086. #endif
  3087. #ifdef __clang__
  3088. #pragma clang diagnostic push
  3089. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3090. #pragma clang diagnostic ignored "-Wunused-variable"
  3091. #endif
  3092. #ifdef __clang__
  3093. #pragma clang diagnostic pop
  3094. #endif
  3095. #ifdef __clang__
  3096. #pragma clang diagnostic push
  3097. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3098. #pragma clang diagnostic ignored "-Wunused-variable"
  3099. #endif
  3100. #ifdef __clang__
  3101. #pragma clang diagnostic pop
  3102. #endif
  3103. #ifdef __clang__
  3104. #pragma clang diagnostic push
  3105. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3106. #pragma clang diagnostic ignored "-Wunused-variable"
  3107. #endif
  3108. #ifdef __clang__
  3109. #pragma clang diagnostic pop
  3110. #endif
  3111. #ifdef __clang__
  3112. #pragma clang diagnostic push
  3113. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3114. #pragma clang diagnostic ignored "-Wunused-variable"
  3115. #endif
  3116. #ifdef __clang__
  3117. #pragma clang diagnostic pop
  3118. #endif
  3119. #ifdef __clang__
  3120. #pragma clang diagnostic push
  3121. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3122. #pragma clang diagnostic ignored "-Wunused-variable"
  3123. #endif
  3124. #ifdef __clang__
  3125. #pragma clang diagnostic pop
  3126. #endif
  3127. #ifdef __clang__
  3128. #pragma clang diagnostic push
  3129. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3130. #pragma clang diagnostic ignored "-Wunused-variable"
  3131. #endif
  3132. #ifdef __clang__
  3133. #pragma clang diagnostic pop
  3134. #endif
  3135. #ifdef __clang__
  3136. #pragma clang diagnostic push
  3137. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3138. #pragma clang diagnostic ignored "-Wunused-variable"
  3139. #endif
  3140. #ifdef __clang__
  3141. #pragma clang diagnostic pop
  3142. #endif
  3143. #ifdef __clang__
  3144. #pragma clang diagnostic push
  3145. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3146. #pragma clang diagnostic ignored "-Wunused-variable"
  3147. #endif
  3148. #ifdef __clang__
  3149. #pragma clang diagnostic pop
  3150. #endif
  3151. #ifdef __clang__
  3152. #pragma clang diagnostic push
  3153. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3154. #pragma clang diagnostic ignored "-Wunused-variable"
  3155. #endif
  3156. #ifdef __clang__
  3157. #pragma clang diagnostic pop
  3158. #endif
  3159. #ifdef __clang__
  3160. #pragma clang diagnostic push
  3161. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3162. #pragma clang diagnostic ignored "-Wunused-variable"
  3163. #endif
  3164. #ifdef __clang__
  3165. #pragma clang diagnostic pop
  3166. #endif
  3167. #ifdef __clang__
  3168. #pragma clang diagnostic push
  3169. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3170. #pragma clang diagnostic ignored "-Wunused-variable"
  3171. #endif
  3172. #ifdef __clang__
  3173. #pragma clang diagnostic pop
  3174. #endif
  3175. #ifdef __clang__
  3176. #pragma clang diagnostic push
  3177. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3178. #pragma clang diagnostic ignored "-Wunused-variable"
  3179. #endif
  3180. #ifdef __clang__
  3181. #pragma clang diagnostic pop
  3182. #endif
  3183. #ifdef __clang__
  3184. #pragma clang diagnostic push
  3185. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3186. #pragma clang diagnostic ignored "-Wunused-variable"
  3187. #endif
  3188. #ifdef __clang__
  3189. #pragma clang diagnostic pop
  3190. #endif
  3191. #ifdef __clang__
  3192. #pragma clang diagnostic push
  3193. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3194. #pragma clang diagnostic ignored "-Wunused-variable"
  3195. #endif
  3196. #ifdef __clang__
  3197. #pragma clang diagnostic pop
  3198. #endif
  3199. #ifdef __clang__
  3200. #pragma clang diagnostic push
  3201. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3202. #pragma clang diagnostic ignored "-Wunused-variable"
  3203. #endif
  3204. #ifdef __clang__
  3205. #pragma clang diagnostic pop
  3206. #endif
  3207. #ifdef __clang__
  3208. #pragma clang diagnostic push
  3209. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3210. #pragma clang diagnostic ignored "-Wunused-variable"
  3211. #endif
  3212. #ifdef __clang__
  3213. #pragma clang diagnostic pop
  3214. #endif
  3215. #ifdef __clang__
  3216. #pragma clang diagnostic push
  3217. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3218. #pragma clang diagnostic ignored "-Wunused-variable"
  3219. #endif
  3220. #ifdef __clang__
  3221. #pragma clang diagnostic pop
  3222. #endif
  3223. #ifdef __clang__
  3224. #pragma clang diagnostic push
  3225. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3226. #pragma clang diagnostic ignored "-Wunused-variable"
  3227. #endif
  3228. #ifdef __clang__
  3229. #pragma clang diagnostic pop
  3230. #endif
  3231. #ifdef __clang__
  3232. #pragma clang diagnostic push
  3233. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3234. #pragma clang diagnostic ignored "-Wunused-variable"
  3235. #endif
  3236. #ifdef __clang__
  3237. #pragma clang diagnostic pop
  3238. #endif
  3239. #ifdef __clang__
  3240. #pragma clang diagnostic push
  3241. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3242. #pragma clang diagnostic ignored "-Wunused-variable"
  3243. #endif
  3244. #ifdef __clang__
  3245. #pragma clang diagnostic pop
  3246. #endif
  3247. #ifdef __clang__
  3248. #pragma clang diagnostic push
  3249. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3250. #pragma clang diagnostic ignored "-Wunused-variable"
  3251. #endif
  3252. #ifdef __clang__
  3253. #pragma clang diagnostic pop
  3254. #endif
  3255. #ifdef __clang__
  3256. #pragma clang diagnostic push
  3257. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3258. #pragma clang diagnostic ignored "-Wunused-variable"
  3259. #endif
  3260. #ifdef __clang__
  3261. #pragma clang diagnostic pop
  3262. #endif
  3263. #ifdef __clang__
  3264. #pragma clang diagnostic push
  3265. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3266. #pragma clang diagnostic ignored "-Wunused-variable"
  3267. #endif
  3268. #ifdef __clang__
  3269. #pragma clang diagnostic pop
  3270. #endif
  3271. #ifdef __clang__
  3272. #pragma clang diagnostic push
  3273. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3274. #pragma clang diagnostic ignored "-Wunused-variable"
  3275. #endif
  3276. #ifdef __clang__
  3277. #pragma clang diagnostic pop
  3278. #endif
  3279. #ifdef __clang__
  3280. #pragma clang diagnostic push
  3281. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3282. #pragma clang diagnostic ignored "-Wunused-variable"
  3283. #endif
  3284. #ifdef __clang__
  3285. #pragma clang diagnostic pop
  3286. #endif
  3287. #ifdef __clang__
  3288. #pragma clang diagnostic push
  3289. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3290. #pragma clang diagnostic ignored "-Wunused-variable"
  3291. #endif
  3292. #ifdef __clang__
  3293. #pragma clang diagnostic pop
  3294. #endif
  3295. #ifdef __clang__
  3296. #pragma clang diagnostic push
  3297. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3298. #pragma clang diagnostic ignored "-Wunused-variable"
  3299. #endif
  3300. #ifdef __clang__
  3301. #pragma clang diagnostic pop
  3302. #endif
  3303. #ifdef __clang__
  3304. #pragma clang diagnostic push
  3305. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3306. #pragma clang diagnostic ignored "-Wunused-variable"
  3307. #endif
  3308. #ifdef __clang__
  3309. #pragma clang diagnostic pop
  3310. #endif
  3311. #ifdef __clang__
  3312. #pragma clang diagnostic push
  3313. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3314. #pragma clang diagnostic ignored "-Wunused-variable"
  3315. #endif
  3316. #ifdef __clang__
  3317. #pragma clang diagnostic pop
  3318. #endif
  3319. #ifdef __clang__
  3320. #pragma clang diagnostic push
  3321. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3322. #pragma clang diagnostic ignored "-Wunused-variable"
  3323. #endif
  3324. #ifdef __clang__
  3325. #pragma clang diagnostic pop
  3326. #endif
  3327. #ifdef __clang__
  3328. #pragma clang diagnostic push
  3329. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3330. #pragma clang diagnostic ignored "-Wunused-variable"
  3331. #endif
  3332. #ifdef __clang__
  3333. #pragma clang diagnostic pop
  3334. #endif
  3335. #ifdef __clang__
  3336. #pragma clang diagnostic push
  3337. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3338. #pragma clang diagnostic ignored "-Wunused-variable"
  3339. #endif
  3340. #ifdef __clang__
  3341. #pragma clang diagnostic pop
  3342. #endif
  3343. #ifdef __clang__
  3344. #pragma clang diagnostic push
  3345. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3346. #pragma clang diagnostic ignored "-Wunused-variable"
  3347. #endif
  3348. #ifdef __clang__
  3349. #pragma clang diagnostic pop
  3350. #endif
  3351. #ifdef __clang__
  3352. #pragma clang diagnostic push
  3353. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3354. #pragma clang diagnostic ignored "-Wunused-variable"
  3355. #endif
  3356. #ifdef __clang__
  3357. #pragma clang diagnostic pop
  3358. #endif
  3359. #ifdef __clang__
  3360. #pragma clang diagnostic push
  3361. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3362. #pragma clang diagnostic ignored "-Wunused-variable"
  3363. #endif
  3364. #ifdef __clang__
  3365. #pragma clang diagnostic pop
  3366. #endif
  3367. #ifdef __clang__
  3368. #pragma clang diagnostic push
  3369. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3370. #pragma clang diagnostic ignored "-Wunused-variable"
  3371. #endif
  3372. #ifdef __clang__
  3373. #pragma clang diagnostic pop
  3374. #endif
  3375. #ifdef __clang__
  3376. #pragma clang diagnostic push
  3377. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3378. #pragma clang diagnostic ignored "-Wunused-variable"
  3379. #endif
  3380. #ifdef __clang__
  3381. #pragma clang diagnostic pop
  3382. #endif
  3383. #ifdef __clang__
  3384. #pragma clang diagnostic push
  3385. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3386. #pragma clang diagnostic ignored "-Wunused-variable"
  3387. #endif
  3388. #ifdef __clang__
  3389. #pragma clang diagnostic pop
  3390. #endif
  3391. #ifdef __clang__
  3392. #pragma clang diagnostic push
  3393. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3394. #pragma clang diagnostic ignored "-Wunused-variable"
  3395. #endif
  3396. #ifdef __clang__
  3397. #pragma clang diagnostic pop
  3398. #endif
  3399. #ifdef __clang__
  3400. #pragma clang diagnostic push
  3401. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3402. #pragma clang diagnostic ignored "-Wunused-variable"
  3403. #endif
  3404. #ifdef __clang__
  3405. #pragma clang diagnostic pop
  3406. #endif
  3407. #ifdef __clang__
  3408. #pragma clang diagnostic push
  3409. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3410. #pragma clang diagnostic ignored "-Wunused-variable"
  3411. #endif
  3412. #ifdef __clang__
  3413. #pragma clang diagnostic pop
  3414. #endif
  3415. #ifdef __clang__
  3416. #pragma clang diagnostic push
  3417. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3418. #pragma clang diagnostic ignored "-Wunused-variable"
  3419. #endif
  3420. #ifdef __clang__
  3421. #pragma clang diagnostic pop
  3422. #endif
  3423. #ifdef __clang__
  3424. #pragma clang diagnostic push
  3425. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3426. #pragma clang diagnostic ignored "-Wunused-variable"
  3427. #endif
  3428. #ifdef __clang__
  3429. #pragma clang diagnostic pop
  3430. #endif
  3431. #ifdef __clang__
  3432. #pragma clang diagnostic push
  3433. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3434. #pragma clang diagnostic ignored "-Wunused-variable"
  3435. #endif
  3436. #ifdef __clang__
  3437. #pragma clang diagnostic pop
  3438. #endif
  3439. #ifdef __clang__
  3440. #pragma clang diagnostic push
  3441. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3442. #pragma clang diagnostic ignored "-Wunused-variable"
  3443. #endif
  3444. #ifdef __clang__
  3445. #pragma clang diagnostic pop
  3446. #endif
  3447. #ifdef __clang__
  3448. #pragma clang diagnostic push
  3449. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3450. #pragma clang diagnostic ignored "-Wunused-variable"
  3451. #endif
  3452. #ifdef __clang__
  3453. #pragma clang diagnostic pop
  3454. #endif
  3455. #ifdef __clang__
  3456. #pragma clang diagnostic push
  3457. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3458. #pragma clang diagnostic ignored "-Wunused-variable"
  3459. #endif
  3460. #ifdef __clang__
  3461. #pragma clang diagnostic pop
  3462. #endif
  3463. #ifdef __clang__
  3464. #pragma clang diagnostic push
  3465. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3466. #pragma clang diagnostic ignored "-Wunused-variable"
  3467. #endif
  3468. #ifdef __clang__
  3469. #pragma clang diagnostic pop
  3470. #endif
  3471. #ifdef __clang__
  3472. #pragma clang diagnostic push
  3473. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3474. #pragma clang diagnostic ignored "-Wunused-variable"
  3475. #endif
  3476. #ifdef __clang__
  3477. #pragma clang diagnostic pop
  3478. #endif
  3479. #ifdef __clang__
  3480. #pragma clang diagnostic push
  3481. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3482. #pragma clang diagnostic ignored "-Wunused-variable"
  3483. #endif
  3484. #ifdef __clang__
  3485. #pragma clang diagnostic pop
  3486. #endif
  3487. #ifdef __clang__
  3488. #pragma clang diagnostic push
  3489. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3490. #pragma clang diagnostic ignored "-Wunused-variable"
  3491. #endif
  3492. #ifdef __clang__
  3493. #pragma clang diagnostic pop
  3494. #endif
  3495. #ifdef __clang__
  3496. #pragma clang diagnostic push
  3497. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3498. #pragma clang diagnostic ignored "-Wunused-variable"
  3499. #endif
  3500. #ifdef __clang__
  3501. #pragma clang diagnostic pop
  3502. #endif
  3503. #ifdef __clang__
  3504. #pragma clang diagnostic push
  3505. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3506. #pragma clang diagnostic ignored "-Wunused-variable"
  3507. #endif
  3508. #ifdef __clang__
  3509. #pragma clang diagnostic pop
  3510. #endif
  3511. #ifdef __clang__
  3512. #pragma clang diagnostic push
  3513. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3514. #pragma clang diagnostic ignored "-Wunused-variable"
  3515. #endif
  3516. #ifdef __clang__
  3517. #pragma clang diagnostic pop
  3518. #endif
  3519. #ifdef __clang__
  3520. #pragma clang diagnostic push
  3521. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3522. #pragma clang diagnostic ignored "-Wunused-variable"
  3523. #endif
  3524. #ifdef __clang__
  3525. #pragma clang diagnostic pop
  3526. #endif
  3527. #ifdef __clang__
  3528. #pragma clang diagnostic push
  3529. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3530. #pragma clang diagnostic ignored "-Wunused-variable"
  3531. #endif
  3532. #ifdef __clang__
  3533. #pragma clang diagnostic pop
  3534. #endif
  3535. #ifdef __clang__
  3536. #pragma clang diagnostic push
  3537. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3538. #pragma clang diagnostic ignored "-Wunused-variable"
  3539. #endif
  3540. #ifdef __clang__
  3541. #pragma clang diagnostic pop
  3542. #endif
  3543. #ifdef __clang__
  3544. #pragma clang diagnostic push
  3545. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3546. #pragma clang diagnostic ignored "-Wunused-variable"
  3547. #endif
  3548. #ifdef __clang__
  3549. #pragma clang diagnostic pop
  3550. #endif
  3551. #ifdef __clang__
  3552. #pragma clang diagnostic push
  3553. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3554. #pragma clang diagnostic ignored "-Wunused-variable"
  3555. #endif
  3556. #ifdef __clang__
  3557. #pragma clang diagnostic pop
  3558. #endif
  3559. #ifdef __clang__
  3560. #pragma clang diagnostic push
  3561. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3562. #pragma clang diagnostic ignored "-Wunused-variable"
  3563. #endif
  3564. #ifdef __clang__
  3565. #pragma clang diagnostic pop
  3566. #endif
  3567. #ifdef __clang__
  3568. #pragma clang diagnostic push
  3569. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3570. #pragma clang diagnostic ignored "-Wunused-variable"
  3571. #endif
  3572. #ifdef __clang__
  3573. #pragma clang diagnostic pop
  3574. #endif
  3575. #ifdef __clang__
  3576. #pragma clang diagnostic push
  3577. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3578. #pragma clang diagnostic ignored "-Wunused-variable"
  3579. #endif
  3580. #ifdef __clang__
  3581. #pragma clang diagnostic pop
  3582. #endif
  3583. #ifdef __clang__
  3584. #pragma clang diagnostic push
  3585. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3586. #pragma clang diagnostic ignored "-Wunused-variable"
  3587. #endif
  3588. #ifdef __clang__
  3589. #pragma clang diagnostic pop
  3590. #endif
  3591. #ifdef __clang__
  3592. #pragma clang diagnostic push
  3593. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3594. #pragma clang diagnostic ignored "-Wunused-variable"
  3595. #endif
  3596. #ifdef __clang__
  3597. #pragma clang diagnostic pop
  3598. #endif
  3599. #ifdef __clang__
  3600. #pragma clang diagnostic push
  3601. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3602. #pragma clang diagnostic ignored "-Wunused-variable"
  3603. #endif
  3604. #ifdef __clang__
  3605. #pragma clang diagnostic pop
  3606. #endif
  3607. #ifdef __clang__
  3608. #pragma clang diagnostic push
  3609. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3610. #pragma clang diagnostic ignored "-Wunused-variable"
  3611. #endif
  3612. #ifdef __clang__
  3613. #pragma clang diagnostic pop
  3614. #endif
  3615. #ifdef __clang__
  3616. #pragma clang diagnostic push
  3617. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3618. #pragma clang diagnostic ignored "-Wunused-variable"
  3619. #endif
  3620. #ifdef __clang__
  3621. #pragma clang diagnostic pop
  3622. #endif
  3623. #ifdef __clang__
  3624. #pragma clang diagnostic push
  3625. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3626. #pragma clang diagnostic ignored "-Wunused-variable"
  3627. #endif
  3628. #ifdef __clang__
  3629. #pragma clang diagnostic pop
  3630. #endif
  3631. #ifdef __clang__
  3632. #pragma clang diagnostic push
  3633. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3634. #pragma clang diagnostic ignored "-Wunused-variable"
  3635. #endif
  3636. #ifdef __clang__
  3637. #pragma clang diagnostic pop
  3638. #endif
  3639. #ifdef __clang__
  3640. #pragma clang diagnostic push
  3641. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3642. #pragma clang diagnostic ignored "-Wunused-variable"
  3643. #endif
  3644. #ifdef __clang__
  3645. #pragma clang diagnostic pop
  3646. #endif
  3647. #ifdef __clang__
  3648. #pragma clang diagnostic push
  3649. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3650. #pragma clang diagnostic ignored "-Wunused-variable"
  3651. #endif
  3652. #ifdef __clang__
  3653. #pragma clang diagnostic pop
  3654. #endif
  3655. #ifdef __clang__
  3656. #pragma clang diagnostic push
  3657. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3658. #pragma clang diagnostic ignored "-Wunused-variable"
  3659. #endif
  3660. #ifdef __clang__
  3661. #pragma clang diagnostic pop
  3662. #endif
  3663. #ifdef __clang__
  3664. #pragma clang diagnostic push
  3665. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3666. #pragma clang diagnostic ignored "-Wunused-variable"
  3667. #endif
  3668. #ifdef __clang__
  3669. #pragma clang diagnostic pop
  3670. #endif
  3671. #ifdef __clang__
  3672. #pragma clang diagnostic push
  3673. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3674. #pragma clang diagnostic ignored "-Wunused-variable"
  3675. #endif
  3676. #ifdef __clang__
  3677. #pragma clang diagnostic pop
  3678. #endif
  3679. #ifdef __clang__
  3680. #pragma clang diagnostic push
  3681. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3682. #pragma clang diagnostic ignored "-Wunused-variable"
  3683. #endif
  3684. #ifdef __clang__
  3685. #pragma clang diagnostic pop
  3686. #endif
  3687. #ifdef __clang__
  3688. #pragma clang diagnostic push
  3689. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3690. #pragma clang diagnostic ignored "-Wunused-variable"
  3691. #endif
  3692. #ifdef __clang__
  3693. #pragma clang diagnostic pop
  3694. #endif
  3695. #ifdef __clang__
  3696. #pragma clang diagnostic push
  3697. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3698. #pragma clang diagnostic ignored "-Wunused-variable"
  3699. #endif
  3700. #ifdef __clang__
  3701. #pragma clang diagnostic pop
  3702. #endif
  3703. #ifdef __clang__
  3704. #pragma clang diagnostic push
  3705. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3706. #pragma clang diagnostic ignored "-Wunused-variable"
  3707. #endif
  3708. #ifdef __clang__
  3709. #pragma clang diagnostic pop
  3710. #endif
  3711. #ifdef __clang__
  3712. #pragma clang diagnostic push
  3713. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3714. #pragma clang diagnostic ignored "-Wunused-variable"
  3715. #endif
  3716. #ifdef __clang__
  3717. #pragma clang diagnostic pop
  3718. #endif
  3719. #ifdef __clang__
  3720. #pragma clang diagnostic push
  3721. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3722. #pragma clang diagnostic ignored "-Wunused-variable"
  3723. #endif
  3724. #ifdef __clang__
  3725. #pragma clang diagnostic pop
  3726. #endif
  3727. #ifdef __clang__
  3728. #pragma clang diagnostic push
  3729. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3730. #pragma clang diagnostic ignored "-Wunused-variable"
  3731. #endif
  3732. #ifdef __clang__
  3733. #pragma clang diagnostic pop
  3734. #endif
  3735. #ifdef __clang__
  3736. #pragma clang diagnostic push
  3737. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3738. #pragma clang diagnostic ignored "-Wunused-variable"
  3739. #endif
  3740. #ifdef __clang__
  3741. #pragma clang diagnostic pop
  3742. #endif
  3743. #ifdef __clang__
  3744. #pragma clang diagnostic push
  3745. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3746. #pragma clang diagnostic ignored "-Wunused-variable"
  3747. #endif
  3748. #ifdef __clang__
  3749. #pragma clang diagnostic pop
  3750. #endif
  3751. #ifdef __clang__
  3752. #pragma clang diagnostic push
  3753. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3754. #pragma clang diagnostic ignored "-Wunused-variable"
  3755. #endif
  3756. #ifdef __clang__
  3757. #pragma clang diagnostic pop
  3758. #endif
  3759. #ifdef __clang__
  3760. #pragma clang diagnostic push
  3761. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3762. #pragma clang diagnostic ignored "-Wunused-variable"
  3763. #endif
  3764. #ifdef __clang__
  3765. #pragma clang diagnostic pop
  3766. #endif
  3767. #ifdef __clang__
  3768. #pragma clang diagnostic push
  3769. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3770. #pragma clang diagnostic ignored "-Wunused-variable"
  3771. #endif
  3772. #ifdef __clang__
  3773. #pragma clang diagnostic pop
  3774. #endif
  3775. #ifdef __clang__
  3776. #pragma clang diagnostic push
  3777. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3778. #pragma clang diagnostic ignored "-Wunused-variable"
  3779. #endif
  3780. #ifdef __clang__
  3781. #pragma clang diagnostic pop
  3782. #endif
  3783. #ifdef __clang__
  3784. #pragma clang diagnostic push
  3785. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3786. #pragma clang diagnostic ignored "-Wunused-variable"
  3787. #endif
  3788. #ifdef __clang__
  3789. #pragma clang diagnostic pop
  3790. #endif
  3791. #ifdef __clang__
  3792. #pragma clang diagnostic push
  3793. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3794. #pragma clang diagnostic ignored "-Wunused-variable"
  3795. #endif
  3796. #ifdef __clang__
  3797. #pragma clang diagnostic pop
  3798. #endif
  3799. #ifdef __clang__
  3800. #pragma clang diagnostic push
  3801. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3802. #pragma clang diagnostic ignored "-Wunused-variable"
  3803. #endif
  3804. #ifdef __clang__
  3805. #pragma clang diagnostic pop
  3806. #endif
  3807. #ifdef __clang__
  3808. #pragma clang diagnostic push
  3809. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3810. #pragma clang diagnostic ignored "-Wunused-variable"
  3811. #endif
  3812. #ifdef __clang__
  3813. #pragma clang diagnostic pop
  3814. #endif
  3815. #ifdef __clang__
  3816. #pragma clang diagnostic push
  3817. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3818. #pragma clang diagnostic ignored "-Wunused-variable"
  3819. #endif
  3820. #ifdef __clang__
  3821. #pragma clang diagnostic pop
  3822. #endif
  3823. #ifdef __clang__
  3824. #pragma clang diagnostic push
  3825. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3826. #pragma clang diagnostic ignored "-Wunused-variable"
  3827. #endif
  3828. #ifdef __clang__
  3829. #pragma clang diagnostic pop
  3830. #endif
  3831. #ifdef __clang__
  3832. #pragma clang diagnostic push
  3833. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3834. #pragma clang diagnostic ignored "-Wunused-variable"
  3835. #endif
  3836. #ifdef __clang__
  3837. #pragma clang diagnostic pop
  3838. #endif
  3839. #ifdef __clang__
  3840. #pragma clang diagnostic push
  3841. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3842. #pragma clang diagnostic ignored "-Wunused-variable"
  3843. #endif
  3844. #ifdef __clang__
  3845. #pragma clang diagnostic pop
  3846. #endif
  3847. #ifdef __clang__
  3848. #pragma clang diagnostic push
  3849. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3850. #pragma clang diagnostic ignored "-Wunused-variable"
  3851. #endif
  3852. #ifdef __clang__
  3853. #pragma clang diagnostic pop
  3854. #endif
  3855. #ifdef __clang__
  3856. #pragma clang diagnostic push
  3857. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3858. #pragma clang diagnostic ignored "-Wunused-variable"
  3859. #endif
  3860. #ifdef __clang__
  3861. #pragma clang diagnostic pop
  3862. #endif
  3863. #ifdef __clang__
  3864. #pragma clang diagnostic push
  3865. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3866. #pragma clang diagnostic ignored "-Wunused-variable"
  3867. #endif
  3868. #ifdef __clang__
  3869. #pragma clang diagnostic pop
  3870. #endif
  3871. #ifdef __clang__
  3872. #pragma clang diagnostic push
  3873. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3874. #pragma clang diagnostic ignored "-Wunused-variable"
  3875. #endif
  3876. #ifdef __clang__
  3877. #pragma clang diagnostic pop
  3878. #endif
  3879. #ifdef __clang__
  3880. #pragma clang diagnostic push
  3881. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3882. #pragma clang diagnostic ignored "-Wunused-variable"
  3883. #endif
  3884. #ifdef __clang__
  3885. #pragma clang diagnostic pop
  3886. #endif
  3887. #ifdef __clang__
  3888. #pragma clang diagnostic push
  3889. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3890. #pragma clang diagnostic ignored "-Wunused-variable"
  3891. #endif
  3892. #ifdef __clang__
  3893. #pragma clang diagnostic pop
  3894. #endif
  3895. #ifdef __clang__
  3896. #pragma clang diagnostic push
  3897. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3898. #pragma clang diagnostic ignored "-Wunused-variable"
  3899. #endif
  3900. #ifdef __clang__
  3901. #pragma clang diagnostic pop
  3902. #endif
  3903. #ifdef __clang__
  3904. #pragma clang diagnostic push
  3905. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3906. #pragma clang diagnostic ignored "-Wunused-variable"
  3907. #endif
  3908. #ifdef __clang__
  3909. #pragma clang diagnostic pop
  3910. #endif
  3911. #ifdef __clang__
  3912. #pragma clang diagnostic push
  3913. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3914. #pragma clang diagnostic ignored "-Wunused-variable"
  3915. #endif
  3916. #ifdef __clang__
  3917. #pragma clang diagnostic pop
  3918. #endif
  3919. #ifdef __clang__
  3920. #pragma clang diagnostic push
  3921. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3922. #pragma clang diagnostic ignored "-Wunused-variable"
  3923. #endif
  3924. #ifdef __clang__
  3925. #pragma clang diagnostic pop
  3926. #endif
  3927. #ifdef __clang__
  3928. #pragma clang diagnostic push
  3929. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3930. #pragma clang diagnostic ignored "-Wunused-variable"
  3931. #endif
  3932. #ifdef __clang__
  3933. #pragma clang diagnostic pop
  3934. #endif
  3935. #ifdef __clang__
  3936. #pragma clang diagnostic push
  3937. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3938. #pragma clang diagnostic ignored "-Wunused-variable"
  3939. #endif
  3940. #ifdef __clang__
  3941. #pragma clang diagnostic pop
  3942. #endif
  3943. #ifdef __clang__
  3944. #pragma clang diagnostic push
  3945. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3946. #pragma clang diagnostic ignored "-Wunused-variable"
  3947. #endif
  3948. #ifdef __clang__
  3949. #pragma clang diagnostic pop
  3950. #endif
  3951. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
  3952. {
  3953. {
  3954. int32_t L_0 = (int32_t)__this->____size_2;
  3955. return L_0;
  3956. }
  3957. }