Bulk_UnityEngine.IMGUIModule_0.cpp 577 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056140571405814059140601406114062140631406414065140661406714068140691407014071140721407314074140751407614077140781407914080140811408214083140841408514086140871408814089140901409114092140931409414095140961409714098140991410014101141021410314104141051410614107141081410914110141111411214113141141411514116141171411814119141201412114122141231412414125141261412714128141291413014131141321413314134141351413614137141381413914140141411414214143141441414514146141471414814149141501415114152141531415414155141561415714158141591416014161141621416314164141651416614167141681416914170141711417214173141741417514176141771417814179141801418114182141831418414185141861418714188141891419014191141921419314194141951419614197141981419914200142011420214203142041420514206142071420814209142101421114212142131421414215142161421714218142191422014221142221422314224142251422614227142281422914230142311423214233142341423514236142371423814239142401424114242142431424414245142461424714248142491425014251142521425314254142551425614257142581425914260142611426214263142641426514266142671426814269142701427114272142731427414275142761427714278142791428014281142821428314284142851428614287142881428914290142911429214293142941429514296142971429814299143001430114302143031430414305143061430714308143091431014311143121431314314143151431614317143181431914320143211432214323143241432514326143271432814329143301433114332143331433414335143361433714338143391434014341143421434314344143451434614347143481434914350143511435214353143541435514356143571435814359143601436114362143631436414365143661436714368143691437014371143721437314374143751437614377143781437914380143811438214383143841438514386143871438814389143901439114392143931439414395143961439714398143991440014401144021440314404144051440614407144081440914410144111441214413144141441514416144171441814419144201442114422144231442414425144261442714428144291443014431144321443314434144351443614437144381443914440144411444214443144441444514446144471444814449144501445114452144531445414455144561445714458144591446014461144621446314464144651446614467144681446914470144711447214473144741447514476144771447814479144801448114482144831448414485144861448714488144891449014491144921449314494144951449614497144981449914500145011450214503145041450514506145071450814509145101451114512145131451414515145161451714518145191452014521145221452314524145251452614527145281452914530145311453214533145341453514536145371453814539145401454114542145431454414545145461454714548145491455014551145521455314554145551455614557145581455914560145611456214563145641456514566145671456814569145701457114572145731457414575145761457714578145791458014581145821458314584145851458614587145881458914590145911459214593145941459514596145971459814599146001460114602146031460414605146061460714608146091461014611146121461314614146151461614617146181461914620146211462214623146241462514626146271462814629146301463114632146331463414635146361463714638146391464014641146421464314644146451464614647146481464914650146511465214653146541465514656146571465814659146601466114662146631466414665146661466714668146691467014671146721467314674146751467614677146781467914680146811468214683146841468514686146871468814689146901469114692146931469414695146961469714698146991470014701147021470314704147051470614707147081470914710147111471214713147141471514716147171471814719147201472114722147231472414725147261472714728147291473014731147321473314734147351473614737147381473914740147411474214743147441474514746147471474814749147501475114752147531475414755147561475714758147591476014761147621476314764147651476614767147681476914770147711477214773147741477514776147771477814779147801478114782147831478414785147861478714788147891479014791147921479314794147951479614797147981479914800148011480214803
  1. #include "il2cpp-config.h"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <cstring>
  8. #include <string.h>
  9. #include <stdio.h>
  10. #include <cmath>
  11. #include <limits>
  12. #include <assert.h>
  13. #include <stdint.h>
  14. #include "il2cpp-class-internals.h"
  15. #include "codegen/il2cpp-codegen.h"
  16. #include "il2cpp-object-internals.h"
  17. template <typename R>
  18. struct VirtFuncInvoker0
  19. {
  20. typedef R (*Func)(void*, const RuntimeMethod*);
  21. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
  22. {
  23. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  24. return ((Func)invokeData.methodPtr)(obj, invokeData.method);
  25. }
  26. };
  27. template <typename T1>
  28. struct VirtActionInvoker1
  29. {
  30. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  31. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  32. {
  33. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  34. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  35. }
  36. };
  37. struct VirtActionInvoker0
  38. {
  39. typedef void (*Action)(void*, const RuntimeMethod*);
  40. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
  41. {
  42. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  43. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  44. }
  45. };
  46. template <typename T1, typename T2>
  47. struct VirtActionInvoker2
  48. {
  49. typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
  50. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
  51. {
  52. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  53. ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
  54. }
  55. };
  56. template <typename R, typename T1>
  57. struct VirtFuncInvoker1
  58. {
  59. typedef R (*Func)(void*, T1, const RuntimeMethod*);
  60. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  61. {
  62. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  63. return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
  64. }
  65. };
  66. template <typename T1>
  67. struct GenericVirtActionInvoker1
  68. {
  69. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  70. static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
  71. {
  72. VirtualInvokeData invokeData;
  73. il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
  74. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  75. }
  76. };
  77. struct GenericVirtActionInvoker0
  78. {
  79. typedef void (*Action)(void*, const RuntimeMethod*);
  80. static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
  81. {
  82. VirtualInvokeData invokeData;
  83. il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
  84. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  85. }
  86. };
  87. template <typename T1>
  88. struct InterfaceActionInvoker1
  89. {
  90. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  91. static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
  92. {
  93. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  94. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  95. }
  96. };
  97. struct InterfaceActionInvoker0
  98. {
  99. typedef void (*Action)(void*, const RuntimeMethod*);
  100. static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
  101. {
  102. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  103. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  104. }
  105. };
  106. template <typename T1>
  107. struct GenericInterfaceActionInvoker1
  108. {
  109. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  110. static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
  111. {
  112. VirtualInvokeData invokeData;
  113. il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
  114. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  115. }
  116. };
  117. struct GenericInterfaceActionInvoker0
  118. {
  119. typedef void (*Action)(void*, const RuntimeMethod*);
  120. static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
  121. {
  122. VirtualInvokeData invokeData;
  123. il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
  124. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  125. }
  126. };
  127. // UnityEngine.Event
  128. struct Event_t2956885303;
  129. // System.String
  130. struct String_t;
  131. // System.Type
  132. struct Type_t;
  133. // System.Object[]
  134. struct ObjectU5BU5D_t2843939325;
  135. // UnityEngineInternal.GenericStack
  136. struct GenericStack_t1310059385;
  137. // UnityEngine.GUIContent
  138. struct GUIContent_t3050628031;
  139. // UnityEngine.GUISkin
  140. struct GUISkin_t1244372282;
  141. // UnityEngine.Object
  142. struct Object_t631007953;
  143. // UnityEngine.GUIStyle
  144. struct GUIStyle_t3956901511;
  145. // UnityEngine.GUI/WindowFunction
  146. struct WindowFunction_t3146511083;
  147. // UnityEngine.GUILayoutUtility/LayoutCache
  148. struct LayoutCache_t78309876;
  149. // UnityEngine.GUILayoutOption
  150. struct GUILayoutOption_t811797299;
  151. // UnityEngine.GUILayoutOption[]
  152. struct GUILayoutOptionU5BU5D_t2510215842;
  153. // System.IAsyncResult
  154. struct IAsyncResult_t767004451;
  155. // System.AsyncCallback
  156. struct AsyncCallback_t3962456242;
  157. // UnityEngine.Texture
  158. struct Texture_t3661962703;
  159. // UnityEngine.GUILayoutEntry
  160. struct GUILayoutEntry_t3214611570;
  161. // UnityEngine.RectOffset
  162. struct RectOffset_t1369453676;
  163. // UnityEngine.GUILayoutGroup
  164. struct GUILayoutGroup_t2157789695;
  165. // System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry>
  166. struct List_1_t391719016;
  167. // System.Collections.Generic.List`1<System.Object>
  168. struct List_1_t257213610;
  169. // System.ArgumentException
  170. struct ArgumentException_t132251570;
  171. // System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.GUILayoutUtility/LayoutCache>
  172. struct Dictionary_2_t3261990503;
  173. // System.Collections.Generic.Dictionary`2<System.Int32,System.Object>
  174. struct Dictionary_2_t1968819495;
  175. // UnityEngine.GUIWordWrapSizer
  176. struct GUIWordWrapSizer_t2043268473;
  177. // UnityEngine.GUIScrollGroup
  178. struct GUIScrollGroup_t1523329021;
  179. // UnityEngine.GUISettings
  180. struct GUISettings_t1774757634;
  181. // UnityEngine.ScriptableObject
  182. struct ScriptableObject_t2528358522;
  183. // UnityEngine.Font
  184. struct Font_t1956802104;
  185. // UnityEngine.GUISkin/SkinChangedDelegate
  186. struct SkinChangedDelegate_t1143955295;
  187. // UnityEngine.GUIStyleState
  188. struct GUIStyleState_t1397964415;
  189. // System.Reflection.MethodInfo
  190. struct MethodInfo_t;
  191. // System.Action
  192. struct Action_t1264377477;
  193. // System.Func`3<System.Int32,System.IntPtr,System.Boolean>
  194. struct Func_3_t4119323734;
  195. // System.Exception
  196. struct Exception_t;
  197. // System.Func`2<System.Exception,System.Boolean>
  198. struct Func_2_t3450341358;
  199. // System.Func`2<System.Object,System.Boolean>
  200. struct Func_2_t3759279471;
  201. // UnityEngine.ScrollViewState
  202. struct ScrollViewState_t3797911395;
  203. // UnityEngine.SliderState
  204. struct SliderState_t2207048770;
  205. // UnityEngine.TextEditor
  206. struct TextEditor_t2759855366;
  207. // System.Int32[]
  208. struct Int32U5BU5D_t385246372;
  209. // System.Collections.Generic.Link[]
  210. struct LinkU5BU5D_t964245573;
  211. // System.String[]
  212. struct StringU5BU5D_t1281789340;
  213. // UnityEngine.GUIStyle[]
  214. struct GUIStyleU5BU5D_t2383250302;
  215. // System.Collections.Generic.IEqualityComparer`1<System.String>
  216. struct IEqualityComparer_1_t3954782707;
  217. // System.Runtime.Serialization.SerializationInfo
  218. struct SerializationInfo_t950877179;
  219. // System.Collections.Generic.Dictionary`2/Transform`1<System.String,UnityEngine.GUIStyle,System.Collections.DictionaryEntry>
  220. struct Transform_1_t1233662018;
  221. // System.IntPtr[]
  222. struct IntPtrU5BU5D_t4013366056;
  223. // System.Collections.IDictionary
  224. struct IDictionary_t1363984059;
  225. // UnityEngine.GUILayoutUtility/LayoutCache[]
  226. struct LayoutCacheU5BU5D_t1317702589;
  227. // System.Collections.Generic.IEqualityComparer`1<System.Int32>
  228. struct IEqualityComparer_1_t763310475;
  229. // System.Collections.Generic.Dictionary`2/Transform`1<System.Int32,UnityEngine.GUILayoutUtility/LayoutCache,System.Collections.DictionaryEntry>
  230. struct Transform_1_t922041433;
  231. // UnityEngine.GUILayoutEntry[]
  232. struct GUILayoutEntryU5BU5D_t2079236487;
  233. // System.Char[]
  234. struct CharU5BU5D_t3528271667;
  235. // System.Byte
  236. struct Byte_t1134296376;
  237. // System.Double
  238. struct Double_t594665363;
  239. // System.UInt16
  240. struct UInt16_t2177724958;
  241. // System.Void
  242. struct Void_t1185182177;
  243. // System.DelegateData
  244. struct DelegateData_t1677132599;
  245. // UnityEngine.Texture2D
  246. struct Texture2D_t3840446185;
  247. // System.Type[]
  248. struct TypeU5BU5D_t3940880105;
  249. // System.Reflection.MemberFilter
  250. struct MemberFilter_t426314064;
  251. // System.Action`1<UnityEngine.Font>
  252. struct Action_1_t2129269699;
  253. // UnityEngine.Font/FontTextureRebuildCallback
  254. struct FontTextureRebuildCallback_t2467502454;
  255. // UnityEngine.TouchScreenKeyboard
  256. struct TouchScreenKeyboard_t731888065;
  257. // System.Collections.Generic.Dictionary`2<System.String,UnityEngine.GUIStyle>
  258. struct Dictionary_2_t3742157810;
  259. extern RuntimeClass* Event_t2956885303_il2cpp_TypeInfo_var;
  260. extern const uint32_t Event_get_current_m2393892120_MetadataUsageId;
  261. extern const uint32_t Event_Internal_MakeMasterEventCurrent_m112421958_MetadataUsageId;
  262. extern RuntimeClass* Vector2_t2156229523_il2cpp_TypeInfo_var;
  263. extern const uint32_t Event_Equals_m321840542_MetadataUsageId;
  264. extern RuntimeClass* ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var;
  265. extern RuntimeClass* EventType_t3528516131_il2cpp_TypeInfo_var;
  266. extern RuntimeClass* EventModifiers_t2016417398_il2cpp_TypeInfo_var;
  267. extern RuntimeClass* KeyCode_t2599294277_il2cpp_TypeInfo_var;
  268. extern RuntimeClass* Int32_t2950945753_il2cpp_TypeInfo_var;
  269. extern RuntimeClass* String_t_il2cpp_TypeInfo_var;
  270. extern String_t* _stringLiteral2886375297;
  271. extern String_t* _stringLiteral2737274358;
  272. extern String_t* _stringLiteral1262317653;
  273. extern String_t* _stringLiteral4223655990;
  274. extern String_t* _stringLiteral1420157070;
  275. extern String_t* _stringLiteral4199752235;
  276. extern String_t* _stringLiteral495249995;
  277. extern String_t* _stringLiteral757602046;
  278. extern const uint32_t Event_ToString_m1688862299_MetadataUsageId;
  279. extern RuntimeClass* GUI_t1624858472_il2cpp_TypeInfo_var;
  280. extern RuntimeClass* GenericStack_t1310059385_il2cpp_TypeInfo_var;
  281. extern RuntimeClass* DateTime_t3738529785_il2cpp_TypeInfo_var;
  282. extern String_t* _stringLiteral4166749152;
  283. extern String_t* _stringLiteral2081353410;
  284. extern String_t* _stringLiteral7432421;
  285. extern String_t* _stringLiteral3186493525;
  286. extern String_t* _stringLiteral775122699;
  287. extern String_t* _stringLiteral2956319655;
  288. extern const uint32_t GUI__cctor_m3051457990_MetadataUsageId;
  289. extern const uint32_t GUI_get_backgroundColor_m492704139_MetadataUsageId;
  290. extern const uint32_t GUI_set_backgroundColor_m2936584335_MetadataUsageId;
  291. extern const uint32_t GUI_DoLabel_m1422046243_MetadataUsageId;
  292. extern const uint32_t GUI_DoButton_m3631925833_MetadataUsageId;
  293. extern const uint32_t GUI_set_nextScrollStepTime_m1026410471_MetadataUsageId;
  294. extern RuntimeClass* GUIUtility_t1868551600_il2cpp_TypeInfo_var;
  295. extern const uint32_t GUI_set_skin_m3073574632_MetadataUsageId;
  296. extern const uint32_t GUI_get_skin_m1874615010_MetadataUsageId;
  297. extern RuntimeClass* Object_t631007953_il2cpp_TypeInfo_var;
  298. extern const uint32_t GUI_DoSetSkin_m604425702_MetadataUsageId;
  299. extern RuntimeClass* GUIContent_t3050628031_il2cpp_TypeInfo_var;
  300. extern const uint32_t GUI_Label_m2454565404_MetadataUsageId;
  301. extern const uint32_t GUI_Label_m3404668030_MetadataUsageId;
  302. extern const uint32_t GUI_Button_m1518979886_MetadataUsageId;
  303. extern const uint32_t GUI_Button_m1546789121_MetadataUsageId;
  304. extern RuntimeClass* GUILayoutUtility_t66395690_il2cpp_TypeInfo_var;
  305. extern RuntimeClass* GUILayoutOptionU5BU5D_t2510215842_il2cpp_TypeInfo_var;
  306. extern RuntimeClass* GUIStyle_t3956901511_il2cpp_TypeInfo_var;
  307. extern const uint32_t GUI_CallWindowDelegate_m3309453386_MetadataUsageId;
  308. extern const uint32_t WindowFunction_BeginInvoke_m3381614433_MetadataUsageId;
  309. extern const uint32_t GUIContent__ctor_m3360759894_MetadataUsageId;
  310. extern const uint32_t GUIContent__ctor_m890195579_MetadataUsageId;
  311. extern const uint32_t GUIContent__ctor_m2166411317_MetadataUsageId;
  312. extern const uint32_t GUIContent__ctor_m476350501_MetadataUsageId;
  313. extern const uint32_t GUIContent_Temp_m3538793263_MetadataUsageId;
  314. extern const uint32_t GUIContent_ClearStaticCache_m1205116045_MetadataUsageId;
  315. extern const uint32_t GUIContent__cctor_m3964999451_MetadataUsageId;
  316. extern const uint32_t GUILayout_Label_m1960000298_MetadataUsageId;
  317. extern const uint32_t GUILayout_DoLabel_m607126153_MetadataUsageId;
  318. extern RuntimeClass* Single_t1397266774_il2cpp_TypeInfo_var;
  319. extern RuntimeClass* GUILayoutOption_t811797299_il2cpp_TypeInfo_var;
  320. extern const uint32_t GUILayout_Width_m1777696537_MetadataUsageId;
  321. extern const uint32_t GUILayout_Height_m3349769634_MetadataUsageId;
  322. extern const uint32_t GUILayoutEntry__ctor_m2229197035_MetadataUsageId;
  323. extern const uint32_t GUILayoutEntry__ctor_m1644640309_MetadataUsageId;
  324. extern const uint32_t GUILayoutEntry_ApplyOptions_m1741659338_MetadataUsageId;
  325. extern RuntimeClass* GUILayoutEntry_t3214611570_il2cpp_TypeInfo_var;
  326. extern String_t* _stringLiteral3452614528;
  327. extern String_t* _stringLiteral3787516126;
  328. extern String_t* _stringLiteral1602229408;
  329. extern String_t* _stringLiteral1704952932;
  330. extern String_t* _stringLiteral3452614531;
  331. extern String_t* _stringLiteral3452614533;
  332. extern String_t* _stringLiteral212333324;
  333. extern const uint32_t GUILayoutEntry_ToString_m3366663569_MetadataUsageId;
  334. extern const uint32_t GUILayoutEntry__cctor_m663865902_MetadataUsageId;
  335. extern RuntimeClass* List_1_t391719016_il2cpp_TypeInfo_var;
  336. extern RuntimeClass* RectOffset_t1369453676_il2cpp_TypeInfo_var;
  337. extern const RuntimeMethod* List_1__ctor_m1360362241_RuntimeMethod_var;
  338. extern const uint32_t GUILayoutGroup__ctor_m3245996524_MetadataUsageId;
  339. extern const uint32_t GUILayoutGroup_ApplyOptions_m2649434325_MetadataUsageId;
  340. extern RuntimeClass* ArgumentException_t132251570_il2cpp_TypeInfo_var;
  341. extern const RuntimeMethod* List_1_get_Count_m1057782749_RuntimeMethod_var;
  342. extern const RuntimeMethod* List_1_get_Item_m3839229424_RuntimeMethod_var;
  343. extern const RuntimeMethod* GUILayoutGroup_GetNext_m4171972759_RuntimeMethod_var;
  344. extern String_t* _stringLiteral3430219525;
  345. extern String_t* _stringLiteral2044958304;
  346. extern String_t* _stringLiteral340298149;
  347. extern String_t* _stringLiteral3657199858;
  348. extern const uint32_t GUILayoutGroup_GetNext_m4171972759_MetadataUsageId;
  349. extern const RuntimeMethod* List_1_Add_m1634533077_RuntimeMethod_var;
  350. extern const uint32_t GUILayoutGroup_Add_m1933515568_MetadataUsageId;
  351. extern RuntimeClass* Mathf_t3464937446_il2cpp_TypeInfo_var;
  352. extern const RuntimeMethod* List_1_GetEnumerator_m1934946323_RuntimeMethod_var;
  353. extern const RuntimeMethod* Enumerator_get_Current_m2663170093_RuntimeMethod_var;
  354. extern const RuntimeMethod* Enumerator_MoveNext_m2324433341_RuntimeMethod_var;
  355. extern const RuntimeMethod* Enumerator_Dispose_m3494652212_RuntimeMethod_var;
  356. extern const uint32_t GUILayoutGroup_CalcWidth_m1389741370_MetadataUsageId;
  357. extern const uint32_t GUILayoutGroup_SetHorizontal_m996475327_MetadataUsageId;
  358. extern const uint32_t GUILayoutGroup_CalcHeight_m1669391299_MetadataUsageId;
  359. extern const uint32_t GUILayoutGroup_SetVertical_m2446642182_MetadataUsageId;
  360. extern String_t* _stringLiteral2110742732;
  361. extern String_t* _stringLiteral3173274056;
  362. extern String_t* _stringLiteral3452614566;
  363. extern String_t* _stringLiteral3452614611;
  364. extern const uint32_t GUILayoutGroup_ToString_m3162736776_MetadataUsageId;
  365. extern const uint32_t GUILayoutUtility_Internal_GetWindowRect_m2131267775_MetadataUsageId;
  366. extern const uint32_t GUILayoutUtility_Internal_MoveWindow_m3463958180_MetadataUsageId;
  367. extern RuntimeClass* LayoutCache_t78309876_il2cpp_TypeInfo_var;
  368. extern const RuntimeMethod* Dictionary_2_TryGetValue_m4148288222_RuntimeMethod_var;
  369. extern const RuntimeMethod* Dictionary_2_set_Item_m2818144_RuntimeMethod_var;
  370. extern const uint32_t GUILayoutUtility_SelectIDList_m294753167_MetadataUsageId;
  371. extern RuntimeClass* GUILayoutGroup_t2157789695_il2cpp_TypeInfo_var;
  372. extern const uint32_t GUILayoutUtility_Begin_m1358735224_MetadataUsageId;
  373. extern const uint32_t GUILayoutUtility_BeginWindow_m2240221150_MetadataUsageId;
  374. extern const uint32_t GUILayoutUtility_Layout_m1159951704_MetadataUsageId;
  375. extern const uint32_t GUILayoutUtility_LayoutFromEditorWindow_m2914699782_MetadataUsageId;
  376. extern const uint32_t GUILayoutUtility_LayoutFreeGroup_m2955697397_MetadataUsageId;
  377. extern const uint32_t GUILayoutUtility_LayoutSingleGroup_m700786689_MetadataUsageId;
  378. extern const uint32_t GUILayoutUtility_GetRect_m1923267526_MetadataUsageId;
  379. extern RuntimeClass* GUIWordWrapSizer_t2043268473_il2cpp_TypeInfo_var;
  380. extern const uint32_t GUILayoutUtility_DoGetRect_m3125143831_MetadataUsageId;
  381. extern const uint32_t GUILayoutUtility_get_spaceStyle_m3392862907_MetadataUsageId;
  382. extern RuntimeClass* Dictionary_2_t3261990503_il2cpp_TypeInfo_var;
  383. extern const RuntimeMethod* Dictionary_2__ctor_m610848861_RuntimeMethod_var;
  384. extern const uint32_t GUILayoutUtility__cctor_m554256666_MetadataUsageId;
  385. extern const uint32_t LayoutCache__ctor_m3885940174_MetadataUsageId;
  386. extern RuntimeClass* GUISettings_t1774757634_il2cpp_TypeInfo_var;
  387. extern RuntimeClass* GUIStyleU5BU5D_t2383250302_il2cpp_TypeInfo_var;
  388. extern const uint32_t GUISkin__ctor_m3576427628_MetadataUsageId;
  389. extern RuntimeClass* GUISkin_t1244372282_il2cpp_TypeInfo_var;
  390. extern const uint32_t GUISkin_MakeCurrent_m3239192349_MetadataUsageId;
  391. struct GUIStyleState_t1397964415_marshaled_pinvoke;
  392. struct GUIStyleState_t1397964415;;
  393. struct GUIStyleState_t1397964415_marshaled_pinvoke;;
  394. struct RectOffset_t1369453676_marshaled_pinvoke;
  395. struct RectOffset_t1369453676;;
  396. struct RectOffset_t1369453676_marshaled_pinvoke;;
  397. struct GUIStyleState_t1397964415_marshaled_com;
  398. struct GUIStyleState_t1397964415_marshaled_com;;
  399. struct RectOffset_t1369453676_marshaled_com;
  400. struct RectOffset_t1369453676_marshaled_com;;
  401. extern const uint32_t GUIStyle_GetRectOffsetPtr_m2881421249_MetadataUsageId;
  402. extern const uint32_t GUIStyle_Internal_CalcSizeWithConstraints_m2170360553_MetadataUsageId;
  403. extern const uint32_t GUIStyle_get_margin_m3595798603_MetadataUsageId;
  404. extern const uint32_t GUIStyle_get_padding_m3526264743_MetadataUsageId;
  405. extern const uint32_t GUIStyle_get_none_m1545577352_MetadataUsageId;
  406. extern const uint32_t GUIStyle_CalcSizeWithConstraints_m3847734790_MetadataUsageId;
  407. extern const uint32_t GUIStyle_CalcHeight_m1341687357_MetadataUsageId;
  408. extern const uint32_t GUIStyle_CalcMinMaxWidth_m999727240_MetadataUsageId;
  409. extern String_t* _stringLiteral1207742195;
  410. extern const uint32_t GUIStyle_ToString_m3014660435_MetadataUsageId;
  411. extern const uint32_t GUIStyle__cctor_m3477697449_MetadataUsageId;
  412. struct GUIStyle_t3956901511_marshaled_pinvoke;
  413. struct GUIStyle_t3956901511;;
  414. struct GUIStyle_t3956901511_marshaled_pinvoke;;
  415. struct GUIStyle_t3956901511_marshaled_com;
  416. struct GUIStyle_t3956901511_marshaled_com;;
  417. extern const RuntimeType* GUITargetAttribute_t25796337_0_0_0_var;
  418. extern RuntimeClass* Type_t_il2cpp_TypeInfo_var;
  419. extern RuntimeClass* GUITargetAttribute_t25796337_il2cpp_TypeInfo_var;
  420. extern const uint32_t GUITargetAttribute_GetGUITargetAttrValue_m2954410352_MetadataUsageId;
  421. extern const uint32_t GUIUtility_get_pixelsPerPoint_m2369948084_MetadataUsageId;
  422. extern const uint32_t GUIUtility_set_guiIsExiting_m1558910088_MetadataUsageId;
  423. extern const uint32_t GUIUtility_TakeCapture_m1130863121_MetadataUsageId;
  424. extern const uint32_t GUIUtility_RemoveCapture_m1294193818_MetadataUsageId;
  425. extern const uint32_t GUIUtility_GetDefaultSkin_m1141001896_MetadataUsageId;
  426. extern const RuntimeMethod* Func_3_Invoke_m4134091626_RuntimeMethod_var;
  427. extern const uint32_t GUIUtility_ProcessEvent_m3254259822_MetadataUsageId;
  428. extern const uint32_t GUIUtility_BeginGUI_m1428629348_MetadataUsageId;
  429. extern const uint32_t GUIUtility_EndGUI_m1799980929_MetadataUsageId;
  430. extern const uint32_t GUIUtility_EndGUIFromException_m3524906492_MetadataUsageId;
  431. extern const RuntimeMethod* Func_2_Invoke_m2401667781_RuntimeMethod_var;
  432. extern const uint32_t GUIUtility_EndContainerGUIFromException_m530164245_MetadataUsageId;
  433. extern const uint32_t GUIUtility_ResetGlobalState_m2426294461_MetadataUsageId;
  434. extern RuntimeClass* TargetInvocationException_t4266643902_il2cpp_TypeInfo_var;
  435. extern RuntimeClass* ExitGUIException_t133215258_il2cpp_TypeInfo_var;
  436. extern const uint32_t GUIUtility_IsExitGUIException_m3644066650_MetadataUsageId;
  437. extern const uint32_t GUIUtility_ShouldRethrowException_m1544932394_MetadataUsageId;
  438. extern const RuntimeMethod* GUIUtility_CheckOnGUI_m3924092168_RuntimeMethod_var;
  439. extern String_t* _stringLiteral3544956457;
  440. extern const uint32_t GUIUtility_CheckOnGUI_m3924092168_MetadataUsageId;
  441. extern const uint32_t GUIUtility__cctor_m3177179339_MetadataUsageId;
  442. extern const uint32_t GUIWordWrapSizer__ctor_m3789151557_MetadataUsageId;
  443. extern const uint32_t TextEditor__ctor_m242049450_MetadataUsageId;
  444. struct ObjectU5BU5D_t2843939325;
  445. struct GUILayoutOptionU5BU5D_t2510215842;
  446. struct GUIStyleU5BU5D_t2383250302;
  447. #ifndef U3CMODULEU3E_T692745545_H
  448. #define U3CMODULEU3E_T692745545_H
  449. #ifdef __clang__
  450. #pragma clang diagnostic push
  451. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  452. #pragma clang diagnostic ignored "-Wunused-variable"
  453. #endif
  454. // <Module>
  455. struct U3CModuleU3E_t692745545
  456. {
  457. public:
  458. public:
  459. };
  460. #ifdef __clang__
  461. #pragma clang diagnostic pop
  462. #endif
  463. #endif // U3CMODULEU3E_T692745545_H
  464. #ifndef RUNTIMEOBJECT_H
  465. #define RUNTIMEOBJECT_H
  466. #ifdef __clang__
  467. #pragma clang diagnostic push
  468. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  469. #pragma clang diagnostic ignored "-Wunused-variable"
  470. #endif
  471. // System.Object
  472. #ifdef __clang__
  473. #pragma clang diagnostic pop
  474. #endif
  475. #endif // RUNTIMEOBJECT_H
  476. struct Il2CppArrayBounds;
  477. #ifndef RUNTIMEARRAY_H
  478. #define RUNTIMEARRAY_H
  479. #ifdef __clang__
  480. #pragma clang diagnostic push
  481. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  482. #pragma clang diagnostic ignored "-Wunused-variable"
  483. #endif
  484. // System.Array
  485. #ifdef __clang__
  486. #pragma clang diagnostic pop
  487. #endif
  488. #endif // RUNTIMEARRAY_H
  489. #ifndef STACK_T2329662280_H
  490. #define STACK_T2329662280_H
  491. #ifdef __clang__
  492. #pragma clang diagnostic push
  493. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  494. #pragma clang diagnostic ignored "-Wunused-variable"
  495. #endif
  496. // System.Collections.Stack
  497. struct Stack_t2329662280 : public RuntimeObject
  498. {
  499. public:
  500. // System.Object[] System.Collections.Stack::contents
  501. ObjectU5BU5D_t2843939325* ___contents_0;
  502. // System.Int32 System.Collections.Stack::current
  503. int32_t ___current_1;
  504. // System.Int32 System.Collections.Stack::count
  505. int32_t ___count_2;
  506. // System.Int32 System.Collections.Stack::capacity
  507. int32_t ___capacity_3;
  508. // System.Int32 System.Collections.Stack::modCount
  509. int32_t ___modCount_4;
  510. public:
  511. inline static int32_t get_offset_of_contents_0() { return static_cast<int32_t>(offsetof(Stack_t2329662280, ___contents_0)); }
  512. inline ObjectU5BU5D_t2843939325* get_contents_0() const { return ___contents_0; }
  513. inline ObjectU5BU5D_t2843939325** get_address_of_contents_0() { return &___contents_0; }
  514. inline void set_contents_0(ObjectU5BU5D_t2843939325* value)
  515. {
  516. ___contents_0 = value;
  517. Il2CppCodeGenWriteBarrier((&___contents_0), value);
  518. }
  519. inline static int32_t get_offset_of_current_1() { return static_cast<int32_t>(offsetof(Stack_t2329662280, ___current_1)); }
  520. inline int32_t get_current_1() const { return ___current_1; }
  521. inline int32_t* get_address_of_current_1() { return &___current_1; }
  522. inline void set_current_1(int32_t value)
  523. {
  524. ___current_1 = value;
  525. }
  526. inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Stack_t2329662280, ___count_2)); }
  527. inline int32_t get_count_2() const { return ___count_2; }
  528. inline int32_t* get_address_of_count_2() { return &___count_2; }
  529. inline void set_count_2(int32_t value)
  530. {
  531. ___count_2 = value;
  532. }
  533. inline static int32_t get_offset_of_capacity_3() { return static_cast<int32_t>(offsetof(Stack_t2329662280, ___capacity_3)); }
  534. inline int32_t get_capacity_3() const { return ___capacity_3; }
  535. inline int32_t* get_address_of_capacity_3() { return &___capacity_3; }
  536. inline void set_capacity_3(int32_t value)
  537. {
  538. ___capacity_3 = value;
  539. }
  540. inline static int32_t get_offset_of_modCount_4() { return static_cast<int32_t>(offsetof(Stack_t2329662280, ___modCount_4)); }
  541. inline int32_t get_modCount_4() const { return ___modCount_4; }
  542. inline int32_t* get_address_of_modCount_4() { return &___modCount_4; }
  543. inline void set_modCount_4(int32_t value)
  544. {
  545. ___modCount_4 = value;
  546. }
  547. };
  548. #ifdef __clang__
  549. #pragma clang diagnostic pop
  550. #endif
  551. #endif // STACK_T2329662280_H
  552. #ifndef DICTIONARY_2_T3742157810_H
  553. #define DICTIONARY_2_T3742157810_H
  554. #ifdef __clang__
  555. #pragma clang diagnostic push
  556. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  557. #pragma clang diagnostic ignored "-Wunused-variable"
  558. #endif
  559. // System.Collections.Generic.Dictionary`2<System.String,UnityEngine.GUIStyle>
  560. struct Dictionary_2_t3742157810 : public RuntimeObject
  561. {
  562. public:
  563. // System.Int32[] System.Collections.Generic.Dictionary`2::table
  564. Int32U5BU5D_t385246372* ___table_4;
  565. // System.Collections.Generic.Link[] System.Collections.Generic.Dictionary`2::linkSlots
  566. LinkU5BU5D_t964245573* ___linkSlots_5;
  567. // TKey[] System.Collections.Generic.Dictionary`2::keySlots
  568. StringU5BU5D_t1281789340* ___keySlots_6;
  569. // TValue[] System.Collections.Generic.Dictionary`2::valueSlots
  570. GUIStyleU5BU5D_t2383250302* ___valueSlots_7;
  571. // System.Int32 System.Collections.Generic.Dictionary`2::touchedSlots
  572. int32_t ___touchedSlots_8;
  573. // System.Int32 System.Collections.Generic.Dictionary`2::emptySlot
  574. int32_t ___emptySlot_9;
  575. // System.Int32 System.Collections.Generic.Dictionary`2::count
  576. int32_t ___count_10;
  577. // System.Int32 System.Collections.Generic.Dictionary`2::threshold
  578. int32_t ___threshold_11;
  579. // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::hcp
  580. RuntimeObject* ___hcp_12;
  581. // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.Dictionary`2::serialization_info
  582. SerializationInfo_t950877179 * ___serialization_info_13;
  583. // System.Int32 System.Collections.Generic.Dictionary`2::generation
  584. int32_t ___generation_14;
  585. public:
  586. inline static int32_t get_offset_of_table_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t3742157810, ___table_4)); }
  587. inline Int32U5BU5D_t385246372* get_table_4() const { return ___table_4; }
  588. inline Int32U5BU5D_t385246372** get_address_of_table_4() { return &___table_4; }
  589. inline void set_table_4(Int32U5BU5D_t385246372* value)
  590. {
  591. ___table_4 = value;
  592. Il2CppCodeGenWriteBarrier((&___table_4), value);
  593. }
  594. inline static int32_t get_offset_of_linkSlots_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t3742157810, ___linkSlots_5)); }
  595. inline LinkU5BU5D_t964245573* get_linkSlots_5() const { return ___linkSlots_5; }
  596. inline LinkU5BU5D_t964245573** get_address_of_linkSlots_5() { return &___linkSlots_5; }
  597. inline void set_linkSlots_5(LinkU5BU5D_t964245573* value)
  598. {
  599. ___linkSlots_5 = value;
  600. Il2CppCodeGenWriteBarrier((&___linkSlots_5), value);
  601. }
  602. inline static int32_t get_offset_of_keySlots_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t3742157810, ___keySlots_6)); }
  603. inline StringU5BU5D_t1281789340* get_keySlots_6() const { return ___keySlots_6; }
  604. inline StringU5BU5D_t1281789340** get_address_of_keySlots_6() { return &___keySlots_6; }
  605. inline void set_keySlots_6(StringU5BU5D_t1281789340* value)
  606. {
  607. ___keySlots_6 = value;
  608. Il2CppCodeGenWriteBarrier((&___keySlots_6), value);
  609. }
  610. inline static int32_t get_offset_of_valueSlots_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t3742157810, ___valueSlots_7)); }
  611. inline GUIStyleU5BU5D_t2383250302* get_valueSlots_7() const { return ___valueSlots_7; }
  612. inline GUIStyleU5BU5D_t2383250302** get_address_of_valueSlots_7() { return &___valueSlots_7; }
  613. inline void set_valueSlots_7(GUIStyleU5BU5D_t2383250302* value)
  614. {
  615. ___valueSlots_7 = value;
  616. Il2CppCodeGenWriteBarrier((&___valueSlots_7), value);
  617. }
  618. inline static int32_t get_offset_of_touchedSlots_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t3742157810, ___touchedSlots_8)); }
  619. inline int32_t get_touchedSlots_8() const { return ___touchedSlots_8; }
  620. inline int32_t* get_address_of_touchedSlots_8() { return &___touchedSlots_8; }
  621. inline void set_touchedSlots_8(int32_t value)
  622. {
  623. ___touchedSlots_8 = value;
  624. }
  625. inline static int32_t get_offset_of_emptySlot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t3742157810, ___emptySlot_9)); }
  626. inline int32_t get_emptySlot_9() const { return ___emptySlot_9; }
  627. inline int32_t* get_address_of_emptySlot_9() { return &___emptySlot_9; }
  628. inline void set_emptySlot_9(int32_t value)
  629. {
  630. ___emptySlot_9 = value;
  631. }
  632. inline static int32_t get_offset_of_count_10() { return static_cast<int32_t>(offsetof(Dictionary_2_t3742157810, ___count_10)); }
  633. inline int32_t get_count_10() const { return ___count_10; }
  634. inline int32_t* get_address_of_count_10() { return &___count_10; }
  635. inline void set_count_10(int32_t value)
  636. {
  637. ___count_10 = value;
  638. }
  639. inline static int32_t get_offset_of_threshold_11() { return static_cast<int32_t>(offsetof(Dictionary_2_t3742157810, ___threshold_11)); }
  640. inline int32_t get_threshold_11() const { return ___threshold_11; }
  641. inline int32_t* get_address_of_threshold_11() { return &___threshold_11; }
  642. inline void set_threshold_11(int32_t value)
  643. {
  644. ___threshold_11 = value;
  645. }
  646. inline static int32_t get_offset_of_hcp_12() { return static_cast<int32_t>(offsetof(Dictionary_2_t3742157810, ___hcp_12)); }
  647. inline RuntimeObject* get_hcp_12() const { return ___hcp_12; }
  648. inline RuntimeObject** get_address_of_hcp_12() { return &___hcp_12; }
  649. inline void set_hcp_12(RuntimeObject* value)
  650. {
  651. ___hcp_12 = value;
  652. Il2CppCodeGenWriteBarrier((&___hcp_12), value);
  653. }
  654. inline static int32_t get_offset_of_serialization_info_13() { return static_cast<int32_t>(offsetof(Dictionary_2_t3742157810, ___serialization_info_13)); }
  655. inline SerializationInfo_t950877179 * get_serialization_info_13() const { return ___serialization_info_13; }
  656. inline SerializationInfo_t950877179 ** get_address_of_serialization_info_13() { return &___serialization_info_13; }
  657. inline void set_serialization_info_13(SerializationInfo_t950877179 * value)
  658. {
  659. ___serialization_info_13 = value;
  660. Il2CppCodeGenWriteBarrier((&___serialization_info_13), value);
  661. }
  662. inline static int32_t get_offset_of_generation_14() { return static_cast<int32_t>(offsetof(Dictionary_2_t3742157810, ___generation_14)); }
  663. inline int32_t get_generation_14() const { return ___generation_14; }
  664. inline int32_t* get_address_of_generation_14() { return &___generation_14; }
  665. inline void set_generation_14(int32_t value)
  666. {
  667. ___generation_14 = value;
  668. }
  669. };
  670. struct Dictionary_2_t3742157810_StaticFields
  671. {
  672. public:
  673. // System.Collections.Generic.Dictionary`2/Transform`1<TKey,TValue,System.Collections.DictionaryEntry> System.Collections.Generic.Dictionary`2::<>f__am$cacheB
  674. Transform_1_t1233662018 * ___U3CU3Ef__amU24cacheB_15;
  675. public:
  676. inline static int32_t get_offset_of_U3CU3Ef__amU24cacheB_15() { return static_cast<int32_t>(offsetof(Dictionary_2_t3742157810_StaticFields, ___U3CU3Ef__amU24cacheB_15)); }
  677. inline Transform_1_t1233662018 * get_U3CU3Ef__amU24cacheB_15() const { return ___U3CU3Ef__amU24cacheB_15; }
  678. inline Transform_1_t1233662018 ** get_address_of_U3CU3Ef__amU24cacheB_15() { return &___U3CU3Ef__amU24cacheB_15; }
  679. inline void set_U3CU3Ef__amU24cacheB_15(Transform_1_t1233662018 * value)
  680. {
  681. ___U3CU3Ef__amU24cacheB_15 = value;
  682. Il2CppCodeGenWriteBarrier((&___U3CU3Ef__amU24cacheB_15), value);
  683. }
  684. };
  685. #ifdef __clang__
  686. #pragma clang diagnostic pop
  687. #endif
  688. #endif // DICTIONARY_2_T3742157810_H
  689. #ifndef MEMBERINFO_T_H
  690. #define MEMBERINFO_T_H
  691. #ifdef __clang__
  692. #pragma clang diagnostic push
  693. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  694. #pragma clang diagnostic ignored "-Wunused-variable"
  695. #endif
  696. // System.Reflection.MemberInfo
  697. struct MemberInfo_t : public RuntimeObject
  698. {
  699. public:
  700. public:
  701. };
  702. #ifdef __clang__
  703. #pragma clang diagnostic pop
  704. #endif
  705. #endif // MEMBERINFO_T_H
  706. #ifndef EXCEPTION_T_H
  707. #define EXCEPTION_T_H
  708. #ifdef __clang__
  709. #pragma clang diagnostic push
  710. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  711. #pragma clang diagnostic ignored "-Wunused-variable"
  712. #endif
  713. // System.Exception
  714. struct Exception_t : public RuntimeObject
  715. {
  716. public:
  717. // System.IntPtr[] System.Exception::trace_ips
  718. IntPtrU5BU5D_t4013366056* ___trace_ips_0;
  719. // System.Exception System.Exception::inner_exception
  720. Exception_t * ___inner_exception_1;
  721. // System.String System.Exception::message
  722. String_t* ___message_2;
  723. // System.String System.Exception::help_link
  724. String_t* ___help_link_3;
  725. // System.String System.Exception::class_name
  726. String_t* ___class_name_4;
  727. // System.String System.Exception::stack_trace
  728. String_t* ___stack_trace_5;
  729. // System.String System.Exception::_remoteStackTraceString
  730. String_t* ____remoteStackTraceString_6;
  731. // System.Int32 System.Exception::remote_stack_index
  732. int32_t ___remote_stack_index_7;
  733. // System.Int32 System.Exception::hresult
  734. int32_t ___hresult_8;
  735. // System.String System.Exception::source
  736. String_t* ___source_9;
  737. // System.Collections.IDictionary System.Exception::_data
  738. RuntimeObject* ____data_10;
  739. public:
  740. inline static int32_t get_offset_of_trace_ips_0() { return static_cast<int32_t>(offsetof(Exception_t, ___trace_ips_0)); }
  741. inline IntPtrU5BU5D_t4013366056* get_trace_ips_0() const { return ___trace_ips_0; }
  742. inline IntPtrU5BU5D_t4013366056** get_address_of_trace_ips_0() { return &___trace_ips_0; }
  743. inline void set_trace_ips_0(IntPtrU5BU5D_t4013366056* value)
  744. {
  745. ___trace_ips_0 = value;
  746. Il2CppCodeGenWriteBarrier((&___trace_ips_0), value);
  747. }
  748. inline static int32_t get_offset_of_inner_exception_1() { return static_cast<int32_t>(offsetof(Exception_t, ___inner_exception_1)); }
  749. inline Exception_t * get_inner_exception_1() const { return ___inner_exception_1; }
  750. inline Exception_t ** get_address_of_inner_exception_1() { return &___inner_exception_1; }
  751. inline void set_inner_exception_1(Exception_t * value)
  752. {
  753. ___inner_exception_1 = value;
  754. Il2CppCodeGenWriteBarrier((&___inner_exception_1), value);
  755. }
  756. inline static int32_t get_offset_of_message_2() { return static_cast<int32_t>(offsetof(Exception_t, ___message_2)); }
  757. inline String_t* get_message_2() const { return ___message_2; }
  758. inline String_t** get_address_of_message_2() { return &___message_2; }
  759. inline void set_message_2(String_t* value)
  760. {
  761. ___message_2 = value;
  762. Il2CppCodeGenWriteBarrier((&___message_2), value);
  763. }
  764. inline static int32_t get_offset_of_help_link_3() { return static_cast<int32_t>(offsetof(Exception_t, ___help_link_3)); }
  765. inline String_t* get_help_link_3() const { return ___help_link_3; }
  766. inline String_t** get_address_of_help_link_3() { return &___help_link_3; }
  767. inline void set_help_link_3(String_t* value)
  768. {
  769. ___help_link_3 = value;
  770. Il2CppCodeGenWriteBarrier((&___help_link_3), value);
  771. }
  772. inline static int32_t get_offset_of_class_name_4() { return static_cast<int32_t>(offsetof(Exception_t, ___class_name_4)); }
  773. inline String_t* get_class_name_4() const { return ___class_name_4; }
  774. inline String_t** get_address_of_class_name_4() { return &___class_name_4; }
  775. inline void set_class_name_4(String_t* value)
  776. {
  777. ___class_name_4 = value;
  778. Il2CppCodeGenWriteBarrier((&___class_name_4), value);
  779. }
  780. inline static int32_t get_offset_of_stack_trace_5() { return static_cast<int32_t>(offsetof(Exception_t, ___stack_trace_5)); }
  781. inline String_t* get_stack_trace_5() const { return ___stack_trace_5; }
  782. inline String_t** get_address_of_stack_trace_5() { return &___stack_trace_5; }
  783. inline void set_stack_trace_5(String_t* value)
  784. {
  785. ___stack_trace_5 = value;
  786. Il2CppCodeGenWriteBarrier((&___stack_trace_5), value);
  787. }
  788. inline static int32_t get_offset_of__remoteStackTraceString_6() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_6)); }
  789. inline String_t* get__remoteStackTraceString_6() const { return ____remoteStackTraceString_6; }
  790. inline String_t** get_address_of__remoteStackTraceString_6() { return &____remoteStackTraceString_6; }
  791. inline void set__remoteStackTraceString_6(String_t* value)
  792. {
  793. ____remoteStackTraceString_6 = value;
  794. Il2CppCodeGenWriteBarrier((&____remoteStackTraceString_6), value);
  795. }
  796. inline static int32_t get_offset_of_remote_stack_index_7() { return static_cast<int32_t>(offsetof(Exception_t, ___remote_stack_index_7)); }
  797. inline int32_t get_remote_stack_index_7() const { return ___remote_stack_index_7; }
  798. inline int32_t* get_address_of_remote_stack_index_7() { return &___remote_stack_index_7; }
  799. inline void set_remote_stack_index_7(int32_t value)
  800. {
  801. ___remote_stack_index_7 = value;
  802. }
  803. inline static int32_t get_offset_of_hresult_8() { return static_cast<int32_t>(offsetof(Exception_t, ___hresult_8)); }
  804. inline int32_t get_hresult_8() const { return ___hresult_8; }
  805. inline int32_t* get_address_of_hresult_8() { return &___hresult_8; }
  806. inline void set_hresult_8(int32_t value)
  807. {
  808. ___hresult_8 = value;
  809. }
  810. inline static int32_t get_offset_of_source_9() { return static_cast<int32_t>(offsetof(Exception_t, ___source_9)); }
  811. inline String_t* get_source_9() const { return ___source_9; }
  812. inline String_t** get_address_of_source_9() { return &___source_9; }
  813. inline void set_source_9(String_t* value)
  814. {
  815. ___source_9 = value;
  816. Il2CppCodeGenWriteBarrier((&___source_9), value);
  817. }
  818. inline static int32_t get_offset_of__data_10() { return static_cast<int32_t>(offsetof(Exception_t, ____data_10)); }
  819. inline RuntimeObject* get__data_10() const { return ____data_10; }
  820. inline RuntimeObject** get_address_of__data_10() { return &____data_10; }
  821. inline void set__data_10(RuntimeObject* value)
  822. {
  823. ____data_10 = value;
  824. Il2CppCodeGenWriteBarrier((&____data_10), value);
  825. }
  826. };
  827. #ifdef __clang__
  828. #pragma clang diagnostic pop
  829. #endif
  830. #endif // EXCEPTION_T_H
  831. #ifndef DICTIONARY_2_T3261990503_H
  832. #define DICTIONARY_2_T3261990503_H
  833. #ifdef __clang__
  834. #pragma clang diagnostic push
  835. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  836. #pragma clang diagnostic ignored "-Wunused-variable"
  837. #endif
  838. // System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.GUILayoutUtility/LayoutCache>
  839. struct Dictionary_2_t3261990503 : public RuntimeObject
  840. {
  841. public:
  842. // System.Int32[] System.Collections.Generic.Dictionary`2::table
  843. Int32U5BU5D_t385246372* ___table_4;
  844. // System.Collections.Generic.Link[] System.Collections.Generic.Dictionary`2::linkSlots
  845. LinkU5BU5D_t964245573* ___linkSlots_5;
  846. // TKey[] System.Collections.Generic.Dictionary`2::keySlots
  847. Int32U5BU5D_t385246372* ___keySlots_6;
  848. // TValue[] System.Collections.Generic.Dictionary`2::valueSlots
  849. LayoutCacheU5BU5D_t1317702589* ___valueSlots_7;
  850. // System.Int32 System.Collections.Generic.Dictionary`2::touchedSlots
  851. int32_t ___touchedSlots_8;
  852. // System.Int32 System.Collections.Generic.Dictionary`2::emptySlot
  853. int32_t ___emptySlot_9;
  854. // System.Int32 System.Collections.Generic.Dictionary`2::count
  855. int32_t ___count_10;
  856. // System.Int32 System.Collections.Generic.Dictionary`2::threshold
  857. int32_t ___threshold_11;
  858. // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::hcp
  859. RuntimeObject* ___hcp_12;
  860. // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.Dictionary`2::serialization_info
  861. SerializationInfo_t950877179 * ___serialization_info_13;
  862. // System.Int32 System.Collections.Generic.Dictionary`2::generation
  863. int32_t ___generation_14;
  864. public:
  865. inline static int32_t get_offset_of_table_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t3261990503, ___table_4)); }
  866. inline Int32U5BU5D_t385246372* get_table_4() const { return ___table_4; }
  867. inline Int32U5BU5D_t385246372** get_address_of_table_4() { return &___table_4; }
  868. inline void set_table_4(Int32U5BU5D_t385246372* value)
  869. {
  870. ___table_4 = value;
  871. Il2CppCodeGenWriteBarrier((&___table_4), value);
  872. }
  873. inline static int32_t get_offset_of_linkSlots_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t3261990503, ___linkSlots_5)); }
  874. inline LinkU5BU5D_t964245573* get_linkSlots_5() const { return ___linkSlots_5; }
  875. inline LinkU5BU5D_t964245573** get_address_of_linkSlots_5() { return &___linkSlots_5; }
  876. inline void set_linkSlots_5(LinkU5BU5D_t964245573* value)
  877. {
  878. ___linkSlots_5 = value;
  879. Il2CppCodeGenWriteBarrier((&___linkSlots_5), value);
  880. }
  881. inline static int32_t get_offset_of_keySlots_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t3261990503, ___keySlots_6)); }
  882. inline Int32U5BU5D_t385246372* get_keySlots_6() const { return ___keySlots_6; }
  883. inline Int32U5BU5D_t385246372** get_address_of_keySlots_6() { return &___keySlots_6; }
  884. inline void set_keySlots_6(Int32U5BU5D_t385246372* value)
  885. {
  886. ___keySlots_6 = value;
  887. Il2CppCodeGenWriteBarrier((&___keySlots_6), value);
  888. }
  889. inline static int32_t get_offset_of_valueSlots_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t3261990503, ___valueSlots_7)); }
  890. inline LayoutCacheU5BU5D_t1317702589* get_valueSlots_7() const { return ___valueSlots_7; }
  891. inline LayoutCacheU5BU5D_t1317702589** get_address_of_valueSlots_7() { return &___valueSlots_7; }
  892. inline void set_valueSlots_7(LayoutCacheU5BU5D_t1317702589* value)
  893. {
  894. ___valueSlots_7 = value;
  895. Il2CppCodeGenWriteBarrier((&___valueSlots_7), value);
  896. }
  897. inline static int32_t get_offset_of_touchedSlots_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t3261990503, ___touchedSlots_8)); }
  898. inline int32_t get_touchedSlots_8() const { return ___touchedSlots_8; }
  899. inline int32_t* get_address_of_touchedSlots_8() { return &___touchedSlots_8; }
  900. inline void set_touchedSlots_8(int32_t value)
  901. {
  902. ___touchedSlots_8 = value;
  903. }
  904. inline static int32_t get_offset_of_emptySlot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t3261990503, ___emptySlot_9)); }
  905. inline int32_t get_emptySlot_9() const { return ___emptySlot_9; }
  906. inline int32_t* get_address_of_emptySlot_9() { return &___emptySlot_9; }
  907. inline void set_emptySlot_9(int32_t value)
  908. {
  909. ___emptySlot_9 = value;
  910. }
  911. inline static int32_t get_offset_of_count_10() { return static_cast<int32_t>(offsetof(Dictionary_2_t3261990503, ___count_10)); }
  912. inline int32_t get_count_10() const { return ___count_10; }
  913. inline int32_t* get_address_of_count_10() { return &___count_10; }
  914. inline void set_count_10(int32_t value)
  915. {
  916. ___count_10 = value;
  917. }
  918. inline static int32_t get_offset_of_threshold_11() { return static_cast<int32_t>(offsetof(Dictionary_2_t3261990503, ___threshold_11)); }
  919. inline int32_t get_threshold_11() const { return ___threshold_11; }
  920. inline int32_t* get_address_of_threshold_11() { return &___threshold_11; }
  921. inline void set_threshold_11(int32_t value)
  922. {
  923. ___threshold_11 = value;
  924. }
  925. inline static int32_t get_offset_of_hcp_12() { return static_cast<int32_t>(offsetof(Dictionary_2_t3261990503, ___hcp_12)); }
  926. inline RuntimeObject* get_hcp_12() const { return ___hcp_12; }
  927. inline RuntimeObject** get_address_of_hcp_12() { return &___hcp_12; }
  928. inline void set_hcp_12(RuntimeObject* value)
  929. {
  930. ___hcp_12 = value;
  931. Il2CppCodeGenWriteBarrier((&___hcp_12), value);
  932. }
  933. inline static int32_t get_offset_of_serialization_info_13() { return static_cast<int32_t>(offsetof(Dictionary_2_t3261990503, ___serialization_info_13)); }
  934. inline SerializationInfo_t950877179 * get_serialization_info_13() const { return ___serialization_info_13; }
  935. inline SerializationInfo_t950877179 ** get_address_of_serialization_info_13() { return &___serialization_info_13; }
  936. inline void set_serialization_info_13(SerializationInfo_t950877179 * value)
  937. {
  938. ___serialization_info_13 = value;
  939. Il2CppCodeGenWriteBarrier((&___serialization_info_13), value);
  940. }
  941. inline static int32_t get_offset_of_generation_14() { return static_cast<int32_t>(offsetof(Dictionary_2_t3261990503, ___generation_14)); }
  942. inline int32_t get_generation_14() const { return ___generation_14; }
  943. inline int32_t* get_address_of_generation_14() { return &___generation_14; }
  944. inline void set_generation_14(int32_t value)
  945. {
  946. ___generation_14 = value;
  947. }
  948. };
  949. struct Dictionary_2_t3261990503_StaticFields
  950. {
  951. public:
  952. // System.Collections.Generic.Dictionary`2/Transform`1<TKey,TValue,System.Collections.DictionaryEntry> System.Collections.Generic.Dictionary`2::<>f__am$cacheB
  953. Transform_1_t922041433 * ___U3CU3Ef__amU24cacheB_15;
  954. public:
  955. inline static int32_t get_offset_of_U3CU3Ef__amU24cacheB_15() { return static_cast<int32_t>(offsetof(Dictionary_2_t3261990503_StaticFields, ___U3CU3Ef__amU24cacheB_15)); }
  956. inline Transform_1_t922041433 * get_U3CU3Ef__amU24cacheB_15() const { return ___U3CU3Ef__amU24cacheB_15; }
  957. inline Transform_1_t922041433 ** get_address_of_U3CU3Ef__amU24cacheB_15() { return &___U3CU3Ef__amU24cacheB_15; }
  958. inline void set_U3CU3Ef__amU24cacheB_15(Transform_1_t922041433 * value)
  959. {
  960. ___U3CU3Ef__amU24cacheB_15 = value;
  961. Il2CppCodeGenWriteBarrier((&___U3CU3Ef__amU24cacheB_15), value);
  962. }
  963. };
  964. #ifdef __clang__
  965. #pragma clang diagnostic pop
  966. #endif
  967. #endif // DICTIONARY_2_T3261990503_H
  968. #ifndef LIST_1_T391719016_H
  969. #define LIST_1_T391719016_H
  970. #ifdef __clang__
  971. #pragma clang diagnostic push
  972. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  973. #pragma clang diagnostic ignored "-Wunused-variable"
  974. #endif
  975. // System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry>
  976. struct List_1_t391719016 : public RuntimeObject
  977. {
  978. public:
  979. // T[] System.Collections.Generic.List`1::_items
  980. GUILayoutEntryU5BU5D_t2079236487* ____items_1;
  981. // System.Int32 System.Collections.Generic.List`1::_size
  982. int32_t ____size_2;
  983. // System.Int32 System.Collections.Generic.List`1::_version
  984. int32_t ____version_3;
  985. public:
  986. inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t391719016, ____items_1)); }
  987. inline GUILayoutEntryU5BU5D_t2079236487* get__items_1() const { return ____items_1; }
  988. inline GUILayoutEntryU5BU5D_t2079236487** get_address_of__items_1() { return &____items_1; }
  989. inline void set__items_1(GUILayoutEntryU5BU5D_t2079236487* value)
  990. {
  991. ____items_1 = value;
  992. Il2CppCodeGenWriteBarrier((&____items_1), value);
  993. }
  994. inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t391719016, ____size_2)); }
  995. inline int32_t get__size_2() const { return ____size_2; }
  996. inline int32_t* get_address_of__size_2() { return &____size_2; }
  997. inline void set__size_2(int32_t value)
  998. {
  999. ____size_2 = value;
  1000. }
  1001. inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t391719016, ____version_3)); }
  1002. inline int32_t get__version_3() const { return ____version_3; }
  1003. inline int32_t* get_address_of__version_3() { return &____version_3; }
  1004. inline void set__version_3(int32_t value)
  1005. {
  1006. ____version_3 = value;
  1007. }
  1008. };
  1009. struct List_1_t391719016_StaticFields
  1010. {
  1011. public:
  1012. // T[] System.Collections.Generic.List`1::EmptyArray
  1013. GUILayoutEntryU5BU5D_t2079236487* ___EmptyArray_4;
  1014. public:
  1015. inline static int32_t get_offset_of_EmptyArray_4() { return static_cast<int32_t>(offsetof(List_1_t391719016_StaticFields, ___EmptyArray_4)); }
  1016. inline GUILayoutEntryU5BU5D_t2079236487* get_EmptyArray_4() const { return ___EmptyArray_4; }
  1017. inline GUILayoutEntryU5BU5D_t2079236487** get_address_of_EmptyArray_4() { return &___EmptyArray_4; }
  1018. inline void set_EmptyArray_4(GUILayoutEntryU5BU5D_t2079236487* value)
  1019. {
  1020. ___EmptyArray_4 = value;
  1021. Il2CppCodeGenWriteBarrier((&___EmptyArray_4), value);
  1022. }
  1023. };
  1024. #ifdef __clang__
  1025. #pragma clang diagnostic pop
  1026. #endif
  1027. #endif // LIST_1_T391719016_H
  1028. #ifndef GUICONTENT_T3050628031_H
  1029. #define GUICONTENT_T3050628031_H
  1030. #ifdef __clang__
  1031. #pragma clang diagnostic push
  1032. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1033. #pragma clang diagnostic ignored "-Wunused-variable"
  1034. #endif
  1035. // UnityEngine.GUIContent
  1036. struct GUIContent_t3050628031 : public RuntimeObject
  1037. {
  1038. public:
  1039. // System.String UnityEngine.GUIContent::m_Text
  1040. String_t* ___m_Text_0;
  1041. // UnityEngine.Texture UnityEngine.GUIContent::m_Image
  1042. Texture_t3661962703 * ___m_Image_1;
  1043. // System.String UnityEngine.GUIContent::m_Tooltip
  1044. String_t* ___m_Tooltip_2;
  1045. public:
  1046. inline static int32_t get_offset_of_m_Text_0() { return static_cast<int32_t>(offsetof(GUIContent_t3050628031, ___m_Text_0)); }
  1047. inline String_t* get_m_Text_0() const { return ___m_Text_0; }
  1048. inline String_t** get_address_of_m_Text_0() { return &___m_Text_0; }
  1049. inline void set_m_Text_0(String_t* value)
  1050. {
  1051. ___m_Text_0 = value;
  1052. Il2CppCodeGenWriteBarrier((&___m_Text_0), value);
  1053. }
  1054. inline static int32_t get_offset_of_m_Image_1() { return static_cast<int32_t>(offsetof(GUIContent_t3050628031, ___m_Image_1)); }
  1055. inline Texture_t3661962703 * get_m_Image_1() const { return ___m_Image_1; }
  1056. inline Texture_t3661962703 ** get_address_of_m_Image_1() { return &___m_Image_1; }
  1057. inline void set_m_Image_1(Texture_t3661962703 * value)
  1058. {
  1059. ___m_Image_1 = value;
  1060. Il2CppCodeGenWriteBarrier((&___m_Image_1), value);
  1061. }
  1062. inline static int32_t get_offset_of_m_Tooltip_2() { return static_cast<int32_t>(offsetof(GUIContent_t3050628031, ___m_Tooltip_2)); }
  1063. inline String_t* get_m_Tooltip_2() const { return ___m_Tooltip_2; }
  1064. inline String_t** get_address_of_m_Tooltip_2() { return &___m_Tooltip_2; }
  1065. inline void set_m_Tooltip_2(String_t* value)
  1066. {
  1067. ___m_Tooltip_2 = value;
  1068. Il2CppCodeGenWriteBarrier((&___m_Tooltip_2), value);
  1069. }
  1070. };
  1071. struct GUIContent_t3050628031_StaticFields
  1072. {
  1073. public:
  1074. // UnityEngine.GUIContent UnityEngine.GUIContent::s_Text
  1075. GUIContent_t3050628031 * ___s_Text_3;
  1076. // UnityEngine.GUIContent UnityEngine.GUIContent::s_Image
  1077. GUIContent_t3050628031 * ___s_Image_4;
  1078. // UnityEngine.GUIContent UnityEngine.GUIContent::s_TextImage
  1079. GUIContent_t3050628031 * ___s_TextImage_5;
  1080. // UnityEngine.GUIContent UnityEngine.GUIContent::none
  1081. GUIContent_t3050628031 * ___none_6;
  1082. public:
  1083. inline static int32_t get_offset_of_s_Text_3() { return static_cast<int32_t>(offsetof(GUIContent_t3050628031_StaticFields, ___s_Text_3)); }
  1084. inline GUIContent_t3050628031 * get_s_Text_3() const { return ___s_Text_3; }
  1085. inline GUIContent_t3050628031 ** get_address_of_s_Text_3() { return &___s_Text_3; }
  1086. inline void set_s_Text_3(GUIContent_t3050628031 * value)
  1087. {
  1088. ___s_Text_3 = value;
  1089. Il2CppCodeGenWriteBarrier((&___s_Text_3), value);
  1090. }
  1091. inline static int32_t get_offset_of_s_Image_4() { return static_cast<int32_t>(offsetof(GUIContent_t3050628031_StaticFields, ___s_Image_4)); }
  1092. inline GUIContent_t3050628031 * get_s_Image_4() const { return ___s_Image_4; }
  1093. inline GUIContent_t3050628031 ** get_address_of_s_Image_4() { return &___s_Image_4; }
  1094. inline void set_s_Image_4(GUIContent_t3050628031 * value)
  1095. {
  1096. ___s_Image_4 = value;
  1097. Il2CppCodeGenWriteBarrier((&___s_Image_4), value);
  1098. }
  1099. inline static int32_t get_offset_of_s_TextImage_5() { return static_cast<int32_t>(offsetof(GUIContent_t3050628031_StaticFields, ___s_TextImage_5)); }
  1100. inline GUIContent_t3050628031 * get_s_TextImage_5() const { return ___s_TextImage_5; }
  1101. inline GUIContent_t3050628031 ** get_address_of_s_TextImage_5() { return &___s_TextImage_5; }
  1102. inline void set_s_TextImage_5(GUIContent_t3050628031 * value)
  1103. {
  1104. ___s_TextImage_5 = value;
  1105. Il2CppCodeGenWriteBarrier((&___s_TextImage_5), value);
  1106. }
  1107. inline static int32_t get_offset_of_none_6() { return static_cast<int32_t>(offsetof(GUIContent_t3050628031_StaticFields, ___none_6)); }
  1108. inline GUIContent_t3050628031 * get_none_6() const { return ___none_6; }
  1109. inline GUIContent_t3050628031 ** get_address_of_none_6() { return &___none_6; }
  1110. inline void set_none_6(GUIContent_t3050628031 * value)
  1111. {
  1112. ___none_6 = value;
  1113. Il2CppCodeGenWriteBarrier((&___none_6), value);
  1114. }
  1115. };
  1116. #ifdef __clang__
  1117. #pragma clang diagnostic pop
  1118. #endif
  1119. // Native definition for P/Invoke marshalling of UnityEngine.GUIContent
  1120. struct GUIContent_t3050628031_marshaled_pinvoke
  1121. {
  1122. char* ___m_Text_0;
  1123. Texture_t3661962703 * ___m_Image_1;
  1124. char* ___m_Tooltip_2;
  1125. };
  1126. // Native definition for COM marshalling of UnityEngine.GUIContent
  1127. struct GUIContent_t3050628031_marshaled_com
  1128. {
  1129. Il2CppChar* ___m_Text_0;
  1130. Texture_t3661962703 * ___m_Image_1;
  1131. Il2CppChar* ___m_Tooltip_2;
  1132. };
  1133. #endif // GUICONTENT_T3050628031_H
  1134. #ifndef GUILAYOUT_T3503650450_H
  1135. #define GUILAYOUT_T3503650450_H
  1136. #ifdef __clang__
  1137. #pragma clang diagnostic push
  1138. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1139. #pragma clang diagnostic ignored "-Wunused-variable"
  1140. #endif
  1141. // UnityEngine.GUILayout
  1142. struct GUILayout_t3503650450 : public RuntimeObject
  1143. {
  1144. public:
  1145. public:
  1146. };
  1147. #ifdef __clang__
  1148. #pragma clang diagnostic pop
  1149. #endif
  1150. #endif // GUILAYOUT_T3503650450_H
  1151. #ifndef LAYOUTCACHE_T78309876_H
  1152. #define LAYOUTCACHE_T78309876_H
  1153. #ifdef __clang__
  1154. #pragma clang diagnostic push
  1155. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1156. #pragma clang diagnostic ignored "-Wunused-variable"
  1157. #endif
  1158. // UnityEngine.GUILayoutUtility/LayoutCache
  1159. struct LayoutCache_t78309876 : public RuntimeObject
  1160. {
  1161. public:
  1162. // UnityEngine.GUILayoutGroup UnityEngine.GUILayoutUtility/LayoutCache::topLevel
  1163. GUILayoutGroup_t2157789695 * ___topLevel_0;
  1164. // UnityEngineInternal.GenericStack UnityEngine.GUILayoutUtility/LayoutCache::layoutGroups
  1165. GenericStack_t1310059385 * ___layoutGroups_1;
  1166. // UnityEngine.GUILayoutGroup UnityEngine.GUILayoutUtility/LayoutCache::windows
  1167. GUILayoutGroup_t2157789695 * ___windows_2;
  1168. public:
  1169. inline static int32_t get_offset_of_topLevel_0() { return static_cast<int32_t>(offsetof(LayoutCache_t78309876, ___topLevel_0)); }
  1170. inline GUILayoutGroup_t2157789695 * get_topLevel_0() const { return ___topLevel_0; }
  1171. inline GUILayoutGroup_t2157789695 ** get_address_of_topLevel_0() { return &___topLevel_0; }
  1172. inline void set_topLevel_0(GUILayoutGroup_t2157789695 * value)
  1173. {
  1174. ___topLevel_0 = value;
  1175. Il2CppCodeGenWriteBarrier((&___topLevel_0), value);
  1176. }
  1177. inline static int32_t get_offset_of_layoutGroups_1() { return static_cast<int32_t>(offsetof(LayoutCache_t78309876, ___layoutGroups_1)); }
  1178. inline GenericStack_t1310059385 * get_layoutGroups_1() const { return ___layoutGroups_1; }
  1179. inline GenericStack_t1310059385 ** get_address_of_layoutGroups_1() { return &___layoutGroups_1; }
  1180. inline void set_layoutGroups_1(GenericStack_t1310059385 * value)
  1181. {
  1182. ___layoutGroups_1 = value;
  1183. Il2CppCodeGenWriteBarrier((&___layoutGroups_1), value);
  1184. }
  1185. inline static int32_t get_offset_of_windows_2() { return static_cast<int32_t>(offsetof(LayoutCache_t78309876, ___windows_2)); }
  1186. inline GUILayoutGroup_t2157789695 * get_windows_2() const { return ___windows_2; }
  1187. inline GUILayoutGroup_t2157789695 ** get_address_of_windows_2() { return &___windows_2; }
  1188. inline void set_windows_2(GUILayoutGroup_t2157789695 * value)
  1189. {
  1190. ___windows_2 = value;
  1191. Il2CppCodeGenWriteBarrier((&___windows_2), value);
  1192. }
  1193. };
  1194. #ifdef __clang__
  1195. #pragma clang diagnostic pop
  1196. #endif
  1197. #endif // LAYOUTCACHE_T78309876_H
  1198. #ifndef SCROLLVIEWSTATE_T3797911395_H
  1199. #define SCROLLVIEWSTATE_T3797911395_H
  1200. #ifdef __clang__
  1201. #pragma clang diagnostic push
  1202. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1203. #pragma clang diagnostic ignored "-Wunused-variable"
  1204. #endif
  1205. // UnityEngine.ScrollViewState
  1206. struct ScrollViewState_t3797911395 : public RuntimeObject
  1207. {
  1208. public:
  1209. public:
  1210. };
  1211. #ifdef __clang__
  1212. #pragma clang diagnostic pop
  1213. #endif
  1214. #endif // SCROLLVIEWSTATE_T3797911395_H
  1215. #ifndef ATTRIBUTE_T861562559_H
  1216. #define ATTRIBUTE_T861562559_H
  1217. #ifdef __clang__
  1218. #pragma clang diagnostic push
  1219. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1220. #pragma clang diagnostic ignored "-Wunused-variable"
  1221. #endif
  1222. // System.Attribute
  1223. struct Attribute_t861562559 : public RuntimeObject
  1224. {
  1225. public:
  1226. public:
  1227. };
  1228. #ifdef __clang__
  1229. #pragma clang diagnostic pop
  1230. #endif
  1231. #endif // ATTRIBUTE_T861562559_H
  1232. #ifndef VALUETYPE_T3640485471_H
  1233. #define VALUETYPE_T3640485471_H
  1234. #ifdef __clang__
  1235. #pragma clang diagnostic push
  1236. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1237. #pragma clang diagnostic ignored "-Wunused-variable"
  1238. #endif
  1239. // System.ValueType
  1240. struct ValueType_t3640485471 : public RuntimeObject
  1241. {
  1242. public:
  1243. public:
  1244. };
  1245. #ifdef __clang__
  1246. #pragma clang diagnostic pop
  1247. #endif
  1248. // Native definition for P/Invoke marshalling of System.ValueType
  1249. struct ValueType_t3640485471_marshaled_pinvoke
  1250. {
  1251. };
  1252. // Native definition for COM marshalling of System.ValueType
  1253. struct ValueType_t3640485471_marshaled_com
  1254. {
  1255. };
  1256. #endif // VALUETYPE_T3640485471_H
  1257. #ifndef STRING_T_H
  1258. #define STRING_T_H
  1259. #ifdef __clang__
  1260. #pragma clang diagnostic push
  1261. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1262. #pragma clang diagnostic ignored "-Wunused-variable"
  1263. #endif
  1264. // System.String
  1265. struct String_t : public RuntimeObject
  1266. {
  1267. public:
  1268. // System.Int32 System.String::length
  1269. int32_t ___length_0;
  1270. // System.Char System.String::start_char
  1271. Il2CppChar ___start_char_1;
  1272. public:
  1273. inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(String_t, ___length_0)); }
  1274. inline int32_t get_length_0() const { return ___length_0; }
  1275. inline int32_t* get_address_of_length_0() { return &___length_0; }
  1276. inline void set_length_0(int32_t value)
  1277. {
  1278. ___length_0 = value;
  1279. }
  1280. inline static int32_t get_offset_of_start_char_1() { return static_cast<int32_t>(offsetof(String_t, ___start_char_1)); }
  1281. inline Il2CppChar get_start_char_1() const { return ___start_char_1; }
  1282. inline Il2CppChar* get_address_of_start_char_1() { return &___start_char_1; }
  1283. inline void set_start_char_1(Il2CppChar value)
  1284. {
  1285. ___start_char_1 = value;
  1286. }
  1287. };
  1288. struct String_t_StaticFields
  1289. {
  1290. public:
  1291. // System.String System.String::Empty
  1292. String_t* ___Empty_2;
  1293. // System.Char[] System.String::WhiteChars
  1294. CharU5BU5D_t3528271667* ___WhiteChars_3;
  1295. public:
  1296. inline static int32_t get_offset_of_Empty_2() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_2)); }
  1297. inline String_t* get_Empty_2() const { return ___Empty_2; }
  1298. inline String_t** get_address_of_Empty_2() { return &___Empty_2; }
  1299. inline void set_Empty_2(String_t* value)
  1300. {
  1301. ___Empty_2 = value;
  1302. Il2CppCodeGenWriteBarrier((&___Empty_2), value);
  1303. }
  1304. inline static int32_t get_offset_of_WhiteChars_3() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___WhiteChars_3)); }
  1305. inline CharU5BU5D_t3528271667* get_WhiteChars_3() const { return ___WhiteChars_3; }
  1306. inline CharU5BU5D_t3528271667** get_address_of_WhiteChars_3() { return &___WhiteChars_3; }
  1307. inline void set_WhiteChars_3(CharU5BU5D_t3528271667* value)
  1308. {
  1309. ___WhiteChars_3 = value;
  1310. Il2CppCodeGenWriteBarrier((&___WhiteChars_3), value);
  1311. }
  1312. };
  1313. #ifdef __clang__
  1314. #pragma clang diagnostic pop
  1315. #endif
  1316. #endif // STRING_T_H
  1317. #ifndef SLIDERSTATE_T2207048770_H
  1318. #define SLIDERSTATE_T2207048770_H
  1319. #ifdef __clang__
  1320. #pragma clang diagnostic push
  1321. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1322. #pragma clang diagnostic ignored "-Wunused-variable"
  1323. #endif
  1324. // UnityEngine.SliderState
  1325. struct SliderState_t2207048770 : public RuntimeObject
  1326. {
  1327. public:
  1328. public:
  1329. };
  1330. #ifdef __clang__
  1331. #pragma clang diagnostic pop
  1332. #endif
  1333. #endif // SLIDERSTATE_T2207048770_H
  1334. #ifndef APPLICATIONEXCEPTION_T2339761290_H
  1335. #define APPLICATIONEXCEPTION_T2339761290_H
  1336. #ifdef __clang__
  1337. #pragma clang diagnostic push
  1338. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1339. #pragma clang diagnostic ignored "-Wunused-variable"
  1340. #endif
  1341. // System.ApplicationException
  1342. struct ApplicationException_t2339761290 : public Exception_t
  1343. {
  1344. public:
  1345. public:
  1346. };
  1347. #ifdef __clang__
  1348. #pragma clang diagnostic pop
  1349. #endif
  1350. #endif // APPLICATIONEXCEPTION_T2339761290_H
  1351. #ifndef METHODBASE_T_H
  1352. #define METHODBASE_T_H
  1353. #ifdef __clang__
  1354. #pragma clang diagnostic push
  1355. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1356. #pragma clang diagnostic ignored "-Wunused-variable"
  1357. #endif
  1358. // System.Reflection.MethodBase
  1359. struct MethodBase_t : public MemberInfo_t
  1360. {
  1361. public:
  1362. public:
  1363. };
  1364. #ifdef __clang__
  1365. #pragma clang diagnostic pop
  1366. #endif
  1367. #endif // METHODBASE_T_H
  1368. #ifndef SYSTEMEXCEPTION_T176217640_H
  1369. #define SYSTEMEXCEPTION_T176217640_H
  1370. #ifdef __clang__
  1371. #pragma clang diagnostic push
  1372. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1373. #pragma clang diagnostic ignored "-Wunused-variable"
  1374. #endif
  1375. // System.SystemException
  1376. struct SystemException_t176217640 : public Exception_t
  1377. {
  1378. public:
  1379. public:
  1380. };
  1381. #ifdef __clang__
  1382. #pragma clang diagnostic pop
  1383. #endif
  1384. #endif // SYSTEMEXCEPTION_T176217640_H
  1385. #ifndef ENUMERATOR_T2280962893_H
  1386. #define ENUMERATOR_T2280962893_H
  1387. #ifdef __clang__
  1388. #pragma clang diagnostic push
  1389. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1390. #pragma clang diagnostic ignored "-Wunused-variable"
  1391. #endif
  1392. // System.Collections.Generic.List`1/Enumerator<UnityEngine.GUILayoutEntry>
  1393. struct Enumerator_t2280962893
  1394. {
  1395. public:
  1396. // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::l
  1397. List_1_t391719016 * ___l_0;
  1398. // System.Int32 System.Collections.Generic.List`1/Enumerator::next
  1399. int32_t ___next_1;
  1400. // System.Int32 System.Collections.Generic.List`1/Enumerator::ver
  1401. int32_t ___ver_2;
  1402. // T System.Collections.Generic.List`1/Enumerator::current
  1403. GUILayoutEntry_t3214611570 * ___current_3;
  1404. public:
  1405. inline static int32_t get_offset_of_l_0() { return static_cast<int32_t>(offsetof(Enumerator_t2280962893, ___l_0)); }
  1406. inline List_1_t391719016 * get_l_0() const { return ___l_0; }
  1407. inline List_1_t391719016 ** get_address_of_l_0() { return &___l_0; }
  1408. inline void set_l_0(List_1_t391719016 * value)
  1409. {
  1410. ___l_0 = value;
  1411. Il2CppCodeGenWriteBarrier((&___l_0), value);
  1412. }
  1413. inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Enumerator_t2280962893, ___next_1)); }
  1414. inline int32_t get_next_1() const { return ___next_1; }
  1415. inline int32_t* get_address_of_next_1() { return &___next_1; }
  1416. inline void set_next_1(int32_t value)
  1417. {
  1418. ___next_1 = value;
  1419. }
  1420. inline static int32_t get_offset_of_ver_2() { return static_cast<int32_t>(offsetof(Enumerator_t2280962893, ___ver_2)); }
  1421. inline int32_t get_ver_2() const { return ___ver_2; }
  1422. inline int32_t* get_address_of_ver_2() { return &___ver_2; }
  1423. inline void set_ver_2(int32_t value)
  1424. {
  1425. ___ver_2 = value;
  1426. }
  1427. inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2280962893, ___current_3)); }
  1428. inline GUILayoutEntry_t3214611570 * get_current_3() const { return ___current_3; }
  1429. inline GUILayoutEntry_t3214611570 ** get_address_of_current_3() { return &___current_3; }
  1430. inline void set_current_3(GUILayoutEntry_t3214611570 * value)
  1431. {
  1432. ___current_3 = value;
  1433. Il2CppCodeGenWriteBarrier((&___current_3), value);
  1434. }
  1435. };
  1436. #ifdef __clang__
  1437. #pragma clang diagnostic pop
  1438. #endif
  1439. #endif // ENUMERATOR_T2280962893_H
  1440. #ifndef ENUMERATOR_T2146457487_H
  1441. #define ENUMERATOR_T2146457487_H
  1442. #ifdef __clang__
  1443. #pragma clang diagnostic push
  1444. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1445. #pragma clang diagnostic ignored "-Wunused-variable"
  1446. #endif
  1447. // System.Collections.Generic.List`1/Enumerator<System.Object>
  1448. struct Enumerator_t2146457487
  1449. {
  1450. public:
  1451. // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::l
  1452. List_1_t257213610 * ___l_0;
  1453. // System.Int32 System.Collections.Generic.List`1/Enumerator::next
  1454. int32_t ___next_1;
  1455. // System.Int32 System.Collections.Generic.List`1/Enumerator::ver
  1456. int32_t ___ver_2;
  1457. // T System.Collections.Generic.List`1/Enumerator::current
  1458. RuntimeObject * ___current_3;
  1459. public:
  1460. inline static int32_t get_offset_of_l_0() { return static_cast<int32_t>(offsetof(Enumerator_t2146457487, ___l_0)); }
  1461. inline List_1_t257213610 * get_l_0() const { return ___l_0; }
  1462. inline List_1_t257213610 ** get_address_of_l_0() { return &___l_0; }
  1463. inline void set_l_0(List_1_t257213610 * value)
  1464. {
  1465. ___l_0 = value;
  1466. Il2CppCodeGenWriteBarrier((&___l_0), value);
  1467. }
  1468. inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Enumerator_t2146457487, ___next_1)); }
  1469. inline int32_t get_next_1() const { return ___next_1; }
  1470. inline int32_t* get_address_of_next_1() { return &___next_1; }
  1471. inline void set_next_1(int32_t value)
  1472. {
  1473. ___next_1 = value;
  1474. }
  1475. inline static int32_t get_offset_of_ver_2() { return static_cast<int32_t>(offsetof(Enumerator_t2146457487, ___ver_2)); }
  1476. inline int32_t get_ver_2() const { return ___ver_2; }
  1477. inline int32_t* get_address_of_ver_2() { return &___ver_2; }
  1478. inline void set_ver_2(int32_t value)
  1479. {
  1480. ___ver_2 = value;
  1481. }
  1482. inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2146457487, ___current_3)); }
  1483. inline RuntimeObject * get_current_3() const { return ___current_3; }
  1484. inline RuntimeObject ** get_address_of_current_3() { return &___current_3; }
  1485. inline void set_current_3(RuntimeObject * value)
  1486. {
  1487. ___current_3 = value;
  1488. Il2CppCodeGenWriteBarrier((&___current_3), value);
  1489. }
  1490. };
  1491. #ifdef __clang__
  1492. #pragma clang diagnostic pop
  1493. #endif
  1494. #endif // ENUMERATOR_T2146457487_H
  1495. #ifndef TIMESPAN_T881159249_H
  1496. #define TIMESPAN_T881159249_H
  1497. #ifdef __clang__
  1498. #pragma clang diagnostic push
  1499. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1500. #pragma clang diagnostic ignored "-Wunused-variable"
  1501. #endif
  1502. // System.TimeSpan
  1503. struct TimeSpan_t881159249
  1504. {
  1505. public:
  1506. // System.Int64 System.TimeSpan::_ticks
  1507. int64_t ____ticks_8;
  1508. public:
  1509. inline static int32_t get_offset_of__ticks_8() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249, ____ticks_8)); }
  1510. inline int64_t get__ticks_8() const { return ____ticks_8; }
  1511. inline int64_t* get_address_of__ticks_8() { return &____ticks_8; }
  1512. inline void set__ticks_8(int64_t value)
  1513. {
  1514. ____ticks_8 = value;
  1515. }
  1516. };
  1517. struct TimeSpan_t881159249_StaticFields
  1518. {
  1519. public:
  1520. // System.TimeSpan System.TimeSpan::MaxValue
  1521. TimeSpan_t881159249 ___MaxValue_5;
  1522. // System.TimeSpan System.TimeSpan::MinValue
  1523. TimeSpan_t881159249 ___MinValue_6;
  1524. // System.TimeSpan System.TimeSpan::Zero
  1525. TimeSpan_t881159249 ___Zero_7;
  1526. public:
  1527. inline static int32_t get_offset_of_MaxValue_5() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ___MaxValue_5)); }
  1528. inline TimeSpan_t881159249 get_MaxValue_5() const { return ___MaxValue_5; }
  1529. inline TimeSpan_t881159249 * get_address_of_MaxValue_5() { return &___MaxValue_5; }
  1530. inline void set_MaxValue_5(TimeSpan_t881159249 value)
  1531. {
  1532. ___MaxValue_5 = value;
  1533. }
  1534. inline static int32_t get_offset_of_MinValue_6() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ___MinValue_6)); }
  1535. inline TimeSpan_t881159249 get_MinValue_6() const { return ___MinValue_6; }
  1536. inline TimeSpan_t881159249 * get_address_of_MinValue_6() { return &___MinValue_6; }
  1537. inline void set_MinValue_6(TimeSpan_t881159249 value)
  1538. {
  1539. ___MinValue_6 = value;
  1540. }
  1541. inline static int32_t get_offset_of_Zero_7() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ___Zero_7)); }
  1542. inline TimeSpan_t881159249 get_Zero_7() const { return ___Zero_7; }
  1543. inline TimeSpan_t881159249 * get_address_of_Zero_7() { return &___Zero_7; }
  1544. inline void set_Zero_7(TimeSpan_t881159249 value)
  1545. {
  1546. ___Zero_7 = value;
  1547. }
  1548. };
  1549. #ifdef __clang__
  1550. #pragma clang diagnostic pop
  1551. #endif
  1552. #endif // TIMESPAN_T881159249_H
  1553. #ifndef ENUM_T4135868527_H
  1554. #define ENUM_T4135868527_H
  1555. #ifdef __clang__
  1556. #pragma clang diagnostic push
  1557. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1558. #pragma clang diagnostic ignored "-Wunused-variable"
  1559. #endif
  1560. // System.Enum
  1561. struct Enum_t4135868527 : public ValueType_t3640485471
  1562. {
  1563. public:
  1564. public:
  1565. };
  1566. struct Enum_t4135868527_StaticFields
  1567. {
  1568. public:
  1569. // System.Char[] System.Enum::split_char
  1570. CharU5BU5D_t3528271667* ___split_char_0;
  1571. public:
  1572. inline static int32_t get_offset_of_split_char_0() { return static_cast<int32_t>(offsetof(Enum_t4135868527_StaticFields, ___split_char_0)); }
  1573. inline CharU5BU5D_t3528271667* get_split_char_0() const { return ___split_char_0; }
  1574. inline CharU5BU5D_t3528271667** get_address_of_split_char_0() { return &___split_char_0; }
  1575. inline void set_split_char_0(CharU5BU5D_t3528271667* value)
  1576. {
  1577. ___split_char_0 = value;
  1578. Il2CppCodeGenWriteBarrier((&___split_char_0), value);
  1579. }
  1580. };
  1581. #ifdef __clang__
  1582. #pragma clang diagnostic pop
  1583. #endif
  1584. // Native definition for P/Invoke marshalling of System.Enum
  1585. struct Enum_t4135868527_marshaled_pinvoke
  1586. {
  1587. };
  1588. // Native definition for COM marshalling of System.Enum
  1589. struct Enum_t4135868527_marshaled_com
  1590. {
  1591. };
  1592. #endif // ENUM_T4135868527_H
  1593. #ifndef GUITARGETATTRIBUTE_T25796337_H
  1594. #define GUITARGETATTRIBUTE_T25796337_H
  1595. #ifdef __clang__
  1596. #pragma clang diagnostic push
  1597. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1598. #pragma clang diagnostic ignored "-Wunused-variable"
  1599. #endif
  1600. // UnityEngine.GUITargetAttribute
  1601. struct GUITargetAttribute_t25796337 : public Attribute_t861562559
  1602. {
  1603. public:
  1604. // System.Int32 UnityEngine.GUITargetAttribute::displayMask
  1605. int32_t ___displayMask_0;
  1606. public:
  1607. inline static int32_t get_offset_of_displayMask_0() { return static_cast<int32_t>(offsetof(GUITargetAttribute_t25796337, ___displayMask_0)); }
  1608. inline int32_t get_displayMask_0() const { return ___displayMask_0; }
  1609. inline int32_t* get_address_of_displayMask_0() { return &___displayMask_0; }
  1610. inline void set_displayMask_0(int32_t value)
  1611. {
  1612. ___displayMask_0 = value;
  1613. }
  1614. };
  1615. #ifdef __clang__
  1616. #pragma clang diagnostic pop
  1617. #endif
  1618. #endif // GUITARGETATTRIBUTE_T25796337_H
  1619. #ifndef CHAR_T3634460470_H
  1620. #define CHAR_T3634460470_H
  1621. #ifdef __clang__
  1622. #pragma clang diagnostic push
  1623. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1624. #pragma clang diagnostic ignored "-Wunused-variable"
  1625. #endif
  1626. // System.Char
  1627. struct Char_t3634460470
  1628. {
  1629. public:
  1630. // System.Char System.Char::m_value
  1631. Il2CppChar ___m_value_2;
  1632. public:
  1633. inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Char_t3634460470, ___m_value_2)); }
  1634. inline Il2CppChar get_m_value_2() const { return ___m_value_2; }
  1635. inline Il2CppChar* get_address_of_m_value_2() { return &___m_value_2; }
  1636. inline void set_m_value_2(Il2CppChar value)
  1637. {
  1638. ___m_value_2 = value;
  1639. }
  1640. };
  1641. struct Char_t3634460470_StaticFields
  1642. {
  1643. public:
  1644. // System.Byte* System.Char::category_data
  1645. uint8_t* ___category_data_3;
  1646. // System.Byte* System.Char::numeric_data
  1647. uint8_t* ___numeric_data_4;
  1648. // System.Double* System.Char::numeric_data_values
  1649. double* ___numeric_data_values_5;
  1650. // System.UInt16* System.Char::to_lower_data_low
  1651. uint16_t* ___to_lower_data_low_6;
  1652. // System.UInt16* System.Char::to_lower_data_high
  1653. uint16_t* ___to_lower_data_high_7;
  1654. // System.UInt16* System.Char::to_upper_data_low
  1655. uint16_t* ___to_upper_data_low_8;
  1656. // System.UInt16* System.Char::to_upper_data_high
  1657. uint16_t* ___to_upper_data_high_9;
  1658. public:
  1659. inline static int32_t get_offset_of_category_data_3() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___category_data_3)); }
  1660. inline uint8_t* get_category_data_3() const { return ___category_data_3; }
  1661. inline uint8_t** get_address_of_category_data_3() { return &___category_data_3; }
  1662. inline void set_category_data_3(uint8_t* value)
  1663. {
  1664. ___category_data_3 = value;
  1665. }
  1666. inline static int32_t get_offset_of_numeric_data_4() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___numeric_data_4)); }
  1667. inline uint8_t* get_numeric_data_4() const { return ___numeric_data_4; }
  1668. inline uint8_t** get_address_of_numeric_data_4() { return &___numeric_data_4; }
  1669. inline void set_numeric_data_4(uint8_t* value)
  1670. {
  1671. ___numeric_data_4 = value;
  1672. }
  1673. inline static int32_t get_offset_of_numeric_data_values_5() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___numeric_data_values_5)); }
  1674. inline double* get_numeric_data_values_5() const { return ___numeric_data_values_5; }
  1675. inline double** get_address_of_numeric_data_values_5() { return &___numeric_data_values_5; }
  1676. inline void set_numeric_data_values_5(double* value)
  1677. {
  1678. ___numeric_data_values_5 = value;
  1679. }
  1680. inline static int32_t get_offset_of_to_lower_data_low_6() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___to_lower_data_low_6)); }
  1681. inline uint16_t* get_to_lower_data_low_6() const { return ___to_lower_data_low_6; }
  1682. inline uint16_t** get_address_of_to_lower_data_low_6() { return &___to_lower_data_low_6; }
  1683. inline void set_to_lower_data_low_6(uint16_t* value)
  1684. {
  1685. ___to_lower_data_low_6 = value;
  1686. }
  1687. inline static int32_t get_offset_of_to_lower_data_high_7() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___to_lower_data_high_7)); }
  1688. inline uint16_t* get_to_lower_data_high_7() const { return ___to_lower_data_high_7; }
  1689. inline uint16_t** get_address_of_to_lower_data_high_7() { return &___to_lower_data_high_7; }
  1690. inline void set_to_lower_data_high_7(uint16_t* value)
  1691. {
  1692. ___to_lower_data_high_7 = value;
  1693. }
  1694. inline static int32_t get_offset_of_to_upper_data_low_8() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___to_upper_data_low_8)); }
  1695. inline uint16_t* get_to_upper_data_low_8() const { return ___to_upper_data_low_8; }
  1696. inline uint16_t** get_address_of_to_upper_data_low_8() { return &___to_upper_data_low_8; }
  1697. inline void set_to_upper_data_low_8(uint16_t* value)
  1698. {
  1699. ___to_upper_data_low_8 = value;
  1700. }
  1701. inline static int32_t get_offset_of_to_upper_data_high_9() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___to_upper_data_high_9)); }
  1702. inline uint16_t* get_to_upper_data_high_9() const { return ___to_upper_data_high_9; }
  1703. inline uint16_t** get_address_of_to_upper_data_high_9() { return &___to_upper_data_high_9; }
  1704. inline void set_to_upper_data_high_9(uint16_t* value)
  1705. {
  1706. ___to_upper_data_high_9 = value;
  1707. }
  1708. };
  1709. #ifdef __clang__
  1710. #pragma clang diagnostic pop
  1711. #endif
  1712. #endif // CHAR_T3634460470_H
  1713. #ifndef BOOLEAN_T97287965_H
  1714. #define BOOLEAN_T97287965_H
  1715. #ifdef __clang__
  1716. #pragma clang diagnostic push
  1717. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1718. #pragma clang diagnostic ignored "-Wunused-variable"
  1719. #endif
  1720. // System.Boolean
  1721. struct Boolean_t97287965
  1722. {
  1723. public:
  1724. // System.Boolean System.Boolean::m_value
  1725. bool ___m_value_2;
  1726. public:
  1727. inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Boolean_t97287965, ___m_value_2)); }
  1728. inline bool get_m_value_2() const { return ___m_value_2; }
  1729. inline bool* get_address_of_m_value_2() { return &___m_value_2; }
  1730. inline void set_m_value_2(bool value)
  1731. {
  1732. ___m_value_2 = value;
  1733. }
  1734. };
  1735. struct Boolean_t97287965_StaticFields
  1736. {
  1737. public:
  1738. // System.String System.Boolean::FalseString
  1739. String_t* ___FalseString_0;
  1740. // System.String System.Boolean::TrueString
  1741. String_t* ___TrueString_1;
  1742. public:
  1743. inline static int32_t get_offset_of_FalseString_0() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___FalseString_0)); }
  1744. inline String_t* get_FalseString_0() const { return ___FalseString_0; }
  1745. inline String_t** get_address_of_FalseString_0() { return &___FalseString_0; }
  1746. inline void set_FalseString_0(String_t* value)
  1747. {
  1748. ___FalseString_0 = value;
  1749. Il2CppCodeGenWriteBarrier((&___FalseString_0), value);
  1750. }
  1751. inline static int32_t get_offset_of_TrueString_1() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___TrueString_1)); }
  1752. inline String_t* get_TrueString_1() const { return ___TrueString_1; }
  1753. inline String_t** get_address_of_TrueString_1() { return &___TrueString_1; }
  1754. inline void set_TrueString_1(String_t* value)
  1755. {
  1756. ___TrueString_1 = value;
  1757. Il2CppCodeGenWriteBarrier((&___TrueString_1), value);
  1758. }
  1759. };
  1760. #ifdef __clang__
  1761. #pragma clang diagnostic pop
  1762. #endif
  1763. #endif // BOOLEAN_T97287965_H
  1764. #ifndef COLOR_T2555686324_H
  1765. #define COLOR_T2555686324_H
  1766. #ifdef __clang__
  1767. #pragma clang diagnostic push
  1768. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1769. #pragma clang diagnostic ignored "-Wunused-variable"
  1770. #endif
  1771. // UnityEngine.Color
  1772. struct Color_t2555686324
  1773. {
  1774. public:
  1775. // System.Single UnityEngine.Color::r
  1776. float ___r_0;
  1777. // System.Single UnityEngine.Color::g
  1778. float ___g_1;
  1779. // System.Single UnityEngine.Color::b
  1780. float ___b_2;
  1781. // System.Single UnityEngine.Color::a
  1782. float ___a_3;
  1783. public:
  1784. inline static int32_t get_offset_of_r_0() { return static_cast<int32_t>(offsetof(Color_t2555686324, ___r_0)); }
  1785. inline float get_r_0() const { return ___r_0; }
  1786. inline float* get_address_of_r_0() { return &___r_0; }
  1787. inline void set_r_0(float value)
  1788. {
  1789. ___r_0 = value;
  1790. }
  1791. inline static int32_t get_offset_of_g_1() { return static_cast<int32_t>(offsetof(Color_t2555686324, ___g_1)); }
  1792. inline float get_g_1() const { return ___g_1; }
  1793. inline float* get_address_of_g_1() { return &___g_1; }
  1794. inline void set_g_1(float value)
  1795. {
  1796. ___g_1 = value;
  1797. }
  1798. inline static int32_t get_offset_of_b_2() { return static_cast<int32_t>(offsetof(Color_t2555686324, ___b_2)); }
  1799. inline float get_b_2() const { return ___b_2; }
  1800. inline float* get_address_of_b_2() { return &___b_2; }
  1801. inline void set_b_2(float value)
  1802. {
  1803. ___b_2 = value;
  1804. }
  1805. inline static int32_t get_offset_of_a_3() { return static_cast<int32_t>(offsetof(Color_t2555686324, ___a_3)); }
  1806. inline float get_a_3() const { return ___a_3; }
  1807. inline float* get_address_of_a_3() { return &___a_3; }
  1808. inline void set_a_3(float value)
  1809. {
  1810. ___a_3 = value;
  1811. }
  1812. };
  1813. #ifdef __clang__
  1814. #pragma clang diagnostic pop
  1815. #endif
  1816. #endif // COLOR_T2555686324_H
  1817. #ifndef GENERICSTACK_T1310059385_H
  1818. #define GENERICSTACK_T1310059385_H
  1819. #ifdef __clang__
  1820. #pragma clang diagnostic push
  1821. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1822. #pragma clang diagnostic ignored "-Wunused-variable"
  1823. #endif
  1824. // UnityEngineInternal.GenericStack
  1825. struct GenericStack_t1310059385 : public Stack_t2329662280
  1826. {
  1827. public:
  1828. public:
  1829. };
  1830. #ifdef __clang__
  1831. #pragma clang diagnostic pop
  1832. #endif
  1833. #endif // GENERICSTACK_T1310059385_H
  1834. #ifndef VECTOR2_T2156229523_H
  1835. #define VECTOR2_T2156229523_H
  1836. #ifdef __clang__
  1837. #pragma clang diagnostic push
  1838. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1839. #pragma clang diagnostic ignored "-Wunused-variable"
  1840. #endif
  1841. // UnityEngine.Vector2
  1842. struct Vector2_t2156229523
  1843. {
  1844. public:
  1845. // System.Single UnityEngine.Vector2::x
  1846. float ___x_0;
  1847. // System.Single UnityEngine.Vector2::y
  1848. float ___y_1;
  1849. public:
  1850. inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_t2156229523, ___x_0)); }
  1851. inline float get_x_0() const { return ___x_0; }
  1852. inline float* get_address_of_x_0() { return &___x_0; }
  1853. inline void set_x_0(float value)
  1854. {
  1855. ___x_0 = value;
  1856. }
  1857. inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector2_t2156229523, ___y_1)); }
  1858. inline float get_y_1() const { return ___y_1; }
  1859. inline float* get_address_of_y_1() { return &___y_1; }
  1860. inline void set_y_1(float value)
  1861. {
  1862. ___y_1 = value;
  1863. }
  1864. };
  1865. struct Vector2_t2156229523_StaticFields
  1866. {
  1867. public:
  1868. // UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
  1869. Vector2_t2156229523 ___zeroVector_2;
  1870. // UnityEngine.Vector2 UnityEngine.Vector2::oneVector
  1871. Vector2_t2156229523 ___oneVector_3;
  1872. // UnityEngine.Vector2 UnityEngine.Vector2::upVector
  1873. Vector2_t2156229523 ___upVector_4;
  1874. // UnityEngine.Vector2 UnityEngine.Vector2::downVector
  1875. Vector2_t2156229523 ___downVector_5;
  1876. // UnityEngine.Vector2 UnityEngine.Vector2::leftVector
  1877. Vector2_t2156229523 ___leftVector_6;
  1878. // UnityEngine.Vector2 UnityEngine.Vector2::rightVector
  1879. Vector2_t2156229523 ___rightVector_7;
  1880. // UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
  1881. Vector2_t2156229523 ___positiveInfinityVector_8;
  1882. // UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
  1883. Vector2_t2156229523 ___negativeInfinityVector_9;
  1884. public:
  1885. inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___zeroVector_2)); }
  1886. inline Vector2_t2156229523 get_zeroVector_2() const { return ___zeroVector_2; }
  1887. inline Vector2_t2156229523 * get_address_of_zeroVector_2() { return &___zeroVector_2; }
  1888. inline void set_zeroVector_2(Vector2_t2156229523 value)
  1889. {
  1890. ___zeroVector_2 = value;
  1891. }
  1892. inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___oneVector_3)); }
  1893. inline Vector2_t2156229523 get_oneVector_3() const { return ___oneVector_3; }
  1894. inline Vector2_t2156229523 * get_address_of_oneVector_3() { return &___oneVector_3; }
  1895. inline void set_oneVector_3(Vector2_t2156229523 value)
  1896. {
  1897. ___oneVector_3 = value;
  1898. }
  1899. inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___upVector_4)); }
  1900. inline Vector2_t2156229523 get_upVector_4() const { return ___upVector_4; }
  1901. inline Vector2_t2156229523 * get_address_of_upVector_4() { return &___upVector_4; }
  1902. inline void set_upVector_4(Vector2_t2156229523 value)
  1903. {
  1904. ___upVector_4 = value;
  1905. }
  1906. inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___downVector_5)); }
  1907. inline Vector2_t2156229523 get_downVector_5() const { return ___downVector_5; }
  1908. inline Vector2_t2156229523 * get_address_of_downVector_5() { return &___downVector_5; }
  1909. inline void set_downVector_5(Vector2_t2156229523 value)
  1910. {
  1911. ___downVector_5 = value;
  1912. }
  1913. inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___leftVector_6)); }
  1914. inline Vector2_t2156229523 get_leftVector_6() const { return ___leftVector_6; }
  1915. inline Vector2_t2156229523 * get_address_of_leftVector_6() { return &___leftVector_6; }
  1916. inline void set_leftVector_6(Vector2_t2156229523 value)
  1917. {
  1918. ___leftVector_6 = value;
  1919. }
  1920. inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___rightVector_7)); }
  1921. inline Vector2_t2156229523 get_rightVector_7() const { return ___rightVector_7; }
  1922. inline Vector2_t2156229523 * get_address_of_rightVector_7() { return &___rightVector_7; }
  1923. inline void set_rightVector_7(Vector2_t2156229523 value)
  1924. {
  1925. ___rightVector_7 = value;
  1926. }
  1927. inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___positiveInfinityVector_8)); }
  1928. inline Vector2_t2156229523 get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; }
  1929. inline Vector2_t2156229523 * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; }
  1930. inline void set_positiveInfinityVector_8(Vector2_t2156229523 value)
  1931. {
  1932. ___positiveInfinityVector_8 = value;
  1933. }
  1934. inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___negativeInfinityVector_9)); }
  1935. inline Vector2_t2156229523 get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; }
  1936. inline Vector2_t2156229523 * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; }
  1937. inline void set_negativeInfinityVector_9(Vector2_t2156229523 value)
  1938. {
  1939. ___negativeInfinityVector_9 = value;
  1940. }
  1941. };
  1942. #ifdef __clang__
  1943. #pragma clang diagnostic pop
  1944. #endif
  1945. #endif // VECTOR2_T2156229523_H
  1946. #ifndef INTPTR_T_H
  1947. #define INTPTR_T_H
  1948. #ifdef __clang__
  1949. #pragma clang diagnostic push
  1950. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1951. #pragma clang diagnostic ignored "-Wunused-variable"
  1952. #endif
  1953. // System.IntPtr
  1954. struct IntPtr_t
  1955. {
  1956. public:
  1957. // System.Void* System.IntPtr::m_value
  1958. void* ___m_value_0;
  1959. public:
  1960. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
  1961. inline void* get_m_value_0() const { return ___m_value_0; }
  1962. inline void** get_address_of_m_value_0() { return &___m_value_0; }
  1963. inline void set_m_value_0(void* value)
  1964. {
  1965. ___m_value_0 = value;
  1966. }
  1967. };
  1968. struct IntPtr_t_StaticFields
  1969. {
  1970. public:
  1971. // System.IntPtr System.IntPtr::Zero
  1972. intptr_t ___Zero_1;
  1973. public:
  1974. inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
  1975. inline intptr_t get_Zero_1() const { return ___Zero_1; }
  1976. inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
  1977. inline void set_Zero_1(intptr_t value)
  1978. {
  1979. ___Zero_1 = value;
  1980. }
  1981. };
  1982. #ifdef __clang__
  1983. #pragma clang diagnostic pop
  1984. #endif
  1985. #endif // INTPTR_T_H
  1986. #ifndef EXITGUIEXCEPTION_T133215258_H
  1987. #define EXITGUIEXCEPTION_T133215258_H
  1988. #ifdef __clang__
  1989. #pragma clang diagnostic push
  1990. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1991. #pragma clang diagnostic ignored "-Wunused-variable"
  1992. #endif
  1993. // UnityEngine.ExitGUIException
  1994. struct ExitGUIException_t133215258 : public Exception_t
  1995. {
  1996. public:
  1997. public:
  1998. };
  1999. #ifdef __clang__
  2000. #pragma clang diagnostic pop
  2001. #endif
  2002. #endif // EXITGUIEXCEPTION_T133215258_H
  2003. #ifndef INT32_T2950945753_H
  2004. #define INT32_T2950945753_H
  2005. #ifdef __clang__
  2006. #pragma clang diagnostic push
  2007. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2008. #pragma clang diagnostic ignored "-Wunused-variable"
  2009. #endif
  2010. // System.Int32
  2011. struct Int32_t2950945753
  2012. {
  2013. public:
  2014. // System.Int32 System.Int32::m_value
  2015. int32_t ___m_value_2;
  2016. public:
  2017. inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Int32_t2950945753, ___m_value_2)); }
  2018. inline int32_t get_m_value_2() const { return ___m_value_2; }
  2019. inline int32_t* get_address_of_m_value_2() { return &___m_value_2; }
  2020. inline void set_m_value_2(int32_t value)
  2021. {
  2022. ___m_value_2 = value;
  2023. }
  2024. };
  2025. #ifdef __clang__
  2026. #pragma clang diagnostic pop
  2027. #endif
  2028. #endif // INT32_T2950945753_H
  2029. #ifndef VOID_T1185182177_H
  2030. #define VOID_T1185182177_H
  2031. #ifdef __clang__
  2032. #pragma clang diagnostic push
  2033. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2034. #pragma clang diagnostic ignored "-Wunused-variable"
  2035. #endif
  2036. // System.Void
  2037. struct Void_t1185182177
  2038. {
  2039. public:
  2040. public:
  2041. };
  2042. #ifdef __clang__
  2043. #pragma clang diagnostic pop
  2044. #endif
  2045. #endif // VOID_T1185182177_H
  2046. #ifndef SINGLE_T1397266774_H
  2047. #define SINGLE_T1397266774_H
  2048. #ifdef __clang__
  2049. #pragma clang diagnostic push
  2050. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2051. #pragma clang diagnostic ignored "-Wunused-variable"
  2052. #endif
  2053. // System.Single
  2054. struct Single_t1397266774
  2055. {
  2056. public:
  2057. // System.Single System.Single::m_value
  2058. float ___m_value_7;
  2059. public:
  2060. inline static int32_t get_offset_of_m_value_7() { return static_cast<int32_t>(offsetof(Single_t1397266774, ___m_value_7)); }
  2061. inline float get_m_value_7() const { return ___m_value_7; }
  2062. inline float* get_address_of_m_value_7() { return &___m_value_7; }
  2063. inline void set_m_value_7(float value)
  2064. {
  2065. ___m_value_7 = value;
  2066. }
  2067. };
  2068. #ifdef __clang__
  2069. #pragma clang diagnostic pop
  2070. #endif
  2071. #endif // SINGLE_T1397266774_H
  2072. #ifndef RECT_T2360479859_H
  2073. #define RECT_T2360479859_H
  2074. #ifdef __clang__
  2075. #pragma clang diagnostic push
  2076. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2077. #pragma clang diagnostic ignored "-Wunused-variable"
  2078. #endif
  2079. // UnityEngine.Rect
  2080. struct Rect_t2360479859
  2081. {
  2082. public:
  2083. // System.Single UnityEngine.Rect::m_XMin
  2084. float ___m_XMin_0;
  2085. // System.Single UnityEngine.Rect::m_YMin
  2086. float ___m_YMin_1;
  2087. // System.Single UnityEngine.Rect::m_Width
  2088. float ___m_Width_2;
  2089. // System.Single UnityEngine.Rect::m_Height
  2090. float ___m_Height_3;
  2091. public:
  2092. inline static int32_t get_offset_of_m_XMin_0() { return static_cast<int32_t>(offsetof(Rect_t2360479859, ___m_XMin_0)); }
  2093. inline float get_m_XMin_0() const { return ___m_XMin_0; }
  2094. inline float* get_address_of_m_XMin_0() { return &___m_XMin_0; }
  2095. inline void set_m_XMin_0(float value)
  2096. {
  2097. ___m_XMin_0 = value;
  2098. }
  2099. inline static int32_t get_offset_of_m_YMin_1() { return static_cast<int32_t>(offsetof(Rect_t2360479859, ___m_YMin_1)); }
  2100. inline float get_m_YMin_1() const { return ___m_YMin_1; }
  2101. inline float* get_address_of_m_YMin_1() { return &___m_YMin_1; }
  2102. inline void set_m_YMin_1(float value)
  2103. {
  2104. ___m_YMin_1 = value;
  2105. }
  2106. inline static int32_t get_offset_of_m_Width_2() { return static_cast<int32_t>(offsetof(Rect_t2360479859, ___m_Width_2)); }
  2107. inline float get_m_Width_2() const { return ___m_Width_2; }
  2108. inline float* get_address_of_m_Width_2() { return &___m_Width_2; }
  2109. inline void set_m_Width_2(float value)
  2110. {
  2111. ___m_Width_2 = value;
  2112. }
  2113. inline static int32_t get_offset_of_m_Height_3() { return static_cast<int32_t>(offsetof(Rect_t2360479859, ___m_Height_3)); }
  2114. inline float get_m_Height_3() const { return ___m_Height_3; }
  2115. inline float* get_address_of_m_Height_3() { return &___m_Height_3; }
  2116. inline void set_m_Height_3(float value)
  2117. {
  2118. ___m_Height_3 = value;
  2119. }
  2120. };
  2121. #ifdef __clang__
  2122. #pragma clang diagnostic pop
  2123. #endif
  2124. #endif // RECT_T2360479859_H
  2125. #ifndef DELEGATE_T1188392813_H
  2126. #define DELEGATE_T1188392813_H
  2127. #ifdef __clang__
  2128. #pragma clang diagnostic push
  2129. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2130. #pragma clang diagnostic ignored "-Wunused-variable"
  2131. #endif
  2132. // System.Delegate
  2133. struct Delegate_t1188392813 : public RuntimeObject
  2134. {
  2135. public:
  2136. // System.IntPtr System.Delegate::method_ptr
  2137. Il2CppMethodPointer ___method_ptr_0;
  2138. // System.IntPtr System.Delegate::invoke_impl
  2139. intptr_t ___invoke_impl_1;
  2140. // System.Object System.Delegate::m_target
  2141. RuntimeObject * ___m_target_2;
  2142. // System.IntPtr System.Delegate::method
  2143. intptr_t ___method_3;
  2144. // System.IntPtr System.Delegate::delegate_trampoline
  2145. intptr_t ___delegate_trampoline_4;
  2146. // System.IntPtr System.Delegate::method_code
  2147. intptr_t ___method_code_5;
  2148. // System.Reflection.MethodInfo System.Delegate::method_info
  2149. MethodInfo_t * ___method_info_6;
  2150. // System.Reflection.MethodInfo System.Delegate::original_method_info
  2151. MethodInfo_t * ___original_method_info_7;
  2152. // System.DelegateData System.Delegate::data
  2153. DelegateData_t1677132599 * ___data_8;
  2154. public:
  2155. inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_ptr_0)); }
  2156. inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
  2157. inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
  2158. inline void set_method_ptr_0(Il2CppMethodPointer value)
  2159. {
  2160. ___method_ptr_0 = value;
  2161. }
  2162. inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___invoke_impl_1)); }
  2163. inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
  2164. inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
  2165. inline void set_invoke_impl_1(intptr_t value)
  2166. {
  2167. ___invoke_impl_1 = value;
  2168. }
  2169. inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___m_target_2)); }
  2170. inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
  2171. inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
  2172. inline void set_m_target_2(RuntimeObject * value)
  2173. {
  2174. ___m_target_2 = value;
  2175. Il2CppCodeGenWriteBarrier((&___m_target_2), value);
  2176. }
  2177. inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_3)); }
  2178. inline intptr_t get_method_3() const { return ___method_3; }
  2179. inline intptr_t* get_address_of_method_3() { return &___method_3; }
  2180. inline void set_method_3(intptr_t value)
  2181. {
  2182. ___method_3 = value;
  2183. }
  2184. inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___delegate_trampoline_4)); }
  2185. inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
  2186. inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
  2187. inline void set_delegate_trampoline_4(intptr_t value)
  2188. {
  2189. ___delegate_trampoline_4 = value;
  2190. }
  2191. inline static int32_t get_offset_of_method_code_5() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_code_5)); }
  2192. inline intptr_t get_method_code_5() const { return ___method_code_5; }
  2193. inline intptr_t* get_address_of_method_code_5() { return &___method_code_5; }
  2194. inline void set_method_code_5(intptr_t value)
  2195. {
  2196. ___method_code_5 = value;
  2197. }
  2198. inline static int32_t get_offset_of_method_info_6() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_info_6)); }
  2199. inline MethodInfo_t * get_method_info_6() const { return ___method_info_6; }
  2200. inline MethodInfo_t ** get_address_of_method_info_6() { return &___method_info_6; }
  2201. inline void set_method_info_6(MethodInfo_t * value)
  2202. {
  2203. ___method_info_6 = value;
  2204. Il2CppCodeGenWriteBarrier((&___method_info_6), value);
  2205. }
  2206. inline static int32_t get_offset_of_original_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___original_method_info_7)); }
  2207. inline MethodInfo_t * get_original_method_info_7() const { return ___original_method_info_7; }
  2208. inline MethodInfo_t ** get_address_of_original_method_info_7() { return &___original_method_info_7; }
  2209. inline void set_original_method_info_7(MethodInfo_t * value)
  2210. {
  2211. ___original_method_info_7 = value;
  2212. Il2CppCodeGenWriteBarrier((&___original_method_info_7), value);
  2213. }
  2214. inline static int32_t get_offset_of_data_8() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___data_8)); }
  2215. inline DelegateData_t1677132599 * get_data_8() const { return ___data_8; }
  2216. inline DelegateData_t1677132599 ** get_address_of_data_8() { return &___data_8; }
  2217. inline void set_data_8(DelegateData_t1677132599 * value)
  2218. {
  2219. ___data_8 = value;
  2220. Il2CppCodeGenWriteBarrier((&___data_8), value);
  2221. }
  2222. };
  2223. #ifdef __clang__
  2224. #pragma clang diagnostic pop
  2225. #endif
  2226. #endif // DELEGATE_T1188392813_H
  2227. #ifndef BINDINGFLAGS_T2721792723_H
  2228. #define BINDINGFLAGS_T2721792723_H
  2229. #ifdef __clang__
  2230. #pragma clang diagnostic push
  2231. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2232. #pragma clang diagnostic ignored "-Wunused-variable"
  2233. #endif
  2234. // System.Reflection.BindingFlags
  2235. struct BindingFlags_t2721792723
  2236. {
  2237. public:
  2238. // System.Int32 System.Reflection.BindingFlags::value__
  2239. int32_t ___value___1;
  2240. public:
  2241. inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(BindingFlags_t2721792723, ___value___1)); }
  2242. inline int32_t get_value___1() const { return ___value___1; }
  2243. inline int32_t* get_address_of_value___1() { return &___value___1; }
  2244. inline void set_value___1(int32_t value)
  2245. {
  2246. ___value___1 = value;
  2247. }
  2248. };
  2249. #ifdef __clang__
  2250. #pragma clang diagnostic pop
  2251. #endif
  2252. #endif // BINDINGFLAGS_T2721792723_H
  2253. #ifndef RUNTIMETYPEHANDLE_T3027515415_H
  2254. #define RUNTIMETYPEHANDLE_T3027515415_H
  2255. #ifdef __clang__
  2256. #pragma clang diagnostic push
  2257. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2258. #pragma clang diagnostic ignored "-Wunused-variable"
  2259. #endif
  2260. // System.RuntimeTypeHandle
  2261. struct RuntimeTypeHandle_t3027515415
  2262. {
  2263. public:
  2264. // System.IntPtr System.RuntimeTypeHandle::value
  2265. intptr_t ___value_0;
  2266. public:
  2267. inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t3027515415, ___value_0)); }
  2268. inline intptr_t get_value_0() const { return ___value_0; }
  2269. inline intptr_t* get_address_of_value_0() { return &___value_0; }
  2270. inline void set_value_0(intptr_t value)
  2271. {
  2272. ___value_0 = value;
  2273. }
  2274. };
  2275. #ifdef __clang__
  2276. #pragma clang diagnostic pop
  2277. #endif
  2278. #endif // RUNTIMETYPEHANDLE_T3027515415_H
  2279. #ifndef IMAGEPOSITION_T641749504_H
  2280. #define IMAGEPOSITION_T641749504_H
  2281. #ifdef __clang__
  2282. #pragma clang diagnostic push
  2283. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2284. #pragma clang diagnostic ignored "-Wunused-variable"
  2285. #endif
  2286. // UnityEngine.ImagePosition
  2287. struct ImagePosition_t641749504
  2288. {
  2289. public:
  2290. // System.Int32 UnityEngine.ImagePosition::value__
  2291. int32_t ___value___1;
  2292. public:
  2293. inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ImagePosition_t641749504, ___value___1)); }
  2294. inline int32_t get_value___1() const { return ___value___1; }
  2295. inline int32_t* get_address_of_value___1() { return &___value___1; }
  2296. inline void set_value___1(int32_t value)
  2297. {
  2298. ___value___1 = value;
  2299. }
  2300. };
  2301. #ifdef __clang__
  2302. #pragma clang diagnostic pop
  2303. #endif
  2304. #endif // IMAGEPOSITION_T641749504_H
  2305. #ifndef METHODINFO_T_H
  2306. #define METHODINFO_T_H
  2307. #ifdef __clang__
  2308. #pragma clang diagnostic push
  2309. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2310. #pragma clang diagnostic ignored "-Wunused-variable"
  2311. #endif
  2312. // System.Reflection.MethodInfo
  2313. struct MethodInfo_t : public MethodBase_t
  2314. {
  2315. public:
  2316. public:
  2317. };
  2318. #ifdef __clang__
  2319. #pragma clang diagnostic pop
  2320. #endif
  2321. #endif // METHODINFO_T_H
  2322. #ifndef GUIUTILITY_T1868551600_H
  2323. #define GUIUTILITY_T1868551600_H
  2324. #ifdef __clang__
  2325. #pragma clang diagnostic push
  2326. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2327. #pragma clang diagnostic ignored "-Wunused-variable"
  2328. #endif
  2329. // UnityEngine.GUIUtility
  2330. struct GUIUtility_t1868551600 : public RuntimeObject
  2331. {
  2332. public:
  2333. public:
  2334. };
  2335. struct GUIUtility_t1868551600_StaticFields
  2336. {
  2337. public:
  2338. // System.Int32 UnityEngine.GUIUtility::s_SkinMode
  2339. int32_t ___s_SkinMode_0;
  2340. // System.Int32 UnityEngine.GUIUtility::s_OriginalID
  2341. int32_t ___s_OriginalID_1;
  2342. // System.Action UnityEngine.GUIUtility::takeCapture
  2343. Action_t1264377477 * ___takeCapture_2;
  2344. // System.Action UnityEngine.GUIUtility::releaseCapture
  2345. Action_t1264377477 * ___releaseCapture_3;
  2346. // System.Func`3<System.Int32,System.IntPtr,System.Boolean> UnityEngine.GUIUtility::processEvent
  2347. Func_3_t4119323734 * ___processEvent_4;
  2348. // System.Func`2<System.Exception,System.Boolean> UnityEngine.GUIUtility::endContainerGUIFromException
  2349. Func_2_t3450341358 * ___endContainerGUIFromException_5;
  2350. // System.Boolean UnityEngine.GUIUtility::<guiIsExiting>k__BackingField
  2351. bool ___U3CguiIsExitingU3Ek__BackingField_6;
  2352. // UnityEngine.Vector2 UnityEngine.GUIUtility::s_EditorScreenPointOffset
  2353. Vector2_t2156229523 ___s_EditorScreenPointOffset_7;
  2354. public:
  2355. inline static int32_t get_offset_of_s_SkinMode_0() { return static_cast<int32_t>(offsetof(GUIUtility_t1868551600_StaticFields, ___s_SkinMode_0)); }
  2356. inline int32_t get_s_SkinMode_0() const { return ___s_SkinMode_0; }
  2357. inline int32_t* get_address_of_s_SkinMode_0() { return &___s_SkinMode_0; }
  2358. inline void set_s_SkinMode_0(int32_t value)
  2359. {
  2360. ___s_SkinMode_0 = value;
  2361. }
  2362. inline static int32_t get_offset_of_s_OriginalID_1() { return static_cast<int32_t>(offsetof(GUIUtility_t1868551600_StaticFields, ___s_OriginalID_1)); }
  2363. inline int32_t get_s_OriginalID_1() const { return ___s_OriginalID_1; }
  2364. inline int32_t* get_address_of_s_OriginalID_1() { return &___s_OriginalID_1; }
  2365. inline void set_s_OriginalID_1(int32_t value)
  2366. {
  2367. ___s_OriginalID_1 = value;
  2368. }
  2369. inline static int32_t get_offset_of_takeCapture_2() { return static_cast<int32_t>(offsetof(GUIUtility_t1868551600_StaticFields, ___takeCapture_2)); }
  2370. inline Action_t1264377477 * get_takeCapture_2() const { return ___takeCapture_2; }
  2371. inline Action_t1264377477 ** get_address_of_takeCapture_2() { return &___takeCapture_2; }
  2372. inline void set_takeCapture_2(Action_t1264377477 * value)
  2373. {
  2374. ___takeCapture_2 = value;
  2375. Il2CppCodeGenWriteBarrier((&___takeCapture_2), value);
  2376. }
  2377. inline static int32_t get_offset_of_releaseCapture_3() { return static_cast<int32_t>(offsetof(GUIUtility_t1868551600_StaticFields, ___releaseCapture_3)); }
  2378. inline Action_t1264377477 * get_releaseCapture_3() const { return ___releaseCapture_3; }
  2379. inline Action_t1264377477 ** get_address_of_releaseCapture_3() { return &___releaseCapture_3; }
  2380. inline void set_releaseCapture_3(Action_t1264377477 * value)
  2381. {
  2382. ___releaseCapture_3 = value;
  2383. Il2CppCodeGenWriteBarrier((&___releaseCapture_3), value);
  2384. }
  2385. inline static int32_t get_offset_of_processEvent_4() { return static_cast<int32_t>(offsetof(GUIUtility_t1868551600_StaticFields, ___processEvent_4)); }
  2386. inline Func_3_t4119323734 * get_processEvent_4() const { return ___processEvent_4; }
  2387. inline Func_3_t4119323734 ** get_address_of_processEvent_4() { return &___processEvent_4; }
  2388. inline void set_processEvent_4(Func_3_t4119323734 * value)
  2389. {
  2390. ___processEvent_4 = value;
  2391. Il2CppCodeGenWriteBarrier((&___processEvent_4), value);
  2392. }
  2393. inline static int32_t get_offset_of_endContainerGUIFromException_5() { return static_cast<int32_t>(offsetof(GUIUtility_t1868551600_StaticFields, ___endContainerGUIFromException_5)); }
  2394. inline Func_2_t3450341358 * get_endContainerGUIFromException_5() const { return ___endContainerGUIFromException_5; }
  2395. inline Func_2_t3450341358 ** get_address_of_endContainerGUIFromException_5() { return &___endContainerGUIFromException_5; }
  2396. inline void set_endContainerGUIFromException_5(Func_2_t3450341358 * value)
  2397. {
  2398. ___endContainerGUIFromException_5 = value;
  2399. Il2CppCodeGenWriteBarrier((&___endContainerGUIFromException_5), value);
  2400. }
  2401. inline static int32_t get_offset_of_U3CguiIsExitingU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(GUIUtility_t1868551600_StaticFields, ___U3CguiIsExitingU3Ek__BackingField_6)); }
  2402. inline bool get_U3CguiIsExitingU3Ek__BackingField_6() const { return ___U3CguiIsExitingU3Ek__BackingField_6; }
  2403. inline bool* get_address_of_U3CguiIsExitingU3Ek__BackingField_6() { return &___U3CguiIsExitingU3Ek__BackingField_6; }
  2404. inline void set_U3CguiIsExitingU3Ek__BackingField_6(bool value)
  2405. {
  2406. ___U3CguiIsExitingU3Ek__BackingField_6 = value;
  2407. }
  2408. inline static int32_t get_offset_of_s_EditorScreenPointOffset_7() { return static_cast<int32_t>(offsetof(GUIUtility_t1868551600_StaticFields, ___s_EditorScreenPointOffset_7)); }
  2409. inline Vector2_t2156229523 get_s_EditorScreenPointOffset_7() const { return ___s_EditorScreenPointOffset_7; }
  2410. inline Vector2_t2156229523 * get_address_of_s_EditorScreenPointOffset_7() { return &___s_EditorScreenPointOffset_7; }
  2411. inline void set_s_EditorScreenPointOffset_7(Vector2_t2156229523 value)
  2412. {
  2413. ___s_EditorScreenPointOffset_7 = value;
  2414. }
  2415. };
  2416. #ifdef __clang__
  2417. #pragma clang diagnostic pop
  2418. #endif
  2419. #endif // GUIUTILITY_T1868551600_H
  2420. #ifndef TARGETINVOCATIONEXCEPTION_T4266643902_H
  2421. #define TARGETINVOCATIONEXCEPTION_T4266643902_H
  2422. #ifdef __clang__
  2423. #pragma clang diagnostic push
  2424. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2425. #pragma clang diagnostic ignored "-Wunused-variable"
  2426. #endif
  2427. // System.Reflection.TargetInvocationException
  2428. struct TargetInvocationException_t4266643902 : public ApplicationException_t2339761290
  2429. {
  2430. public:
  2431. public:
  2432. };
  2433. #ifdef __clang__
  2434. #pragma clang diagnostic pop
  2435. #endif
  2436. #endif // TARGETINVOCATIONEXCEPTION_T4266643902_H
  2437. #ifndef EVENT_T2956885303_H
  2438. #define EVENT_T2956885303_H
  2439. #ifdef __clang__
  2440. #pragma clang diagnostic push
  2441. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2442. #pragma clang diagnostic ignored "-Wunused-variable"
  2443. #endif
  2444. // UnityEngine.Event
  2445. struct Event_t2956885303 : public RuntimeObject
  2446. {
  2447. public:
  2448. // System.IntPtr UnityEngine.Event::m_Ptr
  2449. intptr_t ___m_Ptr_0;
  2450. public:
  2451. inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(Event_t2956885303, ___m_Ptr_0)); }
  2452. inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
  2453. inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
  2454. inline void set_m_Ptr_0(intptr_t value)
  2455. {
  2456. ___m_Ptr_0 = value;
  2457. }
  2458. };
  2459. struct Event_t2956885303_StaticFields
  2460. {
  2461. public:
  2462. // UnityEngine.Event UnityEngine.Event::s_Current
  2463. Event_t2956885303 * ___s_Current_1;
  2464. // UnityEngine.Event UnityEngine.Event::s_MasterEvent
  2465. Event_t2956885303 * ___s_MasterEvent_2;
  2466. public:
  2467. inline static int32_t get_offset_of_s_Current_1() { return static_cast<int32_t>(offsetof(Event_t2956885303_StaticFields, ___s_Current_1)); }
  2468. inline Event_t2956885303 * get_s_Current_1() const { return ___s_Current_1; }
  2469. inline Event_t2956885303 ** get_address_of_s_Current_1() { return &___s_Current_1; }
  2470. inline void set_s_Current_1(Event_t2956885303 * value)
  2471. {
  2472. ___s_Current_1 = value;
  2473. Il2CppCodeGenWriteBarrier((&___s_Current_1), value);
  2474. }
  2475. inline static int32_t get_offset_of_s_MasterEvent_2() { return static_cast<int32_t>(offsetof(Event_t2956885303_StaticFields, ___s_MasterEvent_2)); }
  2476. inline Event_t2956885303 * get_s_MasterEvent_2() const { return ___s_MasterEvent_2; }
  2477. inline Event_t2956885303 ** get_address_of_s_MasterEvent_2() { return &___s_MasterEvent_2; }
  2478. inline void set_s_MasterEvent_2(Event_t2956885303 * value)
  2479. {
  2480. ___s_MasterEvent_2 = value;
  2481. Il2CppCodeGenWriteBarrier((&___s_MasterEvent_2), value);
  2482. }
  2483. };
  2484. #ifdef __clang__
  2485. #pragma clang diagnostic pop
  2486. #endif
  2487. // Native definition for P/Invoke marshalling of UnityEngine.Event
  2488. struct Event_t2956885303_marshaled_pinvoke
  2489. {
  2490. intptr_t ___m_Ptr_0;
  2491. };
  2492. // Native definition for COM marshalling of UnityEngine.Event
  2493. struct Event_t2956885303_marshaled_com
  2494. {
  2495. intptr_t ___m_Ptr_0;
  2496. };
  2497. #endif // EVENT_T2956885303_H
  2498. #ifndef EVENTTYPE_T3528516131_H
  2499. #define EVENTTYPE_T3528516131_H
  2500. #ifdef __clang__
  2501. #pragma clang diagnostic push
  2502. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2503. #pragma clang diagnostic ignored "-Wunused-variable"
  2504. #endif
  2505. // UnityEngine.EventType
  2506. struct EventType_t3528516131
  2507. {
  2508. public:
  2509. // System.Int32 UnityEngine.EventType::value__
  2510. int32_t ___value___1;
  2511. public:
  2512. inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(EventType_t3528516131, ___value___1)); }
  2513. inline int32_t get_value___1() const { return ___value___1; }
  2514. inline int32_t* get_address_of_value___1() { return &___value___1; }
  2515. inline void set_value___1(int32_t value)
  2516. {
  2517. ___value___1 = value;
  2518. }
  2519. };
  2520. #ifdef __clang__
  2521. #pragma clang diagnostic pop
  2522. #endif
  2523. #endif // EVENTTYPE_T3528516131_H
  2524. #ifndef DATETIMEKIND_T3468814247_H
  2525. #define DATETIMEKIND_T3468814247_H
  2526. #ifdef __clang__
  2527. #pragma clang diagnostic push
  2528. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2529. #pragma clang diagnostic ignored "-Wunused-variable"
  2530. #endif
  2531. // System.DateTimeKind
  2532. struct DateTimeKind_t3468814247
  2533. {
  2534. public:
  2535. // System.Int32 System.DateTimeKind::value__
  2536. int32_t ___value___1;
  2537. public:
  2538. inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(DateTimeKind_t3468814247, ___value___1)); }
  2539. inline int32_t get_value___1() const { return ___value___1; }
  2540. inline int32_t* get_address_of_value___1() { return &___value___1; }
  2541. inline void set_value___1(int32_t value)
  2542. {
  2543. ___value___1 = value;
  2544. }
  2545. };
  2546. #ifdef __clang__
  2547. #pragma clang diagnostic pop
  2548. #endif
  2549. #endif // DATETIMEKIND_T3468814247_H
  2550. #ifndef EVENTMODIFIERS_T2016417398_H
  2551. #define EVENTMODIFIERS_T2016417398_H
  2552. #ifdef __clang__
  2553. #pragma clang diagnostic push
  2554. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2555. #pragma clang diagnostic ignored "-Wunused-variable"
  2556. #endif
  2557. // UnityEngine.EventModifiers
  2558. struct EventModifiers_t2016417398
  2559. {
  2560. public:
  2561. // System.Int32 UnityEngine.EventModifiers::value__
  2562. int32_t ___value___1;
  2563. public:
  2564. inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(EventModifiers_t2016417398, ___value___1)); }
  2565. inline int32_t get_value___1() const { return ___value___1; }
  2566. inline int32_t* get_address_of_value___1() { return &___value___1; }
  2567. inline void set_value___1(int32_t value)
  2568. {
  2569. ___value___1 = value;
  2570. }
  2571. };
  2572. #ifdef __clang__
  2573. #pragma clang diagnostic pop
  2574. #endif
  2575. #endif // EVENTMODIFIERS_T2016417398_H
  2576. #ifndef DBLCLICKSNAPPING_T2629979741_H
  2577. #define DBLCLICKSNAPPING_T2629979741_H
  2578. #ifdef __clang__
  2579. #pragma clang diagnostic push
  2580. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2581. #pragma clang diagnostic ignored "-Wunused-variable"
  2582. #endif
  2583. // UnityEngine.TextEditor/DblClickSnapping
  2584. struct DblClickSnapping_t2629979741
  2585. {
  2586. public:
  2587. // System.Byte UnityEngine.TextEditor/DblClickSnapping::value__
  2588. uint8_t ___value___1;
  2589. public:
  2590. inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(DblClickSnapping_t2629979741, ___value___1)); }
  2591. inline uint8_t get_value___1() const { return ___value___1; }
  2592. inline uint8_t* get_address_of_value___1() { return &___value___1; }
  2593. inline void set_value___1(uint8_t value)
  2594. {
  2595. ___value___1 = value;
  2596. }
  2597. };
  2598. #ifdef __clang__
  2599. #pragma clang diagnostic pop
  2600. #endif
  2601. #endif // DBLCLICKSNAPPING_T2629979741_H
  2602. #ifndef TOUCHSCREENKEYBOARD_T731888065_H
  2603. #define TOUCHSCREENKEYBOARD_T731888065_H
  2604. #ifdef __clang__
  2605. #pragma clang diagnostic push
  2606. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2607. #pragma clang diagnostic ignored "-Wunused-variable"
  2608. #endif
  2609. // UnityEngine.TouchScreenKeyboard
  2610. struct TouchScreenKeyboard_t731888065 : public RuntimeObject
  2611. {
  2612. public:
  2613. // System.IntPtr UnityEngine.TouchScreenKeyboard::m_Ptr
  2614. intptr_t ___m_Ptr_0;
  2615. public:
  2616. inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(TouchScreenKeyboard_t731888065, ___m_Ptr_0)); }
  2617. inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
  2618. inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
  2619. inline void set_m_Ptr_0(intptr_t value)
  2620. {
  2621. ___m_Ptr_0 = value;
  2622. }
  2623. };
  2624. #ifdef __clang__
  2625. #pragma clang diagnostic pop
  2626. #endif
  2627. #endif // TOUCHSCREENKEYBOARD_T731888065_H
  2628. #ifndef KEYCODE_T2599294277_H
  2629. #define KEYCODE_T2599294277_H
  2630. #ifdef __clang__
  2631. #pragma clang diagnostic push
  2632. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2633. #pragma clang diagnostic ignored "-Wunused-variable"
  2634. #endif
  2635. // UnityEngine.KeyCode
  2636. struct KeyCode_t2599294277
  2637. {
  2638. public:
  2639. // System.Int32 UnityEngine.KeyCode::value__
  2640. int32_t ___value___1;
  2641. public:
  2642. inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(KeyCode_t2599294277, ___value___1)); }
  2643. inline int32_t get_value___1() const { return ___value___1; }
  2644. inline int32_t* get_address_of_value___1() { return &___value___1; }
  2645. inline void set_value___1(int32_t value)
  2646. {
  2647. ___value___1 = value;
  2648. }
  2649. };
  2650. #ifdef __clang__
  2651. #pragma clang diagnostic pop
  2652. #endif
  2653. #endif // KEYCODE_T2599294277_H
  2654. #ifndef GUISTYLESTATE_T1397964415_H
  2655. #define GUISTYLESTATE_T1397964415_H
  2656. #ifdef __clang__
  2657. #pragma clang diagnostic push
  2658. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2659. #pragma clang diagnostic ignored "-Wunused-variable"
  2660. #endif
  2661. // UnityEngine.GUIStyleState
  2662. struct GUIStyleState_t1397964415 : public RuntimeObject
  2663. {
  2664. public:
  2665. // System.IntPtr UnityEngine.GUIStyleState::m_Ptr
  2666. intptr_t ___m_Ptr_0;
  2667. // UnityEngine.GUIStyle UnityEngine.GUIStyleState::m_SourceStyle
  2668. GUIStyle_t3956901511 * ___m_SourceStyle_1;
  2669. // UnityEngine.Texture2D UnityEngine.GUIStyleState::m_Background
  2670. Texture2D_t3840446185 * ___m_Background_2;
  2671. public:
  2672. inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(GUIStyleState_t1397964415, ___m_Ptr_0)); }
  2673. inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
  2674. inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
  2675. inline void set_m_Ptr_0(intptr_t value)
  2676. {
  2677. ___m_Ptr_0 = value;
  2678. }
  2679. inline static int32_t get_offset_of_m_SourceStyle_1() { return static_cast<int32_t>(offsetof(GUIStyleState_t1397964415, ___m_SourceStyle_1)); }
  2680. inline GUIStyle_t3956901511 * get_m_SourceStyle_1() const { return ___m_SourceStyle_1; }
  2681. inline GUIStyle_t3956901511 ** get_address_of_m_SourceStyle_1() { return &___m_SourceStyle_1; }
  2682. inline void set_m_SourceStyle_1(GUIStyle_t3956901511 * value)
  2683. {
  2684. ___m_SourceStyle_1 = value;
  2685. Il2CppCodeGenWriteBarrier((&___m_SourceStyle_1), value);
  2686. }
  2687. inline static int32_t get_offset_of_m_Background_2() { return static_cast<int32_t>(offsetof(GUIStyleState_t1397964415, ___m_Background_2)); }
  2688. inline Texture2D_t3840446185 * get_m_Background_2() const { return ___m_Background_2; }
  2689. inline Texture2D_t3840446185 ** get_address_of_m_Background_2() { return &___m_Background_2; }
  2690. inline void set_m_Background_2(Texture2D_t3840446185 * value)
  2691. {
  2692. ___m_Background_2 = value;
  2693. Il2CppCodeGenWriteBarrier((&___m_Background_2), value);
  2694. }
  2695. };
  2696. #ifdef __clang__
  2697. #pragma clang diagnostic pop
  2698. #endif
  2699. // Native definition for P/Invoke marshalling of UnityEngine.GUIStyleState
  2700. struct GUIStyleState_t1397964415_marshaled_pinvoke
  2701. {
  2702. intptr_t ___m_Ptr_0;
  2703. GUIStyle_t3956901511_marshaled_pinvoke* ___m_SourceStyle_1;
  2704. Texture2D_t3840446185 * ___m_Background_2;
  2705. };
  2706. // Native definition for COM marshalling of UnityEngine.GUIStyleState
  2707. struct GUIStyleState_t1397964415_marshaled_com
  2708. {
  2709. intptr_t ___m_Ptr_0;
  2710. GUIStyle_t3956901511_marshaled_com* ___m_SourceStyle_1;
  2711. Texture2D_t3840446185 * ___m_Background_2;
  2712. };
  2713. #endif // GUISTYLESTATE_T1397964415_H
  2714. #ifndef GUILAYOUTUTILITY_T66395690_H
  2715. #define GUILAYOUTUTILITY_T66395690_H
  2716. #ifdef __clang__
  2717. #pragma clang diagnostic push
  2718. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2719. #pragma clang diagnostic ignored "-Wunused-variable"
  2720. #endif
  2721. // UnityEngine.GUILayoutUtility
  2722. struct GUILayoutUtility_t66395690 : public RuntimeObject
  2723. {
  2724. public:
  2725. public:
  2726. };
  2727. struct GUILayoutUtility_t66395690_StaticFields
  2728. {
  2729. public:
  2730. // System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.GUILayoutUtility/LayoutCache> UnityEngine.GUILayoutUtility::s_StoredLayouts
  2731. Dictionary_2_t3261990503 * ___s_StoredLayouts_0;
  2732. // System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.GUILayoutUtility/LayoutCache> UnityEngine.GUILayoutUtility::s_StoredWindows
  2733. Dictionary_2_t3261990503 * ___s_StoredWindows_1;
  2734. // UnityEngine.GUILayoutUtility/LayoutCache UnityEngine.GUILayoutUtility::current
  2735. LayoutCache_t78309876 * ___current_2;
  2736. // UnityEngine.Rect UnityEngine.GUILayoutUtility::kDummyRect
  2737. Rect_t2360479859 ___kDummyRect_3;
  2738. // UnityEngine.GUIStyle UnityEngine.GUILayoutUtility::s_SpaceStyle
  2739. GUIStyle_t3956901511 * ___s_SpaceStyle_4;
  2740. public:
  2741. inline static int32_t get_offset_of_s_StoredLayouts_0() { return static_cast<int32_t>(offsetof(GUILayoutUtility_t66395690_StaticFields, ___s_StoredLayouts_0)); }
  2742. inline Dictionary_2_t3261990503 * get_s_StoredLayouts_0() const { return ___s_StoredLayouts_0; }
  2743. inline Dictionary_2_t3261990503 ** get_address_of_s_StoredLayouts_0() { return &___s_StoredLayouts_0; }
  2744. inline void set_s_StoredLayouts_0(Dictionary_2_t3261990503 * value)
  2745. {
  2746. ___s_StoredLayouts_0 = value;
  2747. Il2CppCodeGenWriteBarrier((&___s_StoredLayouts_0), value);
  2748. }
  2749. inline static int32_t get_offset_of_s_StoredWindows_1() { return static_cast<int32_t>(offsetof(GUILayoutUtility_t66395690_StaticFields, ___s_StoredWindows_1)); }
  2750. inline Dictionary_2_t3261990503 * get_s_StoredWindows_1() const { return ___s_StoredWindows_1; }
  2751. inline Dictionary_2_t3261990503 ** get_address_of_s_StoredWindows_1() { return &___s_StoredWindows_1; }
  2752. inline void set_s_StoredWindows_1(Dictionary_2_t3261990503 * value)
  2753. {
  2754. ___s_StoredWindows_1 = value;
  2755. Il2CppCodeGenWriteBarrier((&___s_StoredWindows_1), value);
  2756. }
  2757. inline static int32_t get_offset_of_current_2() { return static_cast<int32_t>(offsetof(GUILayoutUtility_t66395690_StaticFields, ___current_2)); }
  2758. inline LayoutCache_t78309876 * get_current_2() const { return ___current_2; }
  2759. inline LayoutCache_t78309876 ** get_address_of_current_2() { return &___current_2; }
  2760. inline void set_current_2(LayoutCache_t78309876 * value)
  2761. {
  2762. ___current_2 = value;
  2763. Il2CppCodeGenWriteBarrier((&___current_2), value);
  2764. }
  2765. inline static int32_t get_offset_of_kDummyRect_3() { return static_cast<int32_t>(offsetof(GUILayoutUtility_t66395690_StaticFields, ___kDummyRect_3)); }
  2766. inline Rect_t2360479859 get_kDummyRect_3() const { return ___kDummyRect_3; }
  2767. inline Rect_t2360479859 * get_address_of_kDummyRect_3() { return &___kDummyRect_3; }
  2768. inline void set_kDummyRect_3(Rect_t2360479859 value)
  2769. {
  2770. ___kDummyRect_3 = value;
  2771. }
  2772. inline static int32_t get_offset_of_s_SpaceStyle_4() { return static_cast<int32_t>(offsetof(GUILayoutUtility_t66395690_StaticFields, ___s_SpaceStyle_4)); }
  2773. inline GUIStyle_t3956901511 * get_s_SpaceStyle_4() const { return ___s_SpaceStyle_4; }
  2774. inline GUIStyle_t3956901511 ** get_address_of_s_SpaceStyle_4() { return &___s_SpaceStyle_4; }
  2775. inline void set_s_SpaceStyle_4(GUIStyle_t3956901511 * value)
  2776. {
  2777. ___s_SpaceStyle_4 = value;
  2778. Il2CppCodeGenWriteBarrier((&___s_SpaceStyle_4), value);
  2779. }
  2780. };
  2781. #ifdef __clang__
  2782. #pragma clang diagnostic pop
  2783. #endif
  2784. #endif // GUILAYOUTUTILITY_T66395690_H
  2785. #ifndef ARGUMENTEXCEPTION_T132251570_H
  2786. #define ARGUMENTEXCEPTION_T132251570_H
  2787. #ifdef __clang__
  2788. #pragma clang diagnostic push
  2789. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2790. #pragma clang diagnostic ignored "-Wunused-variable"
  2791. #endif
  2792. // System.ArgumentException
  2793. struct ArgumentException_t132251570 : public SystemException_t176217640
  2794. {
  2795. public:
  2796. // System.String System.ArgumentException::param_name
  2797. String_t* ___param_name_12;
  2798. public:
  2799. inline static int32_t get_offset_of_param_name_12() { return static_cast<int32_t>(offsetof(ArgumentException_t132251570, ___param_name_12)); }
  2800. inline String_t* get_param_name_12() const { return ___param_name_12; }
  2801. inline String_t** get_address_of_param_name_12() { return &___param_name_12; }
  2802. inline void set_param_name_12(String_t* value)
  2803. {
  2804. ___param_name_12 = value;
  2805. Il2CppCodeGenWriteBarrier((&___param_name_12), value);
  2806. }
  2807. };
  2808. #ifdef __clang__
  2809. #pragma clang diagnostic pop
  2810. #endif
  2811. #endif // ARGUMENTEXCEPTION_T132251570_H
  2812. #ifndef RECTOFFSET_T1369453676_H
  2813. #define RECTOFFSET_T1369453676_H
  2814. #ifdef __clang__
  2815. #pragma clang diagnostic push
  2816. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2817. #pragma clang diagnostic ignored "-Wunused-variable"
  2818. #endif
  2819. // UnityEngine.RectOffset
  2820. struct RectOffset_t1369453676 : public RuntimeObject
  2821. {
  2822. public:
  2823. // System.IntPtr UnityEngine.RectOffset::m_Ptr
  2824. intptr_t ___m_Ptr_0;
  2825. // System.Object UnityEngine.RectOffset::m_SourceStyle
  2826. RuntimeObject * ___m_SourceStyle_1;
  2827. public:
  2828. inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(RectOffset_t1369453676, ___m_Ptr_0)); }
  2829. inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
  2830. inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
  2831. inline void set_m_Ptr_0(intptr_t value)
  2832. {
  2833. ___m_Ptr_0 = value;
  2834. }
  2835. inline static int32_t get_offset_of_m_SourceStyle_1() { return static_cast<int32_t>(offsetof(RectOffset_t1369453676, ___m_SourceStyle_1)); }
  2836. inline RuntimeObject * get_m_SourceStyle_1() const { return ___m_SourceStyle_1; }
  2837. inline RuntimeObject ** get_address_of_m_SourceStyle_1() { return &___m_SourceStyle_1; }
  2838. inline void set_m_SourceStyle_1(RuntimeObject * value)
  2839. {
  2840. ___m_SourceStyle_1 = value;
  2841. Il2CppCodeGenWriteBarrier((&___m_SourceStyle_1), value);
  2842. }
  2843. };
  2844. #ifdef __clang__
  2845. #pragma clang diagnostic pop
  2846. #endif
  2847. // Native definition for P/Invoke marshalling of UnityEngine.RectOffset
  2848. struct RectOffset_t1369453676_marshaled_pinvoke
  2849. {
  2850. intptr_t ___m_Ptr_0;
  2851. Il2CppIUnknown* ___m_SourceStyle_1;
  2852. };
  2853. // Native definition for COM marshalling of UnityEngine.RectOffset
  2854. struct RectOffset_t1369453676_marshaled_com
  2855. {
  2856. intptr_t ___m_Ptr_0;
  2857. Il2CppIUnknown* ___m_SourceStyle_1;
  2858. };
  2859. #endif // RECTOFFSET_T1369453676_H
  2860. #ifndef GUILAYOUTENTRY_T3214611570_H
  2861. #define GUILAYOUTENTRY_T3214611570_H
  2862. #ifdef __clang__
  2863. #pragma clang diagnostic push
  2864. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2865. #pragma clang diagnostic ignored "-Wunused-variable"
  2866. #endif
  2867. // UnityEngine.GUILayoutEntry
  2868. struct GUILayoutEntry_t3214611570 : public RuntimeObject
  2869. {
  2870. public:
  2871. // System.Single UnityEngine.GUILayoutEntry::minWidth
  2872. float ___minWidth_0;
  2873. // System.Single UnityEngine.GUILayoutEntry::maxWidth
  2874. float ___maxWidth_1;
  2875. // System.Single UnityEngine.GUILayoutEntry::minHeight
  2876. float ___minHeight_2;
  2877. // System.Single UnityEngine.GUILayoutEntry::maxHeight
  2878. float ___maxHeight_3;
  2879. // UnityEngine.Rect UnityEngine.GUILayoutEntry::rect
  2880. Rect_t2360479859 ___rect_4;
  2881. // System.Int32 UnityEngine.GUILayoutEntry::stretchWidth
  2882. int32_t ___stretchWidth_5;
  2883. // System.Int32 UnityEngine.GUILayoutEntry::stretchHeight
  2884. int32_t ___stretchHeight_6;
  2885. // UnityEngine.GUIStyle UnityEngine.GUILayoutEntry::m_Style
  2886. GUIStyle_t3956901511 * ___m_Style_7;
  2887. public:
  2888. inline static int32_t get_offset_of_minWidth_0() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t3214611570, ___minWidth_0)); }
  2889. inline float get_minWidth_0() const { return ___minWidth_0; }
  2890. inline float* get_address_of_minWidth_0() { return &___minWidth_0; }
  2891. inline void set_minWidth_0(float value)
  2892. {
  2893. ___minWidth_0 = value;
  2894. }
  2895. inline static int32_t get_offset_of_maxWidth_1() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t3214611570, ___maxWidth_1)); }
  2896. inline float get_maxWidth_1() const { return ___maxWidth_1; }
  2897. inline float* get_address_of_maxWidth_1() { return &___maxWidth_1; }
  2898. inline void set_maxWidth_1(float value)
  2899. {
  2900. ___maxWidth_1 = value;
  2901. }
  2902. inline static int32_t get_offset_of_minHeight_2() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t3214611570, ___minHeight_2)); }
  2903. inline float get_minHeight_2() const { return ___minHeight_2; }
  2904. inline float* get_address_of_minHeight_2() { return &___minHeight_2; }
  2905. inline void set_minHeight_2(float value)
  2906. {
  2907. ___minHeight_2 = value;
  2908. }
  2909. inline static int32_t get_offset_of_maxHeight_3() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t3214611570, ___maxHeight_3)); }
  2910. inline float get_maxHeight_3() const { return ___maxHeight_3; }
  2911. inline float* get_address_of_maxHeight_3() { return &___maxHeight_3; }
  2912. inline void set_maxHeight_3(float value)
  2913. {
  2914. ___maxHeight_3 = value;
  2915. }
  2916. inline static int32_t get_offset_of_rect_4() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t3214611570, ___rect_4)); }
  2917. inline Rect_t2360479859 get_rect_4() const { return ___rect_4; }
  2918. inline Rect_t2360479859 * get_address_of_rect_4() { return &___rect_4; }
  2919. inline void set_rect_4(Rect_t2360479859 value)
  2920. {
  2921. ___rect_4 = value;
  2922. }
  2923. inline static int32_t get_offset_of_stretchWidth_5() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t3214611570, ___stretchWidth_5)); }
  2924. inline int32_t get_stretchWidth_5() const { return ___stretchWidth_5; }
  2925. inline int32_t* get_address_of_stretchWidth_5() { return &___stretchWidth_5; }
  2926. inline void set_stretchWidth_5(int32_t value)
  2927. {
  2928. ___stretchWidth_5 = value;
  2929. }
  2930. inline static int32_t get_offset_of_stretchHeight_6() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t3214611570, ___stretchHeight_6)); }
  2931. inline int32_t get_stretchHeight_6() const { return ___stretchHeight_6; }
  2932. inline int32_t* get_address_of_stretchHeight_6() { return &___stretchHeight_6; }
  2933. inline void set_stretchHeight_6(int32_t value)
  2934. {
  2935. ___stretchHeight_6 = value;
  2936. }
  2937. inline static int32_t get_offset_of_m_Style_7() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t3214611570, ___m_Style_7)); }
  2938. inline GUIStyle_t3956901511 * get_m_Style_7() const { return ___m_Style_7; }
  2939. inline GUIStyle_t3956901511 ** get_address_of_m_Style_7() { return &___m_Style_7; }
  2940. inline void set_m_Style_7(GUIStyle_t3956901511 * value)
  2941. {
  2942. ___m_Style_7 = value;
  2943. Il2CppCodeGenWriteBarrier((&___m_Style_7), value);
  2944. }
  2945. };
  2946. struct GUILayoutEntry_t3214611570_StaticFields
  2947. {
  2948. public:
  2949. // UnityEngine.Rect UnityEngine.GUILayoutEntry::kDummyRect
  2950. Rect_t2360479859 ___kDummyRect_8;
  2951. // System.Int32 UnityEngine.GUILayoutEntry::indent
  2952. int32_t ___indent_9;
  2953. public:
  2954. inline static int32_t get_offset_of_kDummyRect_8() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t3214611570_StaticFields, ___kDummyRect_8)); }
  2955. inline Rect_t2360479859 get_kDummyRect_8() const { return ___kDummyRect_8; }
  2956. inline Rect_t2360479859 * get_address_of_kDummyRect_8() { return &___kDummyRect_8; }
  2957. inline void set_kDummyRect_8(Rect_t2360479859 value)
  2958. {
  2959. ___kDummyRect_8 = value;
  2960. }
  2961. inline static int32_t get_offset_of_indent_9() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t3214611570_StaticFields, ___indent_9)); }
  2962. inline int32_t get_indent_9() const { return ___indent_9; }
  2963. inline int32_t* get_address_of_indent_9() { return &___indent_9; }
  2964. inline void set_indent_9(int32_t value)
  2965. {
  2966. ___indent_9 = value;
  2967. }
  2968. };
  2969. #ifdef __clang__
  2970. #pragma clang diagnostic pop
  2971. #endif
  2972. #endif // GUILAYOUTENTRY_T3214611570_H
  2973. #ifndef TYPE_T3858932131_H
  2974. #define TYPE_T3858932131_H
  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. // UnityEngine.GUILayoutOption/Type
  2981. struct Type_t3858932131
  2982. {
  2983. public:
  2984. // System.Int32 UnityEngine.GUILayoutOption/Type::value__
  2985. int32_t ___value___1;
  2986. public:
  2987. inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(Type_t3858932131, ___value___1)); }
  2988. inline int32_t get_value___1() const { return ___value___1; }
  2989. inline int32_t* get_address_of_value___1() { return &___value___1; }
  2990. inline void set_value___1(int32_t value)
  2991. {
  2992. ___value___1 = value;
  2993. }
  2994. };
  2995. #ifdef __clang__
  2996. #pragma clang diagnostic pop
  2997. #endif
  2998. #endif // TYPE_T3858932131_H
  2999. #ifndef OBJECT_T631007953_H
  3000. #define OBJECT_T631007953_H
  3001. #ifdef __clang__
  3002. #pragma clang diagnostic push
  3003. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3004. #pragma clang diagnostic ignored "-Wunused-variable"
  3005. #endif
  3006. // UnityEngine.Object
  3007. struct Object_t631007953 : public RuntimeObject
  3008. {
  3009. public:
  3010. // System.IntPtr UnityEngine.Object::m_CachedPtr
  3011. intptr_t ___m_CachedPtr_0;
  3012. public:
  3013. inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_t631007953, ___m_CachedPtr_0)); }
  3014. inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; }
  3015. inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; }
  3016. inline void set_m_CachedPtr_0(intptr_t value)
  3017. {
  3018. ___m_CachedPtr_0 = value;
  3019. }
  3020. };
  3021. struct Object_t631007953_StaticFields
  3022. {
  3023. public:
  3024. // System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
  3025. int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
  3026. public:
  3027. inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_t631007953_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); }
  3028. inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; }
  3029. inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; }
  3030. inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value)
  3031. {
  3032. ___OffsetOfInstanceIDInCPlusPlusObject_1 = value;
  3033. }
  3034. };
  3035. #ifdef __clang__
  3036. #pragma clang diagnostic pop
  3037. #endif
  3038. // Native definition for P/Invoke marshalling of UnityEngine.Object
  3039. struct Object_t631007953_marshaled_pinvoke
  3040. {
  3041. intptr_t ___m_CachedPtr_0;
  3042. };
  3043. // Native definition for COM marshalling of UnityEngine.Object
  3044. struct Object_t631007953_marshaled_com
  3045. {
  3046. intptr_t ___m_CachedPtr_0;
  3047. };
  3048. #endif // OBJECT_T631007953_H
  3049. #ifndef GUISETTINGS_T1774757634_H
  3050. #define GUISETTINGS_T1774757634_H
  3051. #ifdef __clang__
  3052. #pragma clang diagnostic push
  3053. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3054. #pragma clang diagnostic ignored "-Wunused-variable"
  3055. #endif
  3056. // UnityEngine.GUISettings
  3057. struct GUISettings_t1774757634 : public RuntimeObject
  3058. {
  3059. public:
  3060. // System.Boolean UnityEngine.GUISettings::m_DoubleClickSelectsWord
  3061. bool ___m_DoubleClickSelectsWord_0;
  3062. // System.Boolean UnityEngine.GUISettings::m_TripleClickSelectsLine
  3063. bool ___m_TripleClickSelectsLine_1;
  3064. // UnityEngine.Color UnityEngine.GUISettings::m_CursorColor
  3065. Color_t2555686324 ___m_CursorColor_2;
  3066. // System.Single UnityEngine.GUISettings::m_CursorFlashSpeed
  3067. float ___m_CursorFlashSpeed_3;
  3068. // UnityEngine.Color UnityEngine.GUISettings::m_SelectionColor
  3069. Color_t2555686324 ___m_SelectionColor_4;
  3070. public:
  3071. inline static int32_t get_offset_of_m_DoubleClickSelectsWord_0() { return static_cast<int32_t>(offsetof(GUISettings_t1774757634, ___m_DoubleClickSelectsWord_0)); }
  3072. inline bool get_m_DoubleClickSelectsWord_0() const { return ___m_DoubleClickSelectsWord_0; }
  3073. inline bool* get_address_of_m_DoubleClickSelectsWord_0() { return &___m_DoubleClickSelectsWord_0; }
  3074. inline void set_m_DoubleClickSelectsWord_0(bool value)
  3075. {
  3076. ___m_DoubleClickSelectsWord_0 = value;
  3077. }
  3078. inline static int32_t get_offset_of_m_TripleClickSelectsLine_1() { return static_cast<int32_t>(offsetof(GUISettings_t1774757634, ___m_TripleClickSelectsLine_1)); }
  3079. inline bool get_m_TripleClickSelectsLine_1() const { return ___m_TripleClickSelectsLine_1; }
  3080. inline bool* get_address_of_m_TripleClickSelectsLine_1() { return &___m_TripleClickSelectsLine_1; }
  3081. inline void set_m_TripleClickSelectsLine_1(bool value)
  3082. {
  3083. ___m_TripleClickSelectsLine_1 = value;
  3084. }
  3085. inline static int32_t get_offset_of_m_CursorColor_2() { return static_cast<int32_t>(offsetof(GUISettings_t1774757634, ___m_CursorColor_2)); }
  3086. inline Color_t2555686324 get_m_CursorColor_2() const { return ___m_CursorColor_2; }
  3087. inline Color_t2555686324 * get_address_of_m_CursorColor_2() { return &___m_CursorColor_2; }
  3088. inline void set_m_CursorColor_2(Color_t2555686324 value)
  3089. {
  3090. ___m_CursorColor_2 = value;
  3091. }
  3092. inline static int32_t get_offset_of_m_CursorFlashSpeed_3() { return static_cast<int32_t>(offsetof(GUISettings_t1774757634, ___m_CursorFlashSpeed_3)); }
  3093. inline float get_m_CursorFlashSpeed_3() const { return ___m_CursorFlashSpeed_3; }
  3094. inline float* get_address_of_m_CursorFlashSpeed_3() { return &___m_CursorFlashSpeed_3; }
  3095. inline void set_m_CursorFlashSpeed_3(float value)
  3096. {
  3097. ___m_CursorFlashSpeed_3 = value;
  3098. }
  3099. inline static int32_t get_offset_of_m_SelectionColor_4() { return static_cast<int32_t>(offsetof(GUISettings_t1774757634, ___m_SelectionColor_4)); }
  3100. inline Color_t2555686324 get_m_SelectionColor_4() const { return ___m_SelectionColor_4; }
  3101. inline Color_t2555686324 * get_address_of_m_SelectionColor_4() { return &___m_SelectionColor_4; }
  3102. inline void set_m_SelectionColor_4(Color_t2555686324 value)
  3103. {
  3104. ___m_SelectionColor_4 = value;
  3105. }
  3106. };
  3107. #ifdef __clang__
  3108. #pragma clang diagnostic pop
  3109. #endif
  3110. #endif // GUISETTINGS_T1774757634_H
  3111. #ifndef TYPE_T_H
  3112. #define TYPE_T_H
  3113. #ifdef __clang__
  3114. #pragma clang diagnostic push
  3115. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3116. #pragma clang diagnostic ignored "-Wunused-variable"
  3117. #endif
  3118. // System.Type
  3119. struct Type_t : public MemberInfo_t
  3120. {
  3121. public:
  3122. // System.RuntimeTypeHandle System.Type::_impl
  3123. RuntimeTypeHandle_t3027515415 ____impl_1;
  3124. public:
  3125. inline static int32_t get_offset_of__impl_1() { return static_cast<int32_t>(offsetof(Type_t, ____impl_1)); }
  3126. inline RuntimeTypeHandle_t3027515415 get__impl_1() const { return ____impl_1; }
  3127. inline RuntimeTypeHandle_t3027515415 * get_address_of__impl_1() { return &____impl_1; }
  3128. inline void set__impl_1(RuntimeTypeHandle_t3027515415 value)
  3129. {
  3130. ____impl_1 = value;
  3131. }
  3132. };
  3133. struct Type_t_StaticFields
  3134. {
  3135. public:
  3136. // System.Char System.Type::Delimiter
  3137. Il2CppChar ___Delimiter_2;
  3138. // System.Type[] System.Type::EmptyTypes
  3139. TypeU5BU5D_t3940880105* ___EmptyTypes_3;
  3140. // System.Reflection.MemberFilter System.Type::FilterAttribute
  3141. MemberFilter_t426314064 * ___FilterAttribute_4;
  3142. // System.Reflection.MemberFilter System.Type::FilterName
  3143. MemberFilter_t426314064 * ___FilterName_5;
  3144. // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
  3145. MemberFilter_t426314064 * ___FilterNameIgnoreCase_6;
  3146. // System.Object System.Type::Missing
  3147. RuntimeObject * ___Missing_7;
  3148. public:
  3149. inline static int32_t get_offset_of_Delimiter_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_2)); }
  3150. inline Il2CppChar get_Delimiter_2() const { return ___Delimiter_2; }
  3151. inline Il2CppChar* get_address_of_Delimiter_2() { return &___Delimiter_2; }
  3152. inline void set_Delimiter_2(Il2CppChar value)
  3153. {
  3154. ___Delimiter_2 = value;
  3155. }
  3156. inline static int32_t get_offset_of_EmptyTypes_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_3)); }
  3157. inline TypeU5BU5D_t3940880105* get_EmptyTypes_3() const { return ___EmptyTypes_3; }
  3158. inline TypeU5BU5D_t3940880105** get_address_of_EmptyTypes_3() { return &___EmptyTypes_3; }
  3159. inline void set_EmptyTypes_3(TypeU5BU5D_t3940880105* value)
  3160. {
  3161. ___EmptyTypes_3 = value;
  3162. Il2CppCodeGenWriteBarrier((&___EmptyTypes_3), value);
  3163. }
  3164. inline static int32_t get_offset_of_FilterAttribute_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_4)); }
  3165. inline MemberFilter_t426314064 * get_FilterAttribute_4() const { return ___FilterAttribute_4; }
  3166. inline MemberFilter_t426314064 ** get_address_of_FilterAttribute_4() { return &___FilterAttribute_4; }
  3167. inline void set_FilterAttribute_4(MemberFilter_t426314064 * value)
  3168. {
  3169. ___FilterAttribute_4 = value;
  3170. Il2CppCodeGenWriteBarrier((&___FilterAttribute_4), value);
  3171. }
  3172. inline static int32_t get_offset_of_FilterName_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_5)); }
  3173. inline MemberFilter_t426314064 * get_FilterName_5() const { return ___FilterName_5; }
  3174. inline MemberFilter_t426314064 ** get_address_of_FilterName_5() { return &___FilterName_5; }
  3175. inline void set_FilterName_5(MemberFilter_t426314064 * value)
  3176. {
  3177. ___FilterName_5 = value;
  3178. Il2CppCodeGenWriteBarrier((&___FilterName_5), value);
  3179. }
  3180. inline static int32_t get_offset_of_FilterNameIgnoreCase_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_6)); }
  3181. inline MemberFilter_t426314064 * get_FilterNameIgnoreCase_6() const { return ___FilterNameIgnoreCase_6; }
  3182. inline MemberFilter_t426314064 ** get_address_of_FilterNameIgnoreCase_6() { return &___FilterNameIgnoreCase_6; }
  3183. inline void set_FilterNameIgnoreCase_6(MemberFilter_t426314064 * value)
  3184. {
  3185. ___FilterNameIgnoreCase_6 = value;
  3186. Il2CppCodeGenWriteBarrier((&___FilterNameIgnoreCase_6), value);
  3187. }
  3188. inline static int32_t get_offset_of_Missing_7() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_7)); }
  3189. inline RuntimeObject * get_Missing_7() const { return ___Missing_7; }
  3190. inline RuntimeObject ** get_address_of_Missing_7() { return &___Missing_7; }
  3191. inline void set_Missing_7(RuntimeObject * value)
  3192. {
  3193. ___Missing_7 = value;
  3194. Il2CppCodeGenWriteBarrier((&___Missing_7), value);
  3195. }
  3196. };
  3197. #ifdef __clang__
  3198. #pragma clang diagnostic pop
  3199. #endif
  3200. #endif // TYPE_T_H
  3201. #ifndef GUILAYOUTGROUP_T2157789695_H
  3202. #define GUILAYOUTGROUP_T2157789695_H
  3203. #ifdef __clang__
  3204. #pragma clang diagnostic push
  3205. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3206. #pragma clang diagnostic ignored "-Wunused-variable"
  3207. #endif
  3208. // UnityEngine.GUILayoutGroup
  3209. struct GUILayoutGroup_t2157789695 : public GUILayoutEntry_t3214611570
  3210. {
  3211. public:
  3212. // System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry> UnityEngine.GUILayoutGroup::entries
  3213. List_1_t391719016 * ___entries_10;
  3214. // System.Boolean UnityEngine.GUILayoutGroup::isVertical
  3215. bool ___isVertical_11;
  3216. // System.Boolean UnityEngine.GUILayoutGroup::resetCoords
  3217. bool ___resetCoords_12;
  3218. // System.Single UnityEngine.GUILayoutGroup::spacing
  3219. float ___spacing_13;
  3220. // System.Boolean UnityEngine.GUILayoutGroup::sameSize
  3221. bool ___sameSize_14;
  3222. // System.Boolean UnityEngine.GUILayoutGroup::isWindow
  3223. bool ___isWindow_15;
  3224. // System.Int32 UnityEngine.GUILayoutGroup::windowID
  3225. int32_t ___windowID_16;
  3226. // System.Int32 UnityEngine.GUILayoutGroup::m_Cursor
  3227. int32_t ___m_Cursor_17;
  3228. // System.Int32 UnityEngine.GUILayoutGroup::m_StretchableCountX
  3229. int32_t ___m_StretchableCountX_18;
  3230. // System.Int32 UnityEngine.GUILayoutGroup::m_StretchableCountY
  3231. int32_t ___m_StretchableCountY_19;
  3232. // System.Boolean UnityEngine.GUILayoutGroup::m_UserSpecifiedWidth
  3233. bool ___m_UserSpecifiedWidth_20;
  3234. // System.Boolean UnityEngine.GUILayoutGroup::m_UserSpecifiedHeight
  3235. bool ___m_UserSpecifiedHeight_21;
  3236. // System.Single UnityEngine.GUILayoutGroup::m_ChildMinWidth
  3237. float ___m_ChildMinWidth_22;
  3238. // System.Single UnityEngine.GUILayoutGroup::m_ChildMaxWidth
  3239. float ___m_ChildMaxWidth_23;
  3240. // System.Single UnityEngine.GUILayoutGroup::m_ChildMinHeight
  3241. float ___m_ChildMinHeight_24;
  3242. // System.Single UnityEngine.GUILayoutGroup::m_ChildMaxHeight
  3243. float ___m_ChildMaxHeight_25;
  3244. // UnityEngine.RectOffset UnityEngine.GUILayoutGroup::m_Margin
  3245. RectOffset_t1369453676 * ___m_Margin_26;
  3246. public:
  3247. inline static int32_t get_offset_of_entries_10() { return static_cast<int32_t>(offsetof(GUILayoutGroup_t2157789695, ___entries_10)); }
  3248. inline List_1_t391719016 * get_entries_10() const { return ___entries_10; }
  3249. inline List_1_t391719016 ** get_address_of_entries_10() { return &___entries_10; }
  3250. inline void set_entries_10(List_1_t391719016 * value)
  3251. {
  3252. ___entries_10 = value;
  3253. Il2CppCodeGenWriteBarrier((&___entries_10), value);
  3254. }
  3255. inline static int32_t get_offset_of_isVertical_11() { return static_cast<int32_t>(offsetof(GUILayoutGroup_t2157789695, ___isVertical_11)); }
  3256. inline bool get_isVertical_11() const { return ___isVertical_11; }
  3257. inline bool* get_address_of_isVertical_11() { return &___isVertical_11; }
  3258. inline void set_isVertical_11(bool value)
  3259. {
  3260. ___isVertical_11 = value;
  3261. }
  3262. inline static int32_t get_offset_of_resetCoords_12() { return static_cast<int32_t>(offsetof(GUILayoutGroup_t2157789695, ___resetCoords_12)); }
  3263. inline bool get_resetCoords_12() const { return ___resetCoords_12; }
  3264. inline bool* get_address_of_resetCoords_12() { return &___resetCoords_12; }
  3265. inline void set_resetCoords_12(bool value)
  3266. {
  3267. ___resetCoords_12 = value;
  3268. }
  3269. inline static int32_t get_offset_of_spacing_13() { return static_cast<int32_t>(offsetof(GUILayoutGroup_t2157789695, ___spacing_13)); }
  3270. inline float get_spacing_13() const { return ___spacing_13; }
  3271. inline float* get_address_of_spacing_13() { return &___spacing_13; }
  3272. inline void set_spacing_13(float value)
  3273. {
  3274. ___spacing_13 = value;
  3275. }
  3276. inline static int32_t get_offset_of_sameSize_14() { return static_cast<int32_t>(offsetof(GUILayoutGroup_t2157789695, ___sameSize_14)); }
  3277. inline bool get_sameSize_14() const { return ___sameSize_14; }
  3278. inline bool* get_address_of_sameSize_14() { return &___sameSize_14; }
  3279. inline void set_sameSize_14(bool value)
  3280. {
  3281. ___sameSize_14 = value;
  3282. }
  3283. inline static int32_t get_offset_of_isWindow_15() { return static_cast<int32_t>(offsetof(GUILayoutGroup_t2157789695, ___isWindow_15)); }
  3284. inline bool get_isWindow_15() const { return ___isWindow_15; }
  3285. inline bool* get_address_of_isWindow_15() { return &___isWindow_15; }
  3286. inline void set_isWindow_15(bool value)
  3287. {
  3288. ___isWindow_15 = value;
  3289. }
  3290. inline static int32_t get_offset_of_windowID_16() { return static_cast<int32_t>(offsetof(GUILayoutGroup_t2157789695, ___windowID_16)); }
  3291. inline int32_t get_windowID_16() const { return ___windowID_16; }
  3292. inline int32_t* get_address_of_windowID_16() { return &___windowID_16; }
  3293. inline void set_windowID_16(int32_t value)
  3294. {
  3295. ___windowID_16 = value;
  3296. }
  3297. inline static int32_t get_offset_of_m_Cursor_17() { return static_cast<int32_t>(offsetof(GUILayoutGroup_t2157789695, ___m_Cursor_17)); }
  3298. inline int32_t get_m_Cursor_17() const { return ___m_Cursor_17; }
  3299. inline int32_t* get_address_of_m_Cursor_17() { return &___m_Cursor_17; }
  3300. inline void set_m_Cursor_17(int32_t value)
  3301. {
  3302. ___m_Cursor_17 = value;
  3303. }
  3304. inline static int32_t get_offset_of_m_StretchableCountX_18() { return static_cast<int32_t>(offsetof(GUILayoutGroup_t2157789695, ___m_StretchableCountX_18)); }
  3305. inline int32_t get_m_StretchableCountX_18() const { return ___m_StretchableCountX_18; }
  3306. inline int32_t* get_address_of_m_StretchableCountX_18() { return &___m_StretchableCountX_18; }
  3307. inline void set_m_StretchableCountX_18(int32_t value)
  3308. {
  3309. ___m_StretchableCountX_18 = value;
  3310. }
  3311. inline static int32_t get_offset_of_m_StretchableCountY_19() { return static_cast<int32_t>(offsetof(GUILayoutGroup_t2157789695, ___m_StretchableCountY_19)); }
  3312. inline int32_t get_m_StretchableCountY_19() const { return ___m_StretchableCountY_19; }
  3313. inline int32_t* get_address_of_m_StretchableCountY_19() { return &___m_StretchableCountY_19; }
  3314. inline void set_m_StretchableCountY_19(int32_t value)
  3315. {
  3316. ___m_StretchableCountY_19 = value;
  3317. }
  3318. inline static int32_t get_offset_of_m_UserSpecifiedWidth_20() { return static_cast<int32_t>(offsetof(GUILayoutGroup_t2157789695, ___m_UserSpecifiedWidth_20)); }
  3319. inline bool get_m_UserSpecifiedWidth_20() const { return ___m_UserSpecifiedWidth_20; }
  3320. inline bool* get_address_of_m_UserSpecifiedWidth_20() { return &___m_UserSpecifiedWidth_20; }
  3321. inline void set_m_UserSpecifiedWidth_20(bool value)
  3322. {
  3323. ___m_UserSpecifiedWidth_20 = value;
  3324. }
  3325. inline static int32_t get_offset_of_m_UserSpecifiedHeight_21() { return static_cast<int32_t>(offsetof(GUILayoutGroup_t2157789695, ___m_UserSpecifiedHeight_21)); }
  3326. inline bool get_m_UserSpecifiedHeight_21() const { return ___m_UserSpecifiedHeight_21; }
  3327. inline bool* get_address_of_m_UserSpecifiedHeight_21() { return &___m_UserSpecifiedHeight_21; }
  3328. inline void set_m_UserSpecifiedHeight_21(bool value)
  3329. {
  3330. ___m_UserSpecifiedHeight_21 = value;
  3331. }
  3332. inline static int32_t get_offset_of_m_ChildMinWidth_22() { return static_cast<int32_t>(offsetof(GUILayoutGroup_t2157789695, ___m_ChildMinWidth_22)); }
  3333. inline float get_m_ChildMinWidth_22() const { return ___m_ChildMinWidth_22; }
  3334. inline float* get_address_of_m_ChildMinWidth_22() { return &___m_ChildMinWidth_22; }
  3335. inline void set_m_ChildMinWidth_22(float value)
  3336. {
  3337. ___m_ChildMinWidth_22 = value;
  3338. }
  3339. inline static int32_t get_offset_of_m_ChildMaxWidth_23() { return static_cast<int32_t>(offsetof(GUILayoutGroup_t2157789695, ___m_ChildMaxWidth_23)); }
  3340. inline float get_m_ChildMaxWidth_23() const { return ___m_ChildMaxWidth_23; }
  3341. inline float* get_address_of_m_ChildMaxWidth_23() { return &___m_ChildMaxWidth_23; }
  3342. inline void set_m_ChildMaxWidth_23(float value)
  3343. {
  3344. ___m_ChildMaxWidth_23 = value;
  3345. }
  3346. inline static int32_t get_offset_of_m_ChildMinHeight_24() { return static_cast<int32_t>(offsetof(GUILayoutGroup_t2157789695, ___m_ChildMinHeight_24)); }
  3347. inline float get_m_ChildMinHeight_24() const { return ___m_ChildMinHeight_24; }
  3348. inline float* get_address_of_m_ChildMinHeight_24() { return &___m_ChildMinHeight_24; }
  3349. inline void set_m_ChildMinHeight_24(float value)
  3350. {
  3351. ___m_ChildMinHeight_24 = value;
  3352. }
  3353. inline static int32_t get_offset_of_m_ChildMaxHeight_25() { return static_cast<int32_t>(offsetof(GUILayoutGroup_t2157789695, ___m_ChildMaxHeight_25)); }
  3354. inline float get_m_ChildMaxHeight_25() const { return ___m_ChildMaxHeight_25; }
  3355. inline float* get_address_of_m_ChildMaxHeight_25() { return &___m_ChildMaxHeight_25; }
  3356. inline void set_m_ChildMaxHeight_25(float value)
  3357. {
  3358. ___m_ChildMaxHeight_25 = value;
  3359. }
  3360. inline static int32_t get_offset_of_m_Margin_26() { return static_cast<int32_t>(offsetof(GUILayoutGroup_t2157789695, ___m_Margin_26)); }
  3361. inline RectOffset_t1369453676 * get_m_Margin_26() const { return ___m_Margin_26; }
  3362. inline RectOffset_t1369453676 ** get_address_of_m_Margin_26() { return &___m_Margin_26; }
  3363. inline void set_m_Margin_26(RectOffset_t1369453676 * value)
  3364. {
  3365. ___m_Margin_26 = value;
  3366. Il2CppCodeGenWriteBarrier((&___m_Margin_26), value);
  3367. }
  3368. };
  3369. #ifdef __clang__
  3370. #pragma clang diagnostic pop
  3371. #endif
  3372. #endif // GUILAYOUTGROUP_T2157789695_H
  3373. #ifndef SCRIPTABLEOBJECT_T2528358522_H
  3374. #define SCRIPTABLEOBJECT_T2528358522_H
  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. // UnityEngine.ScriptableObject
  3381. struct ScriptableObject_t2528358522 : public Object_t631007953
  3382. {
  3383. public:
  3384. public:
  3385. };
  3386. #ifdef __clang__
  3387. #pragma clang diagnostic pop
  3388. #endif
  3389. // Native definition for P/Invoke marshalling of UnityEngine.ScriptableObject
  3390. struct ScriptableObject_t2528358522_marshaled_pinvoke : public Object_t631007953_marshaled_pinvoke
  3391. {
  3392. };
  3393. // Native definition for COM marshalling of UnityEngine.ScriptableObject
  3394. struct ScriptableObject_t2528358522_marshaled_com : public Object_t631007953_marshaled_com
  3395. {
  3396. };
  3397. #endif // SCRIPTABLEOBJECT_T2528358522_H
  3398. #ifndef FONT_T1956802104_H
  3399. #define FONT_T1956802104_H
  3400. #ifdef __clang__
  3401. #pragma clang diagnostic push
  3402. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3403. #pragma clang diagnostic ignored "-Wunused-variable"
  3404. #endif
  3405. // UnityEngine.Font
  3406. struct Font_t1956802104 : public Object_t631007953
  3407. {
  3408. public:
  3409. // UnityEngine.Font/FontTextureRebuildCallback UnityEngine.Font::m_FontTextureRebuildCallback
  3410. FontTextureRebuildCallback_t2467502454 * ___m_FontTextureRebuildCallback_3;
  3411. public:
  3412. inline static int32_t get_offset_of_m_FontTextureRebuildCallback_3() { return static_cast<int32_t>(offsetof(Font_t1956802104, ___m_FontTextureRebuildCallback_3)); }
  3413. inline FontTextureRebuildCallback_t2467502454 * get_m_FontTextureRebuildCallback_3() const { return ___m_FontTextureRebuildCallback_3; }
  3414. inline FontTextureRebuildCallback_t2467502454 ** get_address_of_m_FontTextureRebuildCallback_3() { return &___m_FontTextureRebuildCallback_3; }
  3415. inline void set_m_FontTextureRebuildCallback_3(FontTextureRebuildCallback_t2467502454 * value)
  3416. {
  3417. ___m_FontTextureRebuildCallback_3 = value;
  3418. Il2CppCodeGenWriteBarrier((&___m_FontTextureRebuildCallback_3), value);
  3419. }
  3420. };
  3421. struct Font_t1956802104_StaticFields
  3422. {
  3423. public:
  3424. // System.Action`1<UnityEngine.Font> UnityEngine.Font::textureRebuilt
  3425. Action_1_t2129269699 * ___textureRebuilt_2;
  3426. public:
  3427. inline static int32_t get_offset_of_textureRebuilt_2() { return static_cast<int32_t>(offsetof(Font_t1956802104_StaticFields, ___textureRebuilt_2)); }
  3428. inline Action_1_t2129269699 * get_textureRebuilt_2() const { return ___textureRebuilt_2; }
  3429. inline Action_1_t2129269699 ** get_address_of_textureRebuilt_2() { return &___textureRebuilt_2; }
  3430. inline void set_textureRebuilt_2(Action_1_t2129269699 * value)
  3431. {
  3432. ___textureRebuilt_2 = value;
  3433. Il2CppCodeGenWriteBarrier((&___textureRebuilt_2), value);
  3434. }
  3435. };
  3436. #ifdef __clang__
  3437. #pragma clang diagnostic pop
  3438. #endif
  3439. #endif // FONT_T1956802104_H
  3440. #ifndef TEXTURE_T3661962703_H
  3441. #define TEXTURE_T3661962703_H
  3442. #ifdef __clang__
  3443. #pragma clang diagnostic push
  3444. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3445. #pragma clang diagnostic ignored "-Wunused-variable"
  3446. #endif
  3447. // UnityEngine.Texture
  3448. struct Texture_t3661962703 : public Object_t631007953
  3449. {
  3450. public:
  3451. public:
  3452. };
  3453. #ifdef __clang__
  3454. #pragma clang diagnostic pop
  3455. #endif
  3456. #endif // TEXTURE_T3661962703_H
  3457. #ifndef MULTICASTDELEGATE_T_H
  3458. #define MULTICASTDELEGATE_T_H
  3459. #ifdef __clang__
  3460. #pragma clang diagnostic push
  3461. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3462. #pragma clang diagnostic ignored "-Wunused-variable"
  3463. #endif
  3464. // System.MulticastDelegate
  3465. struct MulticastDelegate_t : public Delegate_t1188392813
  3466. {
  3467. public:
  3468. // System.MulticastDelegate System.MulticastDelegate::prev
  3469. MulticastDelegate_t * ___prev_9;
  3470. // System.MulticastDelegate System.MulticastDelegate::kpm_next
  3471. MulticastDelegate_t * ___kpm_next_10;
  3472. public:
  3473. inline static int32_t get_offset_of_prev_9() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___prev_9)); }
  3474. inline MulticastDelegate_t * get_prev_9() const { return ___prev_9; }
  3475. inline MulticastDelegate_t ** get_address_of_prev_9() { return &___prev_9; }
  3476. inline void set_prev_9(MulticastDelegate_t * value)
  3477. {
  3478. ___prev_9 = value;
  3479. Il2CppCodeGenWriteBarrier((&___prev_9), value);
  3480. }
  3481. inline static int32_t get_offset_of_kpm_next_10() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___kpm_next_10)); }
  3482. inline MulticastDelegate_t * get_kpm_next_10() const { return ___kpm_next_10; }
  3483. inline MulticastDelegate_t ** get_address_of_kpm_next_10() { return &___kpm_next_10; }
  3484. inline void set_kpm_next_10(MulticastDelegate_t * value)
  3485. {
  3486. ___kpm_next_10 = value;
  3487. Il2CppCodeGenWriteBarrier((&___kpm_next_10), value);
  3488. }
  3489. };
  3490. #ifdef __clang__
  3491. #pragma clang diagnostic pop
  3492. #endif
  3493. #endif // MULTICASTDELEGATE_T_H
  3494. #ifndef GUILAYOUTOPTION_T811797299_H
  3495. #define GUILAYOUTOPTION_T811797299_H
  3496. #ifdef __clang__
  3497. #pragma clang diagnostic push
  3498. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3499. #pragma clang diagnostic ignored "-Wunused-variable"
  3500. #endif
  3501. // UnityEngine.GUILayoutOption
  3502. struct GUILayoutOption_t811797299 : public RuntimeObject
  3503. {
  3504. public:
  3505. // UnityEngine.GUILayoutOption/Type UnityEngine.GUILayoutOption::type
  3506. int32_t ___type_0;
  3507. // System.Object UnityEngine.GUILayoutOption::value
  3508. RuntimeObject * ___value_1;
  3509. public:
  3510. inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(GUILayoutOption_t811797299, ___type_0)); }
  3511. inline int32_t get_type_0() const { return ___type_0; }
  3512. inline int32_t* get_address_of_type_0() { return &___type_0; }
  3513. inline void set_type_0(int32_t value)
  3514. {
  3515. ___type_0 = value;
  3516. }
  3517. inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(GUILayoutOption_t811797299, ___value_1)); }
  3518. inline RuntimeObject * get_value_1() const { return ___value_1; }
  3519. inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
  3520. inline void set_value_1(RuntimeObject * value)
  3521. {
  3522. ___value_1 = value;
  3523. Il2CppCodeGenWriteBarrier((&___value_1), value);
  3524. }
  3525. };
  3526. #ifdef __clang__
  3527. #pragma clang diagnostic pop
  3528. #endif
  3529. #endif // GUILAYOUTOPTION_T811797299_H
  3530. #ifndef TEXTEDITOR_T2759855366_H
  3531. #define TEXTEDITOR_T2759855366_H
  3532. #ifdef __clang__
  3533. #pragma clang diagnostic push
  3534. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3535. #pragma clang diagnostic ignored "-Wunused-variable"
  3536. #endif
  3537. // UnityEngine.TextEditor
  3538. struct TextEditor_t2759855366 : public RuntimeObject
  3539. {
  3540. public:
  3541. // UnityEngine.TouchScreenKeyboard UnityEngine.TextEditor::keyboardOnScreen
  3542. TouchScreenKeyboard_t731888065 * ___keyboardOnScreen_0;
  3543. // System.Int32 UnityEngine.TextEditor::controlID
  3544. int32_t ___controlID_1;
  3545. // UnityEngine.GUIStyle UnityEngine.TextEditor::style
  3546. GUIStyle_t3956901511 * ___style_2;
  3547. // System.Boolean UnityEngine.TextEditor::multiline
  3548. bool ___multiline_3;
  3549. // System.Boolean UnityEngine.TextEditor::hasHorizontalCursorPos
  3550. bool ___hasHorizontalCursorPos_4;
  3551. // System.Boolean UnityEngine.TextEditor::isPasswordField
  3552. bool ___isPasswordField_5;
  3553. // UnityEngine.Vector2 UnityEngine.TextEditor::scrollOffset
  3554. Vector2_t2156229523 ___scrollOffset_6;
  3555. // UnityEngine.GUIContent UnityEngine.TextEditor::m_Content
  3556. GUIContent_t3050628031 * ___m_Content_7;
  3557. // System.Int32 UnityEngine.TextEditor::m_CursorIndex
  3558. int32_t ___m_CursorIndex_8;
  3559. // System.Int32 UnityEngine.TextEditor::m_SelectIndex
  3560. int32_t ___m_SelectIndex_9;
  3561. // System.Boolean UnityEngine.TextEditor::m_RevealCursor
  3562. bool ___m_RevealCursor_10;
  3563. // System.Boolean UnityEngine.TextEditor::m_MouseDragSelectsWholeWords
  3564. bool ___m_MouseDragSelectsWholeWords_11;
  3565. // System.Int32 UnityEngine.TextEditor::m_DblClickInitPos
  3566. int32_t ___m_DblClickInitPos_12;
  3567. // UnityEngine.TextEditor/DblClickSnapping UnityEngine.TextEditor::m_DblClickSnap
  3568. uint8_t ___m_DblClickSnap_13;
  3569. // System.Boolean UnityEngine.TextEditor::m_bJustSelected
  3570. bool ___m_bJustSelected_14;
  3571. // System.Int32 UnityEngine.TextEditor::m_iAltCursorPos
  3572. int32_t ___m_iAltCursorPos_15;
  3573. public:
  3574. inline static int32_t get_offset_of_keyboardOnScreen_0() { return static_cast<int32_t>(offsetof(TextEditor_t2759855366, ___keyboardOnScreen_0)); }
  3575. inline TouchScreenKeyboard_t731888065 * get_keyboardOnScreen_0() const { return ___keyboardOnScreen_0; }
  3576. inline TouchScreenKeyboard_t731888065 ** get_address_of_keyboardOnScreen_0() { return &___keyboardOnScreen_0; }
  3577. inline void set_keyboardOnScreen_0(TouchScreenKeyboard_t731888065 * value)
  3578. {
  3579. ___keyboardOnScreen_0 = value;
  3580. Il2CppCodeGenWriteBarrier((&___keyboardOnScreen_0), value);
  3581. }
  3582. inline static int32_t get_offset_of_controlID_1() { return static_cast<int32_t>(offsetof(TextEditor_t2759855366, ___controlID_1)); }
  3583. inline int32_t get_controlID_1() const { return ___controlID_1; }
  3584. inline int32_t* get_address_of_controlID_1() { return &___controlID_1; }
  3585. inline void set_controlID_1(int32_t value)
  3586. {
  3587. ___controlID_1 = value;
  3588. }
  3589. inline static int32_t get_offset_of_style_2() { return static_cast<int32_t>(offsetof(TextEditor_t2759855366, ___style_2)); }
  3590. inline GUIStyle_t3956901511 * get_style_2() const { return ___style_2; }
  3591. inline GUIStyle_t3956901511 ** get_address_of_style_2() { return &___style_2; }
  3592. inline void set_style_2(GUIStyle_t3956901511 * value)
  3593. {
  3594. ___style_2 = value;
  3595. Il2CppCodeGenWriteBarrier((&___style_2), value);
  3596. }
  3597. inline static int32_t get_offset_of_multiline_3() { return static_cast<int32_t>(offsetof(TextEditor_t2759855366, ___multiline_3)); }
  3598. inline bool get_multiline_3() const { return ___multiline_3; }
  3599. inline bool* get_address_of_multiline_3() { return &___multiline_3; }
  3600. inline void set_multiline_3(bool value)
  3601. {
  3602. ___multiline_3 = value;
  3603. }
  3604. inline static int32_t get_offset_of_hasHorizontalCursorPos_4() { return static_cast<int32_t>(offsetof(TextEditor_t2759855366, ___hasHorizontalCursorPos_4)); }
  3605. inline bool get_hasHorizontalCursorPos_4() const { return ___hasHorizontalCursorPos_4; }
  3606. inline bool* get_address_of_hasHorizontalCursorPos_4() { return &___hasHorizontalCursorPos_4; }
  3607. inline void set_hasHorizontalCursorPos_4(bool value)
  3608. {
  3609. ___hasHorizontalCursorPos_4 = value;
  3610. }
  3611. inline static int32_t get_offset_of_isPasswordField_5() { return static_cast<int32_t>(offsetof(TextEditor_t2759855366, ___isPasswordField_5)); }
  3612. inline bool get_isPasswordField_5() const { return ___isPasswordField_5; }
  3613. inline bool* get_address_of_isPasswordField_5() { return &___isPasswordField_5; }
  3614. inline void set_isPasswordField_5(bool value)
  3615. {
  3616. ___isPasswordField_5 = value;
  3617. }
  3618. inline static int32_t get_offset_of_scrollOffset_6() { return static_cast<int32_t>(offsetof(TextEditor_t2759855366, ___scrollOffset_6)); }
  3619. inline Vector2_t2156229523 get_scrollOffset_6() const { return ___scrollOffset_6; }
  3620. inline Vector2_t2156229523 * get_address_of_scrollOffset_6() { return &___scrollOffset_6; }
  3621. inline void set_scrollOffset_6(Vector2_t2156229523 value)
  3622. {
  3623. ___scrollOffset_6 = value;
  3624. }
  3625. inline static int32_t get_offset_of_m_Content_7() { return static_cast<int32_t>(offsetof(TextEditor_t2759855366, ___m_Content_7)); }
  3626. inline GUIContent_t3050628031 * get_m_Content_7() const { return ___m_Content_7; }
  3627. inline GUIContent_t3050628031 ** get_address_of_m_Content_7() { return &___m_Content_7; }
  3628. inline void set_m_Content_7(GUIContent_t3050628031 * value)
  3629. {
  3630. ___m_Content_7 = value;
  3631. Il2CppCodeGenWriteBarrier((&___m_Content_7), value);
  3632. }
  3633. inline static int32_t get_offset_of_m_CursorIndex_8() { return static_cast<int32_t>(offsetof(TextEditor_t2759855366, ___m_CursorIndex_8)); }
  3634. inline int32_t get_m_CursorIndex_8() const { return ___m_CursorIndex_8; }
  3635. inline int32_t* get_address_of_m_CursorIndex_8() { return &___m_CursorIndex_8; }
  3636. inline void set_m_CursorIndex_8(int32_t value)
  3637. {
  3638. ___m_CursorIndex_8 = value;
  3639. }
  3640. inline static int32_t get_offset_of_m_SelectIndex_9() { return static_cast<int32_t>(offsetof(TextEditor_t2759855366, ___m_SelectIndex_9)); }
  3641. inline int32_t get_m_SelectIndex_9() const { return ___m_SelectIndex_9; }
  3642. inline int32_t* get_address_of_m_SelectIndex_9() { return &___m_SelectIndex_9; }
  3643. inline void set_m_SelectIndex_9(int32_t value)
  3644. {
  3645. ___m_SelectIndex_9 = value;
  3646. }
  3647. inline static int32_t get_offset_of_m_RevealCursor_10() { return static_cast<int32_t>(offsetof(TextEditor_t2759855366, ___m_RevealCursor_10)); }
  3648. inline bool get_m_RevealCursor_10() const { return ___m_RevealCursor_10; }
  3649. inline bool* get_address_of_m_RevealCursor_10() { return &___m_RevealCursor_10; }
  3650. inline void set_m_RevealCursor_10(bool value)
  3651. {
  3652. ___m_RevealCursor_10 = value;
  3653. }
  3654. inline static int32_t get_offset_of_m_MouseDragSelectsWholeWords_11() { return static_cast<int32_t>(offsetof(TextEditor_t2759855366, ___m_MouseDragSelectsWholeWords_11)); }
  3655. inline bool get_m_MouseDragSelectsWholeWords_11() const { return ___m_MouseDragSelectsWholeWords_11; }
  3656. inline bool* get_address_of_m_MouseDragSelectsWholeWords_11() { return &___m_MouseDragSelectsWholeWords_11; }
  3657. inline void set_m_MouseDragSelectsWholeWords_11(bool value)
  3658. {
  3659. ___m_MouseDragSelectsWholeWords_11 = value;
  3660. }
  3661. inline static int32_t get_offset_of_m_DblClickInitPos_12() { return static_cast<int32_t>(offsetof(TextEditor_t2759855366, ___m_DblClickInitPos_12)); }
  3662. inline int32_t get_m_DblClickInitPos_12() const { return ___m_DblClickInitPos_12; }
  3663. inline int32_t* get_address_of_m_DblClickInitPos_12() { return &___m_DblClickInitPos_12; }
  3664. inline void set_m_DblClickInitPos_12(int32_t value)
  3665. {
  3666. ___m_DblClickInitPos_12 = value;
  3667. }
  3668. inline static int32_t get_offset_of_m_DblClickSnap_13() { return static_cast<int32_t>(offsetof(TextEditor_t2759855366, ___m_DblClickSnap_13)); }
  3669. inline uint8_t get_m_DblClickSnap_13() const { return ___m_DblClickSnap_13; }
  3670. inline uint8_t* get_address_of_m_DblClickSnap_13() { return &___m_DblClickSnap_13; }
  3671. inline void set_m_DblClickSnap_13(uint8_t value)
  3672. {
  3673. ___m_DblClickSnap_13 = value;
  3674. }
  3675. inline static int32_t get_offset_of_m_bJustSelected_14() { return static_cast<int32_t>(offsetof(TextEditor_t2759855366, ___m_bJustSelected_14)); }
  3676. inline bool get_m_bJustSelected_14() const { return ___m_bJustSelected_14; }
  3677. inline bool* get_address_of_m_bJustSelected_14() { return &___m_bJustSelected_14; }
  3678. inline void set_m_bJustSelected_14(bool value)
  3679. {
  3680. ___m_bJustSelected_14 = value;
  3681. }
  3682. inline static int32_t get_offset_of_m_iAltCursorPos_15() { return static_cast<int32_t>(offsetof(TextEditor_t2759855366, ___m_iAltCursorPos_15)); }
  3683. inline int32_t get_m_iAltCursorPos_15() const { return ___m_iAltCursorPos_15; }
  3684. inline int32_t* get_address_of_m_iAltCursorPos_15() { return &___m_iAltCursorPos_15; }
  3685. inline void set_m_iAltCursorPos_15(int32_t value)
  3686. {
  3687. ___m_iAltCursorPos_15 = value;
  3688. }
  3689. };
  3690. #ifdef __clang__
  3691. #pragma clang diagnostic pop
  3692. #endif
  3693. #endif // TEXTEDITOR_T2759855366_H
  3694. #ifndef GUISTYLE_T3956901511_H
  3695. #define GUISTYLE_T3956901511_H
  3696. #ifdef __clang__
  3697. #pragma clang diagnostic push
  3698. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3699. #pragma clang diagnostic ignored "-Wunused-variable"
  3700. #endif
  3701. // UnityEngine.GUIStyle
  3702. struct GUIStyle_t3956901511 : public RuntimeObject
  3703. {
  3704. public:
  3705. // System.IntPtr UnityEngine.GUIStyle::m_Ptr
  3706. intptr_t ___m_Ptr_0;
  3707. // UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_Normal
  3708. GUIStyleState_t1397964415 * ___m_Normal_1;
  3709. // UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_Hover
  3710. GUIStyleState_t1397964415 * ___m_Hover_2;
  3711. // UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_Active
  3712. GUIStyleState_t1397964415 * ___m_Active_3;
  3713. // UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_Focused
  3714. GUIStyleState_t1397964415 * ___m_Focused_4;
  3715. // UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_OnNormal
  3716. GUIStyleState_t1397964415 * ___m_OnNormal_5;
  3717. // UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_OnHover
  3718. GUIStyleState_t1397964415 * ___m_OnHover_6;
  3719. // UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_OnActive
  3720. GUIStyleState_t1397964415 * ___m_OnActive_7;
  3721. // UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_OnFocused
  3722. GUIStyleState_t1397964415 * ___m_OnFocused_8;
  3723. // UnityEngine.RectOffset UnityEngine.GUIStyle::m_Border
  3724. RectOffset_t1369453676 * ___m_Border_9;
  3725. // UnityEngine.RectOffset UnityEngine.GUIStyle::m_Padding
  3726. RectOffset_t1369453676 * ___m_Padding_10;
  3727. // UnityEngine.RectOffset UnityEngine.GUIStyle::m_Margin
  3728. RectOffset_t1369453676 * ___m_Margin_11;
  3729. // UnityEngine.RectOffset UnityEngine.GUIStyle::m_Overflow
  3730. RectOffset_t1369453676 * ___m_Overflow_12;
  3731. // UnityEngine.Font UnityEngine.GUIStyle::m_FontInternal
  3732. Font_t1956802104 * ___m_FontInternal_13;
  3733. public:
  3734. inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(GUIStyle_t3956901511, ___m_Ptr_0)); }
  3735. inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
  3736. inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
  3737. inline void set_m_Ptr_0(intptr_t value)
  3738. {
  3739. ___m_Ptr_0 = value;
  3740. }
  3741. inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(GUIStyle_t3956901511, ___m_Normal_1)); }
  3742. inline GUIStyleState_t1397964415 * get_m_Normal_1() const { return ___m_Normal_1; }
  3743. inline GUIStyleState_t1397964415 ** get_address_of_m_Normal_1() { return &___m_Normal_1; }
  3744. inline void set_m_Normal_1(GUIStyleState_t1397964415 * value)
  3745. {
  3746. ___m_Normal_1 = value;
  3747. Il2CppCodeGenWriteBarrier((&___m_Normal_1), value);
  3748. }
  3749. inline static int32_t get_offset_of_m_Hover_2() { return static_cast<int32_t>(offsetof(GUIStyle_t3956901511, ___m_Hover_2)); }
  3750. inline GUIStyleState_t1397964415 * get_m_Hover_2() const { return ___m_Hover_2; }
  3751. inline GUIStyleState_t1397964415 ** get_address_of_m_Hover_2() { return &___m_Hover_2; }
  3752. inline void set_m_Hover_2(GUIStyleState_t1397964415 * value)
  3753. {
  3754. ___m_Hover_2 = value;
  3755. Il2CppCodeGenWriteBarrier((&___m_Hover_2), value);
  3756. }
  3757. inline static int32_t get_offset_of_m_Active_3() { return static_cast<int32_t>(offsetof(GUIStyle_t3956901511, ___m_Active_3)); }
  3758. inline GUIStyleState_t1397964415 * get_m_Active_3() const { return ___m_Active_3; }
  3759. inline GUIStyleState_t1397964415 ** get_address_of_m_Active_3() { return &___m_Active_3; }
  3760. inline void set_m_Active_3(GUIStyleState_t1397964415 * value)
  3761. {
  3762. ___m_Active_3 = value;
  3763. Il2CppCodeGenWriteBarrier((&___m_Active_3), value);
  3764. }
  3765. inline static int32_t get_offset_of_m_Focused_4() { return static_cast<int32_t>(offsetof(GUIStyle_t3956901511, ___m_Focused_4)); }
  3766. inline GUIStyleState_t1397964415 * get_m_Focused_4() const { return ___m_Focused_4; }
  3767. inline GUIStyleState_t1397964415 ** get_address_of_m_Focused_4() { return &___m_Focused_4; }
  3768. inline void set_m_Focused_4(GUIStyleState_t1397964415 * value)
  3769. {
  3770. ___m_Focused_4 = value;
  3771. Il2CppCodeGenWriteBarrier((&___m_Focused_4), value);
  3772. }
  3773. inline static int32_t get_offset_of_m_OnNormal_5() { return static_cast<int32_t>(offsetof(GUIStyle_t3956901511, ___m_OnNormal_5)); }
  3774. inline GUIStyleState_t1397964415 * get_m_OnNormal_5() const { return ___m_OnNormal_5; }
  3775. inline GUIStyleState_t1397964415 ** get_address_of_m_OnNormal_5() { return &___m_OnNormal_5; }
  3776. inline void set_m_OnNormal_5(GUIStyleState_t1397964415 * value)
  3777. {
  3778. ___m_OnNormal_5 = value;
  3779. Il2CppCodeGenWriteBarrier((&___m_OnNormal_5), value);
  3780. }
  3781. inline static int32_t get_offset_of_m_OnHover_6() { return static_cast<int32_t>(offsetof(GUIStyle_t3956901511, ___m_OnHover_6)); }
  3782. inline GUIStyleState_t1397964415 * get_m_OnHover_6() const { return ___m_OnHover_6; }
  3783. inline GUIStyleState_t1397964415 ** get_address_of_m_OnHover_6() { return &___m_OnHover_6; }
  3784. inline void set_m_OnHover_6(GUIStyleState_t1397964415 * value)
  3785. {
  3786. ___m_OnHover_6 = value;
  3787. Il2CppCodeGenWriteBarrier((&___m_OnHover_6), value);
  3788. }
  3789. inline static int32_t get_offset_of_m_OnActive_7() { return static_cast<int32_t>(offsetof(GUIStyle_t3956901511, ___m_OnActive_7)); }
  3790. inline GUIStyleState_t1397964415 * get_m_OnActive_7() const { return ___m_OnActive_7; }
  3791. inline GUIStyleState_t1397964415 ** get_address_of_m_OnActive_7() { return &___m_OnActive_7; }
  3792. inline void set_m_OnActive_7(GUIStyleState_t1397964415 * value)
  3793. {
  3794. ___m_OnActive_7 = value;
  3795. Il2CppCodeGenWriteBarrier((&___m_OnActive_7), value);
  3796. }
  3797. inline static int32_t get_offset_of_m_OnFocused_8() { return static_cast<int32_t>(offsetof(GUIStyle_t3956901511, ___m_OnFocused_8)); }
  3798. inline GUIStyleState_t1397964415 * get_m_OnFocused_8() const { return ___m_OnFocused_8; }
  3799. inline GUIStyleState_t1397964415 ** get_address_of_m_OnFocused_8() { return &___m_OnFocused_8; }
  3800. inline void set_m_OnFocused_8(GUIStyleState_t1397964415 * value)
  3801. {
  3802. ___m_OnFocused_8 = value;
  3803. Il2CppCodeGenWriteBarrier((&___m_OnFocused_8), value);
  3804. }
  3805. inline static int32_t get_offset_of_m_Border_9() { return static_cast<int32_t>(offsetof(GUIStyle_t3956901511, ___m_Border_9)); }
  3806. inline RectOffset_t1369453676 * get_m_Border_9() const { return ___m_Border_9; }
  3807. inline RectOffset_t1369453676 ** get_address_of_m_Border_9() { return &___m_Border_9; }
  3808. inline void set_m_Border_9(RectOffset_t1369453676 * value)
  3809. {
  3810. ___m_Border_9 = value;
  3811. Il2CppCodeGenWriteBarrier((&___m_Border_9), value);
  3812. }
  3813. inline static int32_t get_offset_of_m_Padding_10() { return static_cast<int32_t>(offsetof(GUIStyle_t3956901511, ___m_Padding_10)); }
  3814. inline RectOffset_t1369453676 * get_m_Padding_10() const { return ___m_Padding_10; }
  3815. inline RectOffset_t1369453676 ** get_address_of_m_Padding_10() { return &___m_Padding_10; }
  3816. inline void set_m_Padding_10(RectOffset_t1369453676 * value)
  3817. {
  3818. ___m_Padding_10 = value;
  3819. Il2CppCodeGenWriteBarrier((&___m_Padding_10), value);
  3820. }
  3821. inline static int32_t get_offset_of_m_Margin_11() { return static_cast<int32_t>(offsetof(GUIStyle_t3956901511, ___m_Margin_11)); }
  3822. inline RectOffset_t1369453676 * get_m_Margin_11() const { return ___m_Margin_11; }
  3823. inline RectOffset_t1369453676 ** get_address_of_m_Margin_11() { return &___m_Margin_11; }
  3824. inline void set_m_Margin_11(RectOffset_t1369453676 * value)
  3825. {
  3826. ___m_Margin_11 = value;
  3827. Il2CppCodeGenWriteBarrier((&___m_Margin_11), value);
  3828. }
  3829. inline static int32_t get_offset_of_m_Overflow_12() { return static_cast<int32_t>(offsetof(GUIStyle_t3956901511, ___m_Overflow_12)); }
  3830. inline RectOffset_t1369453676 * get_m_Overflow_12() const { return ___m_Overflow_12; }
  3831. inline RectOffset_t1369453676 ** get_address_of_m_Overflow_12() { return &___m_Overflow_12; }
  3832. inline void set_m_Overflow_12(RectOffset_t1369453676 * value)
  3833. {
  3834. ___m_Overflow_12 = value;
  3835. Il2CppCodeGenWriteBarrier((&___m_Overflow_12), value);
  3836. }
  3837. inline static int32_t get_offset_of_m_FontInternal_13() { return static_cast<int32_t>(offsetof(GUIStyle_t3956901511, ___m_FontInternal_13)); }
  3838. inline Font_t1956802104 * get_m_FontInternal_13() const { return ___m_FontInternal_13; }
  3839. inline Font_t1956802104 ** get_address_of_m_FontInternal_13() { return &___m_FontInternal_13; }
  3840. inline void set_m_FontInternal_13(Font_t1956802104 * value)
  3841. {
  3842. ___m_FontInternal_13 = value;
  3843. Il2CppCodeGenWriteBarrier((&___m_FontInternal_13), value);
  3844. }
  3845. };
  3846. struct GUIStyle_t3956901511_StaticFields
  3847. {
  3848. public:
  3849. // System.Boolean UnityEngine.GUIStyle::showKeyboardFocus
  3850. bool ___showKeyboardFocus_14;
  3851. // UnityEngine.GUIStyle UnityEngine.GUIStyle::s_None
  3852. GUIStyle_t3956901511 * ___s_None_15;
  3853. public:
  3854. inline static int32_t get_offset_of_showKeyboardFocus_14() { return static_cast<int32_t>(offsetof(GUIStyle_t3956901511_StaticFields, ___showKeyboardFocus_14)); }
  3855. inline bool get_showKeyboardFocus_14() const { return ___showKeyboardFocus_14; }
  3856. inline bool* get_address_of_showKeyboardFocus_14() { return &___showKeyboardFocus_14; }
  3857. inline void set_showKeyboardFocus_14(bool value)
  3858. {
  3859. ___showKeyboardFocus_14 = value;
  3860. }
  3861. inline static int32_t get_offset_of_s_None_15() { return static_cast<int32_t>(offsetof(GUIStyle_t3956901511_StaticFields, ___s_None_15)); }
  3862. inline GUIStyle_t3956901511 * get_s_None_15() const { return ___s_None_15; }
  3863. inline GUIStyle_t3956901511 ** get_address_of_s_None_15() { return &___s_None_15; }
  3864. inline void set_s_None_15(GUIStyle_t3956901511 * value)
  3865. {
  3866. ___s_None_15 = value;
  3867. Il2CppCodeGenWriteBarrier((&___s_None_15), value);
  3868. }
  3869. };
  3870. #ifdef __clang__
  3871. #pragma clang diagnostic pop
  3872. #endif
  3873. // Native definition for P/Invoke marshalling of UnityEngine.GUIStyle
  3874. struct GUIStyle_t3956901511_marshaled_pinvoke
  3875. {
  3876. intptr_t ___m_Ptr_0;
  3877. GUIStyleState_t1397964415_marshaled_pinvoke* ___m_Normal_1;
  3878. GUIStyleState_t1397964415_marshaled_pinvoke* ___m_Hover_2;
  3879. GUIStyleState_t1397964415_marshaled_pinvoke* ___m_Active_3;
  3880. GUIStyleState_t1397964415_marshaled_pinvoke* ___m_Focused_4;
  3881. GUIStyleState_t1397964415_marshaled_pinvoke* ___m_OnNormal_5;
  3882. GUIStyleState_t1397964415_marshaled_pinvoke* ___m_OnHover_6;
  3883. GUIStyleState_t1397964415_marshaled_pinvoke* ___m_OnActive_7;
  3884. GUIStyleState_t1397964415_marshaled_pinvoke* ___m_OnFocused_8;
  3885. RectOffset_t1369453676_marshaled_pinvoke ___m_Border_9;
  3886. RectOffset_t1369453676_marshaled_pinvoke ___m_Padding_10;
  3887. RectOffset_t1369453676_marshaled_pinvoke ___m_Margin_11;
  3888. RectOffset_t1369453676_marshaled_pinvoke ___m_Overflow_12;
  3889. Font_t1956802104 * ___m_FontInternal_13;
  3890. };
  3891. // Native definition for COM marshalling of UnityEngine.GUIStyle
  3892. struct GUIStyle_t3956901511_marshaled_com
  3893. {
  3894. intptr_t ___m_Ptr_0;
  3895. GUIStyleState_t1397964415_marshaled_com* ___m_Normal_1;
  3896. GUIStyleState_t1397964415_marshaled_com* ___m_Hover_2;
  3897. GUIStyleState_t1397964415_marshaled_com* ___m_Active_3;
  3898. GUIStyleState_t1397964415_marshaled_com* ___m_Focused_4;
  3899. GUIStyleState_t1397964415_marshaled_com* ___m_OnNormal_5;
  3900. GUIStyleState_t1397964415_marshaled_com* ___m_OnHover_6;
  3901. GUIStyleState_t1397964415_marshaled_com* ___m_OnActive_7;
  3902. GUIStyleState_t1397964415_marshaled_com* ___m_OnFocused_8;
  3903. RectOffset_t1369453676_marshaled_com* ___m_Border_9;
  3904. RectOffset_t1369453676_marshaled_com* ___m_Padding_10;
  3905. RectOffset_t1369453676_marshaled_com* ___m_Margin_11;
  3906. RectOffset_t1369453676_marshaled_com* ___m_Overflow_12;
  3907. Font_t1956802104 * ___m_FontInternal_13;
  3908. };
  3909. #endif // GUISTYLE_T3956901511_H
  3910. #ifndef GUIWORDWRAPSIZER_T2043268473_H
  3911. #define GUIWORDWRAPSIZER_T2043268473_H
  3912. #ifdef __clang__
  3913. #pragma clang diagnostic push
  3914. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3915. #pragma clang diagnostic ignored "-Wunused-variable"
  3916. #endif
  3917. // UnityEngine.GUIWordWrapSizer
  3918. struct GUIWordWrapSizer_t2043268473 : public GUILayoutEntry_t3214611570
  3919. {
  3920. public:
  3921. // UnityEngine.GUIContent UnityEngine.GUIWordWrapSizer::m_Content
  3922. GUIContent_t3050628031 * ___m_Content_10;
  3923. // System.Single UnityEngine.GUIWordWrapSizer::m_ForcedMinHeight
  3924. float ___m_ForcedMinHeight_11;
  3925. // System.Single UnityEngine.GUIWordWrapSizer::m_ForcedMaxHeight
  3926. float ___m_ForcedMaxHeight_12;
  3927. public:
  3928. inline static int32_t get_offset_of_m_Content_10() { return static_cast<int32_t>(offsetof(GUIWordWrapSizer_t2043268473, ___m_Content_10)); }
  3929. inline GUIContent_t3050628031 * get_m_Content_10() const { return ___m_Content_10; }
  3930. inline GUIContent_t3050628031 ** get_address_of_m_Content_10() { return &___m_Content_10; }
  3931. inline void set_m_Content_10(GUIContent_t3050628031 * value)
  3932. {
  3933. ___m_Content_10 = value;
  3934. Il2CppCodeGenWriteBarrier((&___m_Content_10), value);
  3935. }
  3936. inline static int32_t get_offset_of_m_ForcedMinHeight_11() { return static_cast<int32_t>(offsetof(GUIWordWrapSizer_t2043268473, ___m_ForcedMinHeight_11)); }
  3937. inline float get_m_ForcedMinHeight_11() const { return ___m_ForcedMinHeight_11; }
  3938. inline float* get_address_of_m_ForcedMinHeight_11() { return &___m_ForcedMinHeight_11; }
  3939. inline void set_m_ForcedMinHeight_11(float value)
  3940. {
  3941. ___m_ForcedMinHeight_11 = value;
  3942. }
  3943. inline static int32_t get_offset_of_m_ForcedMaxHeight_12() { return static_cast<int32_t>(offsetof(GUIWordWrapSizer_t2043268473, ___m_ForcedMaxHeight_12)); }
  3944. inline float get_m_ForcedMaxHeight_12() const { return ___m_ForcedMaxHeight_12; }
  3945. inline float* get_address_of_m_ForcedMaxHeight_12() { return &___m_ForcedMaxHeight_12; }
  3946. inline void set_m_ForcedMaxHeight_12(float value)
  3947. {
  3948. ___m_ForcedMaxHeight_12 = value;
  3949. }
  3950. };
  3951. #ifdef __clang__
  3952. #pragma clang diagnostic pop
  3953. #endif
  3954. #endif // GUIWORDWRAPSIZER_T2043268473_H
  3955. #ifndef DATETIME_T3738529785_H
  3956. #define DATETIME_T3738529785_H
  3957. #ifdef __clang__
  3958. #pragma clang diagnostic push
  3959. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3960. #pragma clang diagnostic ignored "-Wunused-variable"
  3961. #endif
  3962. // System.DateTime
  3963. struct DateTime_t3738529785
  3964. {
  3965. public:
  3966. // System.TimeSpan System.DateTime::ticks
  3967. TimeSpan_t881159249 ___ticks_10;
  3968. // System.DateTimeKind System.DateTime::kind
  3969. int32_t ___kind_11;
  3970. public:
  3971. inline static int32_t get_offset_of_ticks_10() { return static_cast<int32_t>(offsetof(DateTime_t3738529785, ___ticks_10)); }
  3972. inline TimeSpan_t881159249 get_ticks_10() const { return ___ticks_10; }
  3973. inline TimeSpan_t881159249 * get_address_of_ticks_10() { return &___ticks_10; }
  3974. inline void set_ticks_10(TimeSpan_t881159249 value)
  3975. {
  3976. ___ticks_10 = value;
  3977. }
  3978. inline static int32_t get_offset_of_kind_11() { return static_cast<int32_t>(offsetof(DateTime_t3738529785, ___kind_11)); }
  3979. inline int32_t get_kind_11() const { return ___kind_11; }
  3980. inline int32_t* get_address_of_kind_11() { return &___kind_11; }
  3981. inline void set_kind_11(int32_t value)
  3982. {
  3983. ___kind_11 = value;
  3984. }
  3985. };
  3986. struct DateTime_t3738529785_StaticFields
  3987. {
  3988. public:
  3989. // System.DateTime System.DateTime::MaxValue
  3990. DateTime_t3738529785 ___MaxValue_12;
  3991. // System.DateTime System.DateTime::MinValue
  3992. DateTime_t3738529785 ___MinValue_13;
  3993. // System.String[] System.DateTime::ParseTimeFormats
  3994. StringU5BU5D_t1281789340* ___ParseTimeFormats_14;
  3995. // System.String[] System.DateTime::ParseYearDayMonthFormats
  3996. StringU5BU5D_t1281789340* ___ParseYearDayMonthFormats_15;
  3997. // System.String[] System.DateTime::ParseYearMonthDayFormats
  3998. StringU5BU5D_t1281789340* ___ParseYearMonthDayFormats_16;
  3999. // System.String[] System.DateTime::ParseDayMonthYearFormats
  4000. StringU5BU5D_t1281789340* ___ParseDayMonthYearFormats_17;
  4001. // System.String[] System.DateTime::ParseMonthDayYearFormats
  4002. StringU5BU5D_t1281789340* ___ParseMonthDayYearFormats_18;
  4003. // System.String[] System.DateTime::MonthDayShortFormats
  4004. StringU5BU5D_t1281789340* ___MonthDayShortFormats_19;
  4005. // System.String[] System.DateTime::DayMonthShortFormats
  4006. StringU5BU5D_t1281789340* ___DayMonthShortFormats_20;
  4007. // System.Int32[] System.DateTime::daysmonth
  4008. Int32U5BU5D_t385246372* ___daysmonth_21;
  4009. // System.Int32[] System.DateTime::daysmonthleap
  4010. Int32U5BU5D_t385246372* ___daysmonthleap_22;
  4011. // System.Object System.DateTime::to_local_time_span_object
  4012. RuntimeObject * ___to_local_time_span_object_23;
  4013. // System.Int64 System.DateTime::last_now
  4014. int64_t ___last_now_24;
  4015. public:
  4016. inline static int32_t get_offset_of_MaxValue_12() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___MaxValue_12)); }
  4017. inline DateTime_t3738529785 get_MaxValue_12() const { return ___MaxValue_12; }
  4018. inline DateTime_t3738529785 * get_address_of_MaxValue_12() { return &___MaxValue_12; }
  4019. inline void set_MaxValue_12(DateTime_t3738529785 value)
  4020. {
  4021. ___MaxValue_12 = value;
  4022. }
  4023. inline static int32_t get_offset_of_MinValue_13() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___MinValue_13)); }
  4024. inline DateTime_t3738529785 get_MinValue_13() const { return ___MinValue_13; }
  4025. inline DateTime_t3738529785 * get_address_of_MinValue_13() { return &___MinValue_13; }
  4026. inline void set_MinValue_13(DateTime_t3738529785 value)
  4027. {
  4028. ___MinValue_13 = value;
  4029. }
  4030. inline static int32_t get_offset_of_ParseTimeFormats_14() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___ParseTimeFormats_14)); }
  4031. inline StringU5BU5D_t1281789340* get_ParseTimeFormats_14() const { return ___ParseTimeFormats_14; }
  4032. inline StringU5BU5D_t1281789340** get_address_of_ParseTimeFormats_14() { return &___ParseTimeFormats_14; }
  4033. inline void set_ParseTimeFormats_14(StringU5BU5D_t1281789340* value)
  4034. {
  4035. ___ParseTimeFormats_14 = value;
  4036. Il2CppCodeGenWriteBarrier((&___ParseTimeFormats_14), value);
  4037. }
  4038. inline static int32_t get_offset_of_ParseYearDayMonthFormats_15() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___ParseYearDayMonthFormats_15)); }
  4039. inline StringU5BU5D_t1281789340* get_ParseYearDayMonthFormats_15() const { return ___ParseYearDayMonthFormats_15; }
  4040. inline StringU5BU5D_t1281789340** get_address_of_ParseYearDayMonthFormats_15() { return &___ParseYearDayMonthFormats_15; }
  4041. inline void set_ParseYearDayMonthFormats_15(StringU5BU5D_t1281789340* value)
  4042. {
  4043. ___ParseYearDayMonthFormats_15 = value;
  4044. Il2CppCodeGenWriteBarrier((&___ParseYearDayMonthFormats_15), value);
  4045. }
  4046. inline static int32_t get_offset_of_ParseYearMonthDayFormats_16() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___ParseYearMonthDayFormats_16)); }
  4047. inline StringU5BU5D_t1281789340* get_ParseYearMonthDayFormats_16() const { return ___ParseYearMonthDayFormats_16; }
  4048. inline StringU5BU5D_t1281789340** get_address_of_ParseYearMonthDayFormats_16() { return &___ParseYearMonthDayFormats_16; }
  4049. inline void set_ParseYearMonthDayFormats_16(StringU5BU5D_t1281789340* value)
  4050. {
  4051. ___ParseYearMonthDayFormats_16 = value;
  4052. Il2CppCodeGenWriteBarrier((&___ParseYearMonthDayFormats_16), value);
  4053. }
  4054. inline static int32_t get_offset_of_ParseDayMonthYearFormats_17() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___ParseDayMonthYearFormats_17)); }
  4055. inline StringU5BU5D_t1281789340* get_ParseDayMonthYearFormats_17() const { return ___ParseDayMonthYearFormats_17; }
  4056. inline StringU5BU5D_t1281789340** get_address_of_ParseDayMonthYearFormats_17() { return &___ParseDayMonthYearFormats_17; }
  4057. inline void set_ParseDayMonthYearFormats_17(StringU5BU5D_t1281789340* value)
  4058. {
  4059. ___ParseDayMonthYearFormats_17 = value;
  4060. Il2CppCodeGenWriteBarrier((&___ParseDayMonthYearFormats_17), value);
  4061. }
  4062. inline static int32_t get_offset_of_ParseMonthDayYearFormats_18() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___ParseMonthDayYearFormats_18)); }
  4063. inline StringU5BU5D_t1281789340* get_ParseMonthDayYearFormats_18() const { return ___ParseMonthDayYearFormats_18; }
  4064. inline StringU5BU5D_t1281789340** get_address_of_ParseMonthDayYearFormats_18() { return &___ParseMonthDayYearFormats_18; }
  4065. inline void set_ParseMonthDayYearFormats_18(StringU5BU5D_t1281789340* value)
  4066. {
  4067. ___ParseMonthDayYearFormats_18 = value;
  4068. Il2CppCodeGenWriteBarrier((&___ParseMonthDayYearFormats_18), value);
  4069. }
  4070. inline static int32_t get_offset_of_MonthDayShortFormats_19() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___MonthDayShortFormats_19)); }
  4071. inline StringU5BU5D_t1281789340* get_MonthDayShortFormats_19() const { return ___MonthDayShortFormats_19; }
  4072. inline StringU5BU5D_t1281789340** get_address_of_MonthDayShortFormats_19() { return &___MonthDayShortFormats_19; }
  4073. inline void set_MonthDayShortFormats_19(StringU5BU5D_t1281789340* value)
  4074. {
  4075. ___MonthDayShortFormats_19 = value;
  4076. Il2CppCodeGenWriteBarrier((&___MonthDayShortFormats_19), value);
  4077. }
  4078. inline static int32_t get_offset_of_DayMonthShortFormats_20() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___DayMonthShortFormats_20)); }
  4079. inline StringU5BU5D_t1281789340* get_DayMonthShortFormats_20() const { return ___DayMonthShortFormats_20; }
  4080. inline StringU5BU5D_t1281789340** get_address_of_DayMonthShortFormats_20() { return &___DayMonthShortFormats_20; }
  4081. inline void set_DayMonthShortFormats_20(StringU5BU5D_t1281789340* value)
  4082. {
  4083. ___DayMonthShortFormats_20 = value;
  4084. Il2CppCodeGenWriteBarrier((&___DayMonthShortFormats_20), value);
  4085. }
  4086. inline static int32_t get_offset_of_daysmonth_21() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___daysmonth_21)); }
  4087. inline Int32U5BU5D_t385246372* get_daysmonth_21() const { return ___daysmonth_21; }
  4088. inline Int32U5BU5D_t385246372** get_address_of_daysmonth_21() { return &___daysmonth_21; }
  4089. inline void set_daysmonth_21(Int32U5BU5D_t385246372* value)
  4090. {
  4091. ___daysmonth_21 = value;
  4092. Il2CppCodeGenWriteBarrier((&___daysmonth_21), value);
  4093. }
  4094. inline static int32_t get_offset_of_daysmonthleap_22() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___daysmonthleap_22)); }
  4095. inline Int32U5BU5D_t385246372* get_daysmonthleap_22() const { return ___daysmonthleap_22; }
  4096. inline Int32U5BU5D_t385246372** get_address_of_daysmonthleap_22() { return &___daysmonthleap_22; }
  4097. inline void set_daysmonthleap_22(Int32U5BU5D_t385246372* value)
  4098. {
  4099. ___daysmonthleap_22 = value;
  4100. Il2CppCodeGenWriteBarrier((&___daysmonthleap_22), value);
  4101. }
  4102. inline static int32_t get_offset_of_to_local_time_span_object_23() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___to_local_time_span_object_23)); }
  4103. inline RuntimeObject * get_to_local_time_span_object_23() const { return ___to_local_time_span_object_23; }
  4104. inline RuntimeObject ** get_address_of_to_local_time_span_object_23() { return &___to_local_time_span_object_23; }
  4105. inline void set_to_local_time_span_object_23(RuntimeObject * value)
  4106. {
  4107. ___to_local_time_span_object_23 = value;
  4108. Il2CppCodeGenWriteBarrier((&___to_local_time_span_object_23), value);
  4109. }
  4110. inline static int32_t get_offset_of_last_now_24() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___last_now_24)); }
  4111. inline int64_t get_last_now_24() const { return ___last_now_24; }
  4112. inline int64_t* get_address_of_last_now_24() { return &___last_now_24; }
  4113. inline void set_last_now_24(int64_t value)
  4114. {
  4115. ___last_now_24 = value;
  4116. }
  4117. };
  4118. #ifdef __clang__
  4119. #pragma clang diagnostic pop
  4120. #endif
  4121. #endif // DATETIME_T3738529785_H
  4122. #ifndef FUNC_2_T3450341358_H
  4123. #define FUNC_2_T3450341358_H
  4124. #ifdef __clang__
  4125. #pragma clang diagnostic push
  4126. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4127. #pragma clang diagnostic ignored "-Wunused-variable"
  4128. #endif
  4129. // System.Func`2<System.Exception,System.Boolean>
  4130. struct Func_2_t3450341358 : public MulticastDelegate_t
  4131. {
  4132. public:
  4133. public:
  4134. };
  4135. #ifdef __clang__
  4136. #pragma clang diagnostic pop
  4137. #endif
  4138. #endif // FUNC_2_T3450341358_H
  4139. #ifndef WINDOWFUNCTION_T3146511083_H
  4140. #define WINDOWFUNCTION_T3146511083_H
  4141. #ifdef __clang__
  4142. #pragma clang diagnostic push
  4143. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4144. #pragma clang diagnostic ignored "-Wunused-variable"
  4145. #endif
  4146. // UnityEngine.GUI/WindowFunction
  4147. struct WindowFunction_t3146511083 : public MulticastDelegate_t
  4148. {
  4149. public:
  4150. public:
  4151. };
  4152. #ifdef __clang__
  4153. #pragma clang diagnostic pop
  4154. #endif
  4155. #endif // WINDOWFUNCTION_T3146511083_H
  4156. #ifndef GUISCROLLGROUP_T1523329021_H
  4157. #define GUISCROLLGROUP_T1523329021_H
  4158. #ifdef __clang__
  4159. #pragma clang diagnostic push
  4160. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4161. #pragma clang diagnostic ignored "-Wunused-variable"
  4162. #endif
  4163. // UnityEngine.GUIScrollGroup
  4164. struct GUIScrollGroup_t1523329021 : public GUILayoutGroup_t2157789695
  4165. {
  4166. public:
  4167. // System.Single UnityEngine.GUIScrollGroup::calcMinWidth
  4168. float ___calcMinWidth_27;
  4169. // System.Single UnityEngine.GUIScrollGroup::calcMaxWidth
  4170. float ___calcMaxWidth_28;
  4171. // System.Single UnityEngine.GUIScrollGroup::calcMinHeight
  4172. float ___calcMinHeight_29;
  4173. // System.Single UnityEngine.GUIScrollGroup::calcMaxHeight
  4174. float ___calcMaxHeight_30;
  4175. // System.Single UnityEngine.GUIScrollGroup::clientWidth
  4176. float ___clientWidth_31;
  4177. // System.Single UnityEngine.GUIScrollGroup::clientHeight
  4178. float ___clientHeight_32;
  4179. // System.Boolean UnityEngine.GUIScrollGroup::allowHorizontalScroll
  4180. bool ___allowHorizontalScroll_33;
  4181. // System.Boolean UnityEngine.GUIScrollGroup::allowVerticalScroll
  4182. bool ___allowVerticalScroll_34;
  4183. // System.Boolean UnityEngine.GUIScrollGroup::needsHorizontalScrollbar
  4184. bool ___needsHorizontalScrollbar_35;
  4185. // System.Boolean UnityEngine.GUIScrollGroup::needsVerticalScrollbar
  4186. bool ___needsVerticalScrollbar_36;
  4187. // UnityEngine.GUIStyle UnityEngine.GUIScrollGroup::horizontalScrollbar
  4188. GUIStyle_t3956901511 * ___horizontalScrollbar_37;
  4189. // UnityEngine.GUIStyle UnityEngine.GUIScrollGroup::verticalScrollbar
  4190. GUIStyle_t3956901511 * ___verticalScrollbar_38;
  4191. public:
  4192. inline static int32_t get_offset_of_calcMinWidth_27() { return static_cast<int32_t>(offsetof(GUIScrollGroup_t1523329021, ___calcMinWidth_27)); }
  4193. inline float get_calcMinWidth_27() const { return ___calcMinWidth_27; }
  4194. inline float* get_address_of_calcMinWidth_27() { return &___calcMinWidth_27; }
  4195. inline void set_calcMinWidth_27(float value)
  4196. {
  4197. ___calcMinWidth_27 = value;
  4198. }
  4199. inline static int32_t get_offset_of_calcMaxWidth_28() { return static_cast<int32_t>(offsetof(GUIScrollGroup_t1523329021, ___calcMaxWidth_28)); }
  4200. inline float get_calcMaxWidth_28() const { return ___calcMaxWidth_28; }
  4201. inline float* get_address_of_calcMaxWidth_28() { return &___calcMaxWidth_28; }
  4202. inline void set_calcMaxWidth_28(float value)
  4203. {
  4204. ___calcMaxWidth_28 = value;
  4205. }
  4206. inline static int32_t get_offset_of_calcMinHeight_29() { return static_cast<int32_t>(offsetof(GUIScrollGroup_t1523329021, ___calcMinHeight_29)); }
  4207. inline float get_calcMinHeight_29() const { return ___calcMinHeight_29; }
  4208. inline float* get_address_of_calcMinHeight_29() { return &___calcMinHeight_29; }
  4209. inline void set_calcMinHeight_29(float value)
  4210. {
  4211. ___calcMinHeight_29 = value;
  4212. }
  4213. inline static int32_t get_offset_of_calcMaxHeight_30() { return static_cast<int32_t>(offsetof(GUIScrollGroup_t1523329021, ___calcMaxHeight_30)); }
  4214. inline float get_calcMaxHeight_30() const { return ___calcMaxHeight_30; }
  4215. inline float* get_address_of_calcMaxHeight_30() { return &___calcMaxHeight_30; }
  4216. inline void set_calcMaxHeight_30(float value)
  4217. {
  4218. ___calcMaxHeight_30 = value;
  4219. }
  4220. inline static int32_t get_offset_of_clientWidth_31() { return static_cast<int32_t>(offsetof(GUIScrollGroup_t1523329021, ___clientWidth_31)); }
  4221. inline float get_clientWidth_31() const { return ___clientWidth_31; }
  4222. inline float* get_address_of_clientWidth_31() { return &___clientWidth_31; }
  4223. inline void set_clientWidth_31(float value)
  4224. {
  4225. ___clientWidth_31 = value;
  4226. }
  4227. inline static int32_t get_offset_of_clientHeight_32() { return static_cast<int32_t>(offsetof(GUIScrollGroup_t1523329021, ___clientHeight_32)); }
  4228. inline float get_clientHeight_32() const { return ___clientHeight_32; }
  4229. inline float* get_address_of_clientHeight_32() { return &___clientHeight_32; }
  4230. inline void set_clientHeight_32(float value)
  4231. {
  4232. ___clientHeight_32 = value;
  4233. }
  4234. inline static int32_t get_offset_of_allowHorizontalScroll_33() { return static_cast<int32_t>(offsetof(GUIScrollGroup_t1523329021, ___allowHorizontalScroll_33)); }
  4235. inline bool get_allowHorizontalScroll_33() const { return ___allowHorizontalScroll_33; }
  4236. inline bool* get_address_of_allowHorizontalScroll_33() { return &___allowHorizontalScroll_33; }
  4237. inline void set_allowHorizontalScroll_33(bool value)
  4238. {
  4239. ___allowHorizontalScroll_33 = value;
  4240. }
  4241. inline static int32_t get_offset_of_allowVerticalScroll_34() { return static_cast<int32_t>(offsetof(GUIScrollGroup_t1523329021, ___allowVerticalScroll_34)); }
  4242. inline bool get_allowVerticalScroll_34() const { return ___allowVerticalScroll_34; }
  4243. inline bool* get_address_of_allowVerticalScroll_34() { return &___allowVerticalScroll_34; }
  4244. inline void set_allowVerticalScroll_34(bool value)
  4245. {
  4246. ___allowVerticalScroll_34 = value;
  4247. }
  4248. inline static int32_t get_offset_of_needsHorizontalScrollbar_35() { return static_cast<int32_t>(offsetof(GUIScrollGroup_t1523329021, ___needsHorizontalScrollbar_35)); }
  4249. inline bool get_needsHorizontalScrollbar_35() const { return ___needsHorizontalScrollbar_35; }
  4250. inline bool* get_address_of_needsHorizontalScrollbar_35() { return &___needsHorizontalScrollbar_35; }
  4251. inline void set_needsHorizontalScrollbar_35(bool value)
  4252. {
  4253. ___needsHorizontalScrollbar_35 = value;
  4254. }
  4255. inline static int32_t get_offset_of_needsVerticalScrollbar_36() { return static_cast<int32_t>(offsetof(GUIScrollGroup_t1523329021, ___needsVerticalScrollbar_36)); }
  4256. inline bool get_needsVerticalScrollbar_36() const { return ___needsVerticalScrollbar_36; }
  4257. inline bool* get_address_of_needsVerticalScrollbar_36() { return &___needsVerticalScrollbar_36; }
  4258. inline void set_needsVerticalScrollbar_36(bool value)
  4259. {
  4260. ___needsVerticalScrollbar_36 = value;
  4261. }
  4262. inline static int32_t get_offset_of_horizontalScrollbar_37() { return static_cast<int32_t>(offsetof(GUIScrollGroup_t1523329021, ___horizontalScrollbar_37)); }
  4263. inline GUIStyle_t3956901511 * get_horizontalScrollbar_37() const { return ___horizontalScrollbar_37; }
  4264. inline GUIStyle_t3956901511 ** get_address_of_horizontalScrollbar_37() { return &___horizontalScrollbar_37; }
  4265. inline void set_horizontalScrollbar_37(GUIStyle_t3956901511 * value)
  4266. {
  4267. ___horizontalScrollbar_37 = value;
  4268. Il2CppCodeGenWriteBarrier((&___horizontalScrollbar_37), value);
  4269. }
  4270. inline static int32_t get_offset_of_verticalScrollbar_38() { return static_cast<int32_t>(offsetof(GUIScrollGroup_t1523329021, ___verticalScrollbar_38)); }
  4271. inline GUIStyle_t3956901511 * get_verticalScrollbar_38() const { return ___verticalScrollbar_38; }
  4272. inline GUIStyle_t3956901511 ** get_address_of_verticalScrollbar_38() { return &___verticalScrollbar_38; }
  4273. inline void set_verticalScrollbar_38(GUIStyle_t3956901511 * value)
  4274. {
  4275. ___verticalScrollbar_38 = value;
  4276. Il2CppCodeGenWriteBarrier((&___verticalScrollbar_38), value);
  4277. }
  4278. };
  4279. #ifdef __clang__
  4280. #pragma clang diagnostic pop
  4281. #endif
  4282. #endif // GUISCROLLGROUP_T1523329021_H
  4283. #ifndef SKINCHANGEDDELEGATE_T1143955295_H
  4284. #define SKINCHANGEDDELEGATE_T1143955295_H
  4285. #ifdef __clang__
  4286. #pragma clang diagnostic push
  4287. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4288. #pragma clang diagnostic ignored "-Wunused-variable"
  4289. #endif
  4290. // UnityEngine.GUISkin/SkinChangedDelegate
  4291. struct SkinChangedDelegate_t1143955295 : public MulticastDelegate_t
  4292. {
  4293. public:
  4294. public:
  4295. };
  4296. #ifdef __clang__
  4297. #pragma clang diagnostic pop
  4298. #endif
  4299. #endif // SKINCHANGEDDELEGATE_T1143955295_H
  4300. #ifndef ASYNCCALLBACK_T3962456242_H
  4301. #define ASYNCCALLBACK_T3962456242_H
  4302. #ifdef __clang__
  4303. #pragma clang diagnostic push
  4304. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4305. #pragma clang diagnostic ignored "-Wunused-variable"
  4306. #endif
  4307. // System.AsyncCallback
  4308. struct AsyncCallback_t3962456242 : public MulticastDelegate_t
  4309. {
  4310. public:
  4311. public:
  4312. };
  4313. #ifdef __clang__
  4314. #pragma clang diagnostic pop
  4315. #endif
  4316. #endif // ASYNCCALLBACK_T3962456242_H
  4317. #ifndef ACTION_T1264377477_H
  4318. #define ACTION_T1264377477_H
  4319. #ifdef __clang__
  4320. #pragma clang diagnostic push
  4321. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4322. #pragma clang diagnostic ignored "-Wunused-variable"
  4323. #endif
  4324. // System.Action
  4325. struct Action_t1264377477 : public MulticastDelegate_t
  4326. {
  4327. public:
  4328. public:
  4329. };
  4330. #ifdef __clang__
  4331. #pragma clang diagnostic pop
  4332. #endif
  4333. #endif // ACTION_T1264377477_H
  4334. #ifndef FUNC_3_T4119323734_H
  4335. #define FUNC_3_T4119323734_H
  4336. #ifdef __clang__
  4337. #pragma clang diagnostic push
  4338. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4339. #pragma clang diagnostic ignored "-Wunused-variable"
  4340. #endif
  4341. // System.Func`3<System.Int32,System.IntPtr,System.Boolean>
  4342. struct Func_3_t4119323734 : public MulticastDelegate_t
  4343. {
  4344. public:
  4345. public:
  4346. };
  4347. #ifdef __clang__
  4348. #pragma clang diagnostic pop
  4349. #endif
  4350. #endif // FUNC_3_T4119323734_H
  4351. #ifndef GUI_T1624858472_H
  4352. #define GUI_T1624858472_H
  4353. #ifdef __clang__
  4354. #pragma clang diagnostic push
  4355. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4356. #pragma clang diagnostic ignored "-Wunused-variable"
  4357. #endif
  4358. // UnityEngine.GUI
  4359. struct GUI_t1624858472 : public RuntimeObject
  4360. {
  4361. public:
  4362. public:
  4363. };
  4364. struct GUI_t1624858472_StaticFields
  4365. {
  4366. public:
  4367. // System.Single UnityEngine.GUI::s_ScrollStepSize
  4368. float ___s_ScrollStepSize_0;
  4369. // System.Int32 UnityEngine.GUI::s_HotTextField
  4370. int32_t ___s_HotTextField_1;
  4371. // System.Int32 UnityEngine.GUI::s_BoxHash
  4372. int32_t ___s_BoxHash_2;
  4373. // System.Int32 UnityEngine.GUI::s_RepeatButtonHash
  4374. int32_t ___s_RepeatButtonHash_3;
  4375. // System.Int32 UnityEngine.GUI::s_ToggleHash
  4376. int32_t ___s_ToggleHash_4;
  4377. // System.Int32 UnityEngine.GUI::s_SliderHash
  4378. int32_t ___s_SliderHash_5;
  4379. // System.Int32 UnityEngine.GUI::s_BeginGroupHash
  4380. int32_t ___s_BeginGroupHash_6;
  4381. // System.Int32 UnityEngine.GUI::s_ScrollviewHash
  4382. int32_t ___s_ScrollviewHash_7;
  4383. // System.DateTime UnityEngine.GUI::<nextScrollStepTime>k__BackingField
  4384. DateTime_t3738529785 ___U3CnextScrollStepTimeU3Ek__BackingField_8;
  4385. // UnityEngine.GUISkin UnityEngine.GUI::s_Skin
  4386. GUISkin_t1244372282 * ___s_Skin_9;
  4387. // UnityEngineInternal.GenericStack UnityEngine.GUI::s_ScrollViewStates
  4388. GenericStack_t1310059385 * ___s_ScrollViewStates_10;
  4389. public:
  4390. inline static int32_t get_offset_of_s_ScrollStepSize_0() { return static_cast<int32_t>(offsetof(GUI_t1624858472_StaticFields, ___s_ScrollStepSize_0)); }
  4391. inline float get_s_ScrollStepSize_0() const { return ___s_ScrollStepSize_0; }
  4392. inline float* get_address_of_s_ScrollStepSize_0() { return &___s_ScrollStepSize_0; }
  4393. inline void set_s_ScrollStepSize_0(float value)
  4394. {
  4395. ___s_ScrollStepSize_0 = value;
  4396. }
  4397. inline static int32_t get_offset_of_s_HotTextField_1() { return static_cast<int32_t>(offsetof(GUI_t1624858472_StaticFields, ___s_HotTextField_1)); }
  4398. inline int32_t get_s_HotTextField_1() const { return ___s_HotTextField_1; }
  4399. inline int32_t* get_address_of_s_HotTextField_1() { return &___s_HotTextField_1; }
  4400. inline void set_s_HotTextField_1(int32_t value)
  4401. {
  4402. ___s_HotTextField_1 = value;
  4403. }
  4404. inline static int32_t get_offset_of_s_BoxHash_2() { return static_cast<int32_t>(offsetof(GUI_t1624858472_StaticFields, ___s_BoxHash_2)); }
  4405. inline int32_t get_s_BoxHash_2() const { return ___s_BoxHash_2; }
  4406. inline int32_t* get_address_of_s_BoxHash_2() { return &___s_BoxHash_2; }
  4407. inline void set_s_BoxHash_2(int32_t value)
  4408. {
  4409. ___s_BoxHash_2 = value;
  4410. }
  4411. inline static int32_t get_offset_of_s_RepeatButtonHash_3() { return static_cast<int32_t>(offsetof(GUI_t1624858472_StaticFields, ___s_RepeatButtonHash_3)); }
  4412. inline int32_t get_s_RepeatButtonHash_3() const { return ___s_RepeatButtonHash_3; }
  4413. inline int32_t* get_address_of_s_RepeatButtonHash_3() { return &___s_RepeatButtonHash_3; }
  4414. inline void set_s_RepeatButtonHash_3(int32_t value)
  4415. {
  4416. ___s_RepeatButtonHash_3 = value;
  4417. }
  4418. inline static int32_t get_offset_of_s_ToggleHash_4() { return static_cast<int32_t>(offsetof(GUI_t1624858472_StaticFields, ___s_ToggleHash_4)); }
  4419. inline int32_t get_s_ToggleHash_4() const { return ___s_ToggleHash_4; }
  4420. inline int32_t* get_address_of_s_ToggleHash_4() { return &___s_ToggleHash_4; }
  4421. inline void set_s_ToggleHash_4(int32_t value)
  4422. {
  4423. ___s_ToggleHash_4 = value;
  4424. }
  4425. inline static int32_t get_offset_of_s_SliderHash_5() { return static_cast<int32_t>(offsetof(GUI_t1624858472_StaticFields, ___s_SliderHash_5)); }
  4426. inline int32_t get_s_SliderHash_5() const { return ___s_SliderHash_5; }
  4427. inline int32_t* get_address_of_s_SliderHash_5() { return &___s_SliderHash_5; }
  4428. inline void set_s_SliderHash_5(int32_t value)
  4429. {
  4430. ___s_SliderHash_5 = value;
  4431. }
  4432. inline static int32_t get_offset_of_s_BeginGroupHash_6() { return static_cast<int32_t>(offsetof(GUI_t1624858472_StaticFields, ___s_BeginGroupHash_6)); }
  4433. inline int32_t get_s_BeginGroupHash_6() const { return ___s_BeginGroupHash_6; }
  4434. inline int32_t* get_address_of_s_BeginGroupHash_6() { return &___s_BeginGroupHash_6; }
  4435. inline void set_s_BeginGroupHash_6(int32_t value)
  4436. {
  4437. ___s_BeginGroupHash_6 = value;
  4438. }
  4439. inline static int32_t get_offset_of_s_ScrollviewHash_7() { return static_cast<int32_t>(offsetof(GUI_t1624858472_StaticFields, ___s_ScrollviewHash_7)); }
  4440. inline int32_t get_s_ScrollviewHash_7() const { return ___s_ScrollviewHash_7; }
  4441. inline int32_t* get_address_of_s_ScrollviewHash_7() { return &___s_ScrollviewHash_7; }
  4442. inline void set_s_ScrollviewHash_7(int32_t value)
  4443. {
  4444. ___s_ScrollviewHash_7 = value;
  4445. }
  4446. inline static int32_t get_offset_of_U3CnextScrollStepTimeU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(GUI_t1624858472_StaticFields, ___U3CnextScrollStepTimeU3Ek__BackingField_8)); }
  4447. inline DateTime_t3738529785 get_U3CnextScrollStepTimeU3Ek__BackingField_8() const { return ___U3CnextScrollStepTimeU3Ek__BackingField_8; }
  4448. inline DateTime_t3738529785 * get_address_of_U3CnextScrollStepTimeU3Ek__BackingField_8() { return &___U3CnextScrollStepTimeU3Ek__BackingField_8; }
  4449. inline void set_U3CnextScrollStepTimeU3Ek__BackingField_8(DateTime_t3738529785 value)
  4450. {
  4451. ___U3CnextScrollStepTimeU3Ek__BackingField_8 = value;
  4452. }
  4453. inline static int32_t get_offset_of_s_Skin_9() { return static_cast<int32_t>(offsetof(GUI_t1624858472_StaticFields, ___s_Skin_9)); }
  4454. inline GUISkin_t1244372282 * get_s_Skin_9() const { return ___s_Skin_9; }
  4455. inline GUISkin_t1244372282 ** get_address_of_s_Skin_9() { return &___s_Skin_9; }
  4456. inline void set_s_Skin_9(GUISkin_t1244372282 * value)
  4457. {
  4458. ___s_Skin_9 = value;
  4459. Il2CppCodeGenWriteBarrier((&___s_Skin_9), value);
  4460. }
  4461. inline static int32_t get_offset_of_s_ScrollViewStates_10() { return static_cast<int32_t>(offsetof(GUI_t1624858472_StaticFields, ___s_ScrollViewStates_10)); }
  4462. inline GenericStack_t1310059385 * get_s_ScrollViewStates_10() const { return ___s_ScrollViewStates_10; }
  4463. inline GenericStack_t1310059385 ** get_address_of_s_ScrollViewStates_10() { return &___s_ScrollViewStates_10; }
  4464. inline void set_s_ScrollViewStates_10(GenericStack_t1310059385 * value)
  4465. {
  4466. ___s_ScrollViewStates_10 = value;
  4467. Il2CppCodeGenWriteBarrier((&___s_ScrollViewStates_10), value);
  4468. }
  4469. };
  4470. #ifdef __clang__
  4471. #pragma clang diagnostic pop
  4472. #endif
  4473. #endif // GUI_T1624858472_H
  4474. #ifndef TEXTURE2D_T3840446185_H
  4475. #define TEXTURE2D_T3840446185_H
  4476. #ifdef __clang__
  4477. #pragma clang diagnostic push
  4478. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4479. #pragma clang diagnostic ignored "-Wunused-variable"
  4480. #endif
  4481. // UnityEngine.Texture2D
  4482. struct Texture2D_t3840446185 : public Texture_t3661962703
  4483. {
  4484. public:
  4485. public:
  4486. };
  4487. #ifdef __clang__
  4488. #pragma clang diagnostic pop
  4489. #endif
  4490. #endif // TEXTURE2D_T3840446185_H
  4491. #ifndef GUISKIN_T1244372282_H
  4492. #define GUISKIN_T1244372282_H
  4493. #ifdef __clang__
  4494. #pragma clang diagnostic push
  4495. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4496. #pragma clang diagnostic ignored "-Wunused-variable"
  4497. #endif
  4498. // UnityEngine.GUISkin
  4499. struct GUISkin_t1244372282 : public ScriptableObject_t2528358522
  4500. {
  4501. public:
  4502. // UnityEngine.Font UnityEngine.GUISkin::m_Font
  4503. Font_t1956802104 * ___m_Font_2;
  4504. // UnityEngine.GUIStyle UnityEngine.GUISkin::m_box
  4505. GUIStyle_t3956901511 * ___m_box_3;
  4506. // UnityEngine.GUIStyle UnityEngine.GUISkin::m_button
  4507. GUIStyle_t3956901511 * ___m_button_4;
  4508. // UnityEngine.GUIStyle UnityEngine.GUISkin::m_toggle
  4509. GUIStyle_t3956901511 * ___m_toggle_5;
  4510. // UnityEngine.GUIStyle UnityEngine.GUISkin::m_label
  4511. GUIStyle_t3956901511 * ___m_label_6;
  4512. // UnityEngine.GUIStyle UnityEngine.GUISkin::m_textField
  4513. GUIStyle_t3956901511 * ___m_textField_7;
  4514. // UnityEngine.GUIStyle UnityEngine.GUISkin::m_textArea
  4515. GUIStyle_t3956901511 * ___m_textArea_8;
  4516. // UnityEngine.GUIStyle UnityEngine.GUISkin::m_window
  4517. GUIStyle_t3956901511 * ___m_window_9;
  4518. // UnityEngine.GUIStyle UnityEngine.GUISkin::m_horizontalSlider
  4519. GUIStyle_t3956901511 * ___m_horizontalSlider_10;
  4520. // UnityEngine.GUIStyle UnityEngine.GUISkin::m_horizontalSliderThumb
  4521. GUIStyle_t3956901511 * ___m_horizontalSliderThumb_11;
  4522. // UnityEngine.GUIStyle UnityEngine.GUISkin::m_verticalSlider
  4523. GUIStyle_t3956901511 * ___m_verticalSlider_12;
  4524. // UnityEngine.GUIStyle UnityEngine.GUISkin::m_verticalSliderThumb
  4525. GUIStyle_t3956901511 * ___m_verticalSliderThumb_13;
  4526. // UnityEngine.GUIStyle UnityEngine.GUISkin::m_horizontalScrollbar
  4527. GUIStyle_t3956901511 * ___m_horizontalScrollbar_14;
  4528. // UnityEngine.GUIStyle UnityEngine.GUISkin::m_horizontalScrollbarThumb
  4529. GUIStyle_t3956901511 * ___m_horizontalScrollbarThumb_15;
  4530. // UnityEngine.GUIStyle UnityEngine.GUISkin::m_horizontalScrollbarLeftButton
  4531. GUIStyle_t3956901511 * ___m_horizontalScrollbarLeftButton_16;
  4532. // UnityEngine.GUIStyle UnityEngine.GUISkin::m_horizontalScrollbarRightButton
  4533. GUIStyle_t3956901511 * ___m_horizontalScrollbarRightButton_17;
  4534. // UnityEngine.GUIStyle UnityEngine.GUISkin::m_verticalScrollbar
  4535. GUIStyle_t3956901511 * ___m_verticalScrollbar_18;
  4536. // UnityEngine.GUIStyle UnityEngine.GUISkin::m_verticalScrollbarThumb
  4537. GUIStyle_t3956901511 * ___m_verticalScrollbarThumb_19;
  4538. // UnityEngine.GUIStyle UnityEngine.GUISkin::m_verticalScrollbarUpButton
  4539. GUIStyle_t3956901511 * ___m_verticalScrollbarUpButton_20;
  4540. // UnityEngine.GUIStyle UnityEngine.GUISkin::m_verticalScrollbarDownButton
  4541. GUIStyle_t3956901511 * ___m_verticalScrollbarDownButton_21;
  4542. // UnityEngine.GUIStyle UnityEngine.GUISkin::m_ScrollView
  4543. GUIStyle_t3956901511 * ___m_ScrollView_22;
  4544. // UnityEngine.GUIStyle[] UnityEngine.GUISkin::m_CustomStyles
  4545. GUIStyleU5BU5D_t2383250302* ___m_CustomStyles_23;
  4546. // UnityEngine.GUISettings UnityEngine.GUISkin::m_Settings
  4547. GUISettings_t1774757634 * ___m_Settings_24;
  4548. // System.Collections.Generic.Dictionary`2<System.String,UnityEngine.GUIStyle> UnityEngine.GUISkin::m_Styles
  4549. Dictionary_2_t3742157810 * ___m_Styles_25;
  4550. public:
  4551. inline static int32_t get_offset_of_m_Font_2() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282, ___m_Font_2)); }
  4552. inline Font_t1956802104 * get_m_Font_2() const { return ___m_Font_2; }
  4553. inline Font_t1956802104 ** get_address_of_m_Font_2() { return &___m_Font_2; }
  4554. inline void set_m_Font_2(Font_t1956802104 * value)
  4555. {
  4556. ___m_Font_2 = value;
  4557. Il2CppCodeGenWriteBarrier((&___m_Font_2), value);
  4558. }
  4559. inline static int32_t get_offset_of_m_box_3() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282, ___m_box_3)); }
  4560. inline GUIStyle_t3956901511 * get_m_box_3() const { return ___m_box_3; }
  4561. inline GUIStyle_t3956901511 ** get_address_of_m_box_3() { return &___m_box_3; }
  4562. inline void set_m_box_3(GUIStyle_t3956901511 * value)
  4563. {
  4564. ___m_box_3 = value;
  4565. Il2CppCodeGenWriteBarrier((&___m_box_3), value);
  4566. }
  4567. inline static int32_t get_offset_of_m_button_4() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282, ___m_button_4)); }
  4568. inline GUIStyle_t3956901511 * get_m_button_4() const { return ___m_button_4; }
  4569. inline GUIStyle_t3956901511 ** get_address_of_m_button_4() { return &___m_button_4; }
  4570. inline void set_m_button_4(GUIStyle_t3956901511 * value)
  4571. {
  4572. ___m_button_4 = value;
  4573. Il2CppCodeGenWriteBarrier((&___m_button_4), value);
  4574. }
  4575. inline static int32_t get_offset_of_m_toggle_5() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282, ___m_toggle_5)); }
  4576. inline GUIStyle_t3956901511 * get_m_toggle_5() const { return ___m_toggle_5; }
  4577. inline GUIStyle_t3956901511 ** get_address_of_m_toggle_5() { return &___m_toggle_5; }
  4578. inline void set_m_toggle_5(GUIStyle_t3956901511 * value)
  4579. {
  4580. ___m_toggle_5 = value;
  4581. Il2CppCodeGenWriteBarrier((&___m_toggle_5), value);
  4582. }
  4583. inline static int32_t get_offset_of_m_label_6() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282, ___m_label_6)); }
  4584. inline GUIStyle_t3956901511 * get_m_label_6() const { return ___m_label_6; }
  4585. inline GUIStyle_t3956901511 ** get_address_of_m_label_6() { return &___m_label_6; }
  4586. inline void set_m_label_6(GUIStyle_t3956901511 * value)
  4587. {
  4588. ___m_label_6 = value;
  4589. Il2CppCodeGenWriteBarrier((&___m_label_6), value);
  4590. }
  4591. inline static int32_t get_offset_of_m_textField_7() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282, ___m_textField_7)); }
  4592. inline GUIStyle_t3956901511 * get_m_textField_7() const { return ___m_textField_7; }
  4593. inline GUIStyle_t3956901511 ** get_address_of_m_textField_7() { return &___m_textField_7; }
  4594. inline void set_m_textField_7(GUIStyle_t3956901511 * value)
  4595. {
  4596. ___m_textField_7 = value;
  4597. Il2CppCodeGenWriteBarrier((&___m_textField_7), value);
  4598. }
  4599. inline static int32_t get_offset_of_m_textArea_8() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282, ___m_textArea_8)); }
  4600. inline GUIStyle_t3956901511 * get_m_textArea_8() const { return ___m_textArea_8; }
  4601. inline GUIStyle_t3956901511 ** get_address_of_m_textArea_8() { return &___m_textArea_8; }
  4602. inline void set_m_textArea_8(GUIStyle_t3956901511 * value)
  4603. {
  4604. ___m_textArea_8 = value;
  4605. Il2CppCodeGenWriteBarrier((&___m_textArea_8), value);
  4606. }
  4607. inline static int32_t get_offset_of_m_window_9() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282, ___m_window_9)); }
  4608. inline GUIStyle_t3956901511 * get_m_window_9() const { return ___m_window_9; }
  4609. inline GUIStyle_t3956901511 ** get_address_of_m_window_9() { return &___m_window_9; }
  4610. inline void set_m_window_9(GUIStyle_t3956901511 * value)
  4611. {
  4612. ___m_window_9 = value;
  4613. Il2CppCodeGenWriteBarrier((&___m_window_9), value);
  4614. }
  4615. inline static int32_t get_offset_of_m_horizontalSlider_10() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282, ___m_horizontalSlider_10)); }
  4616. inline GUIStyle_t3956901511 * get_m_horizontalSlider_10() const { return ___m_horizontalSlider_10; }
  4617. inline GUIStyle_t3956901511 ** get_address_of_m_horizontalSlider_10() { return &___m_horizontalSlider_10; }
  4618. inline void set_m_horizontalSlider_10(GUIStyle_t3956901511 * value)
  4619. {
  4620. ___m_horizontalSlider_10 = value;
  4621. Il2CppCodeGenWriteBarrier((&___m_horizontalSlider_10), value);
  4622. }
  4623. inline static int32_t get_offset_of_m_horizontalSliderThumb_11() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282, ___m_horizontalSliderThumb_11)); }
  4624. inline GUIStyle_t3956901511 * get_m_horizontalSliderThumb_11() const { return ___m_horizontalSliderThumb_11; }
  4625. inline GUIStyle_t3956901511 ** get_address_of_m_horizontalSliderThumb_11() { return &___m_horizontalSliderThumb_11; }
  4626. inline void set_m_horizontalSliderThumb_11(GUIStyle_t3956901511 * value)
  4627. {
  4628. ___m_horizontalSliderThumb_11 = value;
  4629. Il2CppCodeGenWriteBarrier((&___m_horizontalSliderThumb_11), value);
  4630. }
  4631. inline static int32_t get_offset_of_m_verticalSlider_12() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282, ___m_verticalSlider_12)); }
  4632. inline GUIStyle_t3956901511 * get_m_verticalSlider_12() const { return ___m_verticalSlider_12; }
  4633. inline GUIStyle_t3956901511 ** get_address_of_m_verticalSlider_12() { return &___m_verticalSlider_12; }
  4634. inline void set_m_verticalSlider_12(GUIStyle_t3956901511 * value)
  4635. {
  4636. ___m_verticalSlider_12 = value;
  4637. Il2CppCodeGenWriteBarrier((&___m_verticalSlider_12), value);
  4638. }
  4639. inline static int32_t get_offset_of_m_verticalSliderThumb_13() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282, ___m_verticalSliderThumb_13)); }
  4640. inline GUIStyle_t3956901511 * get_m_verticalSliderThumb_13() const { return ___m_verticalSliderThumb_13; }
  4641. inline GUIStyle_t3956901511 ** get_address_of_m_verticalSliderThumb_13() { return &___m_verticalSliderThumb_13; }
  4642. inline void set_m_verticalSliderThumb_13(GUIStyle_t3956901511 * value)
  4643. {
  4644. ___m_verticalSliderThumb_13 = value;
  4645. Il2CppCodeGenWriteBarrier((&___m_verticalSliderThumb_13), value);
  4646. }
  4647. inline static int32_t get_offset_of_m_horizontalScrollbar_14() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282, ___m_horizontalScrollbar_14)); }
  4648. inline GUIStyle_t3956901511 * get_m_horizontalScrollbar_14() const { return ___m_horizontalScrollbar_14; }
  4649. inline GUIStyle_t3956901511 ** get_address_of_m_horizontalScrollbar_14() { return &___m_horizontalScrollbar_14; }
  4650. inline void set_m_horizontalScrollbar_14(GUIStyle_t3956901511 * value)
  4651. {
  4652. ___m_horizontalScrollbar_14 = value;
  4653. Il2CppCodeGenWriteBarrier((&___m_horizontalScrollbar_14), value);
  4654. }
  4655. inline static int32_t get_offset_of_m_horizontalScrollbarThumb_15() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282, ___m_horizontalScrollbarThumb_15)); }
  4656. inline GUIStyle_t3956901511 * get_m_horizontalScrollbarThumb_15() const { return ___m_horizontalScrollbarThumb_15; }
  4657. inline GUIStyle_t3956901511 ** get_address_of_m_horizontalScrollbarThumb_15() { return &___m_horizontalScrollbarThumb_15; }
  4658. inline void set_m_horizontalScrollbarThumb_15(GUIStyle_t3956901511 * value)
  4659. {
  4660. ___m_horizontalScrollbarThumb_15 = value;
  4661. Il2CppCodeGenWriteBarrier((&___m_horizontalScrollbarThumb_15), value);
  4662. }
  4663. inline static int32_t get_offset_of_m_horizontalScrollbarLeftButton_16() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282, ___m_horizontalScrollbarLeftButton_16)); }
  4664. inline GUIStyle_t3956901511 * get_m_horizontalScrollbarLeftButton_16() const { return ___m_horizontalScrollbarLeftButton_16; }
  4665. inline GUIStyle_t3956901511 ** get_address_of_m_horizontalScrollbarLeftButton_16() { return &___m_horizontalScrollbarLeftButton_16; }
  4666. inline void set_m_horizontalScrollbarLeftButton_16(GUIStyle_t3956901511 * value)
  4667. {
  4668. ___m_horizontalScrollbarLeftButton_16 = value;
  4669. Il2CppCodeGenWriteBarrier((&___m_horizontalScrollbarLeftButton_16), value);
  4670. }
  4671. inline static int32_t get_offset_of_m_horizontalScrollbarRightButton_17() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282, ___m_horizontalScrollbarRightButton_17)); }
  4672. inline GUIStyle_t3956901511 * get_m_horizontalScrollbarRightButton_17() const { return ___m_horizontalScrollbarRightButton_17; }
  4673. inline GUIStyle_t3956901511 ** get_address_of_m_horizontalScrollbarRightButton_17() { return &___m_horizontalScrollbarRightButton_17; }
  4674. inline void set_m_horizontalScrollbarRightButton_17(GUIStyle_t3956901511 * value)
  4675. {
  4676. ___m_horizontalScrollbarRightButton_17 = value;
  4677. Il2CppCodeGenWriteBarrier((&___m_horizontalScrollbarRightButton_17), value);
  4678. }
  4679. inline static int32_t get_offset_of_m_verticalScrollbar_18() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282, ___m_verticalScrollbar_18)); }
  4680. inline GUIStyle_t3956901511 * get_m_verticalScrollbar_18() const { return ___m_verticalScrollbar_18; }
  4681. inline GUIStyle_t3956901511 ** get_address_of_m_verticalScrollbar_18() { return &___m_verticalScrollbar_18; }
  4682. inline void set_m_verticalScrollbar_18(GUIStyle_t3956901511 * value)
  4683. {
  4684. ___m_verticalScrollbar_18 = value;
  4685. Il2CppCodeGenWriteBarrier((&___m_verticalScrollbar_18), value);
  4686. }
  4687. inline static int32_t get_offset_of_m_verticalScrollbarThumb_19() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282, ___m_verticalScrollbarThumb_19)); }
  4688. inline GUIStyle_t3956901511 * get_m_verticalScrollbarThumb_19() const { return ___m_verticalScrollbarThumb_19; }
  4689. inline GUIStyle_t3956901511 ** get_address_of_m_verticalScrollbarThumb_19() { return &___m_verticalScrollbarThumb_19; }
  4690. inline void set_m_verticalScrollbarThumb_19(GUIStyle_t3956901511 * value)
  4691. {
  4692. ___m_verticalScrollbarThumb_19 = value;
  4693. Il2CppCodeGenWriteBarrier((&___m_verticalScrollbarThumb_19), value);
  4694. }
  4695. inline static int32_t get_offset_of_m_verticalScrollbarUpButton_20() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282, ___m_verticalScrollbarUpButton_20)); }
  4696. inline GUIStyle_t3956901511 * get_m_verticalScrollbarUpButton_20() const { return ___m_verticalScrollbarUpButton_20; }
  4697. inline GUIStyle_t3956901511 ** get_address_of_m_verticalScrollbarUpButton_20() { return &___m_verticalScrollbarUpButton_20; }
  4698. inline void set_m_verticalScrollbarUpButton_20(GUIStyle_t3956901511 * value)
  4699. {
  4700. ___m_verticalScrollbarUpButton_20 = value;
  4701. Il2CppCodeGenWriteBarrier((&___m_verticalScrollbarUpButton_20), value);
  4702. }
  4703. inline static int32_t get_offset_of_m_verticalScrollbarDownButton_21() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282, ___m_verticalScrollbarDownButton_21)); }
  4704. inline GUIStyle_t3956901511 * get_m_verticalScrollbarDownButton_21() const { return ___m_verticalScrollbarDownButton_21; }
  4705. inline GUIStyle_t3956901511 ** get_address_of_m_verticalScrollbarDownButton_21() { return &___m_verticalScrollbarDownButton_21; }
  4706. inline void set_m_verticalScrollbarDownButton_21(GUIStyle_t3956901511 * value)
  4707. {
  4708. ___m_verticalScrollbarDownButton_21 = value;
  4709. Il2CppCodeGenWriteBarrier((&___m_verticalScrollbarDownButton_21), value);
  4710. }
  4711. inline static int32_t get_offset_of_m_ScrollView_22() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282, ___m_ScrollView_22)); }
  4712. inline GUIStyle_t3956901511 * get_m_ScrollView_22() const { return ___m_ScrollView_22; }
  4713. inline GUIStyle_t3956901511 ** get_address_of_m_ScrollView_22() { return &___m_ScrollView_22; }
  4714. inline void set_m_ScrollView_22(GUIStyle_t3956901511 * value)
  4715. {
  4716. ___m_ScrollView_22 = value;
  4717. Il2CppCodeGenWriteBarrier((&___m_ScrollView_22), value);
  4718. }
  4719. inline static int32_t get_offset_of_m_CustomStyles_23() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282, ___m_CustomStyles_23)); }
  4720. inline GUIStyleU5BU5D_t2383250302* get_m_CustomStyles_23() const { return ___m_CustomStyles_23; }
  4721. inline GUIStyleU5BU5D_t2383250302** get_address_of_m_CustomStyles_23() { return &___m_CustomStyles_23; }
  4722. inline void set_m_CustomStyles_23(GUIStyleU5BU5D_t2383250302* value)
  4723. {
  4724. ___m_CustomStyles_23 = value;
  4725. Il2CppCodeGenWriteBarrier((&___m_CustomStyles_23), value);
  4726. }
  4727. inline static int32_t get_offset_of_m_Settings_24() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282, ___m_Settings_24)); }
  4728. inline GUISettings_t1774757634 * get_m_Settings_24() const { return ___m_Settings_24; }
  4729. inline GUISettings_t1774757634 ** get_address_of_m_Settings_24() { return &___m_Settings_24; }
  4730. inline void set_m_Settings_24(GUISettings_t1774757634 * value)
  4731. {
  4732. ___m_Settings_24 = value;
  4733. Il2CppCodeGenWriteBarrier((&___m_Settings_24), value);
  4734. }
  4735. inline static int32_t get_offset_of_m_Styles_25() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282, ___m_Styles_25)); }
  4736. inline Dictionary_2_t3742157810 * get_m_Styles_25() const { return ___m_Styles_25; }
  4737. inline Dictionary_2_t3742157810 ** get_address_of_m_Styles_25() { return &___m_Styles_25; }
  4738. inline void set_m_Styles_25(Dictionary_2_t3742157810 * value)
  4739. {
  4740. ___m_Styles_25 = value;
  4741. Il2CppCodeGenWriteBarrier((&___m_Styles_25), value);
  4742. }
  4743. };
  4744. struct GUISkin_t1244372282_StaticFields
  4745. {
  4746. public:
  4747. // UnityEngine.GUISkin/SkinChangedDelegate UnityEngine.GUISkin::m_SkinChanged
  4748. SkinChangedDelegate_t1143955295 * ___m_SkinChanged_26;
  4749. // UnityEngine.GUISkin UnityEngine.GUISkin::current
  4750. GUISkin_t1244372282 * ___current_27;
  4751. public:
  4752. inline static int32_t get_offset_of_m_SkinChanged_26() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282_StaticFields, ___m_SkinChanged_26)); }
  4753. inline SkinChangedDelegate_t1143955295 * get_m_SkinChanged_26() const { return ___m_SkinChanged_26; }
  4754. inline SkinChangedDelegate_t1143955295 ** get_address_of_m_SkinChanged_26() { return &___m_SkinChanged_26; }
  4755. inline void set_m_SkinChanged_26(SkinChangedDelegate_t1143955295 * value)
  4756. {
  4757. ___m_SkinChanged_26 = value;
  4758. Il2CppCodeGenWriteBarrier((&___m_SkinChanged_26), value);
  4759. }
  4760. inline static int32_t get_offset_of_current_27() { return static_cast<int32_t>(offsetof(GUISkin_t1244372282_StaticFields, ___current_27)); }
  4761. inline GUISkin_t1244372282 * get_current_27() const { return ___current_27; }
  4762. inline GUISkin_t1244372282 ** get_address_of_current_27() { return &___current_27; }
  4763. inline void set_current_27(GUISkin_t1244372282 * value)
  4764. {
  4765. ___current_27 = value;
  4766. Il2CppCodeGenWriteBarrier((&___current_27), value);
  4767. }
  4768. };
  4769. #ifdef __clang__
  4770. #pragma clang diagnostic pop
  4771. #endif
  4772. #endif // GUISKIN_T1244372282_H
  4773. // System.Object[]
  4774. struct ObjectU5BU5D_t2843939325 : public RuntimeArray
  4775. {
  4776. public:
  4777. ALIGN_FIELD (8) RuntimeObject * m_Items[1];
  4778. public:
  4779. inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
  4780. {
  4781. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  4782. return m_Items[index];
  4783. }
  4784. inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index)
  4785. {
  4786. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  4787. return m_Items + index;
  4788. }
  4789. inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value)
  4790. {
  4791. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  4792. m_Items[index] = value;
  4793. Il2CppCodeGenWriteBarrier(m_Items + index, value);
  4794. }
  4795. inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
  4796. {
  4797. return m_Items[index];
  4798. }
  4799. inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
  4800. {
  4801. return m_Items + index;
  4802. }
  4803. inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
  4804. {
  4805. m_Items[index] = value;
  4806. Il2CppCodeGenWriteBarrier(m_Items + index, value);
  4807. }
  4808. };
  4809. // UnityEngine.GUILayoutOption[]
  4810. struct GUILayoutOptionU5BU5D_t2510215842 : public RuntimeArray
  4811. {
  4812. public:
  4813. ALIGN_FIELD (8) GUILayoutOption_t811797299 * m_Items[1];
  4814. public:
  4815. inline GUILayoutOption_t811797299 * GetAt(il2cpp_array_size_t index) const
  4816. {
  4817. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  4818. return m_Items[index];
  4819. }
  4820. inline GUILayoutOption_t811797299 ** GetAddressAt(il2cpp_array_size_t index)
  4821. {
  4822. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  4823. return m_Items + index;
  4824. }
  4825. inline void SetAt(il2cpp_array_size_t index, GUILayoutOption_t811797299 * value)
  4826. {
  4827. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  4828. m_Items[index] = value;
  4829. Il2CppCodeGenWriteBarrier(m_Items + index, value);
  4830. }
  4831. inline GUILayoutOption_t811797299 * GetAtUnchecked(il2cpp_array_size_t index) const
  4832. {
  4833. return m_Items[index];
  4834. }
  4835. inline GUILayoutOption_t811797299 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
  4836. {
  4837. return m_Items + index;
  4838. }
  4839. inline void SetAtUnchecked(il2cpp_array_size_t index, GUILayoutOption_t811797299 * value)
  4840. {
  4841. m_Items[index] = value;
  4842. Il2CppCodeGenWriteBarrier(m_Items + index, value);
  4843. }
  4844. };
  4845. // UnityEngine.GUIStyle[]
  4846. struct GUIStyleU5BU5D_t2383250302 : public RuntimeArray
  4847. {
  4848. public:
  4849. ALIGN_FIELD (8) GUIStyle_t3956901511 * m_Items[1];
  4850. public:
  4851. inline GUIStyle_t3956901511 * GetAt(il2cpp_array_size_t index) const
  4852. {
  4853. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  4854. return m_Items[index];
  4855. }
  4856. inline GUIStyle_t3956901511 ** GetAddressAt(il2cpp_array_size_t index)
  4857. {
  4858. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  4859. return m_Items + index;
  4860. }
  4861. inline void SetAt(il2cpp_array_size_t index, GUIStyle_t3956901511 * value)
  4862. {
  4863. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  4864. m_Items[index] = value;
  4865. Il2CppCodeGenWriteBarrier(m_Items + index, value);
  4866. }
  4867. inline GUIStyle_t3956901511 * GetAtUnchecked(il2cpp_array_size_t index) const
  4868. {
  4869. return m_Items[index];
  4870. }
  4871. inline GUIStyle_t3956901511 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
  4872. {
  4873. return m_Items + index;
  4874. }
  4875. inline void SetAtUnchecked(il2cpp_array_size_t index, GUIStyle_t3956901511 * value)
  4876. {
  4877. m_Items[index] = value;
  4878. Il2CppCodeGenWriteBarrier(m_Items + index, value);
  4879. }
  4880. };
  4881. extern "C" void GUIStyleState_t1397964415_marshal_pinvoke(const GUIStyleState_t1397964415& unmarshaled, GUIStyleState_t1397964415_marshaled_pinvoke& marshaled);
  4882. extern "C" void GUIStyleState_t1397964415_marshal_pinvoke_back(const GUIStyleState_t1397964415_marshaled_pinvoke& marshaled, GUIStyleState_t1397964415& unmarshaled);
  4883. extern "C" void GUIStyleState_t1397964415_marshal_pinvoke_cleanup(GUIStyleState_t1397964415_marshaled_pinvoke& marshaled);
  4884. extern "C" void RectOffset_t1369453676_marshal_pinvoke(const RectOffset_t1369453676& unmarshaled, RectOffset_t1369453676_marshaled_pinvoke& marshaled);
  4885. extern "C" void RectOffset_t1369453676_marshal_pinvoke_back(const RectOffset_t1369453676_marshaled_pinvoke& marshaled, RectOffset_t1369453676& unmarshaled);
  4886. extern "C" void RectOffset_t1369453676_marshal_pinvoke_cleanup(RectOffset_t1369453676_marshaled_pinvoke& marshaled);
  4887. extern "C" void GUIStyleState_t1397964415_marshal_com(const GUIStyleState_t1397964415& unmarshaled, GUIStyleState_t1397964415_marshaled_com& marshaled);
  4888. extern "C" void GUIStyleState_t1397964415_marshal_com_back(const GUIStyleState_t1397964415_marshaled_com& marshaled, GUIStyleState_t1397964415& unmarshaled);
  4889. extern "C" void GUIStyleState_t1397964415_marshal_com_cleanup(GUIStyleState_t1397964415_marshaled_com& marshaled);
  4890. extern "C" void RectOffset_t1369453676_marshal_com(const RectOffset_t1369453676& unmarshaled, RectOffset_t1369453676_marshaled_com& marshaled);
  4891. extern "C" void RectOffset_t1369453676_marshal_com_back(const RectOffset_t1369453676_marshaled_com& marshaled, RectOffset_t1369453676& unmarshaled);
  4892. extern "C" void RectOffset_t1369453676_marshal_com_cleanup(RectOffset_t1369453676_marshaled_com& marshaled);
  4893. extern "C" void GUIStyle_t3956901511_marshal_pinvoke(const GUIStyle_t3956901511& unmarshaled, GUIStyle_t3956901511_marshaled_pinvoke& marshaled);
  4894. extern "C" void GUIStyle_t3956901511_marshal_pinvoke_back(const GUIStyle_t3956901511_marshaled_pinvoke& marshaled, GUIStyle_t3956901511& unmarshaled);
  4895. extern "C" void GUIStyle_t3956901511_marshal_pinvoke_cleanup(GUIStyle_t3956901511_marshaled_pinvoke& marshaled);
  4896. extern "C" void GUIStyle_t3956901511_marshal_com(const GUIStyle_t3956901511& unmarshaled, GUIStyle_t3956901511_marshaled_com& marshaled);
  4897. extern "C" void GUIStyle_t3956901511_marshal_com_back(const GUIStyle_t3956901511_marshaled_com& marshaled, GUIStyle_t3956901511& unmarshaled);
  4898. extern "C" void GUIStyle_t3956901511_marshal_com_cleanup(GUIStyle_t3956901511_marshaled_com& marshaled);
  4899. // System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
  4900. extern "C" IL2CPP_METHOD_ATTR void List_1__ctor_m2321703786_gshared (List_1_t257213610 * __this, const RuntimeMethod* method);
  4901. // System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
  4902. extern "C" IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m2934127733_gshared (List_1_t257213610 * __this, const RuntimeMethod* method);
  4903. // !0 System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
  4904. extern "C" IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_m2287542950_gshared (List_1_t257213610 * __this, int32_t p0, const RuntimeMethod* method);
  4905. // System.Void System.Collections.Generic.List`1<System.Object>::Add(!0)
  4906. extern "C" IL2CPP_METHOD_ATTR void List_1_Add_m3338814081_gshared (List_1_t257213610 * __this, RuntimeObject * p0, const RuntimeMethod* method);
  4907. // System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<System.Object>::GetEnumerator()
  4908. extern "C" IL2CPP_METHOD_ATTR Enumerator_t2146457487 List_1_GetEnumerator_m2930774921_gshared (List_1_t257213610 * __this, const RuntimeMethod* method);
  4909. // !0 System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current()
  4910. extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m470245444_gshared (Enumerator_t2146457487 * __this, const RuntimeMethod* method);
  4911. // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext()
  4912. extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2142368520_gshared (Enumerator_t2146457487 * __this, const RuntimeMethod* method);
  4913. // System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose()
  4914. extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3007748546_gshared (Enumerator_t2146457487 * __this, const RuntimeMethod* method);
  4915. // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::TryGetValue(!0,!1&)
  4916. extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m3411363121_gshared (Dictionary_2_t1968819495 * __this, int32_t p0, RuntimeObject ** p1, const RuntimeMethod* method);
  4917. // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::set_Item(!0,!1)
  4918. extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m3327106492_gshared (Dictionary_2_t1968819495 * __this, int32_t p0, RuntimeObject * p1, const RuntimeMethod* method);
  4919. // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor()
  4920. extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m2601736566_gshared (Dictionary_2_t1968819495 * __this, const RuntimeMethod* method);
  4921. // !2 System.Func`3<System.Int32,System.IntPtr,System.Boolean>::Invoke(!0,!1)
  4922. extern "C" IL2CPP_METHOD_ATTR bool Func_3_Invoke_m4134091626_gshared (Func_3_t4119323734 * __this, int32_t p0, intptr_t p1, const RuntimeMethod* method);
  4923. // !1 System.Func`2<System.Object,System.Boolean>::Invoke(!0)
  4924. extern "C" IL2CPP_METHOD_ATTR bool Func_2_Invoke_m1574203759_gshared (Func_2_t3759279471 * __this, RuntimeObject * p0, const RuntimeMethod* method);
  4925. // System.Void System.Object::.ctor()
  4926. extern "C" IL2CPP_METHOD_ATTR void Object__ctor_m297566312 (RuntimeObject * __this, const RuntimeMethod* method);
  4927. // System.Void UnityEngine.Event::Init(System.Int32)
  4928. extern "C" IL2CPP_METHOD_ATTR void Event_Init_m2830944622 (Event_t2956885303 * __this, int32_t ___displayIndex0, const RuntimeMethod* method);
  4929. // System.Void UnityEngine.Event::Cleanup()
  4930. extern "C" IL2CPP_METHOD_ATTR void Event_Cleanup_m2477919477 (Event_t2956885303 * __this, const RuntimeMethod* method);
  4931. // System.Void System.Object::Finalize()
  4932. extern "C" IL2CPP_METHOD_ATTR void Object_Finalize_m3076187857 (RuntimeObject * __this, const RuntimeMethod* method);
  4933. // System.Void UnityEngine.Event::Internal_GetMousePosition(UnityEngine.Vector2&)
  4934. extern "C" IL2CPP_METHOD_ATTR void Event_Internal_GetMousePosition_m1101229675 (Event_t2956885303 * __this, Vector2_t2156229523 * ___value0, const RuntimeMethod* method);
  4935. // System.Void UnityEngine.Event::.ctor(System.Int32)
  4936. extern "C" IL2CPP_METHOD_ATTR void Event__ctor_m526447123 (Event_t2956885303 * __this, int32_t ___displayIndex0, const RuntimeMethod* method);
  4937. // System.Void UnityEngine.Event::set_displayIndex(System.Int32)
  4938. extern "C" IL2CPP_METHOD_ATTR void Event_set_displayIndex_m1342258734 (Event_t2956885303 * __this, int32_t ___value0, const RuntimeMethod* method);
  4939. // System.Void UnityEngine.Event::Internal_SetNativeEvent(System.IntPtr)
  4940. extern "C" IL2CPP_METHOD_ATTR void Event_Internal_SetNativeEvent_m1397431767 (RuntimeObject * __this /* static, unused */, intptr_t ___ptr0, const RuntimeMethod* method);
  4941. // UnityEngine.EventType UnityEngine.Event::get_type()
  4942. extern "C" IL2CPP_METHOD_ATTR int32_t Event_get_type_m1370041809 (Event_t2956885303 * __this, const RuntimeMethod* method);
  4943. // System.Boolean UnityEngine.Event::get_isKey()
  4944. extern "C" IL2CPP_METHOD_ATTR bool Event_get_isKey_m1703963445 (Event_t2956885303 * __this, const RuntimeMethod* method);
  4945. // UnityEngine.KeyCode UnityEngine.Event::get_keyCode()
  4946. extern "C" IL2CPP_METHOD_ATTR int32_t Event_get_keyCode_m1098493350 (Event_t2956885303 * __this, const RuntimeMethod* method);
  4947. // System.Boolean UnityEngine.Event::get_isMouse()
  4948. extern "C" IL2CPP_METHOD_ATTR bool Event_get_isMouse_m1058251071 (Event_t2956885303 * __this, const RuntimeMethod* method);
  4949. // UnityEngine.Vector2 UnityEngine.Event::get_mousePosition()
  4950. extern "C" IL2CPP_METHOD_ATTR Vector2_t2156229523 Event_get_mousePosition_m733809635 (Event_t2956885303 * __this, const RuntimeMethod* method);
  4951. // System.Int32 UnityEngine.Vector2::GetHashCode()
  4952. extern "C" IL2CPP_METHOD_ATTR int32_t Vector2_GetHashCode_m3916089713 (Vector2_t2156229523 * __this, const RuntimeMethod* method);
  4953. // UnityEngine.EventModifiers UnityEngine.Event::get_modifiers()
  4954. extern "C" IL2CPP_METHOD_ATTR int32_t Event_get_modifiers_m995073384 (Event_t2956885303 * __this, const RuntimeMethod* method);
  4955. // System.Boolean System.Object::ReferenceEquals(System.Object,System.Object)
  4956. extern "C" IL2CPP_METHOD_ATTR bool Object_ReferenceEquals_m610702577 (RuntimeObject * __this /* static, unused */, RuntimeObject * p0, RuntimeObject * p1, const RuntimeMethod* method);
  4957. // System.Type System.Object::GetType()
  4958. extern "C" IL2CPP_METHOD_ATTR Type_t * Object_GetType_m88164663 (RuntimeObject * __this, const RuntimeMethod* method);
  4959. // System.Boolean UnityEngine.Vector2::op_Equality(UnityEngine.Vector2,UnityEngine.Vector2)
  4960. extern "C" IL2CPP_METHOD_ATTR bool Vector2_op_Equality_m2303255133 (RuntimeObject * __this /* static, unused */, Vector2_t2156229523 p0, Vector2_t2156229523 p1, const RuntimeMethod* method);
  4961. // System.Char UnityEngine.Event::get_character()
  4962. extern "C" IL2CPP_METHOD_ATTR Il2CppChar Event_get_character_m1666742088 (Event_t2956885303 * __this, const RuntimeMethod* method);
  4963. // System.String UnityEngine.UnityString::Format(System.String,System.Object[])
  4964. extern "C" IL2CPP_METHOD_ATTR String_t* UnityString_Format_m261690510 (RuntimeObject * __this /* static, unused */, String_t* p0, ObjectU5BU5D_t2843939325* p1, const RuntimeMethod* method);
  4965. // System.String System.String::Concat(System.Object[])
  4966. extern "C" IL2CPP_METHOD_ATTR String_t* String_Concat_m2971454694 (RuntimeObject * __this /* static, unused */, ObjectU5BU5D_t2843939325* p0, const RuntimeMethod* method);
  4967. // System.String UnityEngine.Event::get_commandName()
  4968. extern "C" IL2CPP_METHOD_ATTR String_t* Event_get_commandName_m4275147343 (Event_t2956885303 * __this, const RuntimeMethod* method);
  4969. // System.String System.String::Concat(System.Object,System.Object)
  4970. extern "C" IL2CPP_METHOD_ATTR String_t* String_Concat_m904156431 (RuntimeObject * __this /* static, unused */, RuntimeObject * p0, RuntimeObject * p1, const RuntimeMethod* method);
  4971. // System.Void UnityEngineInternal.GenericStack::.ctor()
  4972. extern "C" IL2CPP_METHOD_ATTR void GenericStack__ctor_m933681517 (GenericStack_t1310059385 * __this, const RuntimeMethod* method);
  4973. // System.DateTime System.DateTime::get_Now()
  4974. extern "C" IL2CPP_METHOD_ATTR DateTime_t3738529785 DateTime_get_Now_m1277138875 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
  4975. // System.Void UnityEngine.GUI::set_nextScrollStepTime(System.DateTime)
  4976. extern "C" IL2CPP_METHOD_ATTR void GUI_set_nextScrollStepTime_m1026410471 (RuntimeObject * __this /* static, unused */, DateTime_t3738529785 ___value0, const RuntimeMethod* method);
  4977. // System.Void UnityEngine.GUI::INTERNAL_get_backgroundColor(UnityEngine.Color&)
  4978. extern "C" IL2CPP_METHOD_ATTR void GUI_INTERNAL_get_backgroundColor_m2505650026 (RuntimeObject * __this /* static, unused */, Color_t2555686324 * ___value0, const RuntimeMethod* method);
  4979. // System.Void UnityEngine.GUI::INTERNAL_set_backgroundColor(UnityEngine.Color&)
  4980. extern "C" IL2CPP_METHOD_ATTR void GUI_INTERNAL_set_backgroundColor_m4207465845 (RuntimeObject * __this /* static, unused */, Color_t2555686324 * ___value0, const RuntimeMethod* method);
  4981. // System.Void UnityEngine.GUI::INTERNAL_CALL_DoLabel(UnityEngine.Rect&,UnityEngine.GUIContent,System.IntPtr)
  4982. extern "C" IL2CPP_METHOD_ATTR void GUI_INTERNAL_CALL_DoLabel_m2007226197 (RuntimeObject * __this /* static, unused */, Rect_t2360479859 * ___position0, GUIContent_t3050628031 * ___content1, intptr_t ___style2, const RuntimeMethod* method);
  4983. // System.Boolean UnityEngine.GUI::INTERNAL_CALL_DoButton(UnityEngine.Rect&,UnityEngine.GUIContent,System.IntPtr)
  4984. extern "C" IL2CPP_METHOD_ATTR bool GUI_INTERNAL_CALL_DoButton_m789917463 (RuntimeObject * __this /* static, unused */, Rect_t2360479859 * ___position0, GUIContent_t3050628031 * ___content1, intptr_t ___style2, const RuntimeMethod* method);
  4985. // System.Void UnityEngine.GUIUtility::CheckOnGUI()
  4986. extern "C" IL2CPP_METHOD_ATTR void GUIUtility_CheckOnGUI_m3924092168 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
  4987. // System.Void UnityEngine.GUI::DoSetSkin(UnityEngine.GUISkin)
  4988. extern "C" IL2CPP_METHOD_ATTR void GUI_DoSetSkin_m604425702 (RuntimeObject * __this /* static, unused */, GUISkin_t1244372282 * ___newSkin0, const RuntimeMethod* method);
  4989. // System.Boolean UnityEngine.Object::op_Implicit(UnityEngine.Object)
  4990. extern "C" IL2CPP_METHOD_ATTR bool Object_op_Implicit_m3574996620 (RuntimeObject * __this /* static, unused */, Object_t631007953 * p0, const RuntimeMethod* method);
  4991. // UnityEngine.GUISkin UnityEngine.GUIUtility::GetDefaultSkin()
  4992. extern "C" IL2CPP_METHOD_ATTR GUISkin_t1244372282 * GUIUtility_GetDefaultSkin_m1141001896 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
  4993. // System.Void UnityEngine.GUISkin::MakeCurrent()
  4994. extern "C" IL2CPP_METHOD_ATTR void GUISkin_MakeCurrent_m3239192349 (GUISkin_t1244372282 * __this, const RuntimeMethod* method);
  4995. // UnityEngine.GUIContent UnityEngine.GUIContent::Temp(System.String)
  4996. extern "C" IL2CPP_METHOD_ATTR GUIContent_t3050628031 * GUIContent_Temp_m3538793263 (RuntimeObject * __this /* static, unused */, String_t* ___t0, const RuntimeMethod* method);
  4997. // UnityEngine.GUIStyle UnityEngine.GUISkin::get_label()
  4998. extern "C" IL2CPP_METHOD_ATTR GUIStyle_t3956901511 * GUISkin_get_label_m1693050720 (GUISkin_t1244372282 * __this, const RuntimeMethod* method);
  4999. // System.Void UnityEngine.GUI::Label(UnityEngine.Rect,UnityEngine.GUIContent,UnityEngine.GUIStyle)
  5000. extern "C" IL2CPP_METHOD_ATTR void GUI_Label_m3404668030 (RuntimeObject * __this /* static, unused */, Rect_t2360479859 ___position0, GUIContent_t3050628031 * ___content1, GUIStyle_t3956901511 * ___style2, const RuntimeMethod* method);
  5001. // System.Void UnityEngine.GUI::DoLabel(UnityEngine.Rect,UnityEngine.GUIContent,System.IntPtr)
  5002. extern "C" IL2CPP_METHOD_ATTR void GUI_DoLabel_m1422046243 (RuntimeObject * __this /* static, unused */, Rect_t2360479859 ___position0, GUIContent_t3050628031 * ___content1, intptr_t ___style2, const RuntimeMethod* method);
  5003. // UnityEngine.GUIStyle UnityEngine.GUISkin::get_button()
  5004. extern "C" IL2CPP_METHOD_ATTR GUIStyle_t3956901511 * GUISkin_get_button_m2792560996 (GUISkin_t1244372282 * __this, const RuntimeMethod* method);
  5005. // System.Boolean UnityEngine.GUI::Button(UnityEngine.Rect,UnityEngine.GUIContent,UnityEngine.GUIStyle)
  5006. extern "C" IL2CPP_METHOD_ATTR bool GUI_Button_m1546789121 (RuntimeObject * __this /* static, unused */, Rect_t2360479859 ___position0, GUIContent_t3050628031 * ___content1, GUIStyle_t3956901511 * ___style2, const RuntimeMethod* method);
  5007. // System.Boolean UnityEngine.GUI::DoButton(UnityEngine.Rect,UnityEngine.GUIContent,System.IntPtr)
  5008. extern "C" IL2CPP_METHOD_ATTR bool GUI_DoButton_m3631925833 (RuntimeObject * __this /* static, unused */, Rect_t2360479859 ___position0, GUIContent_t3050628031 * ___content1, intptr_t ___style2, const RuntimeMethod* method);
  5009. // UnityEngine.GUILayoutUtility/LayoutCache UnityEngine.GUILayoutUtility::SelectIDList(System.Int32,System.Boolean)
  5010. extern "C" IL2CPP_METHOD_ATTR LayoutCache_t78309876 * GUILayoutUtility_SelectIDList_m294753167 (RuntimeObject * __this /* static, unused */, int32_t ___instanceID0, bool ___isWindow1, const RuntimeMethod* method);
  5011. // UnityEngine.GUISkin UnityEngine.GUI::get_skin()
  5012. extern "C" IL2CPP_METHOD_ATTR GUISkin_t1244372282 * GUI_get_skin_m1874615010 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
  5013. // UnityEngine.Event UnityEngine.Event::get_current()
  5014. extern "C" IL2CPP_METHOD_ATTR Event_t2956885303 * Event_get_current_m2393892120 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
  5015. // UnityEngine.GUILayoutOption UnityEngine.GUILayout::Width(System.Single)
  5016. extern "C" IL2CPP_METHOD_ATTR GUILayoutOption_t811797299 * GUILayout_Width_m1777696537 (RuntimeObject * __this /* static, unused */, float ___width0, const RuntimeMethod* method);
  5017. // UnityEngine.GUILayoutOption UnityEngine.GUILayout::Height(System.Single)
  5018. extern "C" IL2CPP_METHOD_ATTR GUILayoutOption_t811797299 * GUILayout_Height_m3349769634 (RuntimeObject * __this /* static, unused */, float ___height0, const RuntimeMethod* method);
  5019. // System.Void UnityEngine.GUILayoutUtility::BeginWindow(System.Int32,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])
  5020. extern "C" IL2CPP_METHOD_ATTR void GUILayoutUtility_BeginWindow_m2240221150 (RuntimeObject * __this /* static, unused */, int32_t ___windowID0, GUIStyle_t3956901511 * ___style1, GUILayoutOptionU5BU5D_t2510215842* ___options2, const RuntimeMethod* method);
  5021. // UnityEngine.GUIStyle UnityEngine.GUIStyle::get_none()
  5022. extern "C" IL2CPP_METHOD_ATTR GUIStyle_t3956901511 * GUIStyle_get_none_m1545577352 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
  5023. // System.Void UnityEngine.GUI::set_skin(UnityEngine.GUISkin)
  5024. extern "C" IL2CPP_METHOD_ATTR void GUI_set_skin_m3073574632 (RuntimeObject * __this /* static, unused */, GUISkin_t1244372282 * ___value0, const RuntimeMethod* method);
  5025. // System.Void UnityEngine.GUI/WindowFunction::Invoke(System.Int32)
  5026. extern "C" IL2CPP_METHOD_ATTR void WindowFunction_Invoke_m3205356586 (WindowFunction_t3146511083 * __this, int32_t ___id0, const RuntimeMethod* method);
  5027. // System.Void UnityEngine.GUILayoutUtility::Layout()
  5028. extern "C" IL2CPP_METHOD_ATTR void GUILayoutUtility_Layout_m1159951704 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
  5029. // System.Void UnityEngine.GUIContent::.ctor(System.String,UnityEngine.Texture,System.String)
  5030. extern "C" IL2CPP_METHOD_ATTR void GUIContent__ctor_m2166411317 (GUIContent_t3050628031 * __this, String_t* ___text0, Texture_t3661962703 * ___image1, String_t* ___tooltip2, const RuntimeMethod* method);
  5031. // System.Void UnityEngine.GUIContent::set_text(System.String)
  5032. extern "C" IL2CPP_METHOD_ATTR void GUIContent_set_text_m607297463 (GUIContent_t3050628031 * __this, String_t* ___value0, const RuntimeMethod* method);
  5033. // System.Void UnityEngine.GUIContent::set_image(UnityEngine.Texture)
  5034. extern "C" IL2CPP_METHOD_ATTR void GUIContent_set_image_m1091531865 (GUIContent_t3050628031 * __this, Texture_t3661962703 * ___value0, const RuntimeMethod* method);
  5035. // System.Void UnityEngine.GUIContent::set_tooltip(System.String)
  5036. extern "C" IL2CPP_METHOD_ATTR void GUIContent_set_tooltip_m738967743 (GUIContent_t3050628031 * __this, String_t* ___value0, const RuntimeMethod* method);
  5037. // System.Void UnityEngine.GUIContent::.ctor()
  5038. extern "C" IL2CPP_METHOD_ATTR void GUIContent__ctor_m3360759894 (GUIContent_t3050628031 * __this, const RuntimeMethod* method);
  5039. // System.Void UnityEngine.GUIContent::.ctor(System.String)
  5040. extern "C" IL2CPP_METHOD_ATTR void GUIContent__ctor_m890195579 (GUIContent_t3050628031 * __this, String_t* ___text0, const RuntimeMethod* method);
  5041. // System.Void UnityEngine.GUILayout::DoLabel(UnityEngine.GUIContent,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])
  5042. extern "C" IL2CPP_METHOD_ATTR void GUILayout_DoLabel_m607126153 (RuntimeObject * __this /* static, unused */, GUIContent_t3050628031 * ___content0, GUIStyle_t3956901511 * ___style1, GUILayoutOptionU5BU5D_t2510215842* ___options2, const RuntimeMethod* method);
  5043. // UnityEngine.Rect UnityEngine.GUILayoutUtility::GetRect(UnityEngine.GUIContent,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])
  5044. extern "C" IL2CPP_METHOD_ATTR Rect_t2360479859 GUILayoutUtility_GetRect_m1923267526 (RuntimeObject * __this /* static, unused */, GUIContent_t3050628031 * ___content0, GUIStyle_t3956901511 * ___style1, GUILayoutOptionU5BU5D_t2510215842* ___options2, const RuntimeMethod* method);
  5045. // System.Void UnityEngine.GUILayoutOption::.ctor(UnityEngine.GUILayoutOption/Type,System.Object)
  5046. extern "C" IL2CPP_METHOD_ATTR void GUILayoutOption__ctor_m2091649807 (GUILayoutOption_t811797299 * __this, int32_t ___type0, RuntimeObject * ___value1, const RuntimeMethod* method);
  5047. // System.Void UnityEngine.Rect::.ctor(System.Single,System.Single,System.Single,System.Single)
  5048. extern "C" IL2CPP_METHOD_ATTR void Rect__ctor_m2614021312 (Rect_t2360479859 * __this, float p0, float p1, float p2, float p3, const RuntimeMethod* method);
  5049. // System.Void UnityEngine.GUILayoutEntry::set_style(UnityEngine.GUIStyle)
  5050. extern "C" IL2CPP_METHOD_ATTR void GUILayoutEntry_set_style_m1702960184 (GUILayoutEntry_t3214611570 * __this, GUIStyle_t3956901511 * ___value0, const RuntimeMethod* method);
  5051. // UnityEngine.GUIStyle UnityEngine.GUILayoutEntry::get_style()
  5052. extern "C" IL2CPP_METHOD_ATTR GUIStyle_t3956901511 * GUILayoutEntry_get_style_m3965981147 (GUILayoutEntry_t3214611570 * __this, const RuntimeMethod* method);
  5053. // UnityEngine.RectOffset UnityEngine.GUIStyle::get_margin()
  5054. extern "C" IL2CPP_METHOD_ATTR RectOffset_t1369453676 * GUIStyle_get_margin_m3595798603 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method);
  5055. // System.Void UnityEngine.Rect::set_x(System.Single)
  5056. extern "C" IL2CPP_METHOD_ATTR void Rect_set_x_m2352063068 (Rect_t2360479859 * __this, float p0, const RuntimeMethod* method);
  5057. // System.Void UnityEngine.Rect::set_width(System.Single)
  5058. extern "C" IL2CPP_METHOD_ATTR void Rect_set_width_m2963421158 (Rect_t2360479859 * __this, float p0, const RuntimeMethod* method);
  5059. // System.Void UnityEngine.Rect::set_y(System.Single)
  5060. extern "C" IL2CPP_METHOD_ATTR void Rect_set_y_m3702432190 (Rect_t2360479859 * __this, float p0, const RuntimeMethod* method);
  5061. // System.Void UnityEngine.Rect::set_height(System.Single)
  5062. extern "C" IL2CPP_METHOD_ATTR void Rect_set_height_m1625569324 (Rect_t2360479859 * __this, float p0, const RuntimeMethod* method);
  5063. // System.Single UnityEngine.GUIStyle::get_fixedWidth()
  5064. extern "C" IL2CPP_METHOD_ATTR float GUIStyle_get_fixedWidth_m2576616348 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method);
  5065. // System.Boolean UnityEngine.GUIStyle::get_stretchWidth()
  5066. extern "C" IL2CPP_METHOD_ATTR bool GUIStyle_get_stretchWidth_m3556443132 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method);
  5067. // System.Single UnityEngine.GUIStyle::get_fixedHeight()
  5068. extern "C" IL2CPP_METHOD_ATTR float GUIStyle_get_fixedHeight_m2868324709 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method);
  5069. // System.Boolean UnityEngine.GUIStyle::get_stretchHeight()
  5070. extern "C" IL2CPP_METHOD_ATTR bool GUIStyle_get_stretchHeight_m4172805773 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method);
  5071. // System.String System.String::Concat(System.String,System.String)
  5072. extern "C" IL2CPP_METHOD_ATTR String_t* String_Concat_m3937257545 (RuntimeObject * __this /* static, unused */, String_t* p0, String_t* p1, const RuntimeMethod* method);
  5073. // System.String UnityEngine.GUIStyle::get_name()
  5074. extern "C" IL2CPP_METHOD_ATTR String_t* GUIStyle_get_name_m2109418832 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method);
  5075. // System.Single UnityEngine.Rect::get_x()
  5076. extern "C" IL2CPP_METHOD_ATTR float Rect_get_x_m3839990490 (Rect_t2360479859 * __this, const RuntimeMethod* method);
  5077. // System.Single UnityEngine.Rect::get_xMax()
  5078. extern "C" IL2CPP_METHOD_ATTR float Rect_get_xMax_m3018144503 (Rect_t2360479859 * __this, const RuntimeMethod* method);
  5079. // System.Single UnityEngine.Rect::get_y()
  5080. extern "C" IL2CPP_METHOD_ATTR float Rect_get_y_m1501338330 (Rect_t2360479859 * __this, const RuntimeMethod* method);
  5081. // System.Single UnityEngine.Rect::get_yMax()
  5082. extern "C" IL2CPP_METHOD_ATTR float Rect_get_yMax_m743455479 (Rect_t2360479859 * __this, const RuntimeMethod* method);
  5083. // System.Void System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry>::.ctor()
  5084. #define List_1__ctor_m1360362241(__this, method) (( void (*) (List_1_t391719016 *, const RuntimeMethod*))List_1__ctor_m2321703786_gshared)(__this, method)
  5085. // System.Void UnityEngine.RectOffset::.ctor()
  5086. extern "C" IL2CPP_METHOD_ATTR void RectOffset__ctor_m3236153262 (RectOffset_t1369453676 * __this, const RuntimeMethod* method);
  5087. // System.Void UnityEngine.GUILayoutEntry::.ctor(System.Single,System.Single,System.Single,System.Single,UnityEngine.GUIStyle)
  5088. extern "C" IL2CPP_METHOD_ATTR void GUILayoutEntry__ctor_m2229197035 (GUILayoutEntry_t3214611570 * __this, float ____minWidth0, float ____maxWidth1, float ____minHeight2, float ____maxHeight3, GUIStyle_t3956901511 * ____style4, const RuntimeMethod* method);
  5089. // System.Void UnityEngine.GUILayoutEntry::ApplyOptions(UnityEngine.GUILayoutOption[])
  5090. extern "C" IL2CPP_METHOD_ATTR void GUILayoutEntry_ApplyOptions_m1741659338 (GUILayoutEntry_t3214611570 * __this, GUILayoutOptionU5BU5D_t2510215842* ___options0, const RuntimeMethod* method);
  5091. // System.Void UnityEngine.GUILayoutEntry::ApplyStyleSettings(UnityEngine.GUIStyle)
  5092. extern "C" IL2CPP_METHOD_ATTR void GUILayoutEntry_ApplyStyleSettings_m4137899058 (GUILayoutEntry_t3214611570 * __this, GUIStyle_t3956901511 * ___style0, const RuntimeMethod* method);
  5093. // System.Int32 UnityEngine.RectOffset::get_left()
  5094. extern "C" IL2CPP_METHOD_ATTR int32_t RectOffset_get_left_m1232181034 (RectOffset_t1369453676 * __this, const RuntimeMethod* method);
  5095. // System.Void UnityEngine.RectOffset::set_left(System.Int32)
  5096. extern "C" IL2CPP_METHOD_ATTR void RectOffset_set_left_m432301222 (RectOffset_t1369453676 * __this, int32_t p0, const RuntimeMethod* method);
  5097. // System.Int32 UnityEngine.RectOffset::get_right()
  5098. extern "C" IL2CPP_METHOD_ATTR int32_t RectOffset_get_right_m2294081512 (RectOffset_t1369453676 * __this, const RuntimeMethod* method);
  5099. // System.Void UnityEngine.RectOffset::set_right(System.Int32)
  5100. extern "C" IL2CPP_METHOD_ATTR void RectOffset_set_right_m807318764 (RectOffset_t1369453676 * __this, int32_t p0, const RuntimeMethod* method);
  5101. // System.Int32 UnityEngine.RectOffset::get_top()
  5102. extern "C" IL2CPP_METHOD_ATTR int32_t RectOffset_get_top_m2855347295 (RectOffset_t1369453676 * __this, const RuntimeMethod* method);
  5103. // System.Void UnityEngine.RectOffset::set_top(System.Int32)
  5104. extern "C" IL2CPP_METHOD_ATTR void RectOffset_set_top_m713260669 (RectOffset_t1369453676 * __this, int32_t p0, const RuntimeMethod* method);
  5105. // System.Int32 UnityEngine.RectOffset::get_bottom()
  5106. extern "C" IL2CPP_METHOD_ATTR int32_t RectOffset_get_bottom_m890891527 (RectOffset_t1369453676 * __this, const RuntimeMethod* method);
  5107. // System.Void UnityEngine.RectOffset::set_bottom(System.Int32)
  5108. extern "C" IL2CPP_METHOD_ATTR void RectOffset_set_bottom_m2747419780 (RectOffset_t1369453676 * __this, int32_t p0, const RuntimeMethod* method);
  5109. // System.Int32 System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry>::get_Count()
  5110. #define List_1_get_Count_m1057782749(__this, method) (( int32_t (*) (List_1_t391719016 *, const RuntimeMethod*))List_1_get_Count_m2934127733_gshared)(__this, method)
  5111. // !0 System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry>::get_Item(System.Int32)
  5112. #define List_1_get_Item_m3839229424(__this, p0, method) (( GUILayoutEntry_t3214611570 * (*) (List_1_t391719016 *, int32_t, const RuntimeMethod*))List_1_get_Item_m2287542950_gshared)(__this, p0, method)
  5113. // UnityEngine.EventType UnityEngine.Event::get_rawType()
  5114. extern "C" IL2CPP_METHOD_ATTR int32_t Event_get_rawType_m2996166859 (Event_t2956885303 * __this, const RuntimeMethod* method);
  5115. // System.Void System.ArgumentException::.ctor(System.String)
  5116. extern "C" IL2CPP_METHOD_ATTR void ArgumentException__ctor_m1312628991 (ArgumentException_t132251570 * __this, String_t* p0, const RuntimeMethod* method);
  5117. // System.Void System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry>::Add(!0)
  5118. #define List_1_Add_m1634533077(__this, p0, method) (( void (*) (List_1_t391719016 *, GUILayoutEntry_t3214611570 *, const RuntimeMethod*))List_1_Add_m3338814081_gshared)(__this, p0, method)
  5119. // UnityEngine.RectOffset UnityEngine.GUIStyle::get_padding()
  5120. extern "C" IL2CPP_METHOD_ATTR RectOffset_t1369453676 * GUIStyle_get_padding_m3526264743 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method);
  5121. // System.Int32 UnityEngine.RectOffset::get_horizontal()
  5122. extern "C" IL2CPP_METHOD_ATTR int32_t RectOffset_get_horizontal_m2663785949 (RectOffset_t1369453676 * __this, const RuntimeMethod* method);
  5123. // System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry>::GetEnumerator()
  5124. #define List_1_GetEnumerator_m1934946323(__this, method) (( Enumerator_t2280962893 (*) (List_1_t391719016 *, const RuntimeMethod*))List_1_GetEnumerator_m2930774921_gshared)(__this, method)
  5125. // !0 System.Collections.Generic.List`1/Enumerator<UnityEngine.GUILayoutEntry>::get_Current()
  5126. #define Enumerator_get_Current_m2663170093(__this, method) (( GUILayoutEntry_t3214611570 * (*) (Enumerator_t2280962893 *, const RuntimeMethod*))Enumerator_get_Current_m470245444_gshared)(__this, method)
  5127. // UnityEngine.GUIStyle UnityEngine.GUILayoutUtility::get_spaceStyle()
  5128. extern "C" IL2CPP_METHOD_ATTR GUIStyle_t3956901511 * GUILayoutUtility_get_spaceStyle_m3392862907 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
  5129. // System.Int32 UnityEngine.Mathf::Min(System.Int32,System.Int32)
  5130. extern "C" IL2CPP_METHOD_ATTR int32_t Mathf_Min_m18103608 (RuntimeObject * __this /* static, unused */, int32_t p0, int32_t p1, const RuntimeMethod* method);
  5131. // System.Single UnityEngine.Mathf::Max(System.Single,System.Single)
  5132. extern "C" IL2CPP_METHOD_ATTR float Mathf_Max_m3146388979 (RuntimeObject * __this /* static, unused */, float p0, float p1, const RuntimeMethod* method);
  5133. // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.GUILayoutEntry>::MoveNext()
  5134. #define Enumerator_MoveNext_m2324433341(__this, method) (( bool (*) (Enumerator_t2280962893 *, const RuntimeMethod*))Enumerator_MoveNext_m2142368520_gshared)(__this, method)
  5135. // System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.GUILayoutEntry>::Dispose()
  5136. #define Enumerator_Dispose_m3494652212(__this, method) (( void (*) (Enumerator_t2280962893 *, const RuntimeMethod*))Enumerator_Dispose_m3007748546_gshared)(__this, method)
  5137. // System.Int32 UnityEngine.Mathf::Max(System.Int32,System.Int32)
  5138. extern "C" IL2CPP_METHOD_ATTR int32_t Mathf_Max_m3673002171 (RuntimeObject * __this /* static, unused */, int32_t p0, int32_t p1, const RuntimeMethod* method);
  5139. // System.Void UnityEngine.GUILayoutEntry::SetHorizontal(System.Single,System.Single)
  5140. extern "C" IL2CPP_METHOD_ATTR void GUILayoutEntry_SetHorizontal_m3919283295 (GUILayoutEntry_t3214611570 * __this, float ___x0, float ___width1, const RuntimeMethod* method);
  5141. // System.Single UnityEngine.Mathf::Clamp(System.Single,System.Single,System.Single)
  5142. extern "C" IL2CPP_METHOD_ATTR float Mathf_Clamp_m3350697880 (RuntimeObject * __this /* static, unused */, float p0, float p1, float p2, const RuntimeMethod* method);
  5143. // System.Single UnityEngine.Mathf::Lerp(System.Single,System.Single,System.Single)
  5144. extern "C" IL2CPP_METHOD_ATTR float Mathf_Lerp_m1004423579 (RuntimeObject * __this /* static, unused */, float p0, float p1, float p2, const RuntimeMethod* method);
  5145. // System.Int32 UnityEngine.RectOffset::get_vertical()
  5146. extern "C" IL2CPP_METHOD_ATTR int32_t RectOffset_get_vertical_m2029961580 (RectOffset_t1369453676 * __this, const RuntimeMethod* method);
  5147. // System.Void UnityEngine.GUILayoutEntry::SetVertical(System.Single,System.Single)
  5148. extern "C" IL2CPP_METHOD_ATTR void GUILayoutEntry_SetVertical_m1089980778 (GUILayoutEntry_t3214611570 * __this, float ___y0, float ___height1, const RuntimeMethod* method);
  5149. // System.String UnityEngine.GUILayoutEntry::ToString()
  5150. extern "C" IL2CPP_METHOD_ATTR String_t* GUILayoutEntry_ToString_m3366663569 (GUILayoutEntry_t3214611570 * __this, const RuntimeMethod* method);
  5151. // System.String System.String::Concat(System.String,System.String,System.String)
  5152. extern "C" IL2CPP_METHOD_ATTR String_t* String_Concat_m3755062657 (RuntimeObject * __this /* static, unused */, String_t* p0, String_t* p1, String_t* p2, const RuntimeMethod* method);
  5153. // System.Void UnityEngine.GUILayoutUtility::INTERNAL_CALL_Internal_GetWindowRect(System.Int32,UnityEngine.Rect&)
  5154. extern "C" IL2CPP_METHOD_ATTR void GUILayoutUtility_INTERNAL_CALL_Internal_GetWindowRect_m2348654813 (RuntimeObject * __this /* static, unused */, int32_t ___windowID0, Rect_t2360479859 * ___value1, const RuntimeMethod* method);
  5155. // System.Void UnityEngine.GUILayoutUtility::INTERNAL_CALL_Internal_MoveWindow(System.Int32,UnityEngine.Rect&)
  5156. extern "C" IL2CPP_METHOD_ATTR void GUILayoutUtility_INTERNAL_CALL_Internal_MoveWindow_m2976690564 (RuntimeObject * __this /* static, unused */, int32_t ___windowID0, Rect_t2360479859 * ___r1, const RuntimeMethod* method);
  5157. // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.GUILayoutUtility/LayoutCache>::TryGetValue(!0,!1&)
  5158. #define Dictionary_2_TryGetValue_m4148288222(__this, p0, p1, method) (( bool (*) (Dictionary_2_t3261990503 *, int32_t, LayoutCache_t78309876 **, const RuntimeMethod*))Dictionary_2_TryGetValue_m3411363121_gshared)(__this, p0, p1, method)
  5159. // System.Void UnityEngine.GUILayoutUtility/LayoutCache::.ctor()
  5160. extern "C" IL2CPP_METHOD_ATTR void LayoutCache__ctor_m3885940174 (LayoutCache_t78309876 * __this, const RuntimeMethod* method);
  5161. // System.Void System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.GUILayoutUtility/LayoutCache>::set_Item(!0,!1)
  5162. #define Dictionary_2_set_Item_m2818144(__this, p0, p1, method) (( void (*) (Dictionary_2_t3261990503 *, int32_t, LayoutCache_t78309876 *, const RuntimeMethod*))Dictionary_2_set_Item_m3327106492_gshared)(__this, p0, p1, method)
  5163. // System.Void UnityEngine.GUILayoutGroup::.ctor()
  5164. extern "C" IL2CPP_METHOD_ATTR void GUILayoutGroup__ctor_m3245996524 (GUILayoutGroup_t2157789695 * __this, const RuntimeMethod* method);
  5165. // System.Int32 UnityEngine.Screen::get_width()
  5166. extern "C" IL2CPP_METHOD_ATTR int32_t Screen_get_width_m345039817 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
  5167. // System.Single UnityEngine.GUIUtility::get_pixelsPerPoint()
  5168. extern "C" IL2CPP_METHOD_ATTR float GUIUtility_get_pixelsPerPoint_m2369948084 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
  5169. // System.Single UnityEngine.Mathf::Min(System.Single,System.Single)
  5170. extern "C" IL2CPP_METHOD_ATTR float Mathf_Min_m1073399594 (RuntimeObject * __this /* static, unused */, float p0, float p1, const RuntimeMethod* method);
  5171. // System.Int32 UnityEngine.Screen::get_height()
  5172. extern "C" IL2CPP_METHOD_ATTR int32_t Screen_get_height_m1623532518 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
  5173. // System.Void UnityEngine.GUILayoutUtility::LayoutFreeGroup(UnityEngine.GUILayoutGroup)
  5174. extern "C" IL2CPP_METHOD_ATTR void GUILayoutUtility_LayoutFreeGroup_m2955697397 (RuntimeObject * __this /* static, unused */, GUILayoutGroup_t2157789695 * ___toplevel0, const RuntimeMethod* method);
  5175. // System.Void UnityEngine.GUILayoutUtility::LayoutSingleGroup(UnityEngine.GUILayoutGroup)
  5176. extern "C" IL2CPP_METHOD_ATTR void GUILayoutUtility_LayoutSingleGroup_m700786689 (RuntimeObject * __this /* static, unused */, GUILayoutGroup_t2157789695 * ___i0, const RuntimeMethod* method);
  5177. // System.Void UnityEngine.GUILayoutGroup::ResetCursor()
  5178. extern "C" IL2CPP_METHOD_ATTR void GUILayoutGroup_ResetCursor_m672314614 (GUILayoutGroup_t2157789695 * __this, const RuntimeMethod* method);
  5179. // UnityEngine.Rect UnityEngine.GUILayoutUtility::Internal_GetWindowRect(System.Int32)
  5180. extern "C" IL2CPP_METHOD_ATTR Rect_t2360479859 GUILayoutUtility_Internal_GetWindowRect_m2131267775 (RuntimeObject * __this /* static, unused */, int32_t ___windowID0, const RuntimeMethod* method);
  5181. // System.Single UnityEngine.Rect::get_width()
  5182. extern "C" IL2CPP_METHOD_ATTR float Rect_get_width_m3421484486 (Rect_t2360479859 * __this, const RuntimeMethod* method);
  5183. // System.Single UnityEngine.Rect::get_height()
  5184. extern "C" IL2CPP_METHOD_ATTR float Rect_get_height_m1358425599 (Rect_t2360479859 * __this, const RuntimeMethod* method);
  5185. // System.Void UnityEngine.GUILayoutUtility::Internal_MoveWindow(System.Int32,UnityEngine.Rect)
  5186. extern "C" IL2CPP_METHOD_ATTR void GUILayoutUtility_Internal_MoveWindow_m3463958180 (RuntimeObject * __this /* static, unused */, int32_t ___windowID0, Rect_t2360479859 ___r1, const RuntimeMethod* method);
  5187. // UnityEngine.Rect UnityEngine.GUILayoutUtility::DoGetRect(UnityEngine.GUIContent,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])
  5188. extern "C" IL2CPP_METHOD_ATTR Rect_t2360479859 GUILayoutUtility_DoGetRect_m3125143831 (RuntimeObject * __this /* static, unused */, GUIContent_t3050628031 * ___content0, GUIStyle_t3956901511 * ___style1, GUILayoutOptionU5BU5D_t2510215842* ___options2, const RuntimeMethod* method);
  5189. // System.Boolean UnityEngine.GUIStyle::get_isHeightDependantOnWidth()
  5190. extern "C" IL2CPP_METHOD_ATTR bool GUIStyle_get_isHeightDependantOnWidth_m2062056154 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method);
  5191. // System.Void UnityEngine.GUIWordWrapSizer::.ctor(UnityEngine.GUIStyle,UnityEngine.GUIContent,UnityEngine.GUILayoutOption[])
  5192. extern "C" IL2CPP_METHOD_ATTR void GUIWordWrapSizer__ctor_m3789151557 (GUIWordWrapSizer_t2043268473 * __this, GUIStyle_t3956901511 * ___style0, GUIContent_t3050628031 * ___content1, GUILayoutOptionU5BU5D_t2510215842* ___options2, const RuntimeMethod* method);
  5193. // System.Void UnityEngine.GUILayoutGroup::Add(UnityEngine.GUILayoutEntry)
  5194. extern "C" IL2CPP_METHOD_ATTR void GUILayoutGroup_Add_m1933515568 (GUILayoutGroup_t2157789695 * __this, GUILayoutEntry_t3214611570 * ___e0, const RuntimeMethod* method);
  5195. // System.Void UnityEngine.Vector2::.ctor(System.Single,System.Single)
  5196. extern "C" IL2CPP_METHOD_ATTR void Vector2__ctor_m3970636864 (Vector2_t2156229523 * __this, float p0, float p1, const RuntimeMethod* method);
  5197. // UnityEngine.Vector2 UnityEngine.GUIStyle::CalcSizeWithConstraints(UnityEngine.GUIContent,UnityEngine.Vector2)
  5198. extern "C" IL2CPP_METHOD_ATTR Vector2_t2156229523 GUIStyle_CalcSizeWithConstraints_m3847734790 (GUIStyle_t3956901511 * __this, GUIContent_t3050628031 * ___content0, Vector2_t2156229523 ___constraints1, const RuntimeMethod* method);
  5199. // System.Void UnityEngine.GUILayoutEntry::.ctor(System.Single,System.Single,System.Single,System.Single,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])
  5200. extern "C" IL2CPP_METHOD_ATTR void GUILayoutEntry__ctor_m1644640309 (GUILayoutEntry_t3214611570 * __this, float ____minWidth0, float ____maxWidth1, float ____minHeight2, float ____maxHeight3, GUIStyle_t3956901511 * ____style4, GUILayoutOptionU5BU5D_t2510215842* ___options5, const RuntimeMethod* method);
  5201. // UnityEngine.GUILayoutEntry UnityEngine.GUILayoutGroup::GetNext()
  5202. extern "C" IL2CPP_METHOD_ATTR GUILayoutEntry_t3214611570 * GUILayoutGroup_GetNext_m4171972759 (GUILayoutGroup_t2157789695 * __this, const RuntimeMethod* method);
  5203. // System.Void UnityEngine.GUIStyle::.ctor()
  5204. extern "C" IL2CPP_METHOD_ATTR void GUIStyle__ctor_m4038363858 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method);
  5205. // System.Void UnityEngine.GUIStyle::set_stretchWidth(System.Boolean)
  5206. extern "C" IL2CPP_METHOD_ATTR void GUIStyle_set_stretchWidth_m2564034386 (GUIStyle_t3956901511 * __this, bool ___value0, const RuntimeMethod* method);
  5207. // System.Void System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.GUILayoutUtility/LayoutCache>::.ctor()
  5208. #define Dictionary_2__ctor_m610848861(__this, method) (( void (*) (Dictionary_2_t3261990503 *, const RuntimeMethod*))Dictionary_2__ctor_m2601736566_gshared)(__this, method)
  5209. // System.Void UnityEngine.GUILayoutGroup::CalcWidth()
  5210. extern "C" IL2CPP_METHOD_ATTR void GUILayoutGroup_CalcWidth_m1389741370 (GUILayoutGroup_t2157789695 * __this, const RuntimeMethod* method);
  5211. // System.Void UnityEngine.GUILayoutGroup::SetHorizontal(System.Single,System.Single)
  5212. extern "C" IL2CPP_METHOD_ATTR void GUILayoutGroup_SetHorizontal_m996475327 (GUILayoutGroup_t2157789695 * __this, float ___x0, float ___width1, const RuntimeMethod* method);
  5213. // System.Void UnityEngine.GUILayoutGroup::CalcHeight()
  5214. extern "C" IL2CPP_METHOD_ATTR void GUILayoutGroup_CalcHeight_m1669391299 (GUILayoutGroup_t2157789695 * __this, const RuntimeMethod* method);
  5215. // System.Void UnityEngine.GUILayoutGroup::SetVertical(System.Single,System.Single)
  5216. extern "C" IL2CPP_METHOD_ATTR void GUILayoutGroup_SetVertical_m2446642182 (GUILayoutGroup_t2157789695 * __this, float ___y0, float ___height1, const RuntimeMethod* method);
  5217. // UnityEngine.Color UnityEngine.Color::get_white()
  5218. extern "C" IL2CPP_METHOD_ATTR Color_t2555686324 Color_get_white_m332174077 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
  5219. // System.Void UnityEngine.Color::.ctor(System.Single,System.Single,System.Single)
  5220. extern "C" IL2CPP_METHOD_ATTR void Color__ctor_m286683560 (Color_t2555686324 * __this, float p0, float p1, float p2, const RuntimeMethod* method);
  5221. // System.Void UnityEngine.GUISettings::.ctor()
  5222. extern "C" IL2CPP_METHOD_ATTR void GUISettings__ctor_m2761652600 (GUISettings_t1774757634 * __this, const RuntimeMethod* method);
  5223. // System.Void UnityEngine.ScriptableObject::.ctor()
  5224. extern "C" IL2CPP_METHOD_ATTR void ScriptableObject__ctor_m1310743131 (ScriptableObject_t2528358522 * __this, const RuntimeMethod* method);
  5225. // UnityEngine.Font UnityEngine.GUISkin::get_font()
  5226. extern "C" IL2CPP_METHOD_ATTR Font_t1956802104 * GUISkin_get_font_m3937910082 (GUISkin_t1244372282 * __this, const RuntimeMethod* method);
  5227. // System.Void UnityEngine.GUIStyle::SetDefaultFont(UnityEngine.Font)
  5228. extern "C" IL2CPP_METHOD_ATTR void GUIStyle_SetDefaultFont_m1581452579 (RuntimeObject * __this /* static, unused */, Font_t1956802104 * ___font0, const RuntimeMethod* method);
  5229. // System.Void UnityEngine.GUISkin/SkinChangedDelegate::Invoke()
  5230. extern "C" IL2CPP_METHOD_ATTR void SkinChangedDelegate_Invoke_m3627689407 (SkinChangedDelegate_t1143955295 * __this, const RuntimeMethod* method);
  5231. // System.Void UnityEngine.GUIStyle::Init()
  5232. extern "C" IL2CPP_METHOD_ATTR void GUIStyle_Init_m3558067362 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method);
  5233. // System.Void UnityEngine.GUIStyle::INTERNAL_CALL_GetRectOffsetPtr(UnityEngine.GUIStyle,System.Int32,System.IntPtr&)
  5234. extern "C" IL2CPP_METHOD_ATTR void GUIStyle_INTERNAL_CALL_GetRectOffsetPtr_m152975056 (RuntimeObject * __this /* static, unused */, GUIStyle_t3956901511 * ___self0, int32_t ___idx1, intptr_t* ___value2, const RuntimeMethod* method);
  5235. // System.Void UnityEngine.GUIStyle::INTERNAL_CALL_Internal_CalcSizeWithConstraints(System.IntPtr,UnityEngine.GUIContent,UnityEngine.Vector2&,UnityEngine.Vector2&)
  5236. extern "C" IL2CPP_METHOD_ATTR void GUIStyle_INTERNAL_CALL_Internal_CalcSizeWithConstraints_m2830618198 (RuntimeObject * __this /* static, unused */, intptr_t ___target0, GUIContent_t3050628031 * ___content1, Vector2_t2156229523 * ___maxSize2, Vector2_t2156229523 * ___ret3, const RuntimeMethod* method);
  5237. // System.Void UnityEngine.GUIStyle::Cleanup()
  5238. extern "C" IL2CPP_METHOD_ATTR void GUIStyle_Cleanup_m3602061751 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method);
  5239. // System.IntPtr UnityEngine.GUIStyle::GetRectOffsetPtr(System.Int32)
  5240. extern "C" IL2CPP_METHOD_ATTR intptr_t GUIStyle_GetRectOffsetPtr_m2881421249 (GUIStyle_t3956901511 * __this, int32_t ___idx0, const RuntimeMethod* method);
  5241. // System.Void UnityEngine.RectOffset::.ctor(System.Object,System.IntPtr)
  5242. extern "C" IL2CPP_METHOD_ATTR void RectOffset__ctor_m2718275157 (RectOffset_t1369453676 * __this, RuntimeObject * p0, intptr_t p1, const RuntimeMethod* method);
  5243. // System.Void UnityEngine.GUIStyle::Internal_CalcSizeWithConstraints(System.IntPtr,UnityEngine.GUIContent,UnityEngine.Vector2,UnityEngine.Vector2&)
  5244. extern "C" IL2CPP_METHOD_ATTR void GUIStyle_Internal_CalcSizeWithConstraints_m2170360553 (RuntimeObject * __this /* static, unused */, intptr_t ___target0, GUIContent_t3050628031 * ___content1, Vector2_t2156229523 ___maxSize2, Vector2_t2156229523 * ___ret3, const RuntimeMethod* method);
  5245. // System.Single UnityEngine.GUIStyle::Internal_CalcHeight(System.IntPtr,UnityEngine.GUIContent,System.Single)
  5246. extern "C" IL2CPP_METHOD_ATTR float GUIStyle_Internal_CalcHeight_m446125850 (RuntimeObject * __this /* static, unused */, intptr_t ___target0, GUIContent_t3050628031 * ___content1, float ___width2, const RuntimeMethod* method);
  5247. // System.Boolean UnityEngine.GUIStyle::get_wordWrap()
  5248. extern "C" IL2CPP_METHOD_ATTR bool GUIStyle_get_wordWrap_m1603285441 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method);
  5249. // UnityEngine.ImagePosition UnityEngine.GUIStyle::get_imagePosition()
  5250. extern "C" IL2CPP_METHOD_ATTR int32_t GUIStyle_get_imagePosition_m2258358513 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method);
  5251. // System.Void UnityEngine.GUIStyle::Internal_CalcMinMaxWidth(System.IntPtr,UnityEngine.GUIContent,System.Single&,System.Single&)
  5252. extern "C" IL2CPP_METHOD_ATTR void GUIStyle_Internal_CalcMinMaxWidth_m1461639539 (RuntimeObject * __this /* static, unused */, intptr_t ___target0, GUIContent_t3050628031 * ___content1, float* ___minWidth2, float* ___maxWidth3, const RuntimeMethod* method);
  5253. // System.Void UnityEngine.GUIStyleState::Init()
  5254. extern "C" IL2CPP_METHOD_ATTR void GUIStyleState_Init_m3047380323 (GUIStyleState_t1397964415 * __this, const RuntimeMethod* method);
  5255. // System.Void UnityEngine.GUIStyleState::Cleanup()
  5256. extern "C" IL2CPP_METHOD_ATTR void GUIStyleState_Cleanup_m696329069 (GUIStyleState_t1397964415 * __this, const RuntimeMethod* method);
  5257. // System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags)
  5258. extern "C" IL2CPP_METHOD_ATTR MethodInfo_t * Type_GetMethod_m1197120913 (Type_t * __this, String_t* p0, int32_t p1, const RuntimeMethod* method);
  5259. // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
  5260. extern "C" IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m1620074514 (RuntimeObject * __this /* static, unused */, RuntimeTypeHandle_t3027515415 p0, const RuntimeMethod* method);
  5261. // System.Single UnityEngine.GUIUtility::Internal_GetPixelsPerPoint()
  5262. extern "C" IL2CPP_METHOD_ATTR float GUIUtility_Internal_GetPixelsPerPoint_m290411053 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
  5263. // System.Void System.Action::Invoke()
  5264. extern "C" IL2CPP_METHOD_ATTR void Action_Invoke_m937035532 (Action_t1264377477 * __this, const RuntimeMethod* method);
  5265. // UnityEngine.GUISkin UnityEngine.GUIUtility::Internal_GetDefaultSkin(System.Int32)
  5266. extern "C" IL2CPP_METHOD_ATTR GUISkin_t1244372282 * GUIUtility_Internal_GetDefaultSkin_m2977444868 (RuntimeObject * __this /* static, unused */, int32_t ___skinMode0, const RuntimeMethod* method);
  5267. // !2 System.Func`3<System.Int32,System.IntPtr,System.Boolean>::Invoke(!0,!1)
  5268. #define Func_3_Invoke_m4134091626(__this, p0, p1, method) (( bool (*) (Func_3_t4119323734 *, int32_t, intptr_t, const RuntimeMethod*))Func_3_Invoke_m4134091626_gshared)(__this, p0, p1, method)
  5269. // System.Void UnityEngine.GUIUtility::ResetGlobalState()
  5270. extern "C" IL2CPP_METHOD_ATTR void GUIUtility_ResetGlobalState_m2426294461 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
  5271. // System.Void UnityEngine.GUILayoutUtility::Begin(System.Int32)
  5272. extern "C" IL2CPP_METHOD_ATTR void GUILayoutUtility_Begin_m1358735224 (RuntimeObject * __this /* static, unused */, int32_t ___instanceID0, const RuntimeMethod* method);
  5273. // System.Void UnityEngine.GUILayoutUtility::LayoutFromEditorWindow()
  5274. extern "C" IL2CPP_METHOD_ATTR void GUILayoutUtility_LayoutFromEditorWindow_m2914699782 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
  5275. // System.Void UnityEngine.GUIContent::ClearStaticCache()
  5276. extern "C" IL2CPP_METHOD_ATTR void GUIContent_ClearStaticCache_m1205116045 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
  5277. // System.Void UnityEngine.GUIUtility::Internal_ExitGUI()
  5278. extern "C" IL2CPP_METHOD_ATTR void GUIUtility_Internal_ExitGUI_m273923508 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
  5279. // System.Boolean UnityEngine.GUIUtility::ShouldRethrowException(System.Exception)
  5280. extern "C" IL2CPP_METHOD_ATTR bool GUIUtility_ShouldRethrowException_m1544932394 (RuntimeObject * __this /* static, unused */, Exception_t * ___exception0, const RuntimeMethod* method);
  5281. // !1 System.Func`2<System.Exception,System.Boolean>::Invoke(!0)
  5282. #define Func_2_Invoke_m2401667781(__this, p0, method) (( bool (*) (Func_2_t3450341358 *, Exception_t *, const RuntimeMethod*))Func_2_Invoke_m1574203759_gshared)(__this, p0, method)
  5283. // System.Void UnityEngine.GUIUtility::set_guiIsExiting(System.Boolean)
  5284. extern "C" IL2CPP_METHOD_ATTR void GUIUtility_set_guiIsExiting_m1558910088 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method);
  5285. // System.Void UnityEngine.GUI::set_changed(System.Boolean)
  5286. extern "C" IL2CPP_METHOD_ATTR void GUI_set_changed_m535954674 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method);
  5287. // System.Exception System.Exception::get_InnerException()
  5288. extern "C" IL2CPP_METHOD_ATTR Exception_t * Exception_get_InnerException_m3836775 (Exception_t * __this, const RuntimeMethod* method);
  5289. // System.Boolean UnityEngine.GUIUtility::IsExitGUIException(System.Exception)
  5290. extern "C" IL2CPP_METHOD_ATTR bool GUIUtility_IsExitGUIException_m3644066650 (RuntimeObject * __this /* static, unused */, Exception_t * ___exception0, const RuntimeMethod* method);
  5291. // System.Int32 UnityEngine.GUIUtility::Internal_GetGUIDepth()
  5292. extern "C" IL2CPP_METHOD_ATTR int32_t GUIUtility_Internal_GetGUIDepth_m1169824684 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
  5293. // UnityEngine.Vector2 UnityEngine.Vector2::get_zero()
  5294. extern "C" IL2CPP_METHOD_ATTR Vector2_t2156229523 Vector2_get_zero_m540426400 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
  5295. // System.Void UnityEngine.GUIContent::.ctor(UnityEngine.GUIContent)
  5296. extern "C" IL2CPP_METHOD_ATTR void GUIContent__ctor_m476350501 (GUIContent_t3050628031 * __this, GUIContent_t3050628031 * ___src0, const RuntimeMethod* method);
  5297. // System.Void UnityEngine.GUIStyle::CalcMinMaxWidth(UnityEngine.GUIContent,System.Single&,System.Single&)
  5298. extern "C" IL2CPP_METHOD_ATTR void GUIStyle_CalcMinMaxWidth_m999727240 (GUIStyle_t3956901511 * __this, GUIContent_t3050628031 * ___content0, float* ___minWidth1, float* ___maxWidth2, const RuntimeMethod* method);
  5299. // System.Single UnityEngine.GUIStyle::CalcHeight(UnityEngine.GUIContent,System.Single)
  5300. extern "C" IL2CPP_METHOD_ATTR float GUIStyle_CalcHeight_m1341687357 (GUIStyle_t3956901511 * __this, GUIContent_t3050628031 * ___content0, float ___width1, const RuntimeMethod* method);
  5301. #ifdef __clang__
  5302. #pragma clang diagnostic push
  5303. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5304. #pragma clang diagnostic ignored "-Wunused-variable"
  5305. #endif
  5306. #ifdef __clang__
  5307. #pragma clang diagnostic pop
  5308. #endif
  5309. #ifdef __clang__
  5310. #pragma clang diagnostic push
  5311. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5312. #pragma clang diagnostic ignored "-Wunused-variable"
  5313. #endif
  5314. // Conversion methods for marshalling of: UnityEngine.Event
  5315. extern "C" void Event_t2956885303_marshal_pinvoke(const Event_t2956885303& unmarshaled, Event_t2956885303_marshaled_pinvoke& marshaled)
  5316. {
  5317. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  5318. }
  5319. extern "C" void Event_t2956885303_marshal_pinvoke_back(const Event_t2956885303_marshaled_pinvoke& marshaled, Event_t2956885303& unmarshaled)
  5320. {
  5321. intptr_t unmarshaled_m_Ptr_temp_0;
  5322. memset(&unmarshaled_m_Ptr_temp_0, 0, sizeof(unmarshaled_m_Ptr_temp_0));
  5323. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  5324. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  5325. }
  5326. // Conversion method for clean up from marshalling of: UnityEngine.Event
  5327. extern "C" void Event_t2956885303_marshal_pinvoke_cleanup(Event_t2956885303_marshaled_pinvoke& marshaled)
  5328. {
  5329. }
  5330. // Conversion methods for marshalling of: UnityEngine.Event
  5331. extern "C" void Event_t2956885303_marshal_com(const Event_t2956885303& unmarshaled, Event_t2956885303_marshaled_com& marshaled)
  5332. {
  5333. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  5334. }
  5335. extern "C" void Event_t2956885303_marshal_com_back(const Event_t2956885303_marshaled_com& marshaled, Event_t2956885303& unmarshaled)
  5336. {
  5337. intptr_t unmarshaled_m_Ptr_temp_0;
  5338. memset(&unmarshaled_m_Ptr_temp_0, 0, sizeof(unmarshaled_m_Ptr_temp_0));
  5339. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  5340. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  5341. }
  5342. // Conversion method for clean up from marshalling of: UnityEngine.Event
  5343. extern "C" void Event_t2956885303_marshal_com_cleanup(Event_t2956885303_marshaled_com& marshaled)
  5344. {
  5345. }
  5346. // System.Void UnityEngine.Event::.ctor(System.Int32)
  5347. extern "C" IL2CPP_METHOD_ATTR void Event__ctor_m526447123 (Event_t2956885303 * __this, int32_t ___displayIndex0, const RuntimeMethod* method)
  5348. {
  5349. {
  5350. Object__ctor_m297566312(__this, /*hidden argument*/NULL);
  5351. int32_t L_0 = ___displayIndex0;
  5352. Event_Init_m2830944622(__this, L_0, /*hidden argument*/NULL);
  5353. return;
  5354. }
  5355. }
  5356. // System.Void UnityEngine.Event::Init(System.Int32)
  5357. extern "C" IL2CPP_METHOD_ATTR void Event_Init_m2830944622 (Event_t2956885303 * __this, int32_t ___displayIndex0, const RuntimeMethod* method)
  5358. {
  5359. typedef void (*Event_Init_m2830944622_ftn) (Event_t2956885303 *, int32_t);
  5360. static Event_Init_m2830944622_ftn _il2cpp_icall_func;
  5361. if (!_il2cpp_icall_func)
  5362. _il2cpp_icall_func = (Event_Init_m2830944622_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Event::Init(System.Int32)");
  5363. _il2cpp_icall_func(__this, ___displayIndex0);
  5364. }
  5365. // System.Void UnityEngine.Event::Cleanup()
  5366. extern "C" IL2CPP_METHOD_ATTR void Event_Cleanup_m2477919477 (Event_t2956885303 * __this, const RuntimeMethod* method)
  5367. {
  5368. typedef void (*Event_Cleanup_m2477919477_ftn) (Event_t2956885303 *);
  5369. static Event_Cleanup_m2477919477_ftn _il2cpp_icall_func;
  5370. if (!_il2cpp_icall_func)
  5371. _il2cpp_icall_func = (Event_Cleanup_m2477919477_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Event::Cleanup()");
  5372. _il2cpp_icall_func(__this);
  5373. }
  5374. // UnityEngine.EventType UnityEngine.Event::get_rawType()
  5375. extern "C" IL2CPP_METHOD_ATTR int32_t Event_get_rawType_m2996166859 (Event_t2956885303 * __this, const RuntimeMethod* method)
  5376. {
  5377. typedef int32_t (*Event_get_rawType_m2996166859_ftn) (Event_t2956885303 *);
  5378. static Event_get_rawType_m2996166859_ftn _il2cpp_icall_func;
  5379. if (!_il2cpp_icall_func)
  5380. _il2cpp_icall_func = (Event_get_rawType_m2996166859_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Event::get_rawType()");
  5381. int32_t retVal = _il2cpp_icall_func(__this);
  5382. return retVal;
  5383. }
  5384. // UnityEngine.EventType UnityEngine.Event::get_type()
  5385. extern "C" IL2CPP_METHOD_ATTR int32_t Event_get_type_m1370041809 (Event_t2956885303 * __this, const RuntimeMethod* method)
  5386. {
  5387. typedef int32_t (*Event_get_type_m1370041809_ftn) (Event_t2956885303 *);
  5388. static Event_get_type_m1370041809_ftn _il2cpp_icall_func;
  5389. if (!_il2cpp_icall_func)
  5390. _il2cpp_icall_func = (Event_get_type_m1370041809_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Event::get_type()");
  5391. int32_t retVal = _il2cpp_icall_func(__this);
  5392. return retVal;
  5393. }
  5394. // System.Void UnityEngine.Event::Internal_GetMousePosition(UnityEngine.Vector2&)
  5395. extern "C" IL2CPP_METHOD_ATTR void Event_Internal_GetMousePosition_m1101229675 (Event_t2956885303 * __this, Vector2_t2156229523 * ___value0, const RuntimeMethod* method)
  5396. {
  5397. typedef void (*Event_Internal_GetMousePosition_m1101229675_ftn) (Event_t2956885303 *, Vector2_t2156229523 *);
  5398. static Event_Internal_GetMousePosition_m1101229675_ftn _il2cpp_icall_func;
  5399. if (!_il2cpp_icall_func)
  5400. _il2cpp_icall_func = (Event_Internal_GetMousePosition_m1101229675_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Event::Internal_GetMousePosition(UnityEngine.Vector2&)");
  5401. _il2cpp_icall_func(__this, ___value0);
  5402. }
  5403. // UnityEngine.EventModifiers UnityEngine.Event::get_modifiers()
  5404. extern "C" IL2CPP_METHOD_ATTR int32_t Event_get_modifiers_m995073384 (Event_t2956885303 * __this, const RuntimeMethod* method)
  5405. {
  5406. typedef int32_t (*Event_get_modifiers_m995073384_ftn) (Event_t2956885303 *);
  5407. static Event_get_modifiers_m995073384_ftn _il2cpp_icall_func;
  5408. if (!_il2cpp_icall_func)
  5409. _il2cpp_icall_func = (Event_get_modifiers_m995073384_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Event::get_modifiers()");
  5410. int32_t retVal = _il2cpp_icall_func(__this);
  5411. return retVal;
  5412. }
  5413. // System.Char UnityEngine.Event::get_character()
  5414. extern "C" IL2CPP_METHOD_ATTR Il2CppChar Event_get_character_m1666742088 (Event_t2956885303 * __this, const RuntimeMethod* method)
  5415. {
  5416. typedef Il2CppChar (*Event_get_character_m1666742088_ftn) (Event_t2956885303 *);
  5417. static Event_get_character_m1666742088_ftn _il2cpp_icall_func;
  5418. if (!_il2cpp_icall_func)
  5419. _il2cpp_icall_func = (Event_get_character_m1666742088_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Event::get_character()");
  5420. Il2CppChar retVal = _il2cpp_icall_func(__this);
  5421. return retVal;
  5422. }
  5423. // System.String UnityEngine.Event::get_commandName()
  5424. extern "C" IL2CPP_METHOD_ATTR String_t* Event_get_commandName_m4275147343 (Event_t2956885303 * __this, const RuntimeMethod* method)
  5425. {
  5426. typedef String_t* (*Event_get_commandName_m4275147343_ftn) (Event_t2956885303 *);
  5427. static Event_get_commandName_m4275147343_ftn _il2cpp_icall_func;
  5428. if (!_il2cpp_icall_func)
  5429. _il2cpp_icall_func = (Event_get_commandName_m4275147343_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Event::get_commandName()");
  5430. String_t* retVal = _il2cpp_icall_func(__this);
  5431. return retVal;
  5432. }
  5433. // UnityEngine.KeyCode UnityEngine.Event::get_keyCode()
  5434. extern "C" IL2CPP_METHOD_ATTR int32_t Event_get_keyCode_m1098493350 (Event_t2956885303 * __this, const RuntimeMethod* method)
  5435. {
  5436. typedef int32_t (*Event_get_keyCode_m1098493350_ftn) (Event_t2956885303 *);
  5437. static Event_get_keyCode_m1098493350_ftn _il2cpp_icall_func;
  5438. if (!_il2cpp_icall_func)
  5439. _il2cpp_icall_func = (Event_get_keyCode_m1098493350_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Event::get_keyCode()");
  5440. int32_t retVal = _il2cpp_icall_func(__this);
  5441. return retVal;
  5442. }
  5443. // System.Void UnityEngine.Event::Internal_SetNativeEvent(System.IntPtr)
  5444. extern "C" IL2CPP_METHOD_ATTR void Event_Internal_SetNativeEvent_m1397431767 (RuntimeObject * __this /* static, unused */, intptr_t ___ptr0, const RuntimeMethod* method)
  5445. {
  5446. typedef void (*Event_Internal_SetNativeEvent_m1397431767_ftn) (intptr_t);
  5447. static Event_Internal_SetNativeEvent_m1397431767_ftn _il2cpp_icall_func;
  5448. if (!_il2cpp_icall_func)
  5449. _il2cpp_icall_func = (Event_Internal_SetNativeEvent_m1397431767_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Event::Internal_SetNativeEvent(System.IntPtr)");
  5450. _il2cpp_icall_func(___ptr0);
  5451. }
  5452. // System.Void UnityEngine.Event::set_displayIndex(System.Int32)
  5453. extern "C" IL2CPP_METHOD_ATTR void Event_set_displayIndex_m1342258734 (Event_t2956885303 * __this, int32_t ___value0, const RuntimeMethod* method)
  5454. {
  5455. typedef void (*Event_set_displayIndex_m1342258734_ftn) (Event_t2956885303 *, int32_t);
  5456. static Event_set_displayIndex_m1342258734_ftn _il2cpp_icall_func;
  5457. if (!_il2cpp_icall_func)
  5458. _il2cpp_icall_func = (Event_set_displayIndex_m1342258734_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Event::set_displayIndex(System.Int32)");
  5459. _il2cpp_icall_func(__this, ___value0);
  5460. }
  5461. // System.Void UnityEngine.Event::Finalize()
  5462. extern "C" IL2CPP_METHOD_ATTR void Event_Finalize_m2235592665 (Event_t2956885303 * __this, const RuntimeMethod* method)
  5463. {
  5464. Exception_t * __last_unhandled_exception = 0;
  5465. NO_UNUSED_WARNING (__last_unhandled_exception);
  5466. Exception_t * __exception_local = 0;
  5467. NO_UNUSED_WARNING (__exception_local);
  5468. int32_t __leave_target = 0;
  5469. NO_UNUSED_WARNING (__leave_target);
  5470. {
  5471. }
  5472. IL_0001:
  5473. try
  5474. { // begin try (depth: 1)
  5475. Event_Cleanup_m2477919477(__this, /*hidden argument*/NULL);
  5476. IL2CPP_LEAVE(0x13, FINALLY_000c);
  5477. } // end try (depth: 1)
  5478. catch(Il2CppExceptionWrapper& e)
  5479. {
  5480. __last_unhandled_exception = (Exception_t *)e.ex;
  5481. goto FINALLY_000c;
  5482. }
  5483. FINALLY_000c:
  5484. { // begin finally (depth: 1)
  5485. Object_Finalize_m3076187857(__this, /*hidden argument*/NULL);
  5486. IL2CPP_END_FINALLY(12)
  5487. } // end finally (depth: 1)
  5488. IL2CPP_CLEANUP(12)
  5489. {
  5490. IL2CPP_JUMP_TBL(0x13, IL_0013)
  5491. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  5492. }
  5493. IL_0013:
  5494. {
  5495. return;
  5496. }
  5497. }
  5498. // UnityEngine.Vector2 UnityEngine.Event::get_mousePosition()
  5499. extern "C" IL2CPP_METHOD_ATTR Vector2_t2156229523 Event_get_mousePosition_m733809635 (Event_t2956885303 * __this, const RuntimeMethod* method)
  5500. {
  5501. Vector2_t2156229523 V_0;
  5502. memset(&V_0, 0, sizeof(V_0));
  5503. Vector2_t2156229523 V_1;
  5504. memset(&V_1, 0, sizeof(V_1));
  5505. {
  5506. Event_Internal_GetMousePosition_m1101229675(__this, (&V_0), /*hidden argument*/NULL);
  5507. Vector2_t2156229523 L_0 = V_0;
  5508. V_1 = L_0;
  5509. goto IL_0010;
  5510. }
  5511. IL_0010:
  5512. {
  5513. Vector2_t2156229523 L_1 = V_1;
  5514. return L_1;
  5515. }
  5516. }
  5517. // UnityEngine.Event UnityEngine.Event::get_current()
  5518. extern "C" IL2CPP_METHOD_ATTR Event_t2956885303 * Event_get_current_m2393892120 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  5519. {
  5520. static bool s_Il2CppMethodInitialized;
  5521. if (!s_Il2CppMethodInitialized)
  5522. {
  5523. il2cpp_codegen_initialize_method (Event_get_current_m2393892120_MetadataUsageId);
  5524. s_Il2CppMethodInitialized = true;
  5525. }
  5526. Event_t2956885303 * V_0 = NULL;
  5527. {
  5528. Event_t2956885303 * L_0 = ((Event_t2956885303_StaticFields*)il2cpp_codegen_static_fields_for(Event_t2956885303_il2cpp_TypeInfo_var))->get_s_Current_1();
  5529. V_0 = L_0;
  5530. goto IL_000c;
  5531. }
  5532. IL_000c:
  5533. {
  5534. Event_t2956885303 * L_1 = V_0;
  5535. return L_1;
  5536. }
  5537. }
  5538. // System.Void UnityEngine.Event::Internal_MakeMasterEventCurrent(System.Int32)
  5539. extern "C" IL2CPP_METHOD_ATTR void Event_Internal_MakeMasterEventCurrent_m112421958 (RuntimeObject * __this /* static, unused */, int32_t ___displayIndex0, const RuntimeMethod* method)
  5540. {
  5541. static bool s_Il2CppMethodInitialized;
  5542. if (!s_Il2CppMethodInitialized)
  5543. {
  5544. il2cpp_codegen_initialize_method (Event_Internal_MakeMasterEventCurrent_m112421958_MetadataUsageId);
  5545. s_Il2CppMethodInitialized = true;
  5546. }
  5547. {
  5548. Event_t2956885303 * L_0 = ((Event_t2956885303_StaticFields*)il2cpp_codegen_static_fields_for(Event_t2956885303_il2cpp_TypeInfo_var))->get_s_MasterEvent_2();
  5549. if (L_0)
  5550. {
  5551. goto IL_0016;
  5552. }
  5553. }
  5554. {
  5555. int32_t L_1 = ___displayIndex0;
  5556. Event_t2956885303 * L_2 = (Event_t2956885303 *)il2cpp_codegen_object_new(Event_t2956885303_il2cpp_TypeInfo_var);
  5557. Event__ctor_m526447123(L_2, L_1, /*hidden argument*/NULL);
  5558. ((Event_t2956885303_StaticFields*)il2cpp_codegen_static_fields_for(Event_t2956885303_il2cpp_TypeInfo_var))->set_s_MasterEvent_2(L_2);
  5559. }
  5560. IL_0016:
  5561. {
  5562. Event_t2956885303 * L_3 = ((Event_t2956885303_StaticFields*)il2cpp_codegen_static_fields_for(Event_t2956885303_il2cpp_TypeInfo_var))->get_s_MasterEvent_2();
  5563. int32_t L_4 = ___displayIndex0;
  5564. NullCheck(L_3);
  5565. Event_set_displayIndex_m1342258734(L_3, L_4, /*hidden argument*/NULL);
  5566. Event_t2956885303 * L_5 = ((Event_t2956885303_StaticFields*)il2cpp_codegen_static_fields_for(Event_t2956885303_il2cpp_TypeInfo_var))->get_s_MasterEvent_2();
  5567. ((Event_t2956885303_StaticFields*)il2cpp_codegen_static_fields_for(Event_t2956885303_il2cpp_TypeInfo_var))->set_s_Current_1(L_5);
  5568. Event_t2956885303 * L_6 = ((Event_t2956885303_StaticFields*)il2cpp_codegen_static_fields_for(Event_t2956885303_il2cpp_TypeInfo_var))->get_s_MasterEvent_2();
  5569. NullCheck(L_6);
  5570. intptr_t L_7 = L_6->get_m_Ptr_0();
  5571. Event_Internal_SetNativeEvent_m1397431767(NULL /*static, unused*/, L_7, /*hidden argument*/NULL);
  5572. return;
  5573. }
  5574. }
  5575. // System.Boolean UnityEngine.Event::get_isKey()
  5576. extern "C" IL2CPP_METHOD_ATTR bool Event_get_isKey_m1703963445 (Event_t2956885303 * __this, const RuntimeMethod* method)
  5577. {
  5578. int32_t V_0 = 0;
  5579. bool V_1 = false;
  5580. int32_t G_B3_0 = 0;
  5581. {
  5582. int32_t L_0 = Event_get_type_m1370041809(__this, /*hidden argument*/NULL);
  5583. V_0 = L_0;
  5584. int32_t L_1 = V_0;
  5585. if ((((int32_t)L_1) == ((int32_t)4)))
  5586. {
  5587. goto IL_0015;
  5588. }
  5589. }
  5590. {
  5591. int32_t L_2 = V_0;
  5592. G_B3_0 = ((((int32_t)L_2) == ((int32_t)5))? 1 : 0);
  5593. goto IL_0016;
  5594. }
  5595. IL_0015:
  5596. {
  5597. G_B3_0 = 1;
  5598. }
  5599. IL_0016:
  5600. {
  5601. V_1 = (bool)G_B3_0;
  5602. goto IL_001c;
  5603. }
  5604. IL_001c:
  5605. {
  5606. bool L_3 = V_1;
  5607. return L_3;
  5608. }
  5609. }
  5610. // System.Boolean UnityEngine.Event::get_isMouse()
  5611. extern "C" IL2CPP_METHOD_ATTR bool Event_get_isMouse_m1058251071 (Event_t2956885303 * __this, const RuntimeMethod* method)
  5612. {
  5613. int32_t V_0 = 0;
  5614. bool V_1 = false;
  5615. int32_t G_B8_0 = 0;
  5616. {
  5617. int32_t L_0 = Event_get_type_m1370041809(__this, /*hidden argument*/NULL);
  5618. V_0 = L_0;
  5619. int32_t L_1 = V_0;
  5620. if ((((int32_t)L_1) == ((int32_t)2)))
  5621. {
  5622. goto IL_003a;
  5623. }
  5624. }
  5625. {
  5626. int32_t L_2 = V_0;
  5627. if (!L_2)
  5628. {
  5629. goto IL_003a;
  5630. }
  5631. }
  5632. {
  5633. int32_t L_3 = V_0;
  5634. if ((((int32_t)L_3) == ((int32_t)1)))
  5635. {
  5636. goto IL_003a;
  5637. }
  5638. }
  5639. {
  5640. int32_t L_4 = V_0;
  5641. if ((((int32_t)L_4) == ((int32_t)3)))
  5642. {
  5643. goto IL_003a;
  5644. }
  5645. }
  5646. {
  5647. int32_t L_5 = V_0;
  5648. if ((((int32_t)L_5) == ((int32_t)((int32_t)16))))
  5649. {
  5650. goto IL_003a;
  5651. }
  5652. }
  5653. {
  5654. int32_t L_6 = V_0;
  5655. if ((((int32_t)L_6) == ((int32_t)((int32_t)20))))
  5656. {
  5657. goto IL_003a;
  5658. }
  5659. }
  5660. {
  5661. int32_t L_7 = V_0;
  5662. G_B8_0 = ((((int32_t)L_7) == ((int32_t)((int32_t)21)))? 1 : 0);
  5663. goto IL_003b;
  5664. }
  5665. IL_003a:
  5666. {
  5667. G_B8_0 = 1;
  5668. }
  5669. IL_003b:
  5670. {
  5671. V_1 = (bool)G_B8_0;
  5672. goto IL_0041;
  5673. }
  5674. IL_0041:
  5675. {
  5676. bool L_8 = V_1;
  5677. return L_8;
  5678. }
  5679. }
  5680. // System.Int32 UnityEngine.Event::GetHashCode()
  5681. extern "C" IL2CPP_METHOD_ATTR int32_t Event_GetHashCode_m3559153592 (Event_t2956885303 * __this, const RuntimeMethod* method)
  5682. {
  5683. int32_t V_0 = 0;
  5684. Vector2_t2156229523 V_1;
  5685. memset(&V_1, 0, sizeof(V_1));
  5686. int32_t V_2 = 0;
  5687. {
  5688. V_0 = 1;
  5689. bool L_0 = Event_get_isKey_m1703963445(__this, /*hidden argument*/NULL);
  5690. if (!L_0)
  5691. {
  5692. goto IL_0016;
  5693. }
  5694. }
  5695. {
  5696. int32_t L_1 = Event_get_keyCode_m1098493350(__this, /*hidden argument*/NULL);
  5697. V_0 = (((int32_t)((uint16_t)L_1)));
  5698. }
  5699. IL_0016:
  5700. {
  5701. bool L_2 = Event_get_isMouse_m1058251071(__this, /*hidden argument*/NULL);
  5702. if (!L_2)
  5703. {
  5704. goto IL_0036;
  5705. }
  5706. }
  5707. {
  5708. Vector2_t2156229523 L_3 = Event_get_mousePosition_m733809635(__this, /*hidden argument*/NULL);
  5709. V_1 = L_3;
  5710. int32_t L_4 = Vector2_GetHashCode_m3916089713((&V_1), /*hidden argument*/NULL);
  5711. V_0 = L_4;
  5712. }
  5713. IL_0036:
  5714. {
  5715. int32_t L_5 = V_0;
  5716. int32_t L_6 = Event_get_modifiers_m995073384(__this, /*hidden argument*/NULL);
  5717. V_0 = ((int32_t)((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_5, (int32_t)((int32_t)37)))|(int32_t)L_6));
  5718. int32_t L_7 = V_0;
  5719. V_2 = L_7;
  5720. goto IL_0049;
  5721. }
  5722. IL_0049:
  5723. {
  5724. int32_t L_8 = V_2;
  5725. return L_8;
  5726. }
  5727. }
  5728. // System.Boolean UnityEngine.Event::Equals(System.Object)
  5729. extern "C" IL2CPP_METHOD_ATTR bool Event_Equals_m321840542 (Event_t2956885303 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
  5730. {
  5731. static bool s_Il2CppMethodInitialized;
  5732. if (!s_Il2CppMethodInitialized)
  5733. {
  5734. il2cpp_codegen_initialize_method (Event_Equals_m321840542_MetadataUsageId);
  5735. s_Il2CppMethodInitialized = true;
  5736. }
  5737. bool V_0 = false;
  5738. Event_t2956885303 * V_1 = NULL;
  5739. {
  5740. RuntimeObject * L_0 = ___obj0;
  5741. if (L_0)
  5742. {
  5743. goto IL_000e;
  5744. }
  5745. }
  5746. {
  5747. V_0 = (bool)0;
  5748. goto IL_00b7;
  5749. }
  5750. IL_000e:
  5751. {
  5752. RuntimeObject * L_1 = ___obj0;
  5753. bool L_2 = Object_ReferenceEquals_m610702577(NULL /*static, unused*/, __this, L_1, /*hidden argument*/NULL);
  5754. if (!L_2)
  5755. {
  5756. goto IL_0021;
  5757. }
  5758. }
  5759. {
  5760. V_0 = (bool)1;
  5761. goto IL_00b7;
  5762. }
  5763. IL_0021:
  5764. {
  5765. RuntimeObject * L_3 = ___obj0;
  5766. NullCheck(L_3);
  5767. Type_t * L_4 = Object_GetType_m88164663(L_3, /*hidden argument*/NULL);
  5768. Type_t * L_5 = Object_GetType_m88164663(__this, /*hidden argument*/NULL);
  5769. if ((((RuntimeObject*)(Type_t *)L_4) == ((RuntimeObject*)(Type_t *)L_5)))
  5770. {
  5771. goto IL_0039;
  5772. }
  5773. }
  5774. {
  5775. V_0 = (bool)0;
  5776. goto IL_00b7;
  5777. }
  5778. IL_0039:
  5779. {
  5780. RuntimeObject * L_6 = ___obj0;
  5781. V_1 = ((Event_t2956885303 *)CastclassSealed((RuntimeObject*)L_6, Event_t2956885303_il2cpp_TypeInfo_var));
  5782. int32_t L_7 = Event_get_type_m1370041809(__this, /*hidden argument*/NULL);
  5783. Event_t2956885303 * L_8 = V_1;
  5784. NullCheck(L_8);
  5785. int32_t L_9 = Event_get_type_m1370041809(L_8, /*hidden argument*/NULL);
  5786. if ((!(((uint32_t)L_7) == ((uint32_t)L_9))))
  5787. {
  5788. goto IL_0068;
  5789. }
  5790. }
  5791. {
  5792. int32_t L_10 = Event_get_modifiers_m995073384(__this, /*hidden argument*/NULL);
  5793. Event_t2956885303 * L_11 = V_1;
  5794. NullCheck(L_11);
  5795. int32_t L_12 = Event_get_modifiers_m995073384(L_11, /*hidden argument*/NULL);
  5796. if ((((int32_t)((int32_t)((int32_t)L_10&(int32_t)((int32_t)-33)))) == ((int32_t)((int32_t)((int32_t)L_12&(int32_t)((int32_t)-33))))))
  5797. {
  5798. goto IL_006f;
  5799. }
  5800. }
  5801. IL_0068:
  5802. {
  5803. V_0 = (bool)0;
  5804. goto IL_00b7;
  5805. }
  5806. IL_006f:
  5807. {
  5808. bool L_13 = Event_get_isKey_m1703963445(__this, /*hidden argument*/NULL);
  5809. if (!L_13)
  5810. {
  5811. goto IL_008e;
  5812. }
  5813. }
  5814. {
  5815. int32_t L_14 = Event_get_keyCode_m1098493350(__this, /*hidden argument*/NULL);
  5816. Event_t2956885303 * L_15 = V_1;
  5817. NullCheck(L_15);
  5818. int32_t L_16 = Event_get_keyCode_m1098493350(L_15, /*hidden argument*/NULL);
  5819. V_0 = (bool)((((int32_t)L_14) == ((int32_t)L_16))? 1 : 0);
  5820. goto IL_00b7;
  5821. }
  5822. IL_008e:
  5823. {
  5824. bool L_17 = Event_get_isMouse_m1058251071(__this, /*hidden argument*/NULL);
  5825. if (!L_17)
  5826. {
  5827. goto IL_00b0;
  5828. }
  5829. }
  5830. {
  5831. Vector2_t2156229523 L_18 = Event_get_mousePosition_m733809635(__this, /*hidden argument*/NULL);
  5832. Event_t2956885303 * L_19 = V_1;
  5833. NullCheck(L_19);
  5834. Vector2_t2156229523 L_20 = Event_get_mousePosition_m733809635(L_19, /*hidden argument*/NULL);
  5835. IL2CPP_RUNTIME_CLASS_INIT(Vector2_t2156229523_il2cpp_TypeInfo_var);
  5836. bool L_21 = Vector2_op_Equality_m2303255133(NULL /*static, unused*/, L_18, L_20, /*hidden argument*/NULL);
  5837. V_0 = L_21;
  5838. goto IL_00b7;
  5839. }
  5840. IL_00b0:
  5841. {
  5842. V_0 = (bool)0;
  5843. goto IL_00b7;
  5844. }
  5845. IL_00b7:
  5846. {
  5847. bool L_22 = V_0;
  5848. return L_22;
  5849. }
  5850. }
  5851. // System.String UnityEngine.Event::ToString()
  5852. extern "C" IL2CPP_METHOD_ATTR String_t* Event_ToString_m1688862299 (Event_t2956885303 * __this, const RuntimeMethod* method)
  5853. {
  5854. static bool s_Il2CppMethodInitialized;
  5855. if (!s_Il2CppMethodInitialized)
  5856. {
  5857. il2cpp_codegen_initialize_method (Event_ToString_m1688862299_MetadataUsageId);
  5858. s_Il2CppMethodInitialized = true;
  5859. }
  5860. String_t* V_0 = NULL;
  5861. {
  5862. bool L_0 = Event_get_isKey_m1703963445(__this, /*hidden argument*/NULL);
  5863. if (!L_0)
  5864. {
  5865. goto IL_00c1;
  5866. }
  5867. }
  5868. {
  5869. Il2CppChar L_1 = Event_get_character_m1666742088(__this, /*hidden argument*/NULL);
  5870. if (L_1)
  5871. {
  5872. goto IL_0058;
  5873. }
  5874. }
  5875. {
  5876. ObjectU5BU5D_t2843939325* L_2 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)3));
  5877. int32_t L_3 = Event_get_type_m1370041809(__this, /*hidden argument*/NULL);
  5878. int32_t L_4 = L_3;
  5879. RuntimeObject * L_5 = Box(EventType_t3528516131_il2cpp_TypeInfo_var, &L_4);
  5880. NullCheck(L_2);
  5881. ArrayElementTypeCheck (L_2, L_5);
  5882. (L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_5);
  5883. ObjectU5BU5D_t2843939325* L_6 = L_2;
  5884. int32_t L_7 = Event_get_modifiers_m995073384(__this, /*hidden argument*/NULL);
  5885. int32_t L_8 = L_7;
  5886. RuntimeObject * L_9 = Box(EventModifiers_t2016417398_il2cpp_TypeInfo_var, &L_8);
  5887. NullCheck(L_6);
  5888. ArrayElementTypeCheck (L_6, L_9);
  5889. (L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_9);
  5890. ObjectU5BU5D_t2843939325* L_10 = L_6;
  5891. int32_t L_11 = Event_get_keyCode_m1098493350(__this, /*hidden argument*/NULL);
  5892. int32_t L_12 = L_11;
  5893. RuntimeObject * L_13 = Box(KeyCode_t2599294277_il2cpp_TypeInfo_var, &L_12);
  5894. NullCheck(L_10);
  5895. ArrayElementTypeCheck (L_10, L_13);
  5896. (L_10)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_13);
  5897. String_t* L_14 = UnityString_Format_m261690510(NULL /*static, unused*/, _stringLiteral2886375297, L_10, /*hidden argument*/NULL);
  5898. V_0 = L_14;
  5899. goto IL_016e;
  5900. }
  5901. IL_0058:
  5902. {
  5903. ObjectU5BU5D_t2843939325* L_15 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)8));
  5904. NullCheck(L_15);
  5905. ArrayElementTypeCheck (L_15, _stringLiteral2737274358);
  5906. (L_15)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral2737274358);
  5907. ObjectU5BU5D_t2843939325* L_16 = L_15;
  5908. int32_t L_17 = Event_get_type_m1370041809(__this, /*hidden argument*/NULL);
  5909. int32_t L_18 = L_17;
  5910. RuntimeObject * L_19 = Box(EventType_t3528516131_il2cpp_TypeInfo_var, &L_18);
  5911. NullCheck(L_16);
  5912. ArrayElementTypeCheck (L_16, L_19);
  5913. (L_16)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_19);
  5914. ObjectU5BU5D_t2843939325* L_20 = L_16;
  5915. NullCheck(L_20);
  5916. ArrayElementTypeCheck (L_20, _stringLiteral1262317653);
  5917. (L_20)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteral1262317653);
  5918. ObjectU5BU5D_t2843939325* L_21 = L_20;
  5919. Il2CppChar L_22 = Event_get_character_m1666742088(__this, /*hidden argument*/NULL);
  5920. int32_t L_23 = ((int32_t)L_22);
  5921. RuntimeObject * L_24 = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &L_23);
  5922. NullCheck(L_21);
  5923. ArrayElementTypeCheck (L_21, L_24);
  5924. (L_21)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_24);
  5925. ObjectU5BU5D_t2843939325* L_25 = L_21;
  5926. NullCheck(L_25);
  5927. ArrayElementTypeCheck (L_25, _stringLiteral4223655990);
  5928. (L_25)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)_stringLiteral4223655990);
  5929. ObjectU5BU5D_t2843939325* L_26 = L_25;
  5930. int32_t L_27 = Event_get_modifiers_m995073384(__this, /*hidden argument*/NULL);
  5931. int32_t L_28 = L_27;
  5932. RuntimeObject * L_29 = Box(EventModifiers_t2016417398_il2cpp_TypeInfo_var, &L_28);
  5933. NullCheck(L_26);
  5934. ArrayElementTypeCheck (L_26, L_29);
  5935. (L_26)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_29);
  5936. ObjectU5BU5D_t2843939325* L_30 = L_26;
  5937. NullCheck(L_30);
  5938. ArrayElementTypeCheck (L_30, _stringLiteral1420157070);
  5939. (L_30)->SetAt(static_cast<il2cpp_array_size_t>(6), (RuntimeObject *)_stringLiteral1420157070);
  5940. ObjectU5BU5D_t2843939325* L_31 = L_30;
  5941. int32_t L_32 = Event_get_keyCode_m1098493350(__this, /*hidden argument*/NULL);
  5942. int32_t L_33 = L_32;
  5943. RuntimeObject * L_34 = Box(KeyCode_t2599294277_il2cpp_TypeInfo_var, &L_33);
  5944. NullCheck(L_31);
  5945. ArrayElementTypeCheck (L_31, L_34);
  5946. (L_31)->SetAt(static_cast<il2cpp_array_size_t>(7), (RuntimeObject *)L_34);
  5947. IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
  5948. String_t* L_35 = String_Concat_m2971454694(NULL /*static, unused*/, L_31, /*hidden argument*/NULL);
  5949. V_0 = L_35;
  5950. goto IL_016e;
  5951. }
  5952. IL_00c1:
  5953. {
  5954. bool L_36 = Event_get_isMouse_m1058251071(__this, /*hidden argument*/NULL);
  5955. if (!L_36)
  5956. {
  5957. goto IL_010c;
  5958. }
  5959. }
  5960. {
  5961. ObjectU5BU5D_t2843939325* L_37 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)3));
  5962. int32_t L_38 = Event_get_type_m1370041809(__this, /*hidden argument*/NULL);
  5963. int32_t L_39 = L_38;
  5964. RuntimeObject * L_40 = Box(EventType_t3528516131_il2cpp_TypeInfo_var, &L_39);
  5965. NullCheck(L_37);
  5966. ArrayElementTypeCheck (L_37, L_40);
  5967. (L_37)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_40);
  5968. ObjectU5BU5D_t2843939325* L_41 = L_37;
  5969. Vector2_t2156229523 L_42 = Event_get_mousePosition_m733809635(__this, /*hidden argument*/NULL);
  5970. Vector2_t2156229523 L_43 = L_42;
  5971. RuntimeObject * L_44 = Box(Vector2_t2156229523_il2cpp_TypeInfo_var, &L_43);
  5972. NullCheck(L_41);
  5973. ArrayElementTypeCheck (L_41, L_44);
  5974. (L_41)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_44);
  5975. ObjectU5BU5D_t2843939325* L_45 = L_41;
  5976. int32_t L_46 = Event_get_modifiers_m995073384(__this, /*hidden argument*/NULL);
  5977. int32_t L_47 = L_46;
  5978. RuntimeObject * L_48 = Box(EventModifiers_t2016417398_il2cpp_TypeInfo_var, &L_47);
  5979. NullCheck(L_45);
  5980. ArrayElementTypeCheck (L_45, L_48);
  5981. (L_45)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_48);
  5982. String_t* L_49 = UnityString_Format_m261690510(NULL /*static, unused*/, _stringLiteral4199752235, L_45, /*hidden argument*/NULL);
  5983. V_0 = L_49;
  5984. goto IL_016e;
  5985. }
  5986. IL_010c:
  5987. {
  5988. int32_t L_50 = Event_get_type_m1370041809(__this, /*hidden argument*/NULL);
  5989. if ((((int32_t)L_50) == ((int32_t)((int32_t)14))))
  5990. {
  5991. goto IL_0126;
  5992. }
  5993. }
  5994. {
  5995. int32_t L_51 = Event_get_type_m1370041809(__this, /*hidden argument*/NULL);
  5996. if ((!(((uint32_t)L_51) == ((uint32_t)((int32_t)13)))))
  5997. {
  5998. goto IL_0153;
  5999. }
  6000. }
  6001. IL_0126:
  6002. {
  6003. ObjectU5BU5D_t2843939325* L_52 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)2));
  6004. int32_t L_53 = Event_get_type_m1370041809(__this, /*hidden argument*/NULL);
  6005. int32_t L_54 = L_53;
  6006. RuntimeObject * L_55 = Box(EventType_t3528516131_il2cpp_TypeInfo_var, &L_54);
  6007. NullCheck(L_52);
  6008. ArrayElementTypeCheck (L_52, L_55);
  6009. (L_52)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_55);
  6010. ObjectU5BU5D_t2843939325* L_56 = L_52;
  6011. String_t* L_57 = Event_get_commandName_m4275147343(__this, /*hidden argument*/NULL);
  6012. NullCheck(L_56);
  6013. ArrayElementTypeCheck (L_56, L_57);
  6014. (L_56)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_57);
  6015. String_t* L_58 = UnityString_Format_m261690510(NULL /*static, unused*/, _stringLiteral495249995, L_56, /*hidden argument*/NULL);
  6016. V_0 = L_58;
  6017. goto IL_016e;
  6018. }
  6019. IL_0153:
  6020. {
  6021. int32_t L_59 = Event_get_type_m1370041809(__this, /*hidden argument*/NULL);
  6022. int32_t L_60 = L_59;
  6023. RuntimeObject * L_61 = Box(EventType_t3528516131_il2cpp_TypeInfo_var, &L_60);
  6024. IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
  6025. String_t* L_62 = String_Concat_m904156431(NULL /*static, unused*/, _stringLiteral757602046, L_61, /*hidden argument*/NULL);
  6026. V_0 = L_62;
  6027. goto IL_016e;
  6028. }
  6029. IL_016e:
  6030. {
  6031. String_t* L_63 = V_0;
  6032. return L_63;
  6033. }
  6034. }
  6035. #ifdef __clang__
  6036. #pragma clang diagnostic pop
  6037. #endif
  6038. #ifdef __clang__
  6039. #pragma clang diagnostic push
  6040. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6041. #pragma clang diagnostic ignored "-Wunused-variable"
  6042. #endif
  6043. #ifdef __clang__
  6044. #pragma clang diagnostic pop
  6045. #endif
  6046. #ifdef __clang__
  6047. #pragma clang diagnostic push
  6048. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6049. #pragma clang diagnostic ignored "-Wunused-variable"
  6050. #endif
  6051. #ifdef __clang__
  6052. #pragma clang diagnostic pop
  6053. #endif
  6054. #ifdef __clang__
  6055. #pragma clang diagnostic push
  6056. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6057. #pragma clang diagnostic ignored "-Wunused-variable"
  6058. #endif
  6059. #ifdef __clang__
  6060. #pragma clang diagnostic pop
  6061. #endif
  6062. #ifdef __clang__
  6063. #pragma clang diagnostic push
  6064. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6065. #pragma clang diagnostic ignored "-Wunused-variable"
  6066. #endif
  6067. // System.Void UnityEngine.GUI::.cctor()
  6068. extern "C" IL2CPP_METHOD_ATTR void GUI__cctor_m3051457990 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  6069. {
  6070. static bool s_Il2CppMethodInitialized;
  6071. if (!s_Il2CppMethodInitialized)
  6072. {
  6073. il2cpp_codegen_initialize_method (GUI__cctor_m3051457990_MetadataUsageId);
  6074. s_Il2CppMethodInitialized = true;
  6075. }
  6076. {
  6077. ((GUI_t1624858472_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t1624858472_il2cpp_TypeInfo_var))->set_s_ScrollStepSize_0((10.0f));
  6078. ((GUI_t1624858472_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t1624858472_il2cpp_TypeInfo_var))->set_s_HotTextField_1((-1));
  6079. NullCheck(_stringLiteral4166749152);
  6080. int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, _stringLiteral4166749152);
  6081. ((GUI_t1624858472_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t1624858472_il2cpp_TypeInfo_var))->set_s_BoxHash_2(L_0);
  6082. NullCheck(_stringLiteral2081353410);
  6083. int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, _stringLiteral2081353410);
  6084. ((GUI_t1624858472_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t1624858472_il2cpp_TypeInfo_var))->set_s_RepeatButtonHash_3(L_1);
  6085. NullCheck(_stringLiteral7432421);
  6086. int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, _stringLiteral7432421);
  6087. ((GUI_t1624858472_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t1624858472_il2cpp_TypeInfo_var))->set_s_ToggleHash_4(L_2);
  6088. NullCheck(_stringLiteral3186493525);
  6089. int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, _stringLiteral3186493525);
  6090. ((GUI_t1624858472_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t1624858472_il2cpp_TypeInfo_var))->set_s_SliderHash_5(L_3);
  6091. NullCheck(_stringLiteral775122699);
  6092. int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, _stringLiteral775122699);
  6093. ((GUI_t1624858472_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t1624858472_il2cpp_TypeInfo_var))->set_s_BeginGroupHash_6(L_4);
  6094. NullCheck(_stringLiteral2956319655);
  6095. int32_t L_5 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, _stringLiteral2956319655);
  6096. ((GUI_t1624858472_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t1624858472_il2cpp_TypeInfo_var))->set_s_ScrollviewHash_7(L_5);
  6097. GenericStack_t1310059385 * L_6 = (GenericStack_t1310059385 *)il2cpp_codegen_object_new(GenericStack_t1310059385_il2cpp_TypeInfo_var);
  6098. GenericStack__ctor_m933681517(L_6, /*hidden argument*/NULL);
  6099. ((GUI_t1624858472_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t1624858472_il2cpp_TypeInfo_var))->set_s_ScrollViewStates_10(L_6);
  6100. IL2CPP_RUNTIME_CLASS_INIT(DateTime_t3738529785_il2cpp_TypeInfo_var);
  6101. DateTime_t3738529785 L_7 = DateTime_get_Now_m1277138875(NULL /*static, unused*/, /*hidden argument*/NULL);
  6102. GUI_set_nextScrollStepTime_m1026410471(NULL /*static, unused*/, L_7, /*hidden argument*/NULL);
  6103. return;
  6104. }
  6105. }
  6106. // UnityEngine.Color UnityEngine.GUI::get_backgroundColor()
  6107. extern "C" IL2CPP_METHOD_ATTR Color_t2555686324 GUI_get_backgroundColor_m492704139 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  6108. {
  6109. static bool s_Il2CppMethodInitialized;
  6110. if (!s_Il2CppMethodInitialized)
  6111. {
  6112. il2cpp_codegen_initialize_method (GUI_get_backgroundColor_m492704139_MetadataUsageId);
  6113. s_Il2CppMethodInitialized = true;
  6114. }
  6115. Color_t2555686324 V_0;
  6116. memset(&V_0, 0, sizeof(V_0));
  6117. Color_t2555686324 V_1;
  6118. memset(&V_1, 0, sizeof(V_1));
  6119. {
  6120. IL2CPP_RUNTIME_CLASS_INIT(GUI_t1624858472_il2cpp_TypeInfo_var);
  6121. GUI_INTERNAL_get_backgroundColor_m2505650026(NULL /*static, unused*/, (&V_0), /*hidden argument*/NULL);
  6122. Color_t2555686324 L_0 = V_0;
  6123. V_1 = L_0;
  6124. goto IL_000f;
  6125. }
  6126. IL_000f:
  6127. {
  6128. Color_t2555686324 L_1 = V_1;
  6129. return L_1;
  6130. }
  6131. }
  6132. // System.Void UnityEngine.GUI::set_backgroundColor(UnityEngine.Color)
  6133. extern "C" IL2CPP_METHOD_ATTR void GUI_set_backgroundColor_m2936584335 (RuntimeObject * __this /* static, unused */, Color_t2555686324 ___value0, const RuntimeMethod* method)
  6134. {
  6135. static bool s_Il2CppMethodInitialized;
  6136. if (!s_Il2CppMethodInitialized)
  6137. {
  6138. il2cpp_codegen_initialize_method (GUI_set_backgroundColor_m2936584335_MetadataUsageId);
  6139. s_Il2CppMethodInitialized = true;
  6140. }
  6141. {
  6142. IL2CPP_RUNTIME_CLASS_INIT(GUI_t1624858472_il2cpp_TypeInfo_var);
  6143. GUI_INTERNAL_set_backgroundColor_m4207465845(NULL /*static, unused*/, (&___value0), /*hidden argument*/NULL);
  6144. return;
  6145. }
  6146. }
  6147. // System.Void UnityEngine.GUI::INTERNAL_get_backgroundColor(UnityEngine.Color&)
  6148. extern "C" IL2CPP_METHOD_ATTR void GUI_INTERNAL_get_backgroundColor_m2505650026 (RuntimeObject * __this /* static, unused */, Color_t2555686324 * ___value0, const RuntimeMethod* method)
  6149. {
  6150. typedef void (*GUI_INTERNAL_get_backgroundColor_m2505650026_ftn) (Color_t2555686324 *);
  6151. static GUI_INTERNAL_get_backgroundColor_m2505650026_ftn _il2cpp_icall_func;
  6152. if (!_il2cpp_icall_func)
  6153. _il2cpp_icall_func = (GUI_INTERNAL_get_backgroundColor_m2505650026_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUI::INTERNAL_get_backgroundColor(UnityEngine.Color&)");
  6154. _il2cpp_icall_func(___value0);
  6155. }
  6156. // System.Void UnityEngine.GUI::INTERNAL_set_backgroundColor(UnityEngine.Color&)
  6157. extern "C" IL2CPP_METHOD_ATTR void GUI_INTERNAL_set_backgroundColor_m4207465845 (RuntimeObject * __this /* static, unused */, Color_t2555686324 * ___value0, const RuntimeMethod* method)
  6158. {
  6159. typedef void (*GUI_INTERNAL_set_backgroundColor_m4207465845_ftn) (Color_t2555686324 *);
  6160. static GUI_INTERNAL_set_backgroundColor_m4207465845_ftn _il2cpp_icall_func;
  6161. if (!_il2cpp_icall_func)
  6162. _il2cpp_icall_func = (GUI_INTERNAL_set_backgroundColor_m4207465845_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUI::INTERNAL_set_backgroundColor(UnityEngine.Color&)");
  6163. _il2cpp_icall_func(___value0);
  6164. }
  6165. // System.Void UnityEngine.GUI::set_changed(System.Boolean)
  6166. extern "C" IL2CPP_METHOD_ATTR void GUI_set_changed_m535954674 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method)
  6167. {
  6168. typedef void (*GUI_set_changed_m535954674_ftn) (bool);
  6169. static GUI_set_changed_m535954674_ftn _il2cpp_icall_func;
  6170. if (!_il2cpp_icall_func)
  6171. _il2cpp_icall_func = (GUI_set_changed_m535954674_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUI::set_changed(System.Boolean)");
  6172. _il2cpp_icall_func(___value0);
  6173. }
  6174. // System.Void UnityEngine.GUI::DoLabel(UnityEngine.Rect,UnityEngine.GUIContent,System.IntPtr)
  6175. extern "C" IL2CPP_METHOD_ATTR void GUI_DoLabel_m1422046243 (RuntimeObject * __this /* static, unused */, Rect_t2360479859 ___position0, GUIContent_t3050628031 * ___content1, intptr_t ___style2, const RuntimeMethod* method)
  6176. {
  6177. static bool s_Il2CppMethodInitialized;
  6178. if (!s_Il2CppMethodInitialized)
  6179. {
  6180. il2cpp_codegen_initialize_method (GUI_DoLabel_m1422046243_MetadataUsageId);
  6181. s_Il2CppMethodInitialized = true;
  6182. }
  6183. {
  6184. GUIContent_t3050628031 * L_0 = ___content1;
  6185. intptr_t L_1 = ___style2;
  6186. IL2CPP_RUNTIME_CLASS_INIT(GUI_t1624858472_il2cpp_TypeInfo_var);
  6187. GUI_INTERNAL_CALL_DoLabel_m2007226197(NULL /*static, unused*/, (&___position0), L_0, L_1, /*hidden argument*/NULL);
  6188. return;
  6189. }
  6190. }
  6191. // System.Void UnityEngine.GUI::INTERNAL_CALL_DoLabel(UnityEngine.Rect&,UnityEngine.GUIContent,System.IntPtr)
  6192. extern "C" IL2CPP_METHOD_ATTR void GUI_INTERNAL_CALL_DoLabel_m2007226197 (RuntimeObject * __this /* static, unused */, Rect_t2360479859 * ___position0, GUIContent_t3050628031 * ___content1, intptr_t ___style2, const RuntimeMethod* method)
  6193. {
  6194. typedef void (*GUI_INTERNAL_CALL_DoLabel_m2007226197_ftn) (Rect_t2360479859 *, GUIContent_t3050628031 *, intptr_t);
  6195. static GUI_INTERNAL_CALL_DoLabel_m2007226197_ftn _il2cpp_icall_func;
  6196. if (!_il2cpp_icall_func)
  6197. _il2cpp_icall_func = (GUI_INTERNAL_CALL_DoLabel_m2007226197_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUI::INTERNAL_CALL_DoLabel(UnityEngine.Rect&,UnityEngine.GUIContent,System.IntPtr)");
  6198. _il2cpp_icall_func(___position0, ___content1, ___style2);
  6199. }
  6200. // System.Boolean UnityEngine.GUI::DoButton(UnityEngine.Rect,UnityEngine.GUIContent,System.IntPtr)
  6201. extern "C" IL2CPP_METHOD_ATTR bool GUI_DoButton_m3631925833 (RuntimeObject * __this /* static, unused */, Rect_t2360479859 ___position0, GUIContent_t3050628031 * ___content1, intptr_t ___style2, const RuntimeMethod* method)
  6202. {
  6203. static bool s_Il2CppMethodInitialized;
  6204. if (!s_Il2CppMethodInitialized)
  6205. {
  6206. il2cpp_codegen_initialize_method (GUI_DoButton_m3631925833_MetadataUsageId);
  6207. s_Il2CppMethodInitialized = true;
  6208. }
  6209. bool V_0 = false;
  6210. {
  6211. GUIContent_t3050628031 * L_0 = ___content1;
  6212. intptr_t L_1 = ___style2;
  6213. IL2CPP_RUNTIME_CLASS_INIT(GUI_t1624858472_il2cpp_TypeInfo_var);
  6214. bool L_2 = GUI_INTERNAL_CALL_DoButton_m789917463(NULL /*static, unused*/, (&___position0), L_0, L_1, /*hidden argument*/NULL);
  6215. V_0 = L_2;
  6216. goto IL_0010;
  6217. }
  6218. IL_0010:
  6219. {
  6220. bool L_3 = V_0;
  6221. return L_3;
  6222. }
  6223. }
  6224. // System.Boolean UnityEngine.GUI::INTERNAL_CALL_DoButton(UnityEngine.Rect&,UnityEngine.GUIContent,System.IntPtr)
  6225. extern "C" IL2CPP_METHOD_ATTR bool GUI_INTERNAL_CALL_DoButton_m789917463 (RuntimeObject * __this /* static, unused */, Rect_t2360479859 * ___position0, GUIContent_t3050628031 * ___content1, intptr_t ___style2, const RuntimeMethod* method)
  6226. {
  6227. typedef bool (*GUI_INTERNAL_CALL_DoButton_m789917463_ftn) (Rect_t2360479859 *, GUIContent_t3050628031 *, intptr_t);
  6228. static GUI_INTERNAL_CALL_DoButton_m789917463_ftn _il2cpp_icall_func;
  6229. if (!_il2cpp_icall_func)
  6230. _il2cpp_icall_func = (GUI_INTERNAL_CALL_DoButton_m789917463_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUI::INTERNAL_CALL_DoButton(UnityEngine.Rect&,UnityEngine.GUIContent,System.IntPtr)");
  6231. bool retVal = _il2cpp_icall_func(___position0, ___content1, ___style2);
  6232. return retVal;
  6233. }
  6234. // System.Void UnityEngine.GUI::set_nextScrollStepTime(System.DateTime)
  6235. extern "C" IL2CPP_METHOD_ATTR void GUI_set_nextScrollStepTime_m1026410471 (RuntimeObject * __this /* static, unused */, DateTime_t3738529785 ___value0, const RuntimeMethod* method)
  6236. {
  6237. static bool s_Il2CppMethodInitialized;
  6238. if (!s_Il2CppMethodInitialized)
  6239. {
  6240. il2cpp_codegen_initialize_method (GUI_set_nextScrollStepTime_m1026410471_MetadataUsageId);
  6241. s_Il2CppMethodInitialized = true;
  6242. }
  6243. {
  6244. DateTime_t3738529785 L_0 = ___value0;
  6245. IL2CPP_RUNTIME_CLASS_INIT(GUI_t1624858472_il2cpp_TypeInfo_var);
  6246. ((GUI_t1624858472_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t1624858472_il2cpp_TypeInfo_var))->set_U3CnextScrollStepTimeU3Ek__BackingField_8(L_0);
  6247. return;
  6248. }
  6249. }
  6250. // System.Void UnityEngine.GUI::set_skin(UnityEngine.GUISkin)
  6251. extern "C" IL2CPP_METHOD_ATTR void GUI_set_skin_m3073574632 (RuntimeObject * __this /* static, unused */, GUISkin_t1244372282 * ___value0, const RuntimeMethod* method)
  6252. {
  6253. static bool s_Il2CppMethodInitialized;
  6254. if (!s_Il2CppMethodInitialized)
  6255. {
  6256. il2cpp_codegen_initialize_method (GUI_set_skin_m3073574632_MetadataUsageId);
  6257. s_Il2CppMethodInitialized = true;
  6258. }
  6259. {
  6260. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  6261. GUIUtility_CheckOnGUI_m3924092168(NULL /*static, unused*/, /*hidden argument*/NULL);
  6262. GUISkin_t1244372282 * L_0 = ___value0;
  6263. IL2CPP_RUNTIME_CLASS_INIT(GUI_t1624858472_il2cpp_TypeInfo_var);
  6264. GUI_DoSetSkin_m604425702(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
  6265. return;
  6266. }
  6267. }
  6268. // UnityEngine.GUISkin UnityEngine.GUI::get_skin()
  6269. extern "C" IL2CPP_METHOD_ATTR GUISkin_t1244372282 * GUI_get_skin_m1874615010 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  6270. {
  6271. static bool s_Il2CppMethodInitialized;
  6272. if (!s_Il2CppMethodInitialized)
  6273. {
  6274. il2cpp_codegen_initialize_method (GUI_get_skin_m1874615010_MetadataUsageId);
  6275. s_Il2CppMethodInitialized = true;
  6276. }
  6277. GUISkin_t1244372282 * V_0 = NULL;
  6278. {
  6279. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  6280. GUIUtility_CheckOnGUI_m3924092168(NULL /*static, unused*/, /*hidden argument*/NULL);
  6281. IL2CPP_RUNTIME_CLASS_INIT(GUI_t1624858472_il2cpp_TypeInfo_var);
  6282. GUISkin_t1244372282 * L_0 = ((GUI_t1624858472_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t1624858472_il2cpp_TypeInfo_var))->get_s_Skin_9();
  6283. V_0 = L_0;
  6284. goto IL_0011;
  6285. }
  6286. IL_0011:
  6287. {
  6288. GUISkin_t1244372282 * L_1 = V_0;
  6289. return L_1;
  6290. }
  6291. }
  6292. // System.Void UnityEngine.GUI::DoSetSkin(UnityEngine.GUISkin)
  6293. extern "C" IL2CPP_METHOD_ATTR void GUI_DoSetSkin_m604425702 (RuntimeObject * __this /* static, unused */, GUISkin_t1244372282 * ___newSkin0, const RuntimeMethod* method)
  6294. {
  6295. static bool s_Il2CppMethodInitialized;
  6296. if (!s_Il2CppMethodInitialized)
  6297. {
  6298. il2cpp_codegen_initialize_method (GUI_DoSetSkin_m604425702_MetadataUsageId);
  6299. s_Il2CppMethodInitialized = true;
  6300. }
  6301. {
  6302. GUISkin_t1244372282 * L_0 = ___newSkin0;
  6303. IL2CPP_RUNTIME_CLASS_INIT(Object_t631007953_il2cpp_TypeInfo_var);
  6304. bool L_1 = Object_op_Implicit_m3574996620(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
  6305. if (L_1)
  6306. {
  6307. goto IL_0013;
  6308. }
  6309. }
  6310. {
  6311. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  6312. GUISkin_t1244372282 * L_2 = GUIUtility_GetDefaultSkin_m1141001896(NULL /*static, unused*/, /*hidden argument*/NULL);
  6313. ___newSkin0 = L_2;
  6314. }
  6315. IL_0013:
  6316. {
  6317. GUISkin_t1244372282 * L_3 = ___newSkin0;
  6318. IL2CPP_RUNTIME_CLASS_INIT(GUI_t1624858472_il2cpp_TypeInfo_var);
  6319. ((GUI_t1624858472_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t1624858472_il2cpp_TypeInfo_var))->set_s_Skin_9(L_3);
  6320. GUISkin_t1244372282 * L_4 = ___newSkin0;
  6321. NullCheck(L_4);
  6322. GUISkin_MakeCurrent_m3239192349(L_4, /*hidden argument*/NULL);
  6323. return;
  6324. }
  6325. }
  6326. // System.Void UnityEngine.GUI::Label(UnityEngine.Rect,System.String)
  6327. extern "C" IL2CPP_METHOD_ATTR void GUI_Label_m2454565404 (RuntimeObject * __this /* static, unused */, Rect_t2360479859 ___position0, String_t* ___text1, const RuntimeMethod* method)
  6328. {
  6329. static bool s_Il2CppMethodInitialized;
  6330. if (!s_Il2CppMethodInitialized)
  6331. {
  6332. il2cpp_codegen_initialize_method (GUI_Label_m2454565404_MetadataUsageId);
  6333. s_Il2CppMethodInitialized = true;
  6334. }
  6335. {
  6336. Rect_t2360479859 L_0 = ___position0;
  6337. String_t* L_1 = ___text1;
  6338. IL2CPP_RUNTIME_CLASS_INIT(GUIContent_t3050628031_il2cpp_TypeInfo_var);
  6339. GUIContent_t3050628031 * L_2 = GUIContent_Temp_m3538793263(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
  6340. IL2CPP_RUNTIME_CLASS_INIT(GUI_t1624858472_il2cpp_TypeInfo_var);
  6341. GUISkin_t1244372282 * L_3 = ((GUI_t1624858472_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t1624858472_il2cpp_TypeInfo_var))->get_s_Skin_9();
  6342. NullCheck(L_3);
  6343. GUIStyle_t3956901511 * L_4 = GUISkin_get_label_m1693050720(L_3, /*hidden argument*/NULL);
  6344. GUI_Label_m3404668030(NULL /*static, unused*/, L_0, L_2, L_4, /*hidden argument*/NULL);
  6345. return;
  6346. }
  6347. }
  6348. // System.Void UnityEngine.GUI::Label(UnityEngine.Rect,UnityEngine.GUIContent,UnityEngine.GUIStyle)
  6349. extern "C" IL2CPP_METHOD_ATTR void GUI_Label_m3404668030 (RuntimeObject * __this /* static, unused */, Rect_t2360479859 ___position0, GUIContent_t3050628031 * ___content1, GUIStyle_t3956901511 * ___style2, const RuntimeMethod* method)
  6350. {
  6351. static bool s_Il2CppMethodInitialized;
  6352. if (!s_Il2CppMethodInitialized)
  6353. {
  6354. il2cpp_codegen_initialize_method (GUI_Label_m3404668030_MetadataUsageId);
  6355. s_Il2CppMethodInitialized = true;
  6356. }
  6357. {
  6358. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  6359. GUIUtility_CheckOnGUI_m3924092168(NULL /*static, unused*/, /*hidden argument*/NULL);
  6360. Rect_t2360479859 L_0 = ___position0;
  6361. GUIContent_t3050628031 * L_1 = ___content1;
  6362. GUIStyle_t3956901511 * L_2 = ___style2;
  6363. NullCheck(L_2);
  6364. intptr_t L_3 = L_2->get_m_Ptr_0();
  6365. IL2CPP_RUNTIME_CLASS_INIT(GUI_t1624858472_il2cpp_TypeInfo_var);
  6366. GUI_DoLabel_m1422046243(NULL /*static, unused*/, L_0, L_1, L_3, /*hidden argument*/NULL);
  6367. return;
  6368. }
  6369. }
  6370. // System.Boolean UnityEngine.GUI::Button(UnityEngine.Rect,System.String)
  6371. extern "C" IL2CPP_METHOD_ATTR bool GUI_Button_m1518979886 (RuntimeObject * __this /* static, unused */, Rect_t2360479859 ___position0, String_t* ___text1, const RuntimeMethod* method)
  6372. {
  6373. static bool s_Il2CppMethodInitialized;
  6374. if (!s_Il2CppMethodInitialized)
  6375. {
  6376. il2cpp_codegen_initialize_method (GUI_Button_m1518979886_MetadataUsageId);
  6377. s_Il2CppMethodInitialized = true;
  6378. }
  6379. bool V_0 = false;
  6380. {
  6381. Rect_t2360479859 L_0 = ___position0;
  6382. String_t* L_1 = ___text1;
  6383. IL2CPP_RUNTIME_CLASS_INIT(GUIContent_t3050628031_il2cpp_TypeInfo_var);
  6384. GUIContent_t3050628031 * L_2 = GUIContent_Temp_m3538793263(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
  6385. IL2CPP_RUNTIME_CLASS_INIT(GUI_t1624858472_il2cpp_TypeInfo_var);
  6386. GUISkin_t1244372282 * L_3 = ((GUI_t1624858472_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t1624858472_il2cpp_TypeInfo_var))->get_s_Skin_9();
  6387. NullCheck(L_3);
  6388. GUIStyle_t3956901511 * L_4 = GUISkin_get_button_m2792560996(L_3, /*hidden argument*/NULL);
  6389. bool L_5 = GUI_Button_m1546789121(NULL /*static, unused*/, L_0, L_2, L_4, /*hidden argument*/NULL);
  6390. V_0 = L_5;
  6391. goto IL_001d;
  6392. }
  6393. IL_001d:
  6394. {
  6395. bool L_6 = V_0;
  6396. return L_6;
  6397. }
  6398. }
  6399. // System.Boolean UnityEngine.GUI::Button(UnityEngine.Rect,UnityEngine.GUIContent,UnityEngine.GUIStyle)
  6400. extern "C" IL2CPP_METHOD_ATTR bool GUI_Button_m1546789121 (RuntimeObject * __this /* static, unused */, Rect_t2360479859 ___position0, GUIContent_t3050628031 * ___content1, GUIStyle_t3956901511 * ___style2, const RuntimeMethod* method)
  6401. {
  6402. static bool s_Il2CppMethodInitialized;
  6403. if (!s_Il2CppMethodInitialized)
  6404. {
  6405. il2cpp_codegen_initialize_method (GUI_Button_m1546789121_MetadataUsageId);
  6406. s_Il2CppMethodInitialized = true;
  6407. }
  6408. bool V_0 = false;
  6409. {
  6410. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  6411. GUIUtility_CheckOnGUI_m3924092168(NULL /*static, unused*/, /*hidden argument*/NULL);
  6412. Rect_t2360479859 L_0 = ___position0;
  6413. GUIContent_t3050628031 * L_1 = ___content1;
  6414. GUIStyle_t3956901511 * L_2 = ___style2;
  6415. NullCheck(L_2);
  6416. intptr_t L_3 = L_2->get_m_Ptr_0();
  6417. IL2CPP_RUNTIME_CLASS_INIT(GUI_t1624858472_il2cpp_TypeInfo_var);
  6418. bool L_4 = GUI_DoButton_m3631925833(NULL /*static, unused*/, L_0, L_1, L_3, /*hidden argument*/NULL);
  6419. V_0 = L_4;
  6420. goto IL_0019;
  6421. }
  6422. IL_0019:
  6423. {
  6424. bool L_5 = V_0;
  6425. return L_5;
  6426. }
  6427. }
  6428. // System.Void UnityEngine.GUI::CallWindowDelegate(UnityEngine.GUI/WindowFunction,System.Int32,System.Int32,UnityEngine.GUISkin,System.Int32,System.Single,System.Single,UnityEngine.GUIStyle)
  6429. extern "C" IL2CPP_METHOD_ATTR void GUI_CallWindowDelegate_m3309453386 (RuntimeObject * __this /* static, unused */, WindowFunction_t3146511083 * ___func0, int32_t ___id1, int32_t ___instanceID2, GUISkin_t1244372282 * ____skin3, int32_t ___forceRect4, float ___width5, float ___height6, GUIStyle_t3956901511 * ___style7, const RuntimeMethod* method)
  6430. {
  6431. static bool s_Il2CppMethodInitialized;
  6432. if (!s_Il2CppMethodInitialized)
  6433. {
  6434. il2cpp_codegen_initialize_method (GUI_CallWindowDelegate_m3309453386_MetadataUsageId);
  6435. s_Il2CppMethodInitialized = true;
  6436. }
  6437. GUISkin_t1244372282 * V_0 = NULL;
  6438. GUILayoutOptionU5BU5D_t2510215842* V_1 = NULL;
  6439. {
  6440. int32_t L_0 = ___id1;
  6441. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  6442. GUILayoutUtility_SelectIDList_m294753167(NULL /*static, unused*/, L_0, (bool)1, /*hidden argument*/NULL);
  6443. IL2CPP_RUNTIME_CLASS_INIT(GUI_t1624858472_il2cpp_TypeInfo_var);
  6444. GUISkin_t1244372282 * L_1 = GUI_get_skin_m1874615010(NULL /*static, unused*/, /*hidden argument*/NULL);
  6445. V_0 = L_1;
  6446. Event_t2956885303 * L_2 = Event_get_current_m2393892120(NULL /*static, unused*/, /*hidden argument*/NULL);
  6447. NullCheck(L_2);
  6448. int32_t L_3 = Event_get_type_m1370041809(L_2, /*hidden argument*/NULL);
  6449. if ((!(((uint32_t)L_3) == ((uint32_t)8))))
  6450. {
  6451. goto IL_0063;
  6452. }
  6453. }
  6454. {
  6455. int32_t L_4 = ___forceRect4;
  6456. if (!L_4)
  6457. {
  6458. goto IL_0052;
  6459. }
  6460. }
  6461. {
  6462. GUILayoutOptionU5BU5D_t2510215842* L_5 = ((GUILayoutOptionU5BU5D_t2510215842*)SZArrayNew(GUILayoutOptionU5BU5D_t2510215842_il2cpp_TypeInfo_var, (uint32_t)2));
  6463. float L_6 = ___width5;
  6464. GUILayoutOption_t811797299 * L_7 = GUILayout_Width_m1777696537(NULL /*static, unused*/, L_6, /*hidden argument*/NULL);
  6465. NullCheck(L_5);
  6466. ArrayElementTypeCheck (L_5, L_7);
  6467. (L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (GUILayoutOption_t811797299 *)L_7);
  6468. GUILayoutOptionU5BU5D_t2510215842* L_8 = L_5;
  6469. float L_9 = ___height6;
  6470. GUILayoutOption_t811797299 * L_10 = GUILayout_Height_m3349769634(NULL /*static, unused*/, L_9, /*hidden argument*/NULL);
  6471. NullCheck(L_8);
  6472. ArrayElementTypeCheck (L_8, L_10);
  6473. (L_8)->SetAt(static_cast<il2cpp_array_size_t>(1), (GUILayoutOption_t811797299 *)L_10);
  6474. V_1 = L_8;
  6475. int32_t L_11 = ___id1;
  6476. GUIStyle_t3956901511 * L_12 = ___style7;
  6477. GUILayoutOptionU5BU5D_t2510215842* L_13 = V_1;
  6478. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  6479. GUILayoutUtility_BeginWindow_m2240221150(NULL /*static, unused*/, L_11, L_12, L_13, /*hidden argument*/NULL);
  6480. goto IL_005d;
  6481. }
  6482. IL_0052:
  6483. {
  6484. int32_t L_14 = ___id1;
  6485. GUIStyle_t3956901511 * L_15 = ___style7;
  6486. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  6487. GUILayoutUtility_BeginWindow_m2240221150(NULL /*static, unused*/, L_14, L_15, (GUILayoutOptionU5BU5D_t2510215842*)(GUILayoutOptionU5BU5D_t2510215842*)NULL, /*hidden argument*/NULL);
  6488. }
  6489. IL_005d:
  6490. {
  6491. goto IL_0071;
  6492. }
  6493. IL_0063:
  6494. {
  6495. int32_t L_16 = ___id1;
  6496. IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t3956901511_il2cpp_TypeInfo_var);
  6497. GUIStyle_t3956901511 * L_17 = GUIStyle_get_none_m1545577352(NULL /*static, unused*/, /*hidden argument*/NULL);
  6498. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  6499. GUILayoutUtility_BeginWindow_m2240221150(NULL /*static, unused*/, L_16, L_17, (GUILayoutOptionU5BU5D_t2510215842*)(GUILayoutOptionU5BU5D_t2510215842*)NULL, /*hidden argument*/NULL);
  6500. }
  6501. IL_0071:
  6502. {
  6503. GUISkin_t1244372282 * L_18 = ____skin3;
  6504. IL2CPP_RUNTIME_CLASS_INIT(GUI_t1624858472_il2cpp_TypeInfo_var);
  6505. GUI_set_skin_m3073574632(NULL /*static, unused*/, L_18, /*hidden argument*/NULL);
  6506. WindowFunction_t3146511083 * L_19 = ___func0;
  6507. int32_t L_20 = ___id1;
  6508. NullCheck(L_19);
  6509. WindowFunction_Invoke_m3205356586(L_19, L_20, /*hidden argument*/NULL);
  6510. Event_t2956885303 * L_21 = Event_get_current_m2393892120(NULL /*static, unused*/, /*hidden argument*/NULL);
  6511. NullCheck(L_21);
  6512. int32_t L_22 = Event_get_type_m1370041809(L_21, /*hidden argument*/NULL);
  6513. if ((!(((uint32_t)L_22) == ((uint32_t)8))))
  6514. {
  6515. goto IL_0095;
  6516. }
  6517. }
  6518. {
  6519. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  6520. GUILayoutUtility_Layout_m1159951704(NULL /*static, unused*/, /*hidden argument*/NULL);
  6521. }
  6522. IL_0095:
  6523. {
  6524. GUISkin_t1244372282 * L_23 = V_0;
  6525. IL2CPP_RUNTIME_CLASS_INIT(GUI_t1624858472_il2cpp_TypeInfo_var);
  6526. GUI_set_skin_m3073574632(NULL /*static, unused*/, L_23, /*hidden argument*/NULL);
  6527. return;
  6528. }
  6529. }
  6530. #ifdef __clang__
  6531. #pragma clang diagnostic pop
  6532. #endif
  6533. #ifdef __clang__
  6534. #pragma clang diagnostic push
  6535. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6536. #pragma clang diagnostic ignored "-Wunused-variable"
  6537. #endif
  6538. extern "C" void DelegatePInvokeWrapper_WindowFunction_t3146511083 (WindowFunction_t3146511083 * __this, int32_t ___id0, const RuntimeMethod* method)
  6539. {
  6540. typedef void (DEFAULT_CALL *PInvokeFunc)(int32_t);
  6541. PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
  6542. // Native function invocation
  6543. il2cppPInvokeFunc(___id0);
  6544. }
  6545. // System.Void UnityEngine.GUI/WindowFunction::.ctor(System.Object,System.IntPtr)
  6546. extern "C" IL2CPP_METHOD_ATTR void WindowFunction__ctor_m2544237635 (WindowFunction_t3146511083 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
  6547. {
  6548. __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
  6549. __this->set_method_3(___method1);
  6550. __this->set_m_target_2(___object0);
  6551. }
  6552. // System.Void UnityEngine.GUI/WindowFunction::Invoke(System.Int32)
  6553. extern "C" IL2CPP_METHOD_ATTR void WindowFunction_Invoke_m3205356586 (WindowFunction_t3146511083 * __this, int32_t ___id0, const RuntimeMethod* method)
  6554. {
  6555. if(__this->get_prev_9() != NULL)
  6556. {
  6557. WindowFunction_Invoke_m3205356586((WindowFunction_t3146511083 *)__this->get_prev_9(), ___id0, method);
  6558. }
  6559. Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
  6560. RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
  6561. RuntimeObject* targetThis = __this->get_m_target_2();
  6562. il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
  6563. bool ___methodIsStatic = MethodIsStatic(targetMethod);
  6564. if (___methodIsStatic)
  6565. {
  6566. if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
  6567. {
  6568. // open
  6569. {
  6570. typedef void (*FunctionPointerType) (RuntimeObject *, int32_t, const RuntimeMethod*);
  6571. ((FunctionPointerType)targetMethodPointer)(NULL, ___id0, targetMethod);
  6572. }
  6573. }
  6574. else
  6575. {
  6576. // closed
  6577. {
  6578. typedef void (*FunctionPointerType) (RuntimeObject *, void*, int32_t, const RuntimeMethod*);
  6579. ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___id0, targetMethod);
  6580. }
  6581. }
  6582. }
  6583. else
  6584. {
  6585. {
  6586. // closed
  6587. if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
  6588. {
  6589. if (il2cpp_codegen_method_is_generic_instance(targetMethod))
  6590. {
  6591. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  6592. GenericInterfaceActionInvoker1< int32_t >::Invoke(targetMethod, targetThis, ___id0);
  6593. else
  6594. GenericVirtActionInvoker1< int32_t >::Invoke(targetMethod, targetThis, ___id0);
  6595. }
  6596. else
  6597. {
  6598. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  6599. InterfaceActionInvoker1< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___id0);
  6600. else
  6601. VirtActionInvoker1< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___id0);
  6602. }
  6603. }
  6604. else
  6605. {
  6606. typedef void (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
  6607. ((FunctionPointerType)targetMethodPointer)(targetThis, ___id0, targetMethod);
  6608. }
  6609. }
  6610. }
  6611. }
  6612. // System.IAsyncResult UnityEngine.GUI/WindowFunction::BeginInvoke(System.Int32,System.AsyncCallback,System.Object)
  6613. extern "C" IL2CPP_METHOD_ATTR RuntimeObject* WindowFunction_BeginInvoke_m3381614433 (WindowFunction_t3146511083 * __this, int32_t ___id0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
  6614. {
  6615. static bool s_Il2CppMethodInitialized;
  6616. if (!s_Il2CppMethodInitialized)
  6617. {
  6618. il2cpp_codegen_initialize_method (WindowFunction_BeginInvoke_m3381614433_MetadataUsageId);
  6619. s_Il2CppMethodInitialized = true;
  6620. }
  6621. void *__d_args[2] = {0};
  6622. __d_args[0] = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &___id0);
  6623. return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
  6624. }
  6625. // System.Void UnityEngine.GUI/WindowFunction::EndInvoke(System.IAsyncResult)
  6626. extern "C" IL2CPP_METHOD_ATTR void WindowFunction_EndInvoke_m2850430521 (WindowFunction_t3146511083 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
  6627. {
  6628. il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
  6629. }
  6630. #ifdef __clang__
  6631. #pragma clang diagnostic pop
  6632. #endif
  6633. #ifdef __clang__
  6634. #pragma clang diagnostic push
  6635. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6636. #pragma clang diagnostic ignored "-Wunused-variable"
  6637. #endif
  6638. // Conversion methods for marshalling of: UnityEngine.GUIContent
  6639. extern "C" void GUIContent_t3050628031_marshal_pinvoke(const GUIContent_t3050628031& unmarshaled, GUIContent_t3050628031_marshaled_pinvoke& marshaled)
  6640. {
  6641. Exception_t* ___m_Image_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Image' of type 'GUIContent': Reference type field marshaling is not supported.");
  6642. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Image_1Exception,NULL);
  6643. }
  6644. extern "C" void GUIContent_t3050628031_marshal_pinvoke_back(const GUIContent_t3050628031_marshaled_pinvoke& marshaled, GUIContent_t3050628031& unmarshaled)
  6645. {
  6646. Exception_t* ___m_Image_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Image' of type 'GUIContent': Reference type field marshaling is not supported.");
  6647. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Image_1Exception,NULL);
  6648. }
  6649. // Conversion method for clean up from marshalling of: UnityEngine.GUIContent
  6650. extern "C" void GUIContent_t3050628031_marshal_pinvoke_cleanup(GUIContent_t3050628031_marshaled_pinvoke& marshaled)
  6651. {
  6652. }
  6653. // Conversion methods for marshalling of: UnityEngine.GUIContent
  6654. extern "C" void GUIContent_t3050628031_marshal_com(const GUIContent_t3050628031& unmarshaled, GUIContent_t3050628031_marshaled_com& marshaled)
  6655. {
  6656. Exception_t* ___m_Image_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Image' of type 'GUIContent': Reference type field marshaling is not supported.");
  6657. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Image_1Exception,NULL);
  6658. }
  6659. extern "C" void GUIContent_t3050628031_marshal_com_back(const GUIContent_t3050628031_marshaled_com& marshaled, GUIContent_t3050628031& unmarshaled)
  6660. {
  6661. Exception_t* ___m_Image_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Image' of type 'GUIContent': Reference type field marshaling is not supported.");
  6662. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Image_1Exception,NULL);
  6663. }
  6664. // Conversion method for clean up from marshalling of: UnityEngine.GUIContent
  6665. extern "C" void GUIContent_t3050628031_marshal_com_cleanup(GUIContent_t3050628031_marshaled_com& marshaled)
  6666. {
  6667. }
  6668. // System.Void UnityEngine.GUIContent::.ctor()
  6669. extern "C" IL2CPP_METHOD_ATTR void GUIContent__ctor_m3360759894 (GUIContent_t3050628031 * __this, const RuntimeMethod* method)
  6670. {
  6671. static bool s_Il2CppMethodInitialized;
  6672. if (!s_Il2CppMethodInitialized)
  6673. {
  6674. il2cpp_codegen_initialize_method (GUIContent__ctor_m3360759894_MetadataUsageId);
  6675. s_Il2CppMethodInitialized = true;
  6676. }
  6677. {
  6678. IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
  6679. String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2();
  6680. __this->set_m_Text_0(L_0);
  6681. String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2();
  6682. __this->set_m_Tooltip_2(L_1);
  6683. Object__ctor_m297566312(__this, /*hidden argument*/NULL);
  6684. return;
  6685. }
  6686. }
  6687. // System.Void UnityEngine.GUIContent::.ctor(System.String)
  6688. extern "C" IL2CPP_METHOD_ATTR void GUIContent__ctor_m890195579 (GUIContent_t3050628031 * __this, String_t* ___text0, const RuntimeMethod* method)
  6689. {
  6690. static bool s_Il2CppMethodInitialized;
  6691. if (!s_Il2CppMethodInitialized)
  6692. {
  6693. il2cpp_codegen_initialize_method (GUIContent__ctor_m890195579_MetadataUsageId);
  6694. s_Il2CppMethodInitialized = true;
  6695. }
  6696. {
  6697. String_t* L_0 = ___text0;
  6698. IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
  6699. String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2();
  6700. GUIContent__ctor_m2166411317(__this, L_0, (Texture_t3661962703 *)NULL, L_1, /*hidden argument*/NULL);
  6701. return;
  6702. }
  6703. }
  6704. // System.Void UnityEngine.GUIContent::.ctor(System.String,UnityEngine.Texture,System.String)
  6705. extern "C" IL2CPP_METHOD_ATTR void GUIContent__ctor_m2166411317 (GUIContent_t3050628031 * __this, String_t* ___text0, Texture_t3661962703 * ___image1, String_t* ___tooltip2, const RuntimeMethod* method)
  6706. {
  6707. static bool s_Il2CppMethodInitialized;
  6708. if (!s_Il2CppMethodInitialized)
  6709. {
  6710. il2cpp_codegen_initialize_method (GUIContent__ctor_m2166411317_MetadataUsageId);
  6711. s_Il2CppMethodInitialized = true;
  6712. }
  6713. {
  6714. IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
  6715. String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2();
  6716. __this->set_m_Text_0(L_0);
  6717. String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2();
  6718. __this->set_m_Tooltip_2(L_1);
  6719. Object__ctor_m297566312(__this, /*hidden argument*/NULL);
  6720. String_t* L_2 = ___text0;
  6721. GUIContent_set_text_m607297463(__this, L_2, /*hidden argument*/NULL);
  6722. Texture_t3661962703 * L_3 = ___image1;
  6723. GUIContent_set_image_m1091531865(__this, L_3, /*hidden argument*/NULL);
  6724. String_t* L_4 = ___tooltip2;
  6725. GUIContent_set_tooltip_m738967743(__this, L_4, /*hidden argument*/NULL);
  6726. return;
  6727. }
  6728. }
  6729. // System.Void UnityEngine.GUIContent::.ctor(UnityEngine.GUIContent)
  6730. extern "C" IL2CPP_METHOD_ATTR void GUIContent__ctor_m476350501 (GUIContent_t3050628031 * __this, GUIContent_t3050628031 * ___src0, const RuntimeMethod* method)
  6731. {
  6732. static bool s_Il2CppMethodInitialized;
  6733. if (!s_Il2CppMethodInitialized)
  6734. {
  6735. il2cpp_codegen_initialize_method (GUIContent__ctor_m476350501_MetadataUsageId);
  6736. s_Il2CppMethodInitialized = true;
  6737. }
  6738. {
  6739. IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
  6740. String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2();
  6741. __this->set_m_Text_0(L_0);
  6742. String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2();
  6743. __this->set_m_Tooltip_2(L_1);
  6744. Object__ctor_m297566312(__this, /*hidden argument*/NULL);
  6745. GUIContent_t3050628031 * L_2 = ___src0;
  6746. NullCheck(L_2);
  6747. String_t* L_3 = L_2->get_m_Text_0();
  6748. GUIContent_set_text_m607297463(__this, L_3, /*hidden argument*/NULL);
  6749. GUIContent_t3050628031 * L_4 = ___src0;
  6750. NullCheck(L_4);
  6751. Texture_t3661962703 * L_5 = L_4->get_m_Image_1();
  6752. GUIContent_set_image_m1091531865(__this, L_5, /*hidden argument*/NULL);
  6753. GUIContent_t3050628031 * L_6 = ___src0;
  6754. NullCheck(L_6);
  6755. String_t* L_7 = L_6->get_m_Tooltip_2();
  6756. GUIContent_set_tooltip_m738967743(__this, L_7, /*hidden argument*/NULL);
  6757. return;
  6758. }
  6759. }
  6760. // System.Void UnityEngine.GUIContent::set_text(System.String)
  6761. extern "C" IL2CPP_METHOD_ATTR void GUIContent_set_text_m607297463 (GUIContent_t3050628031 * __this, String_t* ___value0, const RuntimeMethod* method)
  6762. {
  6763. {
  6764. String_t* L_0 = ___value0;
  6765. __this->set_m_Text_0(L_0);
  6766. return;
  6767. }
  6768. }
  6769. // System.Void UnityEngine.GUIContent::set_image(UnityEngine.Texture)
  6770. extern "C" IL2CPP_METHOD_ATTR void GUIContent_set_image_m1091531865 (GUIContent_t3050628031 * __this, Texture_t3661962703 * ___value0, const RuntimeMethod* method)
  6771. {
  6772. {
  6773. Texture_t3661962703 * L_0 = ___value0;
  6774. __this->set_m_Image_1(L_0);
  6775. return;
  6776. }
  6777. }
  6778. // System.Void UnityEngine.GUIContent::set_tooltip(System.String)
  6779. extern "C" IL2CPP_METHOD_ATTR void GUIContent_set_tooltip_m738967743 (GUIContent_t3050628031 * __this, String_t* ___value0, const RuntimeMethod* method)
  6780. {
  6781. {
  6782. String_t* L_0 = ___value0;
  6783. __this->set_m_Tooltip_2(L_0);
  6784. return;
  6785. }
  6786. }
  6787. // UnityEngine.GUIContent UnityEngine.GUIContent::Temp(System.String)
  6788. extern "C" IL2CPP_METHOD_ATTR GUIContent_t3050628031 * GUIContent_Temp_m3538793263 (RuntimeObject * __this /* static, unused */, String_t* ___t0, const RuntimeMethod* method)
  6789. {
  6790. static bool s_Il2CppMethodInitialized;
  6791. if (!s_Il2CppMethodInitialized)
  6792. {
  6793. il2cpp_codegen_initialize_method (GUIContent_Temp_m3538793263_MetadataUsageId);
  6794. s_Il2CppMethodInitialized = true;
  6795. }
  6796. GUIContent_t3050628031 * V_0 = NULL;
  6797. {
  6798. IL2CPP_RUNTIME_CLASS_INIT(GUIContent_t3050628031_il2cpp_TypeInfo_var);
  6799. GUIContent_t3050628031 * L_0 = ((GUIContent_t3050628031_StaticFields*)il2cpp_codegen_static_fields_for(GUIContent_t3050628031_il2cpp_TypeInfo_var))->get_s_Text_3();
  6800. String_t* L_1 = ___t0;
  6801. NullCheck(L_0);
  6802. L_0->set_m_Text_0(L_1);
  6803. GUIContent_t3050628031 * L_2 = ((GUIContent_t3050628031_StaticFields*)il2cpp_codegen_static_fields_for(GUIContent_t3050628031_il2cpp_TypeInfo_var))->get_s_Text_3();
  6804. IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
  6805. String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2();
  6806. NullCheck(L_2);
  6807. L_2->set_m_Tooltip_2(L_3);
  6808. GUIContent_t3050628031 * L_4 = ((GUIContent_t3050628031_StaticFields*)il2cpp_codegen_static_fields_for(GUIContent_t3050628031_il2cpp_TypeInfo_var))->get_s_Text_3();
  6809. V_0 = L_4;
  6810. goto IL_0026;
  6811. }
  6812. IL_0026:
  6813. {
  6814. GUIContent_t3050628031 * L_5 = V_0;
  6815. return L_5;
  6816. }
  6817. }
  6818. // System.Void UnityEngine.GUIContent::ClearStaticCache()
  6819. extern "C" IL2CPP_METHOD_ATTR void GUIContent_ClearStaticCache_m1205116045 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  6820. {
  6821. static bool s_Il2CppMethodInitialized;
  6822. if (!s_Il2CppMethodInitialized)
  6823. {
  6824. il2cpp_codegen_initialize_method (GUIContent_ClearStaticCache_m1205116045_MetadataUsageId);
  6825. s_Il2CppMethodInitialized = true;
  6826. }
  6827. {
  6828. IL2CPP_RUNTIME_CLASS_INIT(GUIContent_t3050628031_il2cpp_TypeInfo_var);
  6829. GUIContent_t3050628031 * L_0 = ((GUIContent_t3050628031_StaticFields*)il2cpp_codegen_static_fields_for(GUIContent_t3050628031_il2cpp_TypeInfo_var))->get_s_Text_3();
  6830. NullCheck(L_0);
  6831. L_0->set_m_Text_0((String_t*)NULL);
  6832. GUIContent_t3050628031 * L_1 = ((GUIContent_t3050628031_StaticFields*)il2cpp_codegen_static_fields_for(GUIContent_t3050628031_il2cpp_TypeInfo_var))->get_s_Text_3();
  6833. IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
  6834. String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2();
  6835. NullCheck(L_1);
  6836. L_1->set_m_Tooltip_2(L_2);
  6837. GUIContent_t3050628031 * L_3 = ((GUIContent_t3050628031_StaticFields*)il2cpp_codegen_static_fields_for(GUIContent_t3050628031_il2cpp_TypeInfo_var))->get_s_Image_4();
  6838. NullCheck(L_3);
  6839. L_3->set_m_Image_1((Texture_t3661962703 *)NULL);
  6840. GUIContent_t3050628031 * L_4 = ((GUIContent_t3050628031_StaticFields*)il2cpp_codegen_static_fields_for(GUIContent_t3050628031_il2cpp_TypeInfo_var))->get_s_Image_4();
  6841. String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2();
  6842. NullCheck(L_4);
  6843. L_4->set_m_Tooltip_2(L_5);
  6844. GUIContent_t3050628031 * L_6 = ((GUIContent_t3050628031_StaticFields*)il2cpp_codegen_static_fields_for(GUIContent_t3050628031_il2cpp_TypeInfo_var))->get_s_TextImage_5();
  6845. NullCheck(L_6);
  6846. L_6->set_m_Text_0((String_t*)NULL);
  6847. GUIContent_t3050628031 * L_7 = ((GUIContent_t3050628031_StaticFields*)il2cpp_codegen_static_fields_for(GUIContent_t3050628031_il2cpp_TypeInfo_var))->get_s_TextImage_5();
  6848. NullCheck(L_7);
  6849. L_7->set_m_Image_1((Texture_t3661962703 *)NULL);
  6850. return;
  6851. }
  6852. }
  6853. // System.Void UnityEngine.GUIContent::.cctor()
  6854. extern "C" IL2CPP_METHOD_ATTR void GUIContent__cctor_m3964999451 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  6855. {
  6856. static bool s_Il2CppMethodInitialized;
  6857. if (!s_Il2CppMethodInitialized)
  6858. {
  6859. il2cpp_codegen_initialize_method (GUIContent__cctor_m3964999451_MetadataUsageId);
  6860. s_Il2CppMethodInitialized = true;
  6861. }
  6862. {
  6863. GUIContent_t3050628031 * L_0 = (GUIContent_t3050628031 *)il2cpp_codegen_object_new(GUIContent_t3050628031_il2cpp_TypeInfo_var);
  6864. GUIContent__ctor_m3360759894(L_0, /*hidden argument*/NULL);
  6865. ((GUIContent_t3050628031_StaticFields*)il2cpp_codegen_static_fields_for(GUIContent_t3050628031_il2cpp_TypeInfo_var))->set_s_Text_3(L_0);
  6866. GUIContent_t3050628031 * L_1 = (GUIContent_t3050628031 *)il2cpp_codegen_object_new(GUIContent_t3050628031_il2cpp_TypeInfo_var);
  6867. GUIContent__ctor_m3360759894(L_1, /*hidden argument*/NULL);
  6868. ((GUIContent_t3050628031_StaticFields*)il2cpp_codegen_static_fields_for(GUIContent_t3050628031_il2cpp_TypeInfo_var))->set_s_Image_4(L_1);
  6869. GUIContent_t3050628031 * L_2 = (GUIContent_t3050628031 *)il2cpp_codegen_object_new(GUIContent_t3050628031_il2cpp_TypeInfo_var);
  6870. GUIContent__ctor_m3360759894(L_2, /*hidden argument*/NULL);
  6871. ((GUIContent_t3050628031_StaticFields*)il2cpp_codegen_static_fields_for(GUIContent_t3050628031_il2cpp_TypeInfo_var))->set_s_TextImage_5(L_2);
  6872. GUIContent_t3050628031 * L_3 = (GUIContent_t3050628031 *)il2cpp_codegen_object_new(GUIContent_t3050628031_il2cpp_TypeInfo_var);
  6873. GUIContent__ctor_m890195579(L_3, _stringLiteral757602046, /*hidden argument*/NULL);
  6874. ((GUIContent_t3050628031_StaticFields*)il2cpp_codegen_static_fields_for(GUIContent_t3050628031_il2cpp_TypeInfo_var))->set_none_6(L_3);
  6875. return;
  6876. }
  6877. }
  6878. #ifdef __clang__
  6879. #pragma clang diagnostic pop
  6880. #endif
  6881. #ifdef __clang__
  6882. #pragma clang diagnostic push
  6883. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6884. #pragma clang diagnostic ignored "-Wunused-variable"
  6885. #endif
  6886. // System.Void UnityEngine.GUILayout::Label(System.String,UnityEngine.GUILayoutOption[])
  6887. extern "C" IL2CPP_METHOD_ATTR void GUILayout_Label_m1960000298 (RuntimeObject * __this /* static, unused */, String_t* ___text0, GUILayoutOptionU5BU5D_t2510215842* ___options1, const RuntimeMethod* method)
  6888. {
  6889. static bool s_Il2CppMethodInitialized;
  6890. if (!s_Il2CppMethodInitialized)
  6891. {
  6892. il2cpp_codegen_initialize_method (GUILayout_Label_m1960000298_MetadataUsageId);
  6893. s_Il2CppMethodInitialized = true;
  6894. }
  6895. {
  6896. String_t* L_0 = ___text0;
  6897. IL2CPP_RUNTIME_CLASS_INIT(GUIContent_t3050628031_il2cpp_TypeInfo_var);
  6898. GUIContent_t3050628031 * L_1 = GUIContent_Temp_m3538793263(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
  6899. IL2CPP_RUNTIME_CLASS_INIT(GUI_t1624858472_il2cpp_TypeInfo_var);
  6900. GUISkin_t1244372282 * L_2 = GUI_get_skin_m1874615010(NULL /*static, unused*/, /*hidden argument*/NULL);
  6901. NullCheck(L_2);
  6902. GUIStyle_t3956901511 * L_3 = GUISkin_get_label_m1693050720(L_2, /*hidden argument*/NULL);
  6903. GUILayoutOptionU5BU5D_t2510215842* L_4 = ___options1;
  6904. GUILayout_DoLabel_m607126153(NULL /*static, unused*/, L_1, L_3, L_4, /*hidden argument*/NULL);
  6905. return;
  6906. }
  6907. }
  6908. // System.Void UnityEngine.GUILayout::DoLabel(UnityEngine.GUIContent,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])
  6909. extern "C" IL2CPP_METHOD_ATTR void GUILayout_DoLabel_m607126153 (RuntimeObject * __this /* static, unused */, GUIContent_t3050628031 * ___content0, GUIStyle_t3956901511 * ___style1, GUILayoutOptionU5BU5D_t2510215842* ___options2, const RuntimeMethod* method)
  6910. {
  6911. static bool s_Il2CppMethodInitialized;
  6912. if (!s_Il2CppMethodInitialized)
  6913. {
  6914. il2cpp_codegen_initialize_method (GUILayout_DoLabel_m607126153_MetadataUsageId);
  6915. s_Il2CppMethodInitialized = true;
  6916. }
  6917. {
  6918. GUIContent_t3050628031 * L_0 = ___content0;
  6919. GUIStyle_t3956901511 * L_1 = ___style1;
  6920. GUILayoutOptionU5BU5D_t2510215842* L_2 = ___options2;
  6921. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  6922. Rect_t2360479859 L_3 = GUILayoutUtility_GetRect_m1923267526(NULL /*static, unused*/, L_0, L_1, L_2, /*hidden argument*/NULL);
  6923. GUIContent_t3050628031 * L_4 = ___content0;
  6924. GUIStyle_t3956901511 * L_5 = ___style1;
  6925. IL2CPP_RUNTIME_CLASS_INIT(GUI_t1624858472_il2cpp_TypeInfo_var);
  6926. GUI_Label_m3404668030(NULL /*static, unused*/, L_3, L_4, L_5, /*hidden argument*/NULL);
  6927. return;
  6928. }
  6929. }
  6930. // UnityEngine.GUILayoutOption UnityEngine.GUILayout::Width(System.Single)
  6931. extern "C" IL2CPP_METHOD_ATTR GUILayoutOption_t811797299 * GUILayout_Width_m1777696537 (RuntimeObject * __this /* static, unused */, float ___width0, const RuntimeMethod* method)
  6932. {
  6933. static bool s_Il2CppMethodInitialized;
  6934. if (!s_Il2CppMethodInitialized)
  6935. {
  6936. il2cpp_codegen_initialize_method (GUILayout_Width_m1777696537_MetadataUsageId);
  6937. s_Il2CppMethodInitialized = true;
  6938. }
  6939. GUILayoutOption_t811797299 * V_0 = NULL;
  6940. {
  6941. float L_0 = ___width0;
  6942. float L_1 = L_0;
  6943. RuntimeObject * L_2 = Box(Single_t1397266774_il2cpp_TypeInfo_var, &L_1);
  6944. GUILayoutOption_t811797299 * L_3 = (GUILayoutOption_t811797299 *)il2cpp_codegen_object_new(GUILayoutOption_t811797299_il2cpp_TypeInfo_var);
  6945. GUILayoutOption__ctor_m2091649807(L_3, 0, L_2, /*hidden argument*/NULL);
  6946. V_0 = L_3;
  6947. goto IL_0013;
  6948. }
  6949. IL_0013:
  6950. {
  6951. GUILayoutOption_t811797299 * L_4 = V_0;
  6952. return L_4;
  6953. }
  6954. }
  6955. // UnityEngine.GUILayoutOption UnityEngine.GUILayout::Height(System.Single)
  6956. extern "C" IL2CPP_METHOD_ATTR GUILayoutOption_t811797299 * GUILayout_Height_m3349769634 (RuntimeObject * __this /* static, unused */, float ___height0, const RuntimeMethod* method)
  6957. {
  6958. static bool s_Il2CppMethodInitialized;
  6959. if (!s_Il2CppMethodInitialized)
  6960. {
  6961. il2cpp_codegen_initialize_method (GUILayout_Height_m3349769634_MetadataUsageId);
  6962. s_Il2CppMethodInitialized = true;
  6963. }
  6964. GUILayoutOption_t811797299 * V_0 = NULL;
  6965. {
  6966. float L_0 = ___height0;
  6967. float L_1 = L_0;
  6968. RuntimeObject * L_2 = Box(Single_t1397266774_il2cpp_TypeInfo_var, &L_1);
  6969. GUILayoutOption_t811797299 * L_3 = (GUILayoutOption_t811797299 *)il2cpp_codegen_object_new(GUILayoutOption_t811797299_il2cpp_TypeInfo_var);
  6970. GUILayoutOption__ctor_m2091649807(L_3, 1, L_2, /*hidden argument*/NULL);
  6971. V_0 = L_3;
  6972. goto IL_0013;
  6973. }
  6974. IL_0013:
  6975. {
  6976. GUILayoutOption_t811797299 * L_4 = V_0;
  6977. return L_4;
  6978. }
  6979. }
  6980. #ifdef __clang__
  6981. #pragma clang diagnostic pop
  6982. #endif
  6983. #ifdef __clang__
  6984. #pragma clang diagnostic push
  6985. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6986. #pragma clang diagnostic ignored "-Wunused-variable"
  6987. #endif
  6988. // System.Void UnityEngine.GUILayoutEntry::.ctor(System.Single,System.Single,System.Single,System.Single,UnityEngine.GUIStyle)
  6989. extern "C" IL2CPP_METHOD_ATTR void GUILayoutEntry__ctor_m2229197035 (GUILayoutEntry_t3214611570 * __this, float ____minWidth0, float ____maxWidth1, float ____minHeight2, float ____maxHeight3, GUIStyle_t3956901511 * ____style4, const RuntimeMethod* method)
  6990. {
  6991. static bool s_Il2CppMethodInitialized;
  6992. if (!s_Il2CppMethodInitialized)
  6993. {
  6994. il2cpp_codegen_initialize_method (GUILayoutEntry__ctor_m2229197035_MetadataUsageId);
  6995. s_Il2CppMethodInitialized = true;
  6996. }
  6997. {
  6998. Rect_t2360479859 L_0;
  6999. memset(&L_0, 0, sizeof(L_0));
  7000. Rect__ctor_m2614021312((&L_0), (0.0f), (0.0f), (0.0f), (0.0f), /*hidden argument*/NULL);
  7001. __this->set_rect_4(L_0);
  7002. IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t3956901511_il2cpp_TypeInfo_var);
  7003. GUIStyle_t3956901511 * L_1 = GUIStyle_get_none_m1545577352(NULL /*static, unused*/, /*hidden argument*/NULL);
  7004. __this->set_m_Style_7(L_1);
  7005. Object__ctor_m297566312(__this, /*hidden argument*/NULL);
  7006. float L_2 = ____minWidth0;
  7007. __this->set_minWidth_0(L_2);
  7008. float L_3 = ____maxWidth1;
  7009. __this->set_maxWidth_1(L_3);
  7010. float L_4 = ____minHeight2;
  7011. __this->set_minHeight_2(L_4);
  7012. float L_5 = ____maxHeight3;
  7013. __this->set_maxHeight_3(L_5);
  7014. GUIStyle_t3956901511 * L_6 = ____style4;
  7015. if (L_6)
  7016. {
  7017. goto IL_005c;
  7018. }
  7019. }
  7020. {
  7021. IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t3956901511_il2cpp_TypeInfo_var);
  7022. GUIStyle_t3956901511 * L_7 = GUIStyle_get_none_m1545577352(NULL /*static, unused*/, /*hidden argument*/NULL);
  7023. ____style4 = L_7;
  7024. }
  7025. IL_005c:
  7026. {
  7027. GUIStyle_t3956901511 * L_8 = ____style4;
  7028. GUILayoutEntry_set_style_m1702960184(__this, L_8, /*hidden argument*/NULL);
  7029. return;
  7030. }
  7031. }
  7032. // System.Void UnityEngine.GUILayoutEntry::.ctor(System.Single,System.Single,System.Single,System.Single,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])
  7033. extern "C" IL2CPP_METHOD_ATTR void GUILayoutEntry__ctor_m1644640309 (GUILayoutEntry_t3214611570 * __this, float ____minWidth0, float ____maxWidth1, float ____minHeight2, float ____maxHeight3, GUIStyle_t3956901511 * ____style4, GUILayoutOptionU5BU5D_t2510215842* ___options5, const RuntimeMethod* method)
  7034. {
  7035. static bool s_Il2CppMethodInitialized;
  7036. if (!s_Il2CppMethodInitialized)
  7037. {
  7038. il2cpp_codegen_initialize_method (GUILayoutEntry__ctor_m1644640309_MetadataUsageId);
  7039. s_Il2CppMethodInitialized = true;
  7040. }
  7041. {
  7042. Rect_t2360479859 L_0;
  7043. memset(&L_0, 0, sizeof(L_0));
  7044. Rect__ctor_m2614021312((&L_0), (0.0f), (0.0f), (0.0f), (0.0f), /*hidden argument*/NULL);
  7045. __this->set_rect_4(L_0);
  7046. IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t3956901511_il2cpp_TypeInfo_var);
  7047. GUIStyle_t3956901511 * L_1 = GUIStyle_get_none_m1545577352(NULL /*static, unused*/, /*hidden argument*/NULL);
  7048. __this->set_m_Style_7(L_1);
  7049. Object__ctor_m297566312(__this, /*hidden argument*/NULL);
  7050. float L_2 = ____minWidth0;
  7051. __this->set_minWidth_0(L_2);
  7052. float L_3 = ____maxWidth1;
  7053. __this->set_maxWidth_1(L_3);
  7054. float L_4 = ____minHeight2;
  7055. __this->set_minHeight_2(L_4);
  7056. float L_5 = ____maxHeight3;
  7057. __this->set_maxHeight_3(L_5);
  7058. GUIStyle_t3956901511 * L_6 = ____style4;
  7059. GUILayoutEntry_set_style_m1702960184(__this, L_6, /*hidden argument*/NULL);
  7060. GUILayoutOptionU5BU5D_t2510215842* L_7 = ___options5;
  7061. VirtActionInvoker1< GUILayoutOptionU5BU5D_t2510215842* >::Invoke(10 /* System.Void UnityEngine.GUILayoutEntry::ApplyOptions(UnityEngine.GUILayoutOption[]) */, __this, L_7);
  7062. return;
  7063. }
  7064. }
  7065. // UnityEngine.GUIStyle UnityEngine.GUILayoutEntry::get_style()
  7066. extern "C" IL2CPP_METHOD_ATTR GUIStyle_t3956901511 * GUILayoutEntry_get_style_m3965981147 (GUILayoutEntry_t3214611570 * __this, const RuntimeMethod* method)
  7067. {
  7068. GUIStyle_t3956901511 * V_0 = NULL;
  7069. {
  7070. GUIStyle_t3956901511 * L_0 = __this->get_m_Style_7();
  7071. V_0 = L_0;
  7072. goto IL_000d;
  7073. }
  7074. IL_000d:
  7075. {
  7076. GUIStyle_t3956901511 * L_1 = V_0;
  7077. return L_1;
  7078. }
  7079. }
  7080. // System.Void UnityEngine.GUILayoutEntry::set_style(UnityEngine.GUIStyle)
  7081. extern "C" IL2CPP_METHOD_ATTR void GUILayoutEntry_set_style_m1702960184 (GUILayoutEntry_t3214611570 * __this, GUIStyle_t3956901511 * ___value0, const RuntimeMethod* method)
  7082. {
  7083. {
  7084. GUIStyle_t3956901511 * L_0 = ___value0;
  7085. __this->set_m_Style_7(L_0);
  7086. GUIStyle_t3956901511 * L_1 = ___value0;
  7087. VirtActionInvoker1< GUIStyle_t3956901511 * >::Invoke(9 /* System.Void UnityEngine.GUILayoutEntry::ApplyStyleSettings(UnityEngine.GUIStyle) */, __this, L_1);
  7088. return;
  7089. }
  7090. }
  7091. // UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin()
  7092. extern "C" IL2CPP_METHOD_ATTR RectOffset_t1369453676 * GUILayoutEntry_get_margin_m3174861737 (GUILayoutEntry_t3214611570 * __this, const RuntimeMethod* method)
  7093. {
  7094. RectOffset_t1369453676 * V_0 = NULL;
  7095. {
  7096. GUIStyle_t3956901511 * L_0 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  7097. NullCheck(L_0);
  7098. RectOffset_t1369453676 * L_1 = GUIStyle_get_margin_m3595798603(L_0, /*hidden argument*/NULL);
  7099. V_0 = L_1;
  7100. goto IL_0012;
  7101. }
  7102. IL_0012:
  7103. {
  7104. RectOffset_t1369453676 * L_2 = V_0;
  7105. return L_2;
  7106. }
  7107. }
  7108. // System.Void UnityEngine.GUILayoutEntry::CalcWidth()
  7109. extern "C" IL2CPP_METHOD_ATTR void GUILayoutEntry_CalcWidth_m3962591050 (GUILayoutEntry_t3214611570 * __this, const RuntimeMethod* method)
  7110. {
  7111. {
  7112. return;
  7113. }
  7114. }
  7115. // System.Void UnityEngine.GUILayoutEntry::CalcHeight()
  7116. extern "C" IL2CPP_METHOD_ATTR void GUILayoutEntry_CalcHeight_m441380239 (GUILayoutEntry_t3214611570 * __this, const RuntimeMethod* method)
  7117. {
  7118. {
  7119. return;
  7120. }
  7121. }
  7122. // System.Void UnityEngine.GUILayoutEntry::SetHorizontal(System.Single,System.Single)
  7123. extern "C" IL2CPP_METHOD_ATTR void GUILayoutEntry_SetHorizontal_m3919283295 (GUILayoutEntry_t3214611570 * __this, float ___x0, float ___width1, const RuntimeMethod* method)
  7124. {
  7125. {
  7126. Rect_t2360479859 * L_0 = __this->get_address_of_rect_4();
  7127. float L_1 = ___x0;
  7128. Rect_set_x_m2352063068(L_0, L_1, /*hidden argument*/NULL);
  7129. Rect_t2360479859 * L_2 = __this->get_address_of_rect_4();
  7130. float L_3 = ___width1;
  7131. Rect_set_width_m2963421158(L_2, L_3, /*hidden argument*/NULL);
  7132. return;
  7133. }
  7134. }
  7135. // System.Void UnityEngine.GUILayoutEntry::SetVertical(System.Single,System.Single)
  7136. extern "C" IL2CPP_METHOD_ATTR void GUILayoutEntry_SetVertical_m1089980778 (GUILayoutEntry_t3214611570 * __this, float ___y0, float ___height1, const RuntimeMethod* method)
  7137. {
  7138. {
  7139. Rect_t2360479859 * L_0 = __this->get_address_of_rect_4();
  7140. float L_1 = ___y0;
  7141. Rect_set_y_m3702432190(L_0, L_1, /*hidden argument*/NULL);
  7142. Rect_t2360479859 * L_2 = __this->get_address_of_rect_4();
  7143. float L_3 = ___height1;
  7144. Rect_set_height_m1625569324(L_2, L_3, /*hidden argument*/NULL);
  7145. return;
  7146. }
  7147. }
  7148. // System.Void UnityEngine.GUILayoutEntry::ApplyStyleSettings(UnityEngine.GUIStyle)
  7149. extern "C" IL2CPP_METHOD_ATTR void GUILayoutEntry_ApplyStyleSettings_m4137899058 (GUILayoutEntry_t3214611570 * __this, GUIStyle_t3956901511 * ___style0, const RuntimeMethod* method)
  7150. {
  7151. GUILayoutEntry_t3214611570 * G_B3_0 = NULL;
  7152. GUILayoutEntry_t3214611570 * G_B1_0 = NULL;
  7153. GUILayoutEntry_t3214611570 * G_B2_0 = NULL;
  7154. int32_t G_B4_0 = 0;
  7155. GUILayoutEntry_t3214611570 * G_B4_1 = NULL;
  7156. GUILayoutEntry_t3214611570 * G_B7_0 = NULL;
  7157. GUILayoutEntry_t3214611570 * G_B5_0 = NULL;
  7158. GUILayoutEntry_t3214611570 * G_B6_0 = NULL;
  7159. int32_t G_B8_0 = 0;
  7160. GUILayoutEntry_t3214611570 * G_B8_1 = NULL;
  7161. {
  7162. GUIStyle_t3956901511 * L_0 = ___style0;
  7163. NullCheck(L_0);
  7164. float L_1 = GUIStyle_get_fixedWidth_m2576616348(L_0, /*hidden argument*/NULL);
  7165. G_B1_0 = __this;
  7166. if ((!(((float)L_1) == ((float)(0.0f)))))
  7167. {
  7168. G_B3_0 = __this;
  7169. goto IL_0023;
  7170. }
  7171. }
  7172. {
  7173. GUIStyle_t3956901511 * L_2 = ___style0;
  7174. NullCheck(L_2);
  7175. bool L_3 = GUIStyle_get_stretchWidth_m3556443132(L_2, /*hidden argument*/NULL);
  7176. G_B2_0 = G_B1_0;
  7177. if (!L_3)
  7178. {
  7179. G_B3_0 = G_B1_0;
  7180. goto IL_0023;
  7181. }
  7182. }
  7183. {
  7184. G_B4_0 = 1;
  7185. G_B4_1 = G_B2_0;
  7186. goto IL_0024;
  7187. }
  7188. IL_0023:
  7189. {
  7190. G_B4_0 = 0;
  7191. G_B4_1 = G_B3_0;
  7192. }
  7193. IL_0024:
  7194. {
  7195. NullCheck(G_B4_1);
  7196. G_B4_1->set_stretchWidth_5(G_B4_0);
  7197. GUIStyle_t3956901511 * L_4 = ___style0;
  7198. NullCheck(L_4);
  7199. float L_5 = GUIStyle_get_fixedHeight_m2868324709(L_4, /*hidden argument*/NULL);
  7200. G_B5_0 = __this;
  7201. if ((!(((float)L_5) == ((float)(0.0f)))))
  7202. {
  7203. G_B7_0 = __this;
  7204. goto IL_004b;
  7205. }
  7206. }
  7207. {
  7208. GUIStyle_t3956901511 * L_6 = ___style0;
  7209. NullCheck(L_6);
  7210. bool L_7 = GUIStyle_get_stretchHeight_m4172805773(L_6, /*hidden argument*/NULL);
  7211. G_B6_0 = G_B5_0;
  7212. if (!L_7)
  7213. {
  7214. G_B7_0 = G_B5_0;
  7215. goto IL_004b;
  7216. }
  7217. }
  7218. {
  7219. G_B8_0 = 1;
  7220. G_B8_1 = G_B6_0;
  7221. goto IL_004c;
  7222. }
  7223. IL_004b:
  7224. {
  7225. G_B8_0 = 0;
  7226. G_B8_1 = G_B7_0;
  7227. }
  7228. IL_004c:
  7229. {
  7230. NullCheck(G_B8_1);
  7231. G_B8_1->set_stretchHeight_6(G_B8_0);
  7232. GUIStyle_t3956901511 * L_8 = ___style0;
  7233. __this->set_m_Style_7(L_8);
  7234. return;
  7235. }
  7236. }
  7237. // System.Void UnityEngine.GUILayoutEntry::ApplyOptions(UnityEngine.GUILayoutOption[])
  7238. extern "C" IL2CPP_METHOD_ATTR void GUILayoutEntry_ApplyOptions_m1741659338 (GUILayoutEntry_t3214611570 * __this, GUILayoutOptionU5BU5D_t2510215842* ___options0, const RuntimeMethod* method)
  7239. {
  7240. static bool s_Il2CppMethodInitialized;
  7241. if (!s_Il2CppMethodInitialized)
  7242. {
  7243. il2cpp_codegen_initialize_method (GUILayoutEntry_ApplyOptions_m1741659338_MetadataUsageId);
  7244. s_Il2CppMethodInitialized = true;
  7245. }
  7246. GUILayoutOption_t811797299 * V_0 = NULL;
  7247. GUILayoutOptionU5BU5D_t2510215842* V_1 = NULL;
  7248. int32_t V_2 = 0;
  7249. int32_t V_3 = 0;
  7250. float V_4 = 0.0f;
  7251. {
  7252. GUILayoutOptionU5BU5D_t2510215842* L_0 = ___options0;
  7253. if (L_0)
  7254. {
  7255. goto IL_000c;
  7256. }
  7257. }
  7258. {
  7259. goto IL_020b;
  7260. }
  7261. IL_000c:
  7262. {
  7263. GUILayoutOptionU5BU5D_t2510215842* L_1 = ___options0;
  7264. V_1 = L_1;
  7265. V_2 = 0;
  7266. goto IL_01a8;
  7267. }
  7268. IL_0016:
  7269. {
  7270. GUILayoutOptionU5BU5D_t2510215842* L_2 = V_1;
  7271. int32_t L_3 = V_2;
  7272. NullCheck(L_2);
  7273. int32_t L_4 = L_3;
  7274. GUILayoutOption_t811797299 * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
  7275. V_0 = L_5;
  7276. GUILayoutOption_t811797299 * L_6 = V_0;
  7277. NullCheck(L_6);
  7278. int32_t L_7 = L_6->get_type_0();
  7279. V_3 = L_7;
  7280. int32_t L_8 = V_3;
  7281. switch (L_8)
  7282. {
  7283. case 0:
  7284. {
  7285. goto IL_004d;
  7286. }
  7287. case 1:
  7288. {
  7289. goto IL_0075;
  7290. }
  7291. case 2:
  7292. {
  7293. goto IL_009d;
  7294. }
  7295. case 3:
  7296. {
  7297. goto IL_00d0;
  7298. }
  7299. case 4:
  7300. {
  7301. goto IL_010a;
  7302. }
  7303. case 5:
  7304. {
  7305. goto IL_013d;
  7306. }
  7307. case 6:
  7308. {
  7309. goto IL_0177;
  7310. }
  7311. case 7:
  7312. {
  7313. goto IL_018d;
  7314. }
  7315. }
  7316. }
  7317. {
  7318. goto IL_01a3;
  7319. }
  7320. IL_004d:
  7321. {
  7322. GUILayoutOption_t811797299 * L_9 = V_0;
  7323. NullCheck(L_9);
  7324. RuntimeObject * L_10 = L_9->get_value_1();
  7325. float L_11 = ((*(float*)((float*)UnBox(L_10, Single_t1397266774_il2cpp_TypeInfo_var))));
  7326. V_4 = L_11;
  7327. __this->set_maxWidth_1(L_11);
  7328. float L_12 = V_4;
  7329. __this->set_minWidth_0(L_12);
  7330. __this->set_stretchWidth_5(0);
  7331. goto IL_01a3;
  7332. }
  7333. IL_0075:
  7334. {
  7335. GUILayoutOption_t811797299 * L_13 = V_0;
  7336. NullCheck(L_13);
  7337. RuntimeObject * L_14 = L_13->get_value_1();
  7338. float L_15 = ((*(float*)((float*)UnBox(L_14, Single_t1397266774_il2cpp_TypeInfo_var))));
  7339. V_4 = L_15;
  7340. __this->set_maxHeight_3(L_15);
  7341. float L_16 = V_4;
  7342. __this->set_minHeight_2(L_16);
  7343. __this->set_stretchHeight_6(0);
  7344. goto IL_01a3;
  7345. }
  7346. IL_009d:
  7347. {
  7348. GUILayoutOption_t811797299 * L_17 = V_0;
  7349. NullCheck(L_17);
  7350. RuntimeObject * L_18 = L_17->get_value_1();
  7351. __this->set_minWidth_0(((*(float*)((float*)UnBox(L_18, Single_t1397266774_il2cpp_TypeInfo_var)))));
  7352. float L_19 = __this->get_maxWidth_1();
  7353. float L_20 = __this->get_minWidth_0();
  7354. if ((!(((float)L_19) < ((float)L_20))))
  7355. {
  7356. goto IL_00cb;
  7357. }
  7358. }
  7359. {
  7360. float L_21 = __this->get_minWidth_0();
  7361. __this->set_maxWidth_1(L_21);
  7362. }
  7363. IL_00cb:
  7364. {
  7365. goto IL_01a3;
  7366. }
  7367. IL_00d0:
  7368. {
  7369. GUILayoutOption_t811797299 * L_22 = V_0;
  7370. NullCheck(L_22);
  7371. RuntimeObject * L_23 = L_22->get_value_1();
  7372. __this->set_maxWidth_1(((*(float*)((float*)UnBox(L_23, Single_t1397266774_il2cpp_TypeInfo_var)))));
  7373. float L_24 = __this->get_minWidth_0();
  7374. float L_25 = __this->get_maxWidth_1();
  7375. if ((!(((float)L_24) > ((float)L_25))))
  7376. {
  7377. goto IL_00fe;
  7378. }
  7379. }
  7380. {
  7381. float L_26 = __this->get_maxWidth_1();
  7382. __this->set_minWidth_0(L_26);
  7383. }
  7384. IL_00fe:
  7385. {
  7386. __this->set_stretchWidth_5(0);
  7387. goto IL_01a3;
  7388. }
  7389. IL_010a:
  7390. {
  7391. GUILayoutOption_t811797299 * L_27 = V_0;
  7392. NullCheck(L_27);
  7393. RuntimeObject * L_28 = L_27->get_value_1();
  7394. __this->set_minHeight_2(((*(float*)((float*)UnBox(L_28, Single_t1397266774_il2cpp_TypeInfo_var)))));
  7395. float L_29 = __this->get_maxHeight_3();
  7396. float L_30 = __this->get_minHeight_2();
  7397. if ((!(((float)L_29) < ((float)L_30))))
  7398. {
  7399. goto IL_0138;
  7400. }
  7401. }
  7402. {
  7403. float L_31 = __this->get_minHeight_2();
  7404. __this->set_maxHeight_3(L_31);
  7405. }
  7406. IL_0138:
  7407. {
  7408. goto IL_01a3;
  7409. }
  7410. IL_013d:
  7411. {
  7412. GUILayoutOption_t811797299 * L_32 = V_0;
  7413. NullCheck(L_32);
  7414. RuntimeObject * L_33 = L_32->get_value_1();
  7415. __this->set_maxHeight_3(((*(float*)((float*)UnBox(L_33, Single_t1397266774_il2cpp_TypeInfo_var)))));
  7416. float L_34 = __this->get_minHeight_2();
  7417. float L_35 = __this->get_maxHeight_3();
  7418. if ((!(((float)L_34) > ((float)L_35))))
  7419. {
  7420. goto IL_016b;
  7421. }
  7422. }
  7423. {
  7424. float L_36 = __this->get_maxHeight_3();
  7425. __this->set_minHeight_2(L_36);
  7426. }
  7427. IL_016b:
  7428. {
  7429. __this->set_stretchHeight_6(0);
  7430. goto IL_01a3;
  7431. }
  7432. IL_0177:
  7433. {
  7434. GUILayoutOption_t811797299 * L_37 = V_0;
  7435. NullCheck(L_37);
  7436. RuntimeObject * L_38 = L_37->get_value_1();
  7437. __this->set_stretchWidth_5(((*(int32_t*)((int32_t*)UnBox(L_38, Int32_t2950945753_il2cpp_TypeInfo_var)))));
  7438. goto IL_01a3;
  7439. }
  7440. IL_018d:
  7441. {
  7442. GUILayoutOption_t811797299 * L_39 = V_0;
  7443. NullCheck(L_39);
  7444. RuntimeObject * L_40 = L_39->get_value_1();
  7445. __this->set_stretchHeight_6(((*(int32_t*)((int32_t*)UnBox(L_40, Int32_t2950945753_il2cpp_TypeInfo_var)))));
  7446. goto IL_01a3;
  7447. }
  7448. IL_01a3:
  7449. {
  7450. int32_t L_41 = V_2;
  7451. V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1));
  7452. }
  7453. IL_01a8:
  7454. {
  7455. int32_t L_42 = V_2;
  7456. GUILayoutOptionU5BU5D_t2510215842* L_43 = V_1;
  7457. NullCheck(L_43);
  7458. if ((((int32_t)L_42) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_43)->max_length)))))))
  7459. {
  7460. goto IL_0016;
  7461. }
  7462. }
  7463. {
  7464. float L_44 = __this->get_maxWidth_1();
  7465. if ((((float)L_44) == ((float)(0.0f))))
  7466. {
  7467. goto IL_01de;
  7468. }
  7469. }
  7470. {
  7471. float L_45 = __this->get_maxWidth_1();
  7472. float L_46 = __this->get_minWidth_0();
  7473. if ((!(((float)L_45) < ((float)L_46))))
  7474. {
  7475. goto IL_01de;
  7476. }
  7477. }
  7478. {
  7479. float L_47 = __this->get_minWidth_0();
  7480. __this->set_maxWidth_1(L_47);
  7481. }
  7482. IL_01de:
  7483. {
  7484. float L_48 = __this->get_maxHeight_3();
  7485. if ((((float)L_48) == ((float)(0.0f))))
  7486. {
  7487. goto IL_020b;
  7488. }
  7489. }
  7490. {
  7491. float L_49 = __this->get_maxHeight_3();
  7492. float L_50 = __this->get_minHeight_2();
  7493. if ((!(((float)L_49) < ((float)L_50))))
  7494. {
  7495. goto IL_020b;
  7496. }
  7497. }
  7498. {
  7499. float L_51 = __this->get_minHeight_2();
  7500. __this->set_maxHeight_3(L_51);
  7501. }
  7502. IL_020b:
  7503. {
  7504. return;
  7505. }
  7506. }
  7507. // System.String UnityEngine.GUILayoutEntry::ToString()
  7508. extern "C" IL2CPP_METHOD_ATTR String_t* GUILayoutEntry_ToString_m3366663569 (GUILayoutEntry_t3214611570 * __this, const RuntimeMethod* method)
  7509. {
  7510. static bool s_Il2CppMethodInitialized;
  7511. if (!s_Il2CppMethodInitialized)
  7512. {
  7513. il2cpp_codegen_initialize_method (GUILayoutEntry_ToString_m3366663569_MetadataUsageId);
  7514. s_Il2CppMethodInitialized = true;
  7515. }
  7516. String_t* V_0 = NULL;
  7517. int32_t V_1 = 0;
  7518. String_t* V_2 = NULL;
  7519. int32_t G_B5_0 = 0;
  7520. ObjectU5BU5D_t2843939325* G_B5_1 = NULL;
  7521. ObjectU5BU5D_t2843939325* G_B5_2 = NULL;
  7522. String_t* G_B5_3 = NULL;
  7523. int32_t G_B5_4 = 0;
  7524. ObjectU5BU5D_t2843939325* G_B5_5 = NULL;
  7525. ObjectU5BU5D_t2843939325* G_B5_6 = NULL;
  7526. int32_t G_B4_0 = 0;
  7527. ObjectU5BU5D_t2843939325* G_B4_1 = NULL;
  7528. ObjectU5BU5D_t2843939325* G_B4_2 = NULL;
  7529. String_t* G_B4_3 = NULL;
  7530. int32_t G_B4_4 = 0;
  7531. ObjectU5BU5D_t2843939325* G_B4_5 = NULL;
  7532. ObjectU5BU5D_t2843939325* G_B4_6 = NULL;
  7533. String_t* G_B6_0 = NULL;
  7534. int32_t G_B6_1 = 0;
  7535. ObjectU5BU5D_t2843939325* G_B6_2 = NULL;
  7536. ObjectU5BU5D_t2843939325* G_B6_3 = NULL;
  7537. String_t* G_B6_4 = NULL;
  7538. int32_t G_B6_5 = 0;
  7539. ObjectU5BU5D_t2843939325* G_B6_6 = NULL;
  7540. ObjectU5BU5D_t2843939325* G_B6_7 = NULL;
  7541. int32_t G_B8_0 = 0;
  7542. ObjectU5BU5D_t2843939325* G_B8_1 = NULL;
  7543. ObjectU5BU5D_t2843939325* G_B8_2 = NULL;
  7544. int32_t G_B7_0 = 0;
  7545. ObjectU5BU5D_t2843939325* G_B7_1 = NULL;
  7546. ObjectU5BU5D_t2843939325* G_B7_2 = NULL;
  7547. String_t* G_B9_0 = NULL;
  7548. int32_t G_B9_1 = 0;
  7549. ObjectU5BU5D_t2843939325* G_B9_2 = NULL;
  7550. ObjectU5BU5D_t2843939325* G_B9_3 = NULL;
  7551. int32_t G_B11_0 = 0;
  7552. ObjectU5BU5D_t2843939325* G_B11_1 = NULL;
  7553. ObjectU5BU5D_t2843939325* G_B11_2 = NULL;
  7554. int32_t G_B10_0 = 0;
  7555. ObjectU5BU5D_t2843939325* G_B10_1 = NULL;
  7556. ObjectU5BU5D_t2843939325* G_B10_2 = NULL;
  7557. String_t* G_B12_0 = NULL;
  7558. int32_t G_B12_1 = 0;
  7559. ObjectU5BU5D_t2843939325* G_B12_2 = NULL;
  7560. ObjectU5BU5D_t2843939325* G_B12_3 = NULL;
  7561. {
  7562. V_0 = _stringLiteral757602046;
  7563. V_1 = 0;
  7564. goto IL_001e;
  7565. }
  7566. IL_000e:
  7567. {
  7568. String_t* L_0 = V_0;
  7569. IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
  7570. String_t* L_1 = String_Concat_m3937257545(NULL /*static, unused*/, L_0, _stringLiteral3452614528, /*hidden argument*/NULL);
  7571. V_0 = L_1;
  7572. int32_t L_2 = V_1;
  7573. V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1));
  7574. }
  7575. IL_001e:
  7576. {
  7577. int32_t L_3 = V_1;
  7578. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutEntry_t3214611570_il2cpp_TypeInfo_var);
  7579. int32_t L_4 = ((GUILayoutEntry_t3214611570_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutEntry_t3214611570_il2cpp_TypeInfo_var))->get_indent_9();
  7580. if ((((int32_t)L_3) < ((int32_t)L_4)))
  7581. {
  7582. goto IL_000e;
  7583. }
  7584. }
  7585. {
  7586. ObjectU5BU5D_t2843939325* L_5 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)((int32_t)12)));
  7587. String_t* L_6 = V_0;
  7588. NullCheck(L_5);
  7589. ArrayElementTypeCheck (L_5, L_6);
  7590. (L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_6);
  7591. ObjectU5BU5D_t2843939325* L_7 = L_5;
  7592. ObjectU5BU5D_t2843939325* L_8 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)6));
  7593. GUIStyle_t3956901511 * L_9 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  7594. G_B4_0 = 0;
  7595. G_B4_1 = L_8;
  7596. G_B4_2 = L_8;
  7597. G_B4_3 = _stringLiteral3787516126;
  7598. G_B4_4 = 1;
  7599. G_B4_5 = L_7;
  7600. G_B4_6 = L_7;
  7601. if (!L_9)
  7602. {
  7603. G_B5_0 = 0;
  7604. G_B5_1 = L_8;
  7605. G_B5_2 = L_8;
  7606. G_B5_3 = _stringLiteral3787516126;
  7607. G_B5_4 = 1;
  7608. G_B5_5 = L_7;
  7609. G_B5_6 = L_7;
  7610. goto IL_005e;
  7611. }
  7612. }
  7613. {
  7614. GUIStyle_t3956901511 * L_10 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  7615. NullCheck(L_10);
  7616. String_t* L_11 = GUIStyle_get_name_m2109418832(L_10, /*hidden argument*/NULL);
  7617. G_B6_0 = L_11;
  7618. G_B6_1 = G_B4_0;
  7619. G_B6_2 = G_B4_1;
  7620. G_B6_3 = G_B4_2;
  7621. G_B6_4 = G_B4_3;
  7622. G_B6_5 = G_B4_4;
  7623. G_B6_6 = G_B4_5;
  7624. G_B6_7 = G_B4_6;
  7625. goto IL_0063;
  7626. }
  7627. IL_005e:
  7628. {
  7629. G_B6_0 = _stringLiteral1602229408;
  7630. G_B6_1 = G_B5_0;
  7631. G_B6_2 = G_B5_1;
  7632. G_B6_3 = G_B5_2;
  7633. G_B6_4 = G_B5_3;
  7634. G_B6_5 = G_B5_4;
  7635. G_B6_6 = G_B5_5;
  7636. G_B6_7 = G_B5_6;
  7637. }
  7638. IL_0063:
  7639. {
  7640. NullCheck(G_B6_2);
  7641. ArrayElementTypeCheck (G_B6_2, G_B6_0);
  7642. (G_B6_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B6_1), (RuntimeObject *)G_B6_0);
  7643. ObjectU5BU5D_t2843939325* L_12 = G_B6_3;
  7644. Type_t * L_13 = Object_GetType_m88164663(__this, /*hidden argument*/NULL);
  7645. NullCheck(L_12);
  7646. ArrayElementTypeCheck (L_12, L_13);
  7647. (L_12)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_13);
  7648. ObjectU5BU5D_t2843939325* L_14 = L_12;
  7649. Rect_t2360479859 * L_15 = __this->get_address_of_rect_4();
  7650. float L_16 = Rect_get_x_m3839990490(L_15, /*hidden argument*/NULL);
  7651. float L_17 = L_16;
  7652. RuntimeObject * L_18 = Box(Single_t1397266774_il2cpp_TypeInfo_var, &L_17);
  7653. NullCheck(L_14);
  7654. ArrayElementTypeCheck (L_14, L_18);
  7655. (L_14)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_18);
  7656. ObjectU5BU5D_t2843939325* L_19 = L_14;
  7657. Rect_t2360479859 * L_20 = __this->get_address_of_rect_4();
  7658. float L_21 = Rect_get_xMax_m3018144503(L_20, /*hidden argument*/NULL);
  7659. float L_22 = L_21;
  7660. RuntimeObject * L_23 = Box(Single_t1397266774_il2cpp_TypeInfo_var, &L_22);
  7661. NullCheck(L_19);
  7662. ArrayElementTypeCheck (L_19, L_23);
  7663. (L_19)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_23);
  7664. ObjectU5BU5D_t2843939325* L_24 = L_19;
  7665. Rect_t2360479859 * L_25 = __this->get_address_of_rect_4();
  7666. float L_26 = Rect_get_y_m1501338330(L_25, /*hidden argument*/NULL);
  7667. float L_27 = L_26;
  7668. RuntimeObject * L_28 = Box(Single_t1397266774_il2cpp_TypeInfo_var, &L_27);
  7669. NullCheck(L_24);
  7670. ArrayElementTypeCheck (L_24, L_28);
  7671. (L_24)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)L_28);
  7672. ObjectU5BU5D_t2843939325* L_29 = L_24;
  7673. Rect_t2360479859 * L_30 = __this->get_address_of_rect_4();
  7674. float L_31 = Rect_get_yMax_m743455479(L_30, /*hidden argument*/NULL);
  7675. float L_32 = L_31;
  7676. RuntimeObject * L_33 = Box(Single_t1397266774_il2cpp_TypeInfo_var, &L_32);
  7677. NullCheck(L_29);
  7678. ArrayElementTypeCheck (L_29, L_33);
  7679. (L_29)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_33);
  7680. String_t* L_34 = UnityString_Format_m261690510(NULL /*static, unused*/, G_B6_4, L_29, /*hidden argument*/NULL);
  7681. NullCheck(G_B6_6);
  7682. ArrayElementTypeCheck (G_B6_6, L_34);
  7683. (G_B6_6)->SetAt(static_cast<il2cpp_array_size_t>(G_B6_5), (RuntimeObject *)L_34);
  7684. ObjectU5BU5D_t2843939325* L_35 = G_B6_7;
  7685. NullCheck(L_35);
  7686. ArrayElementTypeCheck (L_35, _stringLiteral1704952932);
  7687. (L_35)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteral1704952932);
  7688. ObjectU5BU5D_t2843939325* L_36 = L_35;
  7689. float L_37 = __this->get_minWidth_0();
  7690. float L_38 = L_37;
  7691. RuntimeObject * L_39 = Box(Single_t1397266774_il2cpp_TypeInfo_var, &L_38);
  7692. NullCheck(L_36);
  7693. ArrayElementTypeCheck (L_36, L_39);
  7694. (L_36)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_39);
  7695. ObjectU5BU5D_t2843939325* L_40 = L_36;
  7696. NullCheck(L_40);
  7697. ArrayElementTypeCheck (L_40, _stringLiteral3452614531);
  7698. (L_40)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)_stringLiteral3452614531);
  7699. ObjectU5BU5D_t2843939325* L_41 = L_40;
  7700. float L_42 = __this->get_maxWidth_1();
  7701. float L_43 = L_42;
  7702. RuntimeObject * L_44 = Box(Single_t1397266774_il2cpp_TypeInfo_var, &L_43);
  7703. NullCheck(L_41);
  7704. ArrayElementTypeCheck (L_41, L_44);
  7705. (L_41)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_44);
  7706. ObjectU5BU5D_t2843939325* L_45 = L_41;
  7707. int32_t L_46 = __this->get_stretchWidth_5();
  7708. G_B7_0 = 6;
  7709. G_B7_1 = L_45;
  7710. G_B7_2 = L_45;
  7711. if (!L_46)
  7712. {
  7713. G_B8_0 = 6;
  7714. G_B8_1 = L_45;
  7715. G_B8_2 = L_45;
  7716. goto IL_0102;
  7717. }
  7718. }
  7719. {
  7720. G_B9_0 = _stringLiteral3452614533;
  7721. G_B9_1 = G_B7_0;
  7722. G_B9_2 = G_B7_1;
  7723. G_B9_3 = G_B7_2;
  7724. goto IL_0107;
  7725. }
  7726. IL_0102:
  7727. {
  7728. G_B9_0 = _stringLiteral757602046;
  7729. G_B9_1 = G_B8_0;
  7730. G_B9_2 = G_B8_1;
  7731. G_B9_3 = G_B8_2;
  7732. }
  7733. IL_0107:
  7734. {
  7735. NullCheck(G_B9_2);
  7736. ArrayElementTypeCheck (G_B9_2, G_B9_0);
  7737. (G_B9_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B9_1), (RuntimeObject *)G_B9_0);
  7738. ObjectU5BU5D_t2843939325* L_47 = G_B9_3;
  7739. NullCheck(L_47);
  7740. ArrayElementTypeCheck (L_47, _stringLiteral212333324);
  7741. (L_47)->SetAt(static_cast<il2cpp_array_size_t>(7), (RuntimeObject *)_stringLiteral212333324);
  7742. ObjectU5BU5D_t2843939325* L_48 = L_47;
  7743. float L_49 = __this->get_minHeight_2();
  7744. float L_50 = L_49;
  7745. RuntimeObject * L_51 = Box(Single_t1397266774_il2cpp_TypeInfo_var, &L_50);
  7746. NullCheck(L_48);
  7747. ArrayElementTypeCheck (L_48, L_51);
  7748. (L_48)->SetAt(static_cast<il2cpp_array_size_t>(8), (RuntimeObject *)L_51);
  7749. ObjectU5BU5D_t2843939325* L_52 = L_48;
  7750. NullCheck(L_52);
  7751. ArrayElementTypeCheck (L_52, _stringLiteral3452614531);
  7752. (L_52)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (RuntimeObject *)_stringLiteral3452614531);
  7753. ObjectU5BU5D_t2843939325* L_53 = L_52;
  7754. float L_54 = __this->get_maxHeight_3();
  7755. float L_55 = L_54;
  7756. RuntimeObject * L_56 = Box(Single_t1397266774_il2cpp_TypeInfo_var, &L_55);
  7757. NullCheck(L_53);
  7758. ArrayElementTypeCheck (L_53, L_56);
  7759. (L_53)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (RuntimeObject *)L_56);
  7760. ObjectU5BU5D_t2843939325* L_57 = L_53;
  7761. int32_t L_58 = __this->get_stretchHeight_6();
  7762. G_B10_0 = ((int32_t)11);
  7763. G_B10_1 = L_57;
  7764. G_B10_2 = L_57;
  7765. if (!L_58)
  7766. {
  7767. G_B11_0 = ((int32_t)11);
  7768. G_B11_1 = L_57;
  7769. G_B11_2 = L_57;
  7770. goto IL_014e;
  7771. }
  7772. }
  7773. {
  7774. G_B12_0 = _stringLiteral3452614533;
  7775. G_B12_1 = G_B10_0;
  7776. G_B12_2 = G_B10_1;
  7777. G_B12_3 = G_B10_2;
  7778. goto IL_0153;
  7779. }
  7780. IL_014e:
  7781. {
  7782. G_B12_0 = _stringLiteral757602046;
  7783. G_B12_1 = G_B11_0;
  7784. G_B12_2 = G_B11_1;
  7785. G_B12_3 = G_B11_2;
  7786. }
  7787. IL_0153:
  7788. {
  7789. NullCheck(G_B12_2);
  7790. ArrayElementTypeCheck (G_B12_2, G_B12_0);
  7791. (G_B12_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B12_1), (RuntimeObject *)G_B12_0);
  7792. IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
  7793. String_t* L_59 = String_Concat_m2971454694(NULL /*static, unused*/, G_B12_3, /*hidden argument*/NULL);
  7794. V_2 = L_59;
  7795. goto IL_015f;
  7796. }
  7797. IL_015f:
  7798. {
  7799. String_t* L_60 = V_2;
  7800. return L_60;
  7801. }
  7802. }
  7803. // System.Void UnityEngine.GUILayoutEntry::.cctor()
  7804. extern "C" IL2CPP_METHOD_ATTR void GUILayoutEntry__cctor_m663865902 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  7805. {
  7806. static bool s_Il2CppMethodInitialized;
  7807. if (!s_Il2CppMethodInitialized)
  7808. {
  7809. il2cpp_codegen_initialize_method (GUILayoutEntry__cctor_m663865902_MetadataUsageId);
  7810. s_Il2CppMethodInitialized = true;
  7811. }
  7812. {
  7813. Rect_t2360479859 L_0;
  7814. memset(&L_0, 0, sizeof(L_0));
  7815. Rect__ctor_m2614021312((&L_0), (0.0f), (0.0f), (1.0f), (1.0f), /*hidden argument*/NULL);
  7816. ((GUILayoutEntry_t3214611570_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutEntry_t3214611570_il2cpp_TypeInfo_var))->set_kDummyRect_8(L_0);
  7817. ((GUILayoutEntry_t3214611570_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutEntry_t3214611570_il2cpp_TypeInfo_var))->set_indent_9(0);
  7818. return;
  7819. }
  7820. }
  7821. #ifdef __clang__
  7822. #pragma clang diagnostic pop
  7823. #endif
  7824. #ifdef __clang__
  7825. #pragma clang diagnostic push
  7826. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7827. #pragma clang diagnostic ignored "-Wunused-variable"
  7828. #endif
  7829. // System.Void UnityEngine.GUILayoutGroup::.ctor()
  7830. extern "C" IL2CPP_METHOD_ATTR void GUILayoutGroup__ctor_m3245996524 (GUILayoutGroup_t2157789695 * __this, const RuntimeMethod* method)
  7831. {
  7832. static bool s_Il2CppMethodInitialized;
  7833. if (!s_Il2CppMethodInitialized)
  7834. {
  7835. il2cpp_codegen_initialize_method (GUILayoutGroup__ctor_m3245996524_MetadataUsageId);
  7836. s_Il2CppMethodInitialized = true;
  7837. }
  7838. {
  7839. List_1_t391719016 * L_0 = (List_1_t391719016 *)il2cpp_codegen_object_new(List_1_t391719016_il2cpp_TypeInfo_var);
  7840. List_1__ctor_m1360362241(L_0, /*hidden argument*/List_1__ctor_m1360362241_RuntimeMethod_var);
  7841. __this->set_entries_10(L_0);
  7842. __this->set_isVertical_11((bool)1);
  7843. __this->set_resetCoords_12((bool)0);
  7844. __this->set_spacing_13((0.0f));
  7845. __this->set_sameSize_14((bool)1);
  7846. __this->set_isWindow_15((bool)0);
  7847. __this->set_windowID_16((-1));
  7848. __this->set_m_Cursor_17(0);
  7849. __this->set_m_StretchableCountX_18(((int32_t)100));
  7850. __this->set_m_StretchableCountY_19(((int32_t)100));
  7851. __this->set_m_UserSpecifiedWidth_20((bool)0);
  7852. __this->set_m_UserSpecifiedHeight_21((bool)0);
  7853. __this->set_m_ChildMinWidth_22((100.0f));
  7854. __this->set_m_ChildMaxWidth_23((100.0f));
  7855. __this->set_m_ChildMinHeight_24((100.0f));
  7856. __this->set_m_ChildMaxHeight_25((100.0f));
  7857. RectOffset_t1369453676 * L_1 = (RectOffset_t1369453676 *)il2cpp_codegen_object_new(RectOffset_t1369453676_il2cpp_TypeInfo_var);
  7858. RectOffset__ctor_m3236153262(L_1, /*hidden argument*/NULL);
  7859. __this->set_m_Margin_26(L_1);
  7860. IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t3956901511_il2cpp_TypeInfo_var);
  7861. GUIStyle_t3956901511 * L_2 = GUIStyle_get_none_m1545577352(NULL /*static, unused*/, /*hidden argument*/NULL);
  7862. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutEntry_t3214611570_il2cpp_TypeInfo_var);
  7863. GUILayoutEntry__ctor_m2229197035(__this, (0.0f), (0.0f), (0.0f), (0.0f), L_2, /*hidden argument*/NULL);
  7864. return;
  7865. }
  7866. }
  7867. // UnityEngine.RectOffset UnityEngine.GUILayoutGroup::get_margin()
  7868. extern "C" IL2CPP_METHOD_ATTR RectOffset_t1369453676 * GUILayoutGroup_get_margin_m2070032072 (GUILayoutGroup_t2157789695 * __this, const RuntimeMethod* method)
  7869. {
  7870. RectOffset_t1369453676 * V_0 = NULL;
  7871. {
  7872. RectOffset_t1369453676 * L_0 = __this->get_m_Margin_26();
  7873. V_0 = L_0;
  7874. goto IL_000d;
  7875. }
  7876. IL_000d:
  7877. {
  7878. RectOffset_t1369453676 * L_1 = V_0;
  7879. return L_1;
  7880. }
  7881. }
  7882. // System.Void UnityEngine.GUILayoutGroup::ApplyOptions(UnityEngine.GUILayoutOption[])
  7883. extern "C" IL2CPP_METHOD_ATTR void GUILayoutGroup_ApplyOptions_m2649434325 (GUILayoutGroup_t2157789695 * __this, GUILayoutOptionU5BU5D_t2510215842* ___options0, const RuntimeMethod* method)
  7884. {
  7885. static bool s_Il2CppMethodInitialized;
  7886. if (!s_Il2CppMethodInitialized)
  7887. {
  7888. il2cpp_codegen_initialize_method (GUILayoutGroup_ApplyOptions_m2649434325_MetadataUsageId);
  7889. s_Il2CppMethodInitialized = true;
  7890. }
  7891. GUILayoutOption_t811797299 * V_0 = NULL;
  7892. GUILayoutOptionU5BU5D_t2510215842* V_1 = NULL;
  7893. int32_t V_2 = 0;
  7894. int32_t V_3 = 0;
  7895. {
  7896. GUILayoutOptionU5BU5D_t2510215842* L_0 = ___options0;
  7897. if (L_0)
  7898. {
  7899. goto IL_000c;
  7900. }
  7901. }
  7902. {
  7903. goto IL_00a9;
  7904. }
  7905. IL_000c:
  7906. {
  7907. GUILayoutOptionU5BU5D_t2510215842* L_1 = ___options0;
  7908. GUILayoutEntry_ApplyOptions_m1741659338(__this, L_1, /*hidden argument*/NULL);
  7909. GUILayoutOptionU5BU5D_t2510215842* L_2 = ___options0;
  7910. V_1 = L_2;
  7911. V_2 = 0;
  7912. goto IL_00a0;
  7913. }
  7914. IL_001d:
  7915. {
  7916. GUILayoutOptionU5BU5D_t2510215842* L_3 = V_1;
  7917. int32_t L_4 = V_2;
  7918. NullCheck(L_3);
  7919. int32_t L_5 = L_4;
  7920. GUILayoutOption_t811797299 * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
  7921. V_0 = L_6;
  7922. GUILayoutOption_t811797299 * L_7 = V_0;
  7923. NullCheck(L_7);
  7924. int32_t L_8 = L_7->get_type_0();
  7925. V_3 = L_8;
  7926. int32_t L_9 = V_3;
  7927. switch (L_9)
  7928. {
  7929. case 0:
  7930. {
  7931. goto IL_006c;
  7932. }
  7933. case 1:
  7934. {
  7935. goto IL_0078;
  7936. }
  7937. case 2:
  7938. {
  7939. goto IL_006c;
  7940. }
  7941. case 3:
  7942. {
  7943. goto IL_006c;
  7944. }
  7945. case 4:
  7946. {
  7947. goto IL_0078;
  7948. }
  7949. case 5:
  7950. {
  7951. goto IL_0078;
  7952. }
  7953. case 6:
  7954. {
  7955. goto IL_009b;
  7956. }
  7957. case 7:
  7958. {
  7959. goto IL_009b;
  7960. }
  7961. case 8:
  7962. {
  7963. goto IL_009b;
  7964. }
  7965. case 9:
  7966. {
  7967. goto IL_009b;
  7968. }
  7969. case 10:
  7970. {
  7971. goto IL_009b;
  7972. }
  7973. case 11:
  7974. {
  7975. goto IL_009b;
  7976. }
  7977. case 12:
  7978. {
  7979. goto IL_009b;
  7980. }
  7981. case 13:
  7982. {
  7983. goto IL_0084;
  7984. }
  7985. }
  7986. }
  7987. {
  7988. goto IL_009b;
  7989. }
  7990. IL_006c:
  7991. {
  7992. __this->set_m_UserSpecifiedHeight_21((bool)1);
  7993. goto IL_009b;
  7994. }
  7995. IL_0078:
  7996. {
  7997. __this->set_m_UserSpecifiedWidth_20((bool)1);
  7998. goto IL_009b;
  7999. }
  8000. IL_0084:
  8001. {
  8002. GUILayoutOption_t811797299 * L_10 = V_0;
  8003. NullCheck(L_10);
  8004. RuntimeObject * L_11 = L_10->get_value_1();
  8005. __this->set_spacing_13((((float)((float)((*(int32_t*)((int32_t*)UnBox(L_11, Int32_t2950945753_il2cpp_TypeInfo_var))))))));
  8006. goto IL_009b;
  8007. }
  8008. IL_009b:
  8009. {
  8010. int32_t L_12 = V_2;
  8011. V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
  8012. }
  8013. IL_00a0:
  8014. {
  8015. int32_t L_13 = V_2;
  8016. GUILayoutOptionU5BU5D_t2510215842* L_14 = V_1;
  8017. NullCheck(L_14);
  8018. if ((((int32_t)L_13) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length)))))))
  8019. {
  8020. goto IL_001d;
  8021. }
  8022. }
  8023. IL_00a9:
  8024. {
  8025. return;
  8026. }
  8027. }
  8028. // System.Void UnityEngine.GUILayoutGroup::ApplyStyleSettings(UnityEngine.GUIStyle)
  8029. extern "C" IL2CPP_METHOD_ATTR void GUILayoutGroup_ApplyStyleSettings_m165748370 (GUILayoutGroup_t2157789695 * __this, GUIStyle_t3956901511 * ___style0, const RuntimeMethod* method)
  8030. {
  8031. RectOffset_t1369453676 * V_0 = NULL;
  8032. {
  8033. GUIStyle_t3956901511 * L_0 = ___style0;
  8034. GUILayoutEntry_ApplyStyleSettings_m4137899058(__this, L_0, /*hidden argument*/NULL);
  8035. GUIStyle_t3956901511 * L_1 = ___style0;
  8036. NullCheck(L_1);
  8037. RectOffset_t1369453676 * L_2 = GUIStyle_get_margin_m3595798603(L_1, /*hidden argument*/NULL);
  8038. V_0 = L_2;
  8039. RectOffset_t1369453676 * L_3 = __this->get_m_Margin_26();
  8040. RectOffset_t1369453676 * L_4 = V_0;
  8041. NullCheck(L_4);
  8042. int32_t L_5 = RectOffset_get_left_m1232181034(L_4, /*hidden argument*/NULL);
  8043. NullCheck(L_3);
  8044. RectOffset_set_left_m432301222(L_3, L_5, /*hidden argument*/NULL);
  8045. RectOffset_t1369453676 * L_6 = __this->get_m_Margin_26();
  8046. RectOffset_t1369453676 * L_7 = V_0;
  8047. NullCheck(L_7);
  8048. int32_t L_8 = RectOffset_get_right_m2294081512(L_7, /*hidden argument*/NULL);
  8049. NullCheck(L_6);
  8050. RectOffset_set_right_m807318764(L_6, L_8, /*hidden argument*/NULL);
  8051. RectOffset_t1369453676 * L_9 = __this->get_m_Margin_26();
  8052. RectOffset_t1369453676 * L_10 = V_0;
  8053. NullCheck(L_10);
  8054. int32_t L_11 = RectOffset_get_top_m2855347295(L_10, /*hidden argument*/NULL);
  8055. NullCheck(L_9);
  8056. RectOffset_set_top_m713260669(L_9, L_11, /*hidden argument*/NULL);
  8057. RectOffset_t1369453676 * L_12 = __this->get_m_Margin_26();
  8058. RectOffset_t1369453676 * L_13 = V_0;
  8059. NullCheck(L_13);
  8060. int32_t L_14 = RectOffset_get_bottom_m890891527(L_13, /*hidden argument*/NULL);
  8061. NullCheck(L_12);
  8062. RectOffset_set_bottom_m2747419780(L_12, L_14, /*hidden argument*/NULL);
  8063. return;
  8064. }
  8065. }
  8066. // System.Void UnityEngine.GUILayoutGroup::ResetCursor()
  8067. extern "C" IL2CPP_METHOD_ATTR void GUILayoutGroup_ResetCursor_m672314614 (GUILayoutGroup_t2157789695 * __this, const RuntimeMethod* method)
  8068. {
  8069. {
  8070. __this->set_m_Cursor_17(0);
  8071. return;
  8072. }
  8073. }
  8074. // UnityEngine.GUILayoutEntry UnityEngine.GUILayoutGroup::GetNext()
  8075. extern "C" IL2CPP_METHOD_ATTR GUILayoutEntry_t3214611570 * GUILayoutGroup_GetNext_m4171972759 (GUILayoutGroup_t2157789695 * __this, const RuntimeMethod* method)
  8076. {
  8077. static bool s_Il2CppMethodInitialized;
  8078. if (!s_Il2CppMethodInitialized)
  8079. {
  8080. il2cpp_codegen_initialize_method (GUILayoutGroup_GetNext_m4171972759_MetadataUsageId);
  8081. s_Il2CppMethodInitialized = true;
  8082. }
  8083. GUILayoutEntry_t3214611570 * V_0 = NULL;
  8084. GUILayoutEntry_t3214611570 * V_1 = NULL;
  8085. {
  8086. int32_t L_0 = __this->get_m_Cursor_17();
  8087. List_1_t391719016 * L_1 = __this->get_entries_10();
  8088. NullCheck(L_1);
  8089. int32_t L_2 = List_1_get_Count_m1057782749(L_1, /*hidden argument*/List_1_get_Count_m1057782749_RuntimeMethod_var);
  8090. if ((((int32_t)L_0) >= ((int32_t)L_2)))
  8091. {
  8092. goto IL_003f;
  8093. }
  8094. }
  8095. {
  8096. List_1_t391719016 * L_3 = __this->get_entries_10();
  8097. int32_t L_4 = __this->get_m_Cursor_17();
  8098. NullCheck(L_3);
  8099. GUILayoutEntry_t3214611570 * L_5 = List_1_get_Item_m3839229424(L_3, L_4, /*hidden argument*/List_1_get_Item_m3839229424_RuntimeMethod_var);
  8100. V_0 = L_5;
  8101. int32_t L_6 = __this->get_m_Cursor_17();
  8102. __this->set_m_Cursor_17(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)));
  8103. GUILayoutEntry_t3214611570 * L_7 = V_0;
  8104. V_1 = L_7;
  8105. goto IL_00a3;
  8106. }
  8107. IL_003f:
  8108. {
  8109. ObjectU5BU5D_t2843939325* L_8 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)7));
  8110. NullCheck(L_8);
  8111. ArrayElementTypeCheck (L_8, _stringLiteral3430219525);
  8112. (L_8)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral3430219525);
  8113. ObjectU5BU5D_t2843939325* L_9 = L_8;
  8114. int32_t L_10 = __this->get_m_Cursor_17();
  8115. int32_t L_11 = L_10;
  8116. RuntimeObject * L_12 = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &L_11);
  8117. NullCheck(L_9);
  8118. ArrayElementTypeCheck (L_9, L_12);
  8119. (L_9)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_12);
  8120. ObjectU5BU5D_t2843939325* L_13 = L_9;
  8121. NullCheck(L_13);
  8122. ArrayElementTypeCheck (L_13, _stringLiteral2044958304);
  8123. (L_13)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteral2044958304);
  8124. ObjectU5BU5D_t2843939325* L_14 = L_13;
  8125. List_1_t391719016 * L_15 = __this->get_entries_10();
  8126. NullCheck(L_15);
  8127. int32_t L_16 = List_1_get_Count_m1057782749(L_15, /*hidden argument*/List_1_get_Count_m1057782749_RuntimeMethod_var);
  8128. int32_t L_17 = L_16;
  8129. RuntimeObject * L_18 = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &L_17);
  8130. NullCheck(L_14);
  8131. ArrayElementTypeCheck (L_14, L_18);
  8132. (L_14)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_18);
  8133. ObjectU5BU5D_t2843939325* L_19 = L_14;
  8134. NullCheck(L_19);
  8135. ArrayElementTypeCheck (L_19, _stringLiteral340298149);
  8136. (L_19)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)_stringLiteral340298149);
  8137. ObjectU5BU5D_t2843939325* L_20 = L_19;
  8138. Event_t2956885303 * L_21 = Event_get_current_m2393892120(NULL /*static, unused*/, /*hidden argument*/NULL);
  8139. NullCheck(L_21);
  8140. int32_t L_22 = Event_get_rawType_m2996166859(L_21, /*hidden argument*/NULL);
  8141. int32_t L_23 = L_22;
  8142. RuntimeObject * L_24 = Box(EventType_t3528516131_il2cpp_TypeInfo_var, &L_23);
  8143. NullCheck(L_20);
  8144. ArrayElementTypeCheck (L_20, L_24);
  8145. (L_20)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_24);
  8146. ObjectU5BU5D_t2843939325* L_25 = L_20;
  8147. NullCheck(L_25);
  8148. ArrayElementTypeCheck (L_25, _stringLiteral3657199858);
  8149. (L_25)->SetAt(static_cast<il2cpp_array_size_t>(6), (RuntimeObject *)_stringLiteral3657199858);
  8150. IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
  8151. String_t* L_26 = String_Concat_m2971454694(NULL /*static, unused*/, L_25, /*hidden argument*/NULL);
  8152. ArgumentException_t132251570 * L_27 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
  8153. ArgumentException__ctor_m1312628991(L_27, L_26, /*hidden argument*/NULL);
  8154. IL2CPP_RAISE_MANAGED_EXCEPTION(L_27,GUILayoutGroup_GetNext_m4171972759_RuntimeMethod_var);
  8155. }
  8156. IL_00a3:
  8157. {
  8158. GUILayoutEntry_t3214611570 * L_28 = V_1;
  8159. return L_28;
  8160. }
  8161. }
  8162. // System.Void UnityEngine.GUILayoutGroup::Add(UnityEngine.GUILayoutEntry)
  8163. extern "C" IL2CPP_METHOD_ATTR void GUILayoutGroup_Add_m1933515568 (GUILayoutGroup_t2157789695 * __this, GUILayoutEntry_t3214611570 * ___e0, const RuntimeMethod* method)
  8164. {
  8165. static bool s_Il2CppMethodInitialized;
  8166. if (!s_Il2CppMethodInitialized)
  8167. {
  8168. il2cpp_codegen_initialize_method (GUILayoutGroup_Add_m1933515568_MetadataUsageId);
  8169. s_Il2CppMethodInitialized = true;
  8170. }
  8171. {
  8172. List_1_t391719016 * L_0 = __this->get_entries_10();
  8173. GUILayoutEntry_t3214611570 * L_1 = ___e0;
  8174. NullCheck(L_0);
  8175. List_1_Add_m1634533077(L_0, L_1, /*hidden argument*/List_1_Add_m1634533077_RuntimeMethod_var);
  8176. return;
  8177. }
  8178. }
  8179. // System.Void UnityEngine.GUILayoutGroup::CalcWidth()
  8180. extern "C" IL2CPP_METHOD_ATTR void GUILayoutGroup_CalcWidth_m1389741370 (GUILayoutGroup_t2157789695 * __this, const RuntimeMethod* method)
  8181. {
  8182. static bool s_Il2CppMethodInitialized;
  8183. if (!s_Il2CppMethodInitialized)
  8184. {
  8185. il2cpp_codegen_initialize_method (GUILayoutGroup_CalcWidth_m1389741370_MetadataUsageId);
  8186. s_Il2CppMethodInitialized = true;
  8187. }
  8188. float V_0 = 0.0f;
  8189. int32_t V_1 = 0;
  8190. int32_t V_2 = 0;
  8191. bool V_3 = false;
  8192. GUILayoutEntry_t3214611570 * V_4 = NULL;
  8193. Enumerator_t2280962893 V_5;
  8194. memset(&V_5, 0, sizeof(V_5));
  8195. RectOffset_t1369453676 * V_6 = NULL;
  8196. int32_t V_7 = 0;
  8197. GUILayoutEntry_t3214611570 * V_8 = NULL;
  8198. Enumerator_t2280962893 V_9;
  8199. memset(&V_9, 0, sizeof(V_9));
  8200. RectOffset_t1369453676 * V_10 = NULL;
  8201. int32_t V_11 = 0;
  8202. float V_12 = 0.0f;
  8203. float V_13 = 0.0f;
  8204. Exception_t * __last_unhandled_exception = 0;
  8205. NO_UNUSED_WARNING (__last_unhandled_exception);
  8206. Exception_t * __exception_local = 0;
  8207. NO_UNUSED_WARNING (__exception_local);
  8208. int32_t __leave_target = 0;
  8209. NO_UNUSED_WARNING (__leave_target);
  8210. int32_t G_B22_0 = 0;
  8211. int32_t G_B41_0 = 0;
  8212. int32_t G_B41_1 = 0;
  8213. GUILayoutGroup_t2157789695 * G_B41_2 = NULL;
  8214. int32_t G_B40_0 = 0;
  8215. int32_t G_B40_1 = 0;
  8216. GUILayoutGroup_t2157789695 * G_B40_2 = NULL;
  8217. int32_t G_B42_0 = 0;
  8218. int32_t G_B42_1 = 0;
  8219. int32_t G_B42_2 = 0;
  8220. GUILayoutGroup_t2157789695 * G_B42_3 = NULL;
  8221. {
  8222. List_1_t391719016 * L_0 = __this->get_entries_10();
  8223. NullCheck(L_0);
  8224. int32_t L_1 = List_1_get_Count_m1057782749(L_0, /*hidden argument*/List_1_get_Count_m1057782749_RuntimeMethod_var);
  8225. if (L_1)
  8226. {
  8227. goto IL_0037;
  8228. }
  8229. }
  8230. {
  8231. GUIStyle_t3956901511 * L_2 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  8232. NullCheck(L_2);
  8233. RectOffset_t1369453676 * L_3 = GUIStyle_get_padding_m3526264743(L_2, /*hidden argument*/NULL);
  8234. NullCheck(L_3);
  8235. int32_t L_4 = RectOffset_get_horizontal_m2663785949(L_3, /*hidden argument*/NULL);
  8236. float L_5 = (((float)((float)L_4)));
  8237. V_0 = L_5;
  8238. ((GUILayoutEntry_t3214611570 *)__this)->set_minWidth_0(L_5);
  8239. float L_6 = V_0;
  8240. ((GUILayoutEntry_t3214611570 *)__this)->set_maxWidth_1(L_6);
  8241. goto IL_0460;
  8242. }
  8243. IL_0037:
  8244. {
  8245. V_1 = 0;
  8246. V_2 = 0;
  8247. __this->set_m_ChildMinWidth_22((0.0f));
  8248. __this->set_m_ChildMaxWidth_23((0.0f));
  8249. __this->set_m_StretchableCountX_18(0);
  8250. V_3 = (bool)1;
  8251. bool L_7 = __this->get_isVertical_11();
  8252. if (!L_7)
  8253. {
  8254. goto IL_0181;
  8255. }
  8256. }
  8257. {
  8258. List_1_t391719016 * L_8 = __this->get_entries_10();
  8259. NullCheck(L_8);
  8260. Enumerator_t2280962893 L_9 = List_1_GetEnumerator_m1934946323(L_8, /*hidden argument*/List_1_GetEnumerator_m1934946323_RuntimeMethod_var);
  8261. V_5 = L_9;
  8262. }
  8263. IL_0074:
  8264. try
  8265. { // begin try (depth: 1)
  8266. {
  8267. goto IL_013a;
  8268. }
  8269. IL_0079:
  8270. {
  8271. GUILayoutEntry_t3214611570 * L_10 = Enumerator_get_Current_m2663170093((&V_5), /*hidden argument*/Enumerator_get_Current_m2663170093_RuntimeMethod_var);
  8272. V_4 = L_10;
  8273. GUILayoutEntry_t3214611570 * L_11 = V_4;
  8274. NullCheck(L_11);
  8275. VirtActionInvoker0::Invoke(5 /* System.Void UnityEngine.GUILayoutEntry::CalcWidth() */, L_11);
  8276. GUILayoutEntry_t3214611570 * L_12 = V_4;
  8277. NullCheck(L_12);
  8278. RectOffset_t1369453676 * L_13 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_12);
  8279. V_6 = L_13;
  8280. GUILayoutEntry_t3214611570 * L_14 = V_4;
  8281. NullCheck(L_14);
  8282. GUIStyle_t3956901511 * L_15 = GUILayoutEntry_get_style_m3965981147(L_14, /*hidden argument*/NULL);
  8283. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  8284. GUIStyle_t3956901511 * L_16 = GUILayoutUtility_get_spaceStyle_m3392862907(NULL /*static, unused*/, /*hidden argument*/NULL);
  8285. if ((((RuntimeObject*)(GUIStyle_t3956901511 *)L_15) == ((RuntimeObject*)(GUIStyle_t3956901511 *)L_16)))
  8286. {
  8287. goto IL_0125;
  8288. }
  8289. }
  8290. IL_00a4:
  8291. {
  8292. bool L_17 = V_3;
  8293. if (L_17)
  8294. {
  8295. goto IL_00ce;
  8296. }
  8297. }
  8298. IL_00ab:
  8299. {
  8300. RectOffset_t1369453676 * L_18 = V_6;
  8301. NullCheck(L_18);
  8302. int32_t L_19 = RectOffset_get_left_m1232181034(L_18, /*hidden argument*/NULL);
  8303. int32_t L_20 = V_1;
  8304. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  8305. int32_t L_21 = Mathf_Min_m18103608(NULL /*static, unused*/, L_19, L_20, /*hidden argument*/NULL);
  8306. V_1 = L_21;
  8307. RectOffset_t1369453676 * L_22 = V_6;
  8308. NullCheck(L_22);
  8309. int32_t L_23 = RectOffset_get_right_m2294081512(L_22, /*hidden argument*/NULL);
  8310. int32_t L_24 = V_2;
  8311. int32_t L_25 = Mathf_Min_m18103608(NULL /*static, unused*/, L_23, L_24, /*hidden argument*/NULL);
  8312. V_2 = L_25;
  8313. goto IL_00e2;
  8314. }
  8315. IL_00ce:
  8316. {
  8317. RectOffset_t1369453676 * L_26 = V_6;
  8318. NullCheck(L_26);
  8319. int32_t L_27 = RectOffset_get_left_m1232181034(L_26, /*hidden argument*/NULL);
  8320. V_1 = L_27;
  8321. RectOffset_t1369453676 * L_28 = V_6;
  8322. NullCheck(L_28);
  8323. int32_t L_29 = RectOffset_get_right_m2294081512(L_28, /*hidden argument*/NULL);
  8324. V_2 = L_29;
  8325. V_3 = (bool)0;
  8326. }
  8327. IL_00e2:
  8328. {
  8329. GUILayoutEntry_t3214611570 * L_30 = V_4;
  8330. NullCheck(L_30);
  8331. float L_31 = L_30->get_minWidth_0();
  8332. RectOffset_t1369453676 * L_32 = V_6;
  8333. NullCheck(L_32);
  8334. int32_t L_33 = RectOffset_get_horizontal_m2663785949(L_32, /*hidden argument*/NULL);
  8335. float L_34 = __this->get_m_ChildMinWidth_22();
  8336. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  8337. float L_35 = Mathf_Max_m3146388979(NULL /*static, unused*/, ((float)il2cpp_codegen_add((float)L_31, (float)(((float)((float)L_33))))), L_34, /*hidden argument*/NULL);
  8338. __this->set_m_ChildMinWidth_22(L_35);
  8339. GUILayoutEntry_t3214611570 * L_36 = V_4;
  8340. NullCheck(L_36);
  8341. float L_37 = L_36->get_maxWidth_1();
  8342. RectOffset_t1369453676 * L_38 = V_6;
  8343. NullCheck(L_38);
  8344. int32_t L_39 = RectOffset_get_horizontal_m2663785949(L_38, /*hidden argument*/NULL);
  8345. float L_40 = __this->get_m_ChildMaxWidth_23();
  8346. float L_41 = Mathf_Max_m3146388979(NULL /*static, unused*/, ((float)il2cpp_codegen_add((float)L_37, (float)(((float)((float)L_39))))), L_40, /*hidden argument*/NULL);
  8347. __this->set_m_ChildMaxWidth_23(L_41);
  8348. }
  8349. IL_0125:
  8350. {
  8351. int32_t L_42 = __this->get_m_StretchableCountX_18();
  8352. GUILayoutEntry_t3214611570 * L_43 = V_4;
  8353. NullCheck(L_43);
  8354. int32_t L_44 = L_43->get_stretchWidth_5();
  8355. __this->set_m_StretchableCountX_18(((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)L_44)));
  8356. }
  8357. IL_013a:
  8358. {
  8359. bool L_45 = Enumerator_MoveNext_m2324433341((&V_5), /*hidden argument*/Enumerator_MoveNext_m2324433341_RuntimeMethod_var);
  8360. if (L_45)
  8361. {
  8362. goto IL_0079;
  8363. }
  8364. }
  8365. IL_0146:
  8366. {
  8367. IL2CPP_LEAVE(0x159, FINALLY_014b);
  8368. }
  8369. } // end try (depth: 1)
  8370. catch(Il2CppExceptionWrapper& e)
  8371. {
  8372. __last_unhandled_exception = (Exception_t *)e.ex;
  8373. goto FINALLY_014b;
  8374. }
  8375. FINALLY_014b:
  8376. { // begin finally (depth: 1)
  8377. Enumerator_Dispose_m3494652212((&V_5), /*hidden argument*/Enumerator_Dispose_m3494652212_RuntimeMethod_var);
  8378. IL2CPP_END_FINALLY(331)
  8379. } // end finally (depth: 1)
  8380. IL2CPP_CLEANUP(331)
  8381. {
  8382. IL2CPP_JUMP_TBL(0x159, IL_0159)
  8383. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  8384. }
  8385. IL_0159:
  8386. {
  8387. float L_46 = __this->get_m_ChildMinWidth_22();
  8388. int32_t L_47 = V_1;
  8389. int32_t L_48 = V_2;
  8390. __this->set_m_ChildMinWidth_22(((float)il2cpp_codegen_subtract((float)L_46, (float)(((float)((float)((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)L_48))))))));
  8391. float L_49 = __this->get_m_ChildMaxWidth_23();
  8392. int32_t L_50 = V_1;
  8393. int32_t L_51 = V_2;
  8394. __this->set_m_ChildMaxWidth_23(((float)il2cpp_codegen_subtract((float)L_49, (float)(((float)((float)((int32_t)il2cpp_codegen_add((int32_t)L_50, (int32_t)L_51))))))));
  8395. goto IL_0311;
  8396. }
  8397. IL_0181:
  8398. {
  8399. V_7 = 0;
  8400. List_1_t391719016 * L_52 = __this->get_entries_10();
  8401. NullCheck(L_52);
  8402. Enumerator_t2280962893 L_53 = List_1_GetEnumerator_m1934946323(L_52, /*hidden argument*/List_1_GetEnumerator_m1934946323_RuntimeMethod_var);
  8403. V_9 = L_53;
  8404. }
  8405. IL_0193:
  8406. try
  8407. { // begin try (depth: 1)
  8408. {
  8409. goto IL_0294;
  8410. }
  8411. IL_0198:
  8412. {
  8413. GUILayoutEntry_t3214611570 * L_54 = Enumerator_get_Current_m2663170093((&V_9), /*hidden argument*/Enumerator_get_Current_m2663170093_RuntimeMethod_var);
  8414. V_8 = L_54;
  8415. GUILayoutEntry_t3214611570 * L_55 = V_8;
  8416. NullCheck(L_55);
  8417. VirtActionInvoker0::Invoke(5 /* System.Void UnityEngine.GUILayoutEntry::CalcWidth() */, L_55);
  8418. GUILayoutEntry_t3214611570 * L_56 = V_8;
  8419. NullCheck(L_56);
  8420. RectOffset_t1369453676 * L_57 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_56);
  8421. V_10 = L_57;
  8422. GUILayoutEntry_t3214611570 * L_58 = V_8;
  8423. NullCheck(L_58);
  8424. GUIStyle_t3956901511 * L_59 = GUILayoutEntry_get_style_m3965981147(L_58, /*hidden argument*/NULL);
  8425. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  8426. GUIStyle_t3956901511 * L_60 = GUILayoutUtility_get_spaceStyle_m3392862907(NULL /*static, unused*/, /*hidden argument*/NULL);
  8427. if ((((RuntimeObject*)(GUIStyle_t3956901511 *)L_59) == ((RuntimeObject*)(GUIStyle_t3956901511 *)L_60)))
  8428. {
  8429. goto IL_0255;
  8430. }
  8431. }
  8432. IL_01c3:
  8433. {
  8434. bool L_61 = V_3;
  8435. if (L_61)
  8436. {
  8437. goto IL_01ed;
  8438. }
  8439. }
  8440. IL_01ca:
  8441. {
  8442. int32_t L_62 = V_7;
  8443. RectOffset_t1369453676 * L_63 = V_10;
  8444. NullCheck(L_63);
  8445. int32_t L_64 = RectOffset_get_left_m1232181034(L_63, /*hidden argument*/NULL);
  8446. if ((((int32_t)L_62) <= ((int32_t)L_64)))
  8447. {
  8448. goto IL_01df;
  8449. }
  8450. }
  8451. IL_01d8:
  8452. {
  8453. int32_t L_65 = V_7;
  8454. G_B22_0 = L_65;
  8455. goto IL_01e6;
  8456. }
  8457. IL_01df:
  8458. {
  8459. RectOffset_t1369453676 * L_66 = V_10;
  8460. NullCheck(L_66);
  8461. int32_t L_67 = RectOffset_get_left_m1232181034(L_66, /*hidden argument*/NULL);
  8462. G_B22_0 = L_67;
  8463. }
  8464. IL_01e6:
  8465. {
  8466. V_11 = G_B22_0;
  8467. goto IL_01f4;
  8468. }
  8469. IL_01ed:
  8470. {
  8471. V_11 = 0;
  8472. V_3 = (bool)0;
  8473. }
  8474. IL_01f4:
  8475. {
  8476. float L_68 = __this->get_m_ChildMinWidth_22();
  8477. GUILayoutEntry_t3214611570 * L_69 = V_8;
  8478. NullCheck(L_69);
  8479. float L_70 = L_69->get_minWidth_0();
  8480. float L_71 = __this->get_spacing_13();
  8481. int32_t L_72 = V_11;
  8482. __this->set_m_ChildMinWidth_22(((float)il2cpp_codegen_add((float)L_68, (float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)L_70, (float)L_71)), (float)(((float)((float)L_72))))))));
  8483. float L_73 = __this->get_m_ChildMaxWidth_23();
  8484. GUILayoutEntry_t3214611570 * L_74 = V_8;
  8485. NullCheck(L_74);
  8486. float L_75 = L_74->get_maxWidth_1();
  8487. float L_76 = __this->get_spacing_13();
  8488. int32_t L_77 = V_11;
  8489. __this->set_m_ChildMaxWidth_23(((float)il2cpp_codegen_add((float)L_73, (float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)L_75, (float)L_76)), (float)(((float)((float)L_77))))))));
  8490. RectOffset_t1369453676 * L_78 = V_10;
  8491. NullCheck(L_78);
  8492. int32_t L_79 = RectOffset_get_right_m2294081512(L_78, /*hidden argument*/NULL);
  8493. V_7 = L_79;
  8494. int32_t L_80 = __this->get_m_StretchableCountX_18();
  8495. GUILayoutEntry_t3214611570 * L_81 = V_8;
  8496. NullCheck(L_81);
  8497. int32_t L_82 = L_81->get_stretchWidth_5();
  8498. __this->set_m_StretchableCountX_18(((int32_t)il2cpp_codegen_add((int32_t)L_80, (int32_t)L_82)));
  8499. goto IL_0293;
  8500. }
  8501. IL_0255:
  8502. {
  8503. float L_83 = __this->get_m_ChildMinWidth_22();
  8504. GUILayoutEntry_t3214611570 * L_84 = V_8;
  8505. NullCheck(L_84);
  8506. float L_85 = L_84->get_minWidth_0();
  8507. __this->set_m_ChildMinWidth_22(((float)il2cpp_codegen_add((float)L_83, (float)L_85)));
  8508. float L_86 = __this->get_m_ChildMaxWidth_23();
  8509. GUILayoutEntry_t3214611570 * L_87 = V_8;
  8510. NullCheck(L_87);
  8511. float L_88 = L_87->get_maxWidth_1();
  8512. __this->set_m_ChildMaxWidth_23(((float)il2cpp_codegen_add((float)L_86, (float)L_88)));
  8513. int32_t L_89 = __this->get_m_StretchableCountX_18();
  8514. GUILayoutEntry_t3214611570 * L_90 = V_8;
  8515. NullCheck(L_90);
  8516. int32_t L_91 = L_90->get_stretchWidth_5();
  8517. __this->set_m_StretchableCountX_18(((int32_t)il2cpp_codegen_add((int32_t)L_89, (int32_t)L_91)));
  8518. }
  8519. IL_0293:
  8520. {
  8521. }
  8522. IL_0294:
  8523. {
  8524. bool L_92 = Enumerator_MoveNext_m2324433341((&V_9), /*hidden argument*/Enumerator_MoveNext_m2324433341_RuntimeMethod_var);
  8525. if (L_92)
  8526. {
  8527. goto IL_0198;
  8528. }
  8529. }
  8530. IL_02a0:
  8531. {
  8532. IL2CPP_LEAVE(0x2B3, FINALLY_02a5);
  8533. }
  8534. } // end try (depth: 1)
  8535. catch(Il2CppExceptionWrapper& e)
  8536. {
  8537. __last_unhandled_exception = (Exception_t *)e.ex;
  8538. goto FINALLY_02a5;
  8539. }
  8540. FINALLY_02a5:
  8541. { // begin finally (depth: 1)
  8542. Enumerator_Dispose_m3494652212((&V_9), /*hidden argument*/Enumerator_Dispose_m3494652212_RuntimeMethod_var);
  8543. IL2CPP_END_FINALLY(677)
  8544. } // end finally (depth: 1)
  8545. IL2CPP_CLEANUP(677)
  8546. {
  8547. IL2CPP_JUMP_TBL(0x2B3, IL_02b3)
  8548. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  8549. }
  8550. IL_02b3:
  8551. {
  8552. float L_93 = __this->get_m_ChildMinWidth_22();
  8553. float L_94 = __this->get_spacing_13();
  8554. __this->set_m_ChildMinWidth_22(((float)il2cpp_codegen_subtract((float)L_93, (float)L_94)));
  8555. float L_95 = __this->get_m_ChildMaxWidth_23();
  8556. float L_96 = __this->get_spacing_13();
  8557. __this->set_m_ChildMaxWidth_23(((float)il2cpp_codegen_subtract((float)L_95, (float)L_96)));
  8558. List_1_t391719016 * L_97 = __this->get_entries_10();
  8559. NullCheck(L_97);
  8560. int32_t L_98 = List_1_get_Count_m1057782749(L_97, /*hidden argument*/List_1_get_Count_m1057782749_RuntimeMethod_var);
  8561. if (!L_98)
  8562. {
  8563. goto IL_030a;
  8564. }
  8565. }
  8566. {
  8567. List_1_t391719016 * L_99 = __this->get_entries_10();
  8568. NullCheck(L_99);
  8569. GUILayoutEntry_t3214611570 * L_100 = List_1_get_Item_m3839229424(L_99, 0, /*hidden argument*/List_1_get_Item_m3839229424_RuntimeMethod_var);
  8570. NullCheck(L_100);
  8571. RectOffset_t1369453676 * L_101 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_100);
  8572. NullCheck(L_101);
  8573. int32_t L_102 = RectOffset_get_left_m1232181034(L_101, /*hidden argument*/NULL);
  8574. V_1 = L_102;
  8575. int32_t L_103 = V_7;
  8576. V_2 = L_103;
  8577. goto IL_0310;
  8578. }
  8579. IL_030a:
  8580. {
  8581. int32_t L_104 = 0;
  8582. V_2 = L_104;
  8583. V_1 = L_104;
  8584. }
  8585. IL_0310:
  8586. {
  8587. }
  8588. IL_0311:
  8589. {
  8590. V_12 = (0.0f);
  8591. V_13 = (0.0f);
  8592. GUIStyle_t3956901511 * L_105 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  8593. IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t3956901511_il2cpp_TypeInfo_var);
  8594. GUIStyle_t3956901511 * L_106 = GUIStyle_get_none_m1545577352(NULL /*static, unused*/, /*hidden argument*/NULL);
  8595. if ((!(((RuntimeObject*)(GUIStyle_t3956901511 *)L_105) == ((RuntimeObject*)(GUIStyle_t3956901511 *)L_106))))
  8596. {
  8597. goto IL_033a;
  8598. }
  8599. }
  8600. {
  8601. bool L_107 = __this->get_m_UserSpecifiedWidth_20();
  8602. if (!L_107)
  8603. {
  8604. goto IL_0373;
  8605. }
  8606. }
  8607. IL_033a:
  8608. {
  8609. GUIStyle_t3956901511 * L_108 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  8610. NullCheck(L_108);
  8611. RectOffset_t1369453676 * L_109 = GUIStyle_get_padding_m3526264743(L_108, /*hidden argument*/NULL);
  8612. NullCheck(L_109);
  8613. int32_t L_110 = RectOffset_get_left_m1232181034(L_109, /*hidden argument*/NULL);
  8614. int32_t L_111 = V_1;
  8615. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  8616. int32_t L_112 = Mathf_Max_m3673002171(NULL /*static, unused*/, L_110, L_111, /*hidden argument*/NULL);
  8617. V_12 = (((float)((float)L_112)));
  8618. GUIStyle_t3956901511 * L_113 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  8619. NullCheck(L_113);
  8620. RectOffset_t1369453676 * L_114 = GUIStyle_get_padding_m3526264743(L_113, /*hidden argument*/NULL);
  8621. NullCheck(L_114);
  8622. int32_t L_115 = RectOffset_get_right_m2294081512(L_114, /*hidden argument*/NULL);
  8623. int32_t L_116 = V_2;
  8624. int32_t L_117 = Mathf_Max_m3673002171(NULL /*static, unused*/, L_115, L_116, /*hidden argument*/NULL);
  8625. V_13 = (((float)((float)L_117)));
  8626. goto IL_0397;
  8627. }
  8628. IL_0373:
  8629. {
  8630. RectOffset_t1369453676 * L_118 = __this->get_m_Margin_26();
  8631. int32_t L_119 = V_1;
  8632. NullCheck(L_118);
  8633. RectOffset_set_left_m432301222(L_118, L_119, /*hidden argument*/NULL);
  8634. RectOffset_t1369453676 * L_120 = __this->get_m_Margin_26();
  8635. int32_t L_121 = V_2;
  8636. NullCheck(L_120);
  8637. RectOffset_set_right_m807318764(L_120, L_121, /*hidden argument*/NULL);
  8638. float L_122 = (0.0f);
  8639. V_13 = L_122;
  8640. V_12 = L_122;
  8641. }
  8642. IL_0397:
  8643. {
  8644. float L_123 = ((GUILayoutEntry_t3214611570 *)__this)->get_minWidth_0();
  8645. float L_124 = __this->get_m_ChildMinWidth_22();
  8646. float L_125 = V_12;
  8647. float L_126 = V_13;
  8648. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  8649. float L_127 = Mathf_Max_m3146388979(NULL /*static, unused*/, L_123, ((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)L_124, (float)L_125)), (float)L_126)), /*hidden argument*/NULL);
  8650. ((GUILayoutEntry_t3214611570 *)__this)->set_minWidth_0(L_127);
  8651. float L_128 = ((GUILayoutEntry_t3214611570 *)__this)->get_maxWidth_1();
  8652. if ((!(((float)L_128) == ((float)(0.0f)))))
  8653. {
  8654. goto IL_0408;
  8655. }
  8656. }
  8657. {
  8658. int32_t L_129 = ((GUILayoutEntry_t3214611570 *)__this)->get_stretchWidth_5();
  8659. int32_t L_130 = __this->get_m_StretchableCountX_18();
  8660. GUIStyle_t3956901511 * L_131 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  8661. NullCheck(L_131);
  8662. bool L_132 = GUIStyle_get_stretchWidth_m3556443132(L_131, /*hidden argument*/NULL);
  8663. G_B40_0 = L_130;
  8664. G_B40_1 = L_129;
  8665. G_B40_2 = __this;
  8666. if (!L_132)
  8667. {
  8668. G_B41_0 = L_130;
  8669. G_B41_1 = L_129;
  8670. G_B41_2 = __this;
  8671. goto IL_03e8;
  8672. }
  8673. }
  8674. {
  8675. G_B42_0 = 1;
  8676. G_B42_1 = G_B40_0;
  8677. G_B42_2 = G_B40_1;
  8678. G_B42_3 = G_B40_2;
  8679. goto IL_03e9;
  8680. }
  8681. IL_03e8:
  8682. {
  8683. G_B42_0 = 0;
  8684. G_B42_1 = G_B41_0;
  8685. G_B42_2 = G_B41_1;
  8686. G_B42_3 = G_B41_2;
  8687. }
  8688. IL_03e9:
  8689. {
  8690. NullCheck(G_B42_3);
  8691. ((GUILayoutEntry_t3214611570 *)G_B42_3)->set_stretchWidth_5(((int32_t)il2cpp_codegen_add((int32_t)G_B42_2, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)G_B42_1, (int32_t)G_B42_0)))));
  8692. float L_133 = __this->get_m_ChildMaxWidth_23();
  8693. float L_134 = V_12;
  8694. float L_135 = V_13;
  8695. ((GUILayoutEntry_t3214611570 *)__this)->set_maxWidth_1(((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)L_133, (float)L_134)), (float)L_135)));
  8696. goto IL_0411;
  8697. }
  8698. IL_0408:
  8699. {
  8700. ((GUILayoutEntry_t3214611570 *)__this)->set_stretchWidth_5(0);
  8701. }
  8702. IL_0411:
  8703. {
  8704. float L_136 = ((GUILayoutEntry_t3214611570 *)__this)->get_maxWidth_1();
  8705. float L_137 = ((GUILayoutEntry_t3214611570 *)__this)->get_minWidth_0();
  8706. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  8707. float L_138 = Mathf_Max_m3146388979(NULL /*static, unused*/, L_136, L_137, /*hidden argument*/NULL);
  8708. ((GUILayoutEntry_t3214611570 *)__this)->set_maxWidth_1(L_138);
  8709. GUIStyle_t3956901511 * L_139 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  8710. NullCheck(L_139);
  8711. float L_140 = GUIStyle_get_fixedWidth_m2576616348(L_139, /*hidden argument*/NULL);
  8712. if ((((float)L_140) == ((float)(0.0f))))
  8713. {
  8714. goto IL_0460;
  8715. }
  8716. }
  8717. {
  8718. GUIStyle_t3956901511 * L_141 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  8719. NullCheck(L_141);
  8720. float L_142 = GUIStyle_get_fixedWidth_m2576616348(L_141, /*hidden argument*/NULL);
  8721. float L_143 = L_142;
  8722. V_0 = L_143;
  8723. ((GUILayoutEntry_t3214611570 *)__this)->set_minWidth_0(L_143);
  8724. float L_144 = V_0;
  8725. ((GUILayoutEntry_t3214611570 *)__this)->set_maxWidth_1(L_144);
  8726. ((GUILayoutEntry_t3214611570 *)__this)->set_stretchWidth_5(0);
  8727. }
  8728. IL_0460:
  8729. {
  8730. return;
  8731. }
  8732. }
  8733. // System.Void UnityEngine.GUILayoutGroup::SetHorizontal(System.Single,System.Single)
  8734. extern "C" IL2CPP_METHOD_ATTR void GUILayoutGroup_SetHorizontal_m996475327 (GUILayoutGroup_t2157789695 * __this, float ___x0, float ___width1, const RuntimeMethod* method)
  8735. {
  8736. static bool s_Il2CppMethodInitialized;
  8737. if (!s_Il2CppMethodInitialized)
  8738. {
  8739. il2cpp_codegen_initialize_method (GUILayoutGroup_SetHorizontal_m996475327_MetadataUsageId);
  8740. s_Il2CppMethodInitialized = true;
  8741. }
  8742. RectOffset_t1369453676 * V_0 = NULL;
  8743. GUILayoutEntry_t3214611570 * V_1 = NULL;
  8744. Enumerator_t2280962893 V_2;
  8745. memset(&V_2, 0, sizeof(V_2));
  8746. float V_3 = 0.0f;
  8747. float V_4 = 0.0f;
  8748. float V_5 = 0.0f;
  8749. float V_6 = 0.0f;
  8750. float V_7 = 0.0f;
  8751. GUILayoutEntry_t3214611570 * V_8 = NULL;
  8752. Enumerator_t2280962893 V_9;
  8753. memset(&V_9, 0, sizeof(V_9));
  8754. float V_10 = 0.0f;
  8755. float V_11 = 0.0f;
  8756. float V_12 = 0.0f;
  8757. float V_13 = 0.0f;
  8758. float V_14 = 0.0f;
  8759. int32_t V_15 = 0;
  8760. bool V_16 = false;
  8761. GUILayoutEntry_t3214611570 * V_17 = NULL;
  8762. Enumerator_t2280962893 V_18;
  8763. memset(&V_18, 0, sizeof(V_18));
  8764. float V_19 = 0.0f;
  8765. int32_t V_20 = 0;
  8766. int32_t V_21 = 0;
  8767. Exception_t * __last_unhandled_exception = 0;
  8768. NO_UNUSED_WARNING (__last_unhandled_exception);
  8769. Exception_t * __exception_local = 0;
  8770. NO_UNUSED_WARNING (__exception_local);
  8771. int32_t __leave_target = 0;
  8772. NO_UNUSED_WARNING (__leave_target);
  8773. int32_t G_B43_0 = 0;
  8774. {
  8775. float L_0 = ___x0;
  8776. float L_1 = ___width1;
  8777. GUILayoutEntry_SetHorizontal_m3919283295(__this, L_0, L_1, /*hidden argument*/NULL);
  8778. bool L_2 = __this->get_resetCoords_12();
  8779. if (!L_2)
  8780. {
  8781. goto IL_001b;
  8782. }
  8783. }
  8784. {
  8785. ___x0 = (0.0f);
  8786. }
  8787. IL_001b:
  8788. {
  8789. GUIStyle_t3956901511 * L_3 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  8790. NullCheck(L_3);
  8791. RectOffset_t1369453676 * L_4 = GUIStyle_get_padding_m3526264743(L_3, /*hidden argument*/NULL);
  8792. V_0 = L_4;
  8793. bool L_5 = __this->get_isVertical_11();
  8794. if (!L_5)
  8795. {
  8796. goto IL_01cd;
  8797. }
  8798. }
  8799. {
  8800. GUIStyle_t3956901511 * L_6 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  8801. IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t3956901511_il2cpp_TypeInfo_var);
  8802. GUIStyle_t3956901511 * L_7 = GUIStyle_get_none_m1545577352(NULL /*static, unused*/, /*hidden argument*/NULL);
  8803. if ((((RuntimeObject*)(GUIStyle_t3956901511 *)L_6) == ((RuntimeObject*)(GUIStyle_t3956901511 *)L_7)))
  8804. {
  8805. goto IL_00f4;
  8806. }
  8807. }
  8808. {
  8809. List_1_t391719016 * L_8 = __this->get_entries_10();
  8810. NullCheck(L_8);
  8811. Enumerator_t2280962893 L_9 = List_1_GetEnumerator_m1934946323(L_8, /*hidden argument*/List_1_GetEnumerator_m1934946323_RuntimeMethod_var);
  8812. V_2 = L_9;
  8813. }
  8814. IL_0051:
  8815. try
  8816. { // begin try (depth: 1)
  8817. {
  8818. goto IL_00cf;
  8819. }
  8820. IL_0056:
  8821. {
  8822. GUILayoutEntry_t3214611570 * L_10 = Enumerator_get_Current_m2663170093((&V_2), /*hidden argument*/Enumerator_get_Current_m2663170093_RuntimeMethod_var);
  8823. V_1 = L_10;
  8824. GUILayoutEntry_t3214611570 * L_11 = V_1;
  8825. NullCheck(L_11);
  8826. RectOffset_t1369453676 * L_12 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_11);
  8827. NullCheck(L_12);
  8828. int32_t L_13 = RectOffset_get_left_m1232181034(L_12, /*hidden argument*/NULL);
  8829. RectOffset_t1369453676 * L_14 = V_0;
  8830. NullCheck(L_14);
  8831. int32_t L_15 = RectOffset_get_left_m1232181034(L_14, /*hidden argument*/NULL);
  8832. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  8833. int32_t L_16 = Mathf_Max_m3673002171(NULL /*static, unused*/, L_13, L_15, /*hidden argument*/NULL);
  8834. V_3 = (((float)((float)L_16)));
  8835. float L_17 = ___x0;
  8836. float L_18 = V_3;
  8837. V_4 = ((float)il2cpp_codegen_add((float)L_17, (float)L_18));
  8838. float L_19 = ___width1;
  8839. GUILayoutEntry_t3214611570 * L_20 = V_1;
  8840. NullCheck(L_20);
  8841. RectOffset_t1369453676 * L_21 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_20);
  8842. NullCheck(L_21);
  8843. int32_t L_22 = RectOffset_get_right_m2294081512(L_21, /*hidden argument*/NULL);
  8844. RectOffset_t1369453676 * L_23 = V_0;
  8845. NullCheck(L_23);
  8846. int32_t L_24 = RectOffset_get_right_m2294081512(L_23, /*hidden argument*/NULL);
  8847. int32_t L_25 = Mathf_Max_m3673002171(NULL /*static, unused*/, L_22, L_24, /*hidden argument*/NULL);
  8848. float L_26 = V_3;
  8849. V_5 = ((float)il2cpp_codegen_subtract((float)((float)il2cpp_codegen_subtract((float)L_19, (float)(((float)((float)L_25))))), (float)L_26));
  8850. GUILayoutEntry_t3214611570 * L_27 = V_1;
  8851. NullCheck(L_27);
  8852. int32_t L_28 = L_27->get_stretchWidth_5();
  8853. if (!L_28)
  8854. {
  8855. goto IL_00b3;
  8856. }
  8857. }
  8858. IL_00a4:
  8859. {
  8860. GUILayoutEntry_t3214611570 * L_29 = V_1;
  8861. float L_30 = V_4;
  8862. float L_31 = V_5;
  8863. NullCheck(L_29);
  8864. VirtActionInvoker2< float, float >::Invoke(7 /* System.Void UnityEngine.GUILayoutEntry::SetHorizontal(System.Single,System.Single) */, L_29, L_30, L_31);
  8865. goto IL_00ce;
  8866. }
  8867. IL_00b3:
  8868. {
  8869. GUILayoutEntry_t3214611570 * L_32 = V_1;
  8870. float L_33 = V_4;
  8871. float L_34 = V_5;
  8872. GUILayoutEntry_t3214611570 * L_35 = V_1;
  8873. NullCheck(L_35);
  8874. float L_36 = L_35->get_minWidth_0();
  8875. GUILayoutEntry_t3214611570 * L_37 = V_1;
  8876. NullCheck(L_37);
  8877. float L_38 = L_37->get_maxWidth_1();
  8878. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  8879. float L_39 = Mathf_Clamp_m3350697880(NULL /*static, unused*/, L_34, L_36, L_38, /*hidden argument*/NULL);
  8880. NullCheck(L_32);
  8881. VirtActionInvoker2< float, float >::Invoke(7 /* System.Void UnityEngine.GUILayoutEntry::SetHorizontal(System.Single,System.Single) */, L_32, L_33, L_39);
  8882. }
  8883. IL_00ce:
  8884. {
  8885. }
  8886. IL_00cf:
  8887. {
  8888. bool L_40 = Enumerator_MoveNext_m2324433341((&V_2), /*hidden argument*/Enumerator_MoveNext_m2324433341_RuntimeMethod_var);
  8889. if (L_40)
  8890. {
  8891. goto IL_0056;
  8892. }
  8893. }
  8894. IL_00db:
  8895. {
  8896. IL2CPP_LEAVE(0xEE, FINALLY_00e0);
  8897. }
  8898. } // end try (depth: 1)
  8899. catch(Il2CppExceptionWrapper& e)
  8900. {
  8901. __last_unhandled_exception = (Exception_t *)e.ex;
  8902. goto FINALLY_00e0;
  8903. }
  8904. FINALLY_00e0:
  8905. { // begin finally (depth: 1)
  8906. Enumerator_Dispose_m3494652212((&V_2), /*hidden argument*/Enumerator_Dispose_m3494652212_RuntimeMethod_var);
  8907. IL2CPP_END_FINALLY(224)
  8908. } // end finally (depth: 1)
  8909. IL2CPP_CLEANUP(224)
  8910. {
  8911. IL2CPP_JUMP_TBL(0xEE, IL_00ee)
  8912. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  8913. }
  8914. IL_00ee:
  8915. {
  8916. goto IL_01c7;
  8917. }
  8918. IL_00f4:
  8919. {
  8920. float L_41 = ___x0;
  8921. RectOffset_t1369453676 * L_42 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, __this);
  8922. NullCheck(L_42);
  8923. int32_t L_43 = RectOffset_get_left_m1232181034(L_42, /*hidden argument*/NULL);
  8924. V_6 = ((float)il2cpp_codegen_subtract((float)L_41, (float)(((float)((float)L_43)))));
  8925. float L_44 = ___width1;
  8926. RectOffset_t1369453676 * L_45 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, __this);
  8927. NullCheck(L_45);
  8928. int32_t L_46 = RectOffset_get_horizontal_m2663785949(L_45, /*hidden argument*/NULL);
  8929. V_7 = ((float)il2cpp_codegen_add((float)L_44, (float)(((float)((float)L_46)))));
  8930. List_1_t391719016 * L_47 = __this->get_entries_10();
  8931. NullCheck(L_47);
  8932. Enumerator_t2280962893 L_48 = List_1_GetEnumerator_m1934946323(L_47, /*hidden argument*/List_1_GetEnumerator_m1934946323_RuntimeMethod_var);
  8933. V_9 = L_48;
  8934. }
  8935. IL_0123:
  8936. try
  8937. { // begin try (depth: 1)
  8938. {
  8939. goto IL_01a7;
  8940. }
  8941. IL_0128:
  8942. {
  8943. GUILayoutEntry_t3214611570 * L_49 = Enumerator_get_Current_m2663170093((&V_9), /*hidden argument*/Enumerator_get_Current_m2663170093_RuntimeMethod_var);
  8944. V_8 = L_49;
  8945. GUILayoutEntry_t3214611570 * L_50 = V_8;
  8946. NullCheck(L_50);
  8947. int32_t L_51 = L_50->get_stretchWidth_5();
  8948. if (!L_51)
  8949. {
  8950. goto IL_016c;
  8951. }
  8952. }
  8953. IL_013e:
  8954. {
  8955. GUILayoutEntry_t3214611570 * L_52 = V_8;
  8956. float L_53 = V_6;
  8957. GUILayoutEntry_t3214611570 * L_54 = V_8;
  8958. NullCheck(L_54);
  8959. RectOffset_t1369453676 * L_55 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_54);
  8960. NullCheck(L_55);
  8961. int32_t L_56 = RectOffset_get_left_m1232181034(L_55, /*hidden argument*/NULL);
  8962. float L_57 = V_7;
  8963. GUILayoutEntry_t3214611570 * L_58 = V_8;
  8964. NullCheck(L_58);
  8965. RectOffset_t1369453676 * L_59 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_58);
  8966. NullCheck(L_59);
  8967. int32_t L_60 = RectOffset_get_horizontal_m2663785949(L_59, /*hidden argument*/NULL);
  8968. NullCheck(L_52);
  8969. VirtActionInvoker2< float, float >::Invoke(7 /* System.Void UnityEngine.GUILayoutEntry::SetHorizontal(System.Single,System.Single) */, L_52, ((float)il2cpp_codegen_add((float)L_53, (float)(((float)((float)L_56))))), ((float)il2cpp_codegen_subtract((float)L_57, (float)(((float)((float)L_60))))));
  8970. goto IL_01a6;
  8971. }
  8972. IL_016c:
  8973. {
  8974. GUILayoutEntry_t3214611570 * L_61 = V_8;
  8975. float L_62 = V_6;
  8976. GUILayoutEntry_t3214611570 * L_63 = V_8;
  8977. NullCheck(L_63);
  8978. RectOffset_t1369453676 * L_64 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_63);
  8979. NullCheck(L_64);
  8980. int32_t L_65 = RectOffset_get_left_m1232181034(L_64, /*hidden argument*/NULL);
  8981. float L_66 = V_7;
  8982. GUILayoutEntry_t3214611570 * L_67 = V_8;
  8983. NullCheck(L_67);
  8984. RectOffset_t1369453676 * L_68 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_67);
  8985. NullCheck(L_68);
  8986. int32_t L_69 = RectOffset_get_horizontal_m2663785949(L_68, /*hidden argument*/NULL);
  8987. GUILayoutEntry_t3214611570 * L_70 = V_8;
  8988. NullCheck(L_70);
  8989. float L_71 = L_70->get_minWidth_0();
  8990. GUILayoutEntry_t3214611570 * L_72 = V_8;
  8991. NullCheck(L_72);
  8992. float L_73 = L_72->get_maxWidth_1();
  8993. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  8994. float L_74 = Mathf_Clamp_m3350697880(NULL /*static, unused*/, ((float)il2cpp_codegen_subtract((float)L_66, (float)(((float)((float)L_69))))), L_71, L_73, /*hidden argument*/NULL);
  8995. NullCheck(L_61);
  8996. VirtActionInvoker2< float, float >::Invoke(7 /* System.Void UnityEngine.GUILayoutEntry::SetHorizontal(System.Single,System.Single) */, L_61, ((float)il2cpp_codegen_add((float)L_62, (float)(((float)((float)L_65))))), L_74);
  8997. }
  8998. IL_01a6:
  8999. {
  9000. }
  9001. IL_01a7:
  9002. {
  9003. bool L_75 = Enumerator_MoveNext_m2324433341((&V_9), /*hidden argument*/Enumerator_MoveNext_m2324433341_RuntimeMethod_var);
  9004. if (L_75)
  9005. {
  9006. goto IL_0128;
  9007. }
  9008. }
  9009. IL_01b3:
  9010. {
  9011. IL2CPP_LEAVE(0x1C6, FINALLY_01b8);
  9012. }
  9013. } // end try (depth: 1)
  9014. catch(Il2CppExceptionWrapper& e)
  9015. {
  9016. __last_unhandled_exception = (Exception_t *)e.ex;
  9017. goto FINALLY_01b8;
  9018. }
  9019. FINALLY_01b8:
  9020. { // begin finally (depth: 1)
  9021. Enumerator_Dispose_m3494652212((&V_9), /*hidden argument*/Enumerator_Dispose_m3494652212_RuntimeMethod_var);
  9022. IL2CPP_END_FINALLY(440)
  9023. } // end finally (depth: 1)
  9024. IL2CPP_CLEANUP(440)
  9025. {
  9026. IL2CPP_JUMP_TBL(0x1C6, IL_01c6)
  9027. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  9028. }
  9029. IL_01c6:
  9030. {
  9031. }
  9032. IL_01c7:
  9033. {
  9034. goto IL_03d4;
  9035. }
  9036. IL_01cd:
  9037. {
  9038. GUIStyle_t3956901511 * L_76 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  9039. IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t3956901511_il2cpp_TypeInfo_var);
  9040. GUIStyle_t3956901511 * L_77 = GUIStyle_get_none_m1545577352(NULL /*static, unused*/, /*hidden argument*/NULL);
  9041. if ((((RuntimeObject*)(GUIStyle_t3956901511 *)L_76) == ((RuntimeObject*)(GUIStyle_t3956901511 *)L_77)))
  9042. {
  9043. goto IL_025f;
  9044. }
  9045. }
  9046. {
  9047. RectOffset_t1369453676 * L_78 = V_0;
  9048. NullCheck(L_78);
  9049. int32_t L_79 = RectOffset_get_left_m1232181034(L_78, /*hidden argument*/NULL);
  9050. V_10 = (((float)((float)L_79)));
  9051. RectOffset_t1369453676 * L_80 = V_0;
  9052. NullCheck(L_80);
  9053. int32_t L_81 = RectOffset_get_right_m2294081512(L_80, /*hidden argument*/NULL);
  9054. V_11 = (((float)((float)L_81)));
  9055. List_1_t391719016 * L_82 = __this->get_entries_10();
  9056. NullCheck(L_82);
  9057. int32_t L_83 = List_1_get_Count_m1057782749(L_82, /*hidden argument*/List_1_get_Count_m1057782749_RuntimeMethod_var);
  9058. if (!L_83)
  9059. {
  9060. goto IL_024f;
  9061. }
  9062. }
  9063. {
  9064. float L_84 = V_10;
  9065. List_1_t391719016 * L_85 = __this->get_entries_10();
  9066. NullCheck(L_85);
  9067. GUILayoutEntry_t3214611570 * L_86 = List_1_get_Item_m3839229424(L_85, 0, /*hidden argument*/List_1_get_Item_m3839229424_RuntimeMethod_var);
  9068. NullCheck(L_86);
  9069. RectOffset_t1369453676 * L_87 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_86);
  9070. NullCheck(L_87);
  9071. int32_t L_88 = RectOffset_get_left_m1232181034(L_87, /*hidden argument*/NULL);
  9072. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  9073. float L_89 = Mathf_Max_m3146388979(NULL /*static, unused*/, L_84, (((float)((float)L_88))), /*hidden argument*/NULL);
  9074. V_10 = L_89;
  9075. float L_90 = V_11;
  9076. List_1_t391719016 * L_91 = __this->get_entries_10();
  9077. List_1_t391719016 * L_92 = __this->get_entries_10();
  9078. NullCheck(L_92);
  9079. int32_t L_93 = List_1_get_Count_m1057782749(L_92, /*hidden argument*/List_1_get_Count_m1057782749_RuntimeMethod_var);
  9080. NullCheck(L_91);
  9081. GUILayoutEntry_t3214611570 * L_94 = List_1_get_Item_m3839229424(L_91, ((int32_t)il2cpp_codegen_subtract((int32_t)L_93, (int32_t)1)), /*hidden argument*/List_1_get_Item_m3839229424_RuntimeMethod_var);
  9082. NullCheck(L_94);
  9083. RectOffset_t1369453676 * L_95 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_94);
  9084. NullCheck(L_95);
  9085. int32_t L_96 = RectOffset_get_right_m2294081512(L_95, /*hidden argument*/NULL);
  9086. float L_97 = Mathf_Max_m3146388979(NULL /*static, unused*/, L_90, (((float)((float)L_96))), /*hidden argument*/NULL);
  9087. V_11 = L_97;
  9088. }
  9089. IL_024f:
  9090. {
  9091. float L_98 = ___x0;
  9092. float L_99 = V_10;
  9093. ___x0 = ((float)il2cpp_codegen_add((float)L_98, (float)L_99));
  9094. float L_100 = ___width1;
  9095. float L_101 = V_11;
  9096. float L_102 = V_10;
  9097. ___width1 = ((float)il2cpp_codegen_subtract((float)L_100, (float)((float)il2cpp_codegen_add((float)L_101, (float)L_102))));
  9098. }
  9099. IL_025f:
  9100. {
  9101. float L_103 = ___width1;
  9102. float L_104 = __this->get_spacing_13();
  9103. List_1_t391719016 * L_105 = __this->get_entries_10();
  9104. NullCheck(L_105);
  9105. int32_t L_106 = List_1_get_Count_m1057782749(L_105, /*hidden argument*/List_1_get_Count_m1057782749_RuntimeMethod_var);
  9106. V_12 = ((float)il2cpp_codegen_subtract((float)L_103, (float)((float)il2cpp_codegen_multiply((float)L_104, (float)(((float)((float)((int32_t)il2cpp_codegen_subtract((int32_t)L_106, (int32_t)1)))))))));
  9107. V_13 = (0.0f);
  9108. float L_107 = __this->get_m_ChildMinWidth_22();
  9109. float L_108 = __this->get_m_ChildMaxWidth_23();
  9110. if ((((float)L_107) == ((float)L_108)))
  9111. {
  9112. goto IL_02b8;
  9113. }
  9114. }
  9115. {
  9116. float L_109 = V_12;
  9117. float L_110 = __this->get_m_ChildMinWidth_22();
  9118. float L_111 = __this->get_m_ChildMaxWidth_23();
  9119. float L_112 = __this->get_m_ChildMinWidth_22();
  9120. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  9121. float L_113 = Mathf_Clamp_m3350697880(NULL /*static, unused*/, ((float)((float)((float)il2cpp_codegen_subtract((float)L_109, (float)L_110))/(float)((float)il2cpp_codegen_subtract((float)L_111, (float)L_112)))), (0.0f), (1.0f), /*hidden argument*/NULL);
  9122. V_13 = L_113;
  9123. }
  9124. IL_02b8:
  9125. {
  9126. V_14 = (0.0f);
  9127. float L_114 = V_12;
  9128. float L_115 = __this->get_m_ChildMaxWidth_23();
  9129. if ((!(((float)L_114) > ((float)L_115))))
  9130. {
  9131. goto IL_02ef;
  9132. }
  9133. }
  9134. {
  9135. int32_t L_116 = __this->get_m_StretchableCountX_18();
  9136. if ((((int32_t)L_116) <= ((int32_t)0)))
  9137. {
  9138. goto IL_02ee;
  9139. }
  9140. }
  9141. {
  9142. float L_117 = V_12;
  9143. float L_118 = __this->get_m_ChildMaxWidth_23();
  9144. int32_t L_119 = __this->get_m_StretchableCountX_18();
  9145. V_14 = ((float)((float)((float)il2cpp_codegen_subtract((float)L_117, (float)L_118))/(float)(((float)((float)L_119)))));
  9146. }
  9147. IL_02ee:
  9148. {
  9149. }
  9150. IL_02ef:
  9151. {
  9152. V_15 = 0;
  9153. V_16 = (bool)1;
  9154. List_1_t391719016 * L_120 = __this->get_entries_10();
  9155. NullCheck(L_120);
  9156. Enumerator_t2280962893 L_121 = List_1_GetEnumerator_m1934946323(L_120, /*hidden argument*/List_1_GetEnumerator_m1934946323_RuntimeMethod_var);
  9157. V_18 = L_121;
  9158. }
  9159. IL_0303:
  9160. try
  9161. { // begin try (depth: 1)
  9162. {
  9163. goto IL_03b4;
  9164. }
  9165. IL_0308:
  9166. {
  9167. GUILayoutEntry_t3214611570 * L_122 = Enumerator_get_Current_m2663170093((&V_18), /*hidden argument*/Enumerator_get_Current_m2663170093_RuntimeMethod_var);
  9168. V_17 = L_122;
  9169. GUILayoutEntry_t3214611570 * L_123 = V_17;
  9170. NullCheck(L_123);
  9171. float L_124 = L_123->get_minWidth_0();
  9172. GUILayoutEntry_t3214611570 * L_125 = V_17;
  9173. NullCheck(L_125);
  9174. float L_126 = L_125->get_maxWidth_1();
  9175. float L_127 = V_13;
  9176. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  9177. float L_128 = Mathf_Lerp_m1004423579(NULL /*static, unused*/, L_124, L_126, L_127, /*hidden argument*/NULL);
  9178. V_19 = L_128;
  9179. float L_129 = V_19;
  9180. float L_130 = V_14;
  9181. GUILayoutEntry_t3214611570 * L_131 = V_17;
  9182. NullCheck(L_131);
  9183. int32_t L_132 = L_131->get_stretchWidth_5();
  9184. V_19 = ((float)il2cpp_codegen_add((float)L_129, (float)((float)il2cpp_codegen_multiply((float)L_130, (float)(((float)((float)L_132)))))));
  9185. GUILayoutEntry_t3214611570 * L_133 = V_17;
  9186. NullCheck(L_133);
  9187. GUIStyle_t3956901511 * L_134 = GUILayoutEntry_get_style_m3965981147(L_133, /*hidden argument*/NULL);
  9188. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  9189. GUIStyle_t3956901511 * L_135 = GUILayoutUtility_get_spaceStyle_m3392862907(NULL /*static, unused*/, /*hidden argument*/NULL);
  9190. if ((((RuntimeObject*)(GUIStyle_t3956901511 *)L_134) == ((RuntimeObject*)(GUIStyle_t3956901511 *)L_135)))
  9191. {
  9192. goto IL_0392;
  9193. }
  9194. }
  9195. IL_034a:
  9196. {
  9197. GUILayoutEntry_t3214611570 * L_136 = V_17;
  9198. NullCheck(L_136);
  9199. RectOffset_t1369453676 * L_137 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_136);
  9200. NullCheck(L_137);
  9201. int32_t L_138 = RectOffset_get_left_m1232181034(L_137, /*hidden argument*/NULL);
  9202. V_20 = L_138;
  9203. bool L_139 = V_16;
  9204. if (!L_139)
  9205. {
  9206. goto IL_0368;
  9207. }
  9208. }
  9209. IL_0360:
  9210. {
  9211. V_20 = 0;
  9212. V_16 = (bool)0;
  9213. }
  9214. IL_0368:
  9215. {
  9216. int32_t L_140 = V_15;
  9217. int32_t L_141 = V_20;
  9218. if ((((int32_t)L_140) <= ((int32_t)L_141)))
  9219. {
  9220. goto IL_0378;
  9221. }
  9222. }
  9223. IL_0371:
  9224. {
  9225. int32_t L_142 = V_15;
  9226. G_B43_0 = L_142;
  9227. goto IL_037a;
  9228. }
  9229. IL_0378:
  9230. {
  9231. int32_t L_143 = V_20;
  9232. G_B43_0 = L_143;
  9233. }
  9234. IL_037a:
  9235. {
  9236. V_21 = G_B43_0;
  9237. float L_144 = ___x0;
  9238. int32_t L_145 = V_21;
  9239. ___x0 = ((float)il2cpp_codegen_add((float)L_144, (float)(((float)((float)L_145)))));
  9240. GUILayoutEntry_t3214611570 * L_146 = V_17;
  9241. NullCheck(L_146);
  9242. RectOffset_t1369453676 * L_147 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_146);
  9243. NullCheck(L_147);
  9244. int32_t L_148 = RectOffset_get_right_m2294081512(L_147, /*hidden argument*/NULL);
  9245. V_15 = L_148;
  9246. }
  9247. IL_0392:
  9248. {
  9249. GUILayoutEntry_t3214611570 * L_149 = V_17;
  9250. float L_150 = ___x0;
  9251. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  9252. float L_151 = bankers_roundf(L_150);
  9253. float L_152 = V_19;
  9254. float L_153 = bankers_roundf(L_152);
  9255. NullCheck(L_149);
  9256. VirtActionInvoker2< float, float >::Invoke(7 /* System.Void UnityEngine.GUILayoutEntry::SetHorizontal(System.Single,System.Single) */, L_149, L_151, L_153);
  9257. float L_154 = ___x0;
  9258. float L_155 = V_19;
  9259. float L_156 = __this->get_spacing_13();
  9260. ___x0 = ((float)il2cpp_codegen_add((float)L_154, (float)((float)il2cpp_codegen_add((float)L_155, (float)L_156))));
  9261. }
  9262. IL_03b4:
  9263. {
  9264. bool L_157 = Enumerator_MoveNext_m2324433341((&V_18), /*hidden argument*/Enumerator_MoveNext_m2324433341_RuntimeMethod_var);
  9265. if (L_157)
  9266. {
  9267. goto IL_0308;
  9268. }
  9269. }
  9270. IL_03c0:
  9271. {
  9272. IL2CPP_LEAVE(0x3D3, FINALLY_03c5);
  9273. }
  9274. } // end try (depth: 1)
  9275. catch(Il2CppExceptionWrapper& e)
  9276. {
  9277. __last_unhandled_exception = (Exception_t *)e.ex;
  9278. goto FINALLY_03c5;
  9279. }
  9280. FINALLY_03c5:
  9281. { // begin finally (depth: 1)
  9282. Enumerator_Dispose_m3494652212((&V_18), /*hidden argument*/Enumerator_Dispose_m3494652212_RuntimeMethod_var);
  9283. IL2CPP_END_FINALLY(965)
  9284. } // end finally (depth: 1)
  9285. IL2CPP_CLEANUP(965)
  9286. {
  9287. IL2CPP_JUMP_TBL(0x3D3, IL_03d3)
  9288. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  9289. }
  9290. IL_03d3:
  9291. {
  9292. }
  9293. IL_03d4:
  9294. {
  9295. return;
  9296. }
  9297. }
  9298. // System.Void UnityEngine.GUILayoutGroup::CalcHeight()
  9299. extern "C" IL2CPP_METHOD_ATTR void GUILayoutGroup_CalcHeight_m1669391299 (GUILayoutGroup_t2157789695 * __this, const RuntimeMethod* method)
  9300. {
  9301. static bool s_Il2CppMethodInitialized;
  9302. if (!s_Il2CppMethodInitialized)
  9303. {
  9304. il2cpp_codegen_initialize_method (GUILayoutGroup_CalcHeight_m1669391299_MetadataUsageId);
  9305. s_Il2CppMethodInitialized = true;
  9306. }
  9307. float V_0 = 0.0f;
  9308. int32_t V_1 = 0;
  9309. int32_t V_2 = 0;
  9310. int32_t V_3 = 0;
  9311. bool V_4 = false;
  9312. GUILayoutEntry_t3214611570 * V_5 = NULL;
  9313. Enumerator_t2280962893 V_6;
  9314. memset(&V_6, 0, sizeof(V_6));
  9315. RectOffset_t1369453676 * V_7 = NULL;
  9316. int32_t V_8 = 0;
  9317. bool V_9 = false;
  9318. GUILayoutEntry_t3214611570 * V_10 = NULL;
  9319. Enumerator_t2280962893 V_11;
  9320. memset(&V_11, 0, sizeof(V_11));
  9321. RectOffset_t1369453676 * V_12 = NULL;
  9322. float V_13 = 0.0f;
  9323. float V_14 = 0.0f;
  9324. Exception_t * __last_unhandled_exception = 0;
  9325. NO_UNUSED_WARNING (__last_unhandled_exception);
  9326. Exception_t * __exception_local = 0;
  9327. NO_UNUSED_WARNING (__exception_local);
  9328. int32_t __leave_target = 0;
  9329. NO_UNUSED_WARNING (__leave_target);
  9330. int32_t G_B38_0 = 0;
  9331. int32_t G_B38_1 = 0;
  9332. GUILayoutGroup_t2157789695 * G_B38_2 = NULL;
  9333. int32_t G_B37_0 = 0;
  9334. int32_t G_B37_1 = 0;
  9335. GUILayoutGroup_t2157789695 * G_B37_2 = NULL;
  9336. int32_t G_B39_0 = 0;
  9337. int32_t G_B39_1 = 0;
  9338. int32_t G_B39_2 = 0;
  9339. GUILayoutGroup_t2157789695 * G_B39_3 = NULL;
  9340. {
  9341. List_1_t391719016 * L_0 = __this->get_entries_10();
  9342. NullCheck(L_0);
  9343. int32_t L_1 = List_1_get_Count_m1057782749(L_0, /*hidden argument*/List_1_get_Count_m1057782749_RuntimeMethod_var);
  9344. if (L_1)
  9345. {
  9346. goto IL_0037;
  9347. }
  9348. }
  9349. {
  9350. GUIStyle_t3956901511 * L_2 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  9351. NullCheck(L_2);
  9352. RectOffset_t1369453676 * L_3 = GUIStyle_get_padding_m3526264743(L_2, /*hidden argument*/NULL);
  9353. NullCheck(L_3);
  9354. int32_t L_4 = RectOffset_get_vertical_m2029961580(L_3, /*hidden argument*/NULL);
  9355. float L_5 = (((float)((float)L_4)));
  9356. V_0 = L_5;
  9357. ((GUILayoutEntry_t3214611570 *)__this)->set_minHeight_2(L_5);
  9358. float L_6 = V_0;
  9359. ((GUILayoutEntry_t3214611570 *)__this)->set_maxHeight_3(L_6);
  9360. goto IL_0422;
  9361. }
  9362. IL_0037:
  9363. {
  9364. V_1 = 0;
  9365. V_2 = 0;
  9366. __this->set_m_ChildMinHeight_24((0.0f));
  9367. __this->set_m_ChildMaxHeight_25((0.0f));
  9368. __this->set_m_StretchableCountY_19(0);
  9369. bool L_7 = __this->get_isVertical_11();
  9370. if (!L_7)
  9371. {
  9372. goto IL_01eb;
  9373. }
  9374. }
  9375. {
  9376. V_3 = 0;
  9377. V_4 = (bool)1;
  9378. List_1_t391719016 * L_8 = __this->get_entries_10();
  9379. NullCheck(L_8);
  9380. Enumerator_t2280962893 L_9 = List_1_GetEnumerator_m1934946323(L_8, /*hidden argument*/List_1_GetEnumerator_m1934946323_RuntimeMethod_var);
  9381. V_6 = L_9;
  9382. }
  9383. IL_0077:
  9384. try
  9385. { // begin try (depth: 1)
  9386. {
  9387. goto IL_016a;
  9388. }
  9389. IL_007c:
  9390. {
  9391. GUILayoutEntry_t3214611570 * L_10 = Enumerator_get_Current_m2663170093((&V_6), /*hidden argument*/Enumerator_get_Current_m2663170093_RuntimeMethod_var);
  9392. V_5 = L_10;
  9393. GUILayoutEntry_t3214611570 * L_11 = V_5;
  9394. NullCheck(L_11);
  9395. VirtActionInvoker0::Invoke(6 /* System.Void UnityEngine.GUILayoutEntry::CalcHeight() */, L_11);
  9396. GUILayoutEntry_t3214611570 * L_12 = V_5;
  9397. NullCheck(L_12);
  9398. RectOffset_t1369453676 * L_13 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_12);
  9399. V_7 = L_13;
  9400. GUILayoutEntry_t3214611570 * L_14 = V_5;
  9401. NullCheck(L_14);
  9402. GUIStyle_t3956901511 * L_15 = GUILayoutEntry_get_style_m3965981147(L_14, /*hidden argument*/NULL);
  9403. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  9404. GUIStyle_t3956901511 * L_16 = GUILayoutUtility_get_spaceStyle_m3392862907(NULL /*static, unused*/, /*hidden argument*/NULL);
  9405. if ((((RuntimeObject*)(GUIStyle_t3956901511 *)L_15) == ((RuntimeObject*)(GUIStyle_t3956901511 *)L_16)))
  9406. {
  9407. goto IL_012b;
  9408. }
  9409. }
  9410. IL_00a7:
  9411. {
  9412. bool L_17 = V_4;
  9413. if (L_17)
  9414. {
  9415. goto IL_00c3;
  9416. }
  9417. }
  9418. IL_00af:
  9419. {
  9420. int32_t L_18 = V_3;
  9421. RectOffset_t1369453676 * L_19 = V_7;
  9422. NullCheck(L_19);
  9423. int32_t L_20 = RectOffset_get_top_m2855347295(L_19, /*hidden argument*/NULL);
  9424. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  9425. int32_t L_21 = Mathf_Max_m3673002171(NULL /*static, unused*/, L_18, L_20, /*hidden argument*/NULL);
  9426. V_8 = L_21;
  9427. goto IL_00cb;
  9428. }
  9429. IL_00c3:
  9430. {
  9431. V_8 = 0;
  9432. V_4 = (bool)0;
  9433. }
  9434. IL_00cb:
  9435. {
  9436. float L_22 = __this->get_m_ChildMinHeight_24();
  9437. GUILayoutEntry_t3214611570 * L_23 = V_5;
  9438. NullCheck(L_23);
  9439. float L_24 = L_23->get_minHeight_2();
  9440. float L_25 = __this->get_spacing_13();
  9441. int32_t L_26 = V_8;
  9442. __this->set_m_ChildMinHeight_24(((float)il2cpp_codegen_add((float)L_22, (float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)L_24, (float)L_25)), (float)(((float)((float)L_26))))))));
  9443. float L_27 = __this->get_m_ChildMaxHeight_25();
  9444. GUILayoutEntry_t3214611570 * L_28 = V_5;
  9445. NullCheck(L_28);
  9446. float L_29 = L_28->get_maxHeight_3();
  9447. float L_30 = __this->get_spacing_13();
  9448. int32_t L_31 = V_8;
  9449. __this->set_m_ChildMaxHeight_25(((float)il2cpp_codegen_add((float)L_27, (float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)L_29, (float)L_30)), (float)(((float)((float)L_31))))))));
  9450. RectOffset_t1369453676 * L_32 = V_7;
  9451. NullCheck(L_32);
  9452. int32_t L_33 = RectOffset_get_bottom_m890891527(L_32, /*hidden argument*/NULL);
  9453. V_3 = L_33;
  9454. int32_t L_34 = __this->get_m_StretchableCountY_19();
  9455. GUILayoutEntry_t3214611570 * L_35 = V_5;
  9456. NullCheck(L_35);
  9457. int32_t L_36 = L_35->get_stretchHeight_6();
  9458. __this->set_m_StretchableCountY_19(((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)L_36)));
  9459. goto IL_0169;
  9460. }
  9461. IL_012b:
  9462. {
  9463. float L_37 = __this->get_m_ChildMinHeight_24();
  9464. GUILayoutEntry_t3214611570 * L_38 = V_5;
  9465. NullCheck(L_38);
  9466. float L_39 = L_38->get_minHeight_2();
  9467. __this->set_m_ChildMinHeight_24(((float)il2cpp_codegen_add((float)L_37, (float)L_39)));
  9468. float L_40 = __this->get_m_ChildMaxHeight_25();
  9469. GUILayoutEntry_t3214611570 * L_41 = V_5;
  9470. NullCheck(L_41);
  9471. float L_42 = L_41->get_maxHeight_3();
  9472. __this->set_m_ChildMaxHeight_25(((float)il2cpp_codegen_add((float)L_40, (float)L_42)));
  9473. int32_t L_43 = __this->get_m_StretchableCountY_19();
  9474. GUILayoutEntry_t3214611570 * L_44 = V_5;
  9475. NullCheck(L_44);
  9476. int32_t L_45 = L_44->get_stretchHeight_6();
  9477. __this->set_m_StretchableCountY_19(((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)L_45)));
  9478. }
  9479. IL_0169:
  9480. {
  9481. }
  9482. IL_016a:
  9483. {
  9484. bool L_46 = Enumerator_MoveNext_m2324433341((&V_6), /*hidden argument*/Enumerator_MoveNext_m2324433341_RuntimeMethod_var);
  9485. if (L_46)
  9486. {
  9487. goto IL_007c;
  9488. }
  9489. }
  9490. IL_0176:
  9491. {
  9492. IL2CPP_LEAVE(0x189, FINALLY_017b);
  9493. }
  9494. } // end try (depth: 1)
  9495. catch(Il2CppExceptionWrapper& e)
  9496. {
  9497. __last_unhandled_exception = (Exception_t *)e.ex;
  9498. goto FINALLY_017b;
  9499. }
  9500. FINALLY_017b:
  9501. { // begin finally (depth: 1)
  9502. Enumerator_Dispose_m3494652212((&V_6), /*hidden argument*/Enumerator_Dispose_m3494652212_RuntimeMethod_var);
  9503. IL2CPP_END_FINALLY(379)
  9504. } // end finally (depth: 1)
  9505. IL2CPP_CLEANUP(379)
  9506. {
  9507. IL2CPP_JUMP_TBL(0x189, IL_0189)
  9508. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  9509. }
  9510. IL_0189:
  9511. {
  9512. float L_47 = __this->get_m_ChildMinHeight_24();
  9513. float L_48 = __this->get_spacing_13();
  9514. __this->set_m_ChildMinHeight_24(((float)il2cpp_codegen_subtract((float)L_47, (float)L_48)));
  9515. float L_49 = __this->get_m_ChildMaxHeight_25();
  9516. float L_50 = __this->get_spacing_13();
  9517. __this->set_m_ChildMaxHeight_25(((float)il2cpp_codegen_subtract((float)L_49, (float)L_50)));
  9518. List_1_t391719016 * L_51 = __this->get_entries_10();
  9519. NullCheck(L_51);
  9520. int32_t L_52 = List_1_get_Count_m1057782749(L_51, /*hidden argument*/List_1_get_Count_m1057782749_RuntimeMethod_var);
  9521. if (!L_52)
  9522. {
  9523. goto IL_01df;
  9524. }
  9525. }
  9526. {
  9527. List_1_t391719016 * L_53 = __this->get_entries_10();
  9528. NullCheck(L_53);
  9529. GUILayoutEntry_t3214611570 * L_54 = List_1_get_Item_m3839229424(L_53, 0, /*hidden argument*/List_1_get_Item_m3839229424_RuntimeMethod_var);
  9530. NullCheck(L_54);
  9531. RectOffset_t1369453676 * L_55 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_54);
  9532. NullCheck(L_55);
  9533. int32_t L_56 = RectOffset_get_top_m2855347295(L_55, /*hidden argument*/NULL);
  9534. V_1 = L_56;
  9535. int32_t L_57 = V_3;
  9536. V_2 = L_57;
  9537. goto IL_01e5;
  9538. }
  9539. IL_01df:
  9540. {
  9541. int32_t L_58 = 0;
  9542. V_1 = L_58;
  9543. V_2 = L_58;
  9544. }
  9545. IL_01e5:
  9546. {
  9547. goto IL_02d3;
  9548. }
  9549. IL_01eb:
  9550. {
  9551. V_9 = (bool)1;
  9552. List_1_t391719016 * L_59 = __this->get_entries_10();
  9553. NullCheck(L_59);
  9554. Enumerator_t2280962893 L_60 = List_1_GetEnumerator_m1934946323(L_59, /*hidden argument*/List_1_GetEnumerator_m1934946323_RuntimeMethod_var);
  9555. V_11 = L_60;
  9556. }
  9557. IL_01fd:
  9558. try
  9559. { // begin try (depth: 1)
  9560. {
  9561. goto IL_02b3;
  9562. }
  9563. IL_0202:
  9564. {
  9565. GUILayoutEntry_t3214611570 * L_61 = Enumerator_get_Current_m2663170093((&V_11), /*hidden argument*/Enumerator_get_Current_m2663170093_RuntimeMethod_var);
  9566. V_10 = L_61;
  9567. GUILayoutEntry_t3214611570 * L_62 = V_10;
  9568. NullCheck(L_62);
  9569. VirtActionInvoker0::Invoke(6 /* System.Void UnityEngine.GUILayoutEntry::CalcHeight() */, L_62);
  9570. GUILayoutEntry_t3214611570 * L_63 = V_10;
  9571. NullCheck(L_63);
  9572. RectOffset_t1369453676 * L_64 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_63);
  9573. V_12 = L_64;
  9574. GUILayoutEntry_t3214611570 * L_65 = V_10;
  9575. NullCheck(L_65);
  9576. GUIStyle_t3956901511 * L_66 = GUILayoutEntry_get_style_m3965981147(L_65, /*hidden argument*/NULL);
  9577. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  9578. GUIStyle_t3956901511 * L_67 = GUILayoutUtility_get_spaceStyle_m3392862907(NULL /*static, unused*/, /*hidden argument*/NULL);
  9579. if ((((RuntimeObject*)(GUIStyle_t3956901511 *)L_66) == ((RuntimeObject*)(GUIStyle_t3956901511 *)L_67)))
  9580. {
  9581. goto IL_029e;
  9582. }
  9583. }
  9584. IL_022d:
  9585. {
  9586. bool L_68 = V_9;
  9587. if (L_68)
  9588. {
  9589. goto IL_0258;
  9590. }
  9591. }
  9592. IL_0235:
  9593. {
  9594. RectOffset_t1369453676 * L_69 = V_12;
  9595. NullCheck(L_69);
  9596. int32_t L_70 = RectOffset_get_top_m2855347295(L_69, /*hidden argument*/NULL);
  9597. int32_t L_71 = V_1;
  9598. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  9599. int32_t L_72 = Mathf_Min_m18103608(NULL /*static, unused*/, L_70, L_71, /*hidden argument*/NULL);
  9600. V_1 = L_72;
  9601. RectOffset_t1369453676 * L_73 = V_12;
  9602. NullCheck(L_73);
  9603. int32_t L_74 = RectOffset_get_bottom_m890891527(L_73, /*hidden argument*/NULL);
  9604. int32_t L_75 = V_2;
  9605. int32_t L_76 = Mathf_Min_m18103608(NULL /*static, unused*/, L_74, L_75, /*hidden argument*/NULL);
  9606. V_2 = L_76;
  9607. goto IL_026d;
  9608. }
  9609. IL_0258:
  9610. {
  9611. RectOffset_t1369453676 * L_77 = V_12;
  9612. NullCheck(L_77);
  9613. int32_t L_78 = RectOffset_get_top_m2855347295(L_77, /*hidden argument*/NULL);
  9614. V_1 = L_78;
  9615. RectOffset_t1369453676 * L_79 = V_12;
  9616. NullCheck(L_79);
  9617. int32_t L_80 = RectOffset_get_bottom_m890891527(L_79, /*hidden argument*/NULL);
  9618. V_2 = L_80;
  9619. V_9 = (bool)0;
  9620. }
  9621. IL_026d:
  9622. {
  9623. GUILayoutEntry_t3214611570 * L_81 = V_10;
  9624. NullCheck(L_81);
  9625. float L_82 = L_81->get_minHeight_2();
  9626. float L_83 = __this->get_m_ChildMinHeight_24();
  9627. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  9628. float L_84 = Mathf_Max_m3146388979(NULL /*static, unused*/, L_82, L_83, /*hidden argument*/NULL);
  9629. __this->set_m_ChildMinHeight_24(L_84);
  9630. GUILayoutEntry_t3214611570 * L_85 = V_10;
  9631. NullCheck(L_85);
  9632. float L_86 = L_85->get_maxHeight_3();
  9633. float L_87 = __this->get_m_ChildMaxHeight_25();
  9634. float L_88 = Mathf_Max_m3146388979(NULL /*static, unused*/, L_86, L_87, /*hidden argument*/NULL);
  9635. __this->set_m_ChildMaxHeight_25(L_88);
  9636. }
  9637. IL_029e:
  9638. {
  9639. int32_t L_89 = __this->get_m_StretchableCountY_19();
  9640. GUILayoutEntry_t3214611570 * L_90 = V_10;
  9641. NullCheck(L_90);
  9642. int32_t L_91 = L_90->get_stretchHeight_6();
  9643. __this->set_m_StretchableCountY_19(((int32_t)il2cpp_codegen_add((int32_t)L_89, (int32_t)L_91)));
  9644. }
  9645. IL_02b3:
  9646. {
  9647. bool L_92 = Enumerator_MoveNext_m2324433341((&V_11), /*hidden argument*/Enumerator_MoveNext_m2324433341_RuntimeMethod_var);
  9648. if (L_92)
  9649. {
  9650. goto IL_0202;
  9651. }
  9652. }
  9653. IL_02bf:
  9654. {
  9655. IL2CPP_LEAVE(0x2D2, FINALLY_02c4);
  9656. }
  9657. } // end try (depth: 1)
  9658. catch(Il2CppExceptionWrapper& e)
  9659. {
  9660. __last_unhandled_exception = (Exception_t *)e.ex;
  9661. goto FINALLY_02c4;
  9662. }
  9663. FINALLY_02c4:
  9664. { // begin finally (depth: 1)
  9665. Enumerator_Dispose_m3494652212((&V_11), /*hidden argument*/Enumerator_Dispose_m3494652212_RuntimeMethod_var);
  9666. IL2CPP_END_FINALLY(708)
  9667. } // end finally (depth: 1)
  9668. IL2CPP_CLEANUP(708)
  9669. {
  9670. IL2CPP_JUMP_TBL(0x2D2, IL_02d2)
  9671. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  9672. }
  9673. IL_02d2:
  9674. {
  9675. }
  9676. IL_02d3:
  9677. {
  9678. V_13 = (0.0f);
  9679. V_14 = (0.0f);
  9680. GUIStyle_t3956901511 * L_93 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  9681. IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t3956901511_il2cpp_TypeInfo_var);
  9682. GUIStyle_t3956901511 * L_94 = GUIStyle_get_none_m1545577352(NULL /*static, unused*/, /*hidden argument*/NULL);
  9683. if ((!(((RuntimeObject*)(GUIStyle_t3956901511 *)L_93) == ((RuntimeObject*)(GUIStyle_t3956901511 *)L_94))))
  9684. {
  9685. goto IL_02fc;
  9686. }
  9687. }
  9688. {
  9689. bool L_95 = __this->get_m_UserSpecifiedHeight_21();
  9690. if (!L_95)
  9691. {
  9692. goto IL_0335;
  9693. }
  9694. }
  9695. IL_02fc:
  9696. {
  9697. GUIStyle_t3956901511 * L_96 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  9698. NullCheck(L_96);
  9699. RectOffset_t1369453676 * L_97 = GUIStyle_get_padding_m3526264743(L_96, /*hidden argument*/NULL);
  9700. NullCheck(L_97);
  9701. int32_t L_98 = RectOffset_get_top_m2855347295(L_97, /*hidden argument*/NULL);
  9702. int32_t L_99 = V_1;
  9703. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  9704. int32_t L_100 = Mathf_Max_m3673002171(NULL /*static, unused*/, L_98, L_99, /*hidden argument*/NULL);
  9705. V_13 = (((float)((float)L_100)));
  9706. GUIStyle_t3956901511 * L_101 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  9707. NullCheck(L_101);
  9708. RectOffset_t1369453676 * L_102 = GUIStyle_get_padding_m3526264743(L_101, /*hidden argument*/NULL);
  9709. NullCheck(L_102);
  9710. int32_t L_103 = RectOffset_get_bottom_m890891527(L_102, /*hidden argument*/NULL);
  9711. int32_t L_104 = V_2;
  9712. int32_t L_105 = Mathf_Max_m3673002171(NULL /*static, unused*/, L_103, L_104, /*hidden argument*/NULL);
  9713. V_14 = (((float)((float)L_105)));
  9714. goto IL_0359;
  9715. }
  9716. IL_0335:
  9717. {
  9718. RectOffset_t1369453676 * L_106 = __this->get_m_Margin_26();
  9719. int32_t L_107 = V_1;
  9720. NullCheck(L_106);
  9721. RectOffset_set_top_m713260669(L_106, L_107, /*hidden argument*/NULL);
  9722. RectOffset_t1369453676 * L_108 = __this->get_m_Margin_26();
  9723. int32_t L_109 = V_2;
  9724. NullCheck(L_108);
  9725. RectOffset_set_bottom_m2747419780(L_108, L_109, /*hidden argument*/NULL);
  9726. float L_110 = (0.0f);
  9727. V_14 = L_110;
  9728. V_13 = L_110;
  9729. }
  9730. IL_0359:
  9731. {
  9732. float L_111 = ((GUILayoutEntry_t3214611570 *)__this)->get_minHeight_2();
  9733. float L_112 = __this->get_m_ChildMinHeight_24();
  9734. float L_113 = V_13;
  9735. float L_114 = V_14;
  9736. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  9737. float L_115 = Mathf_Max_m3146388979(NULL /*static, unused*/, L_111, ((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)L_112, (float)L_113)), (float)L_114)), /*hidden argument*/NULL);
  9738. ((GUILayoutEntry_t3214611570 *)__this)->set_minHeight_2(L_115);
  9739. float L_116 = ((GUILayoutEntry_t3214611570 *)__this)->get_maxHeight_3();
  9740. if ((!(((float)L_116) == ((float)(0.0f)))))
  9741. {
  9742. goto IL_03ca;
  9743. }
  9744. }
  9745. {
  9746. int32_t L_117 = ((GUILayoutEntry_t3214611570 *)__this)->get_stretchHeight_6();
  9747. int32_t L_118 = __this->get_m_StretchableCountY_19();
  9748. GUIStyle_t3956901511 * L_119 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  9749. NullCheck(L_119);
  9750. bool L_120 = GUIStyle_get_stretchHeight_m4172805773(L_119, /*hidden argument*/NULL);
  9751. G_B37_0 = L_118;
  9752. G_B37_1 = L_117;
  9753. G_B37_2 = __this;
  9754. if (!L_120)
  9755. {
  9756. G_B38_0 = L_118;
  9757. G_B38_1 = L_117;
  9758. G_B38_2 = __this;
  9759. goto IL_03aa;
  9760. }
  9761. }
  9762. {
  9763. G_B39_0 = 1;
  9764. G_B39_1 = G_B37_0;
  9765. G_B39_2 = G_B37_1;
  9766. G_B39_3 = G_B37_2;
  9767. goto IL_03ab;
  9768. }
  9769. IL_03aa:
  9770. {
  9771. G_B39_0 = 0;
  9772. G_B39_1 = G_B38_0;
  9773. G_B39_2 = G_B38_1;
  9774. G_B39_3 = G_B38_2;
  9775. }
  9776. IL_03ab:
  9777. {
  9778. NullCheck(G_B39_3);
  9779. ((GUILayoutEntry_t3214611570 *)G_B39_3)->set_stretchHeight_6(((int32_t)il2cpp_codegen_add((int32_t)G_B39_2, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)G_B39_1, (int32_t)G_B39_0)))));
  9780. float L_121 = __this->get_m_ChildMaxHeight_25();
  9781. float L_122 = V_13;
  9782. float L_123 = V_14;
  9783. ((GUILayoutEntry_t3214611570 *)__this)->set_maxHeight_3(((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)L_121, (float)L_122)), (float)L_123)));
  9784. goto IL_03d3;
  9785. }
  9786. IL_03ca:
  9787. {
  9788. ((GUILayoutEntry_t3214611570 *)__this)->set_stretchHeight_6(0);
  9789. }
  9790. IL_03d3:
  9791. {
  9792. float L_124 = ((GUILayoutEntry_t3214611570 *)__this)->get_maxHeight_3();
  9793. float L_125 = ((GUILayoutEntry_t3214611570 *)__this)->get_minHeight_2();
  9794. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  9795. float L_126 = Mathf_Max_m3146388979(NULL /*static, unused*/, L_124, L_125, /*hidden argument*/NULL);
  9796. ((GUILayoutEntry_t3214611570 *)__this)->set_maxHeight_3(L_126);
  9797. GUIStyle_t3956901511 * L_127 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  9798. NullCheck(L_127);
  9799. float L_128 = GUIStyle_get_fixedHeight_m2868324709(L_127, /*hidden argument*/NULL);
  9800. if ((((float)L_128) == ((float)(0.0f))))
  9801. {
  9802. goto IL_0422;
  9803. }
  9804. }
  9805. {
  9806. GUIStyle_t3956901511 * L_129 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  9807. NullCheck(L_129);
  9808. float L_130 = GUIStyle_get_fixedHeight_m2868324709(L_129, /*hidden argument*/NULL);
  9809. float L_131 = L_130;
  9810. V_0 = L_131;
  9811. ((GUILayoutEntry_t3214611570 *)__this)->set_minHeight_2(L_131);
  9812. float L_132 = V_0;
  9813. ((GUILayoutEntry_t3214611570 *)__this)->set_maxHeight_3(L_132);
  9814. ((GUILayoutEntry_t3214611570 *)__this)->set_stretchHeight_6(0);
  9815. }
  9816. IL_0422:
  9817. {
  9818. return;
  9819. }
  9820. }
  9821. // System.Void UnityEngine.GUILayoutGroup::SetVertical(System.Single,System.Single)
  9822. extern "C" IL2CPP_METHOD_ATTR void GUILayoutGroup_SetVertical_m2446642182 (GUILayoutGroup_t2157789695 * __this, float ___y0, float ___height1, const RuntimeMethod* method)
  9823. {
  9824. static bool s_Il2CppMethodInitialized;
  9825. if (!s_Il2CppMethodInitialized)
  9826. {
  9827. il2cpp_codegen_initialize_method (GUILayoutGroup_SetVertical_m2446642182_MetadataUsageId);
  9828. s_Il2CppMethodInitialized = true;
  9829. }
  9830. RectOffset_t1369453676 * V_0 = NULL;
  9831. float V_1 = 0.0f;
  9832. float V_2 = 0.0f;
  9833. float V_3 = 0.0f;
  9834. float V_4 = 0.0f;
  9835. float V_5 = 0.0f;
  9836. int32_t V_6 = 0;
  9837. bool V_7 = false;
  9838. GUILayoutEntry_t3214611570 * V_8 = NULL;
  9839. Enumerator_t2280962893 V_9;
  9840. memset(&V_9, 0, sizeof(V_9));
  9841. float V_10 = 0.0f;
  9842. int32_t V_11 = 0;
  9843. int32_t V_12 = 0;
  9844. GUILayoutEntry_t3214611570 * V_13 = NULL;
  9845. Enumerator_t2280962893 V_14;
  9846. memset(&V_14, 0, sizeof(V_14));
  9847. float V_15 = 0.0f;
  9848. float V_16 = 0.0f;
  9849. float V_17 = 0.0f;
  9850. float V_18 = 0.0f;
  9851. float V_19 = 0.0f;
  9852. GUILayoutEntry_t3214611570 * V_20 = NULL;
  9853. Enumerator_t2280962893 V_21;
  9854. memset(&V_21, 0, sizeof(V_21));
  9855. Exception_t * __last_unhandled_exception = 0;
  9856. NO_UNUSED_WARNING (__last_unhandled_exception);
  9857. Exception_t * __exception_local = 0;
  9858. NO_UNUSED_WARNING (__exception_local);
  9859. int32_t __leave_target = 0;
  9860. NO_UNUSED_WARNING (__leave_target);
  9861. int32_t G_B23_0 = 0;
  9862. {
  9863. float L_0 = ___y0;
  9864. float L_1 = ___height1;
  9865. GUILayoutEntry_SetVertical_m1089980778(__this, L_0, L_1, /*hidden argument*/NULL);
  9866. List_1_t391719016 * L_2 = __this->get_entries_10();
  9867. NullCheck(L_2);
  9868. int32_t L_3 = List_1_get_Count_m1057782749(L_2, /*hidden argument*/List_1_get_Count_m1057782749_RuntimeMethod_var);
  9869. if (L_3)
  9870. {
  9871. goto IL_001e;
  9872. }
  9873. }
  9874. {
  9875. goto IL_03e4;
  9876. }
  9877. IL_001e:
  9878. {
  9879. GUIStyle_t3956901511 * L_4 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  9880. NullCheck(L_4);
  9881. RectOffset_t1369453676 * L_5 = GUIStyle_get_padding_m3526264743(L_4, /*hidden argument*/NULL);
  9882. V_0 = L_5;
  9883. bool L_6 = __this->get_resetCoords_12();
  9884. if (!L_6)
  9885. {
  9886. goto IL_003c;
  9887. }
  9888. }
  9889. {
  9890. ___y0 = (0.0f);
  9891. }
  9892. IL_003c:
  9893. {
  9894. bool L_7 = __this->get_isVertical_11();
  9895. if (!L_7)
  9896. {
  9897. goto IL_0244;
  9898. }
  9899. }
  9900. {
  9901. GUIStyle_t3956901511 * L_8 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  9902. IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t3956901511_il2cpp_TypeInfo_var);
  9903. GUIStyle_t3956901511 * L_9 = GUIStyle_get_none_m1545577352(NULL /*static, unused*/, /*hidden argument*/NULL);
  9904. if ((((RuntimeObject*)(GUIStyle_t3956901511 *)L_8) == ((RuntimeObject*)(GUIStyle_t3956901511 *)L_9)))
  9905. {
  9906. goto IL_00d0;
  9907. }
  9908. }
  9909. {
  9910. RectOffset_t1369453676 * L_10 = V_0;
  9911. NullCheck(L_10);
  9912. int32_t L_11 = RectOffset_get_top_m2855347295(L_10, /*hidden argument*/NULL);
  9913. V_1 = (((float)((float)L_11)));
  9914. RectOffset_t1369453676 * L_12 = V_0;
  9915. NullCheck(L_12);
  9916. int32_t L_13 = RectOffset_get_bottom_m890891527(L_12, /*hidden argument*/NULL);
  9917. V_2 = (((float)((float)L_13)));
  9918. List_1_t391719016 * L_14 = __this->get_entries_10();
  9919. NullCheck(L_14);
  9920. int32_t L_15 = List_1_get_Count_m1057782749(L_14, /*hidden argument*/List_1_get_Count_m1057782749_RuntimeMethod_var);
  9921. if (!L_15)
  9922. {
  9923. goto IL_00c3;
  9924. }
  9925. }
  9926. {
  9927. float L_16 = V_1;
  9928. List_1_t391719016 * L_17 = __this->get_entries_10();
  9929. NullCheck(L_17);
  9930. GUILayoutEntry_t3214611570 * L_18 = List_1_get_Item_m3839229424(L_17, 0, /*hidden argument*/List_1_get_Item_m3839229424_RuntimeMethod_var);
  9931. NullCheck(L_18);
  9932. RectOffset_t1369453676 * L_19 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_18);
  9933. NullCheck(L_19);
  9934. int32_t L_20 = RectOffset_get_top_m2855347295(L_19, /*hidden argument*/NULL);
  9935. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  9936. float L_21 = Mathf_Max_m3146388979(NULL /*static, unused*/, L_16, (((float)((float)L_20))), /*hidden argument*/NULL);
  9937. V_1 = L_21;
  9938. float L_22 = V_2;
  9939. List_1_t391719016 * L_23 = __this->get_entries_10();
  9940. List_1_t391719016 * L_24 = __this->get_entries_10();
  9941. NullCheck(L_24);
  9942. int32_t L_25 = List_1_get_Count_m1057782749(L_24, /*hidden argument*/List_1_get_Count_m1057782749_RuntimeMethod_var);
  9943. NullCheck(L_23);
  9944. GUILayoutEntry_t3214611570 * L_26 = List_1_get_Item_m3839229424(L_23, ((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1)), /*hidden argument*/List_1_get_Item_m3839229424_RuntimeMethod_var);
  9945. NullCheck(L_26);
  9946. RectOffset_t1369453676 * L_27 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_26);
  9947. NullCheck(L_27);
  9948. int32_t L_28 = RectOffset_get_bottom_m890891527(L_27, /*hidden argument*/NULL);
  9949. float L_29 = Mathf_Max_m3146388979(NULL /*static, unused*/, L_22, (((float)((float)L_28))), /*hidden argument*/NULL);
  9950. V_2 = L_29;
  9951. }
  9952. IL_00c3:
  9953. {
  9954. float L_30 = ___y0;
  9955. float L_31 = V_1;
  9956. ___y0 = ((float)il2cpp_codegen_add((float)L_30, (float)L_31));
  9957. float L_32 = ___height1;
  9958. float L_33 = V_2;
  9959. float L_34 = V_1;
  9960. ___height1 = ((float)il2cpp_codegen_subtract((float)L_32, (float)((float)il2cpp_codegen_add((float)L_33, (float)L_34))));
  9961. }
  9962. IL_00d0:
  9963. {
  9964. float L_35 = ___height1;
  9965. float L_36 = __this->get_spacing_13();
  9966. List_1_t391719016 * L_37 = __this->get_entries_10();
  9967. NullCheck(L_37);
  9968. int32_t L_38 = List_1_get_Count_m1057782749(L_37, /*hidden argument*/List_1_get_Count_m1057782749_RuntimeMethod_var);
  9969. V_3 = ((float)il2cpp_codegen_subtract((float)L_35, (float)((float)il2cpp_codegen_multiply((float)L_36, (float)(((float)((float)((int32_t)il2cpp_codegen_subtract((int32_t)L_38, (int32_t)1)))))))));
  9970. V_4 = (0.0f);
  9971. float L_39 = __this->get_m_ChildMinHeight_24();
  9972. float L_40 = __this->get_m_ChildMaxHeight_25();
  9973. if ((((float)L_39) == ((float)L_40)))
  9974. {
  9975. goto IL_0127;
  9976. }
  9977. }
  9978. {
  9979. float L_41 = V_3;
  9980. float L_42 = __this->get_m_ChildMinHeight_24();
  9981. float L_43 = __this->get_m_ChildMaxHeight_25();
  9982. float L_44 = __this->get_m_ChildMinHeight_24();
  9983. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  9984. float L_45 = Mathf_Clamp_m3350697880(NULL /*static, unused*/, ((float)((float)((float)il2cpp_codegen_subtract((float)L_41, (float)L_42))/(float)((float)il2cpp_codegen_subtract((float)L_43, (float)L_44)))), (0.0f), (1.0f), /*hidden argument*/NULL);
  9985. V_4 = L_45;
  9986. }
  9987. IL_0127:
  9988. {
  9989. V_5 = (0.0f);
  9990. float L_46 = V_3;
  9991. float L_47 = __this->get_m_ChildMaxHeight_25();
  9992. if ((!(((float)L_46) > ((float)L_47))))
  9993. {
  9994. goto IL_015a;
  9995. }
  9996. }
  9997. {
  9998. int32_t L_48 = __this->get_m_StretchableCountY_19();
  9999. if ((((int32_t)L_48) <= ((int32_t)0)))
  10000. {
  10001. goto IL_0159;
  10002. }
  10003. }
  10004. {
  10005. float L_49 = V_3;
  10006. float L_50 = __this->get_m_ChildMaxHeight_25();
  10007. int32_t L_51 = __this->get_m_StretchableCountY_19();
  10008. V_5 = ((float)((float)((float)il2cpp_codegen_subtract((float)L_49, (float)L_50))/(float)(((float)((float)L_51)))));
  10009. }
  10010. IL_0159:
  10011. {
  10012. }
  10013. IL_015a:
  10014. {
  10015. V_6 = 0;
  10016. V_7 = (bool)1;
  10017. List_1_t391719016 * L_52 = __this->get_entries_10();
  10018. NullCheck(L_52);
  10019. Enumerator_t2280962893 L_53 = List_1_GetEnumerator_m1934946323(L_52, /*hidden argument*/List_1_GetEnumerator_m1934946323_RuntimeMethod_var);
  10020. V_9 = L_53;
  10021. }
  10022. IL_016e:
  10023. try
  10024. { // begin try (depth: 1)
  10025. {
  10026. goto IL_021f;
  10027. }
  10028. IL_0173:
  10029. {
  10030. GUILayoutEntry_t3214611570 * L_54 = Enumerator_get_Current_m2663170093((&V_9), /*hidden argument*/Enumerator_get_Current_m2663170093_RuntimeMethod_var);
  10031. V_8 = L_54;
  10032. GUILayoutEntry_t3214611570 * L_55 = V_8;
  10033. NullCheck(L_55);
  10034. float L_56 = L_55->get_minHeight_2();
  10035. GUILayoutEntry_t3214611570 * L_57 = V_8;
  10036. NullCheck(L_57);
  10037. float L_58 = L_57->get_maxHeight_3();
  10038. float L_59 = V_4;
  10039. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  10040. float L_60 = Mathf_Lerp_m1004423579(NULL /*static, unused*/, L_56, L_58, L_59, /*hidden argument*/NULL);
  10041. V_10 = L_60;
  10042. float L_61 = V_10;
  10043. float L_62 = V_5;
  10044. GUILayoutEntry_t3214611570 * L_63 = V_8;
  10045. NullCheck(L_63);
  10046. int32_t L_64 = L_63->get_stretchHeight_6();
  10047. V_10 = ((float)il2cpp_codegen_add((float)L_61, (float)((float)il2cpp_codegen_multiply((float)L_62, (float)(((float)((float)L_64)))))));
  10048. GUILayoutEntry_t3214611570 * L_65 = V_8;
  10049. NullCheck(L_65);
  10050. GUIStyle_t3956901511 * L_66 = GUILayoutEntry_get_style_m3965981147(L_65, /*hidden argument*/NULL);
  10051. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  10052. GUIStyle_t3956901511 * L_67 = GUILayoutUtility_get_spaceStyle_m3392862907(NULL /*static, unused*/, /*hidden argument*/NULL);
  10053. if ((((RuntimeObject*)(GUIStyle_t3956901511 *)L_66) == ((RuntimeObject*)(GUIStyle_t3956901511 *)L_67)))
  10054. {
  10055. goto IL_01fd;
  10056. }
  10057. }
  10058. IL_01b5:
  10059. {
  10060. GUILayoutEntry_t3214611570 * L_68 = V_8;
  10061. NullCheck(L_68);
  10062. RectOffset_t1369453676 * L_69 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_68);
  10063. NullCheck(L_69);
  10064. int32_t L_70 = RectOffset_get_top_m2855347295(L_69, /*hidden argument*/NULL);
  10065. V_11 = L_70;
  10066. bool L_71 = V_7;
  10067. if (!L_71)
  10068. {
  10069. goto IL_01d3;
  10070. }
  10071. }
  10072. IL_01cb:
  10073. {
  10074. V_11 = 0;
  10075. V_7 = (bool)0;
  10076. }
  10077. IL_01d3:
  10078. {
  10079. int32_t L_72 = V_6;
  10080. int32_t L_73 = V_11;
  10081. if ((((int32_t)L_72) <= ((int32_t)L_73)))
  10082. {
  10083. goto IL_01e3;
  10084. }
  10085. }
  10086. IL_01dc:
  10087. {
  10088. int32_t L_74 = V_6;
  10089. G_B23_0 = L_74;
  10090. goto IL_01e5;
  10091. }
  10092. IL_01e3:
  10093. {
  10094. int32_t L_75 = V_11;
  10095. G_B23_0 = L_75;
  10096. }
  10097. IL_01e5:
  10098. {
  10099. V_12 = G_B23_0;
  10100. float L_76 = ___y0;
  10101. int32_t L_77 = V_12;
  10102. ___y0 = ((float)il2cpp_codegen_add((float)L_76, (float)(((float)((float)L_77)))));
  10103. GUILayoutEntry_t3214611570 * L_78 = V_8;
  10104. NullCheck(L_78);
  10105. RectOffset_t1369453676 * L_79 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_78);
  10106. NullCheck(L_79);
  10107. int32_t L_80 = RectOffset_get_bottom_m890891527(L_79, /*hidden argument*/NULL);
  10108. V_6 = L_80;
  10109. }
  10110. IL_01fd:
  10111. {
  10112. GUILayoutEntry_t3214611570 * L_81 = V_8;
  10113. float L_82 = ___y0;
  10114. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  10115. float L_83 = bankers_roundf(L_82);
  10116. float L_84 = V_10;
  10117. float L_85 = bankers_roundf(L_84);
  10118. NullCheck(L_81);
  10119. VirtActionInvoker2< float, float >::Invoke(8 /* System.Void UnityEngine.GUILayoutEntry::SetVertical(System.Single,System.Single) */, L_81, L_83, L_85);
  10120. float L_86 = ___y0;
  10121. float L_87 = V_10;
  10122. float L_88 = __this->get_spacing_13();
  10123. ___y0 = ((float)il2cpp_codegen_add((float)L_86, (float)((float)il2cpp_codegen_add((float)L_87, (float)L_88))));
  10124. }
  10125. IL_021f:
  10126. {
  10127. bool L_89 = Enumerator_MoveNext_m2324433341((&V_9), /*hidden argument*/Enumerator_MoveNext_m2324433341_RuntimeMethod_var);
  10128. if (L_89)
  10129. {
  10130. goto IL_0173;
  10131. }
  10132. }
  10133. IL_022b:
  10134. {
  10135. IL2CPP_LEAVE(0x23E, FINALLY_0230);
  10136. }
  10137. } // end try (depth: 1)
  10138. catch(Il2CppExceptionWrapper& e)
  10139. {
  10140. __last_unhandled_exception = (Exception_t *)e.ex;
  10141. goto FINALLY_0230;
  10142. }
  10143. FINALLY_0230:
  10144. { // begin finally (depth: 1)
  10145. Enumerator_Dispose_m3494652212((&V_9), /*hidden argument*/Enumerator_Dispose_m3494652212_RuntimeMethod_var);
  10146. IL2CPP_END_FINALLY(560)
  10147. } // end finally (depth: 1)
  10148. IL2CPP_CLEANUP(560)
  10149. {
  10150. IL2CPP_JUMP_TBL(0x23E, IL_023e)
  10151. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  10152. }
  10153. IL_023e:
  10154. {
  10155. goto IL_03e4;
  10156. }
  10157. IL_0244:
  10158. {
  10159. GUIStyle_t3956901511 * L_90 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  10160. IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t3956901511_il2cpp_TypeInfo_var);
  10161. GUIStyle_t3956901511 * L_91 = GUIStyle_get_none_m1545577352(NULL /*static, unused*/, /*hidden argument*/NULL);
  10162. if ((((RuntimeObject*)(GUIStyle_t3956901511 *)L_90) == ((RuntimeObject*)(GUIStyle_t3956901511 *)L_91)))
  10163. {
  10164. goto IL_0312;
  10165. }
  10166. }
  10167. {
  10168. List_1_t391719016 * L_92 = __this->get_entries_10();
  10169. NullCheck(L_92);
  10170. Enumerator_t2280962893 L_93 = List_1_GetEnumerator_m1934946323(L_92, /*hidden argument*/List_1_GetEnumerator_m1934946323_RuntimeMethod_var);
  10171. V_14 = L_93;
  10172. }
  10173. IL_0264:
  10174. try
  10175. { // begin try (depth: 1)
  10176. {
  10177. goto IL_02ed;
  10178. }
  10179. IL_0269:
  10180. {
  10181. GUILayoutEntry_t3214611570 * L_94 = Enumerator_get_Current_m2663170093((&V_14), /*hidden argument*/Enumerator_get_Current_m2663170093_RuntimeMethod_var);
  10182. V_13 = L_94;
  10183. GUILayoutEntry_t3214611570 * L_95 = V_13;
  10184. NullCheck(L_95);
  10185. RectOffset_t1369453676 * L_96 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_95);
  10186. NullCheck(L_96);
  10187. int32_t L_97 = RectOffset_get_top_m2855347295(L_96, /*hidden argument*/NULL);
  10188. RectOffset_t1369453676 * L_98 = V_0;
  10189. NullCheck(L_98);
  10190. int32_t L_99 = RectOffset_get_top_m2855347295(L_98, /*hidden argument*/NULL);
  10191. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  10192. int32_t L_100 = Mathf_Max_m3673002171(NULL /*static, unused*/, L_97, L_99, /*hidden argument*/NULL);
  10193. V_15 = (((float)((float)L_100)));
  10194. float L_101 = ___y0;
  10195. float L_102 = V_15;
  10196. V_16 = ((float)il2cpp_codegen_add((float)L_101, (float)L_102));
  10197. float L_103 = ___height1;
  10198. GUILayoutEntry_t3214611570 * L_104 = V_13;
  10199. NullCheck(L_104);
  10200. RectOffset_t1369453676 * L_105 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_104);
  10201. NullCheck(L_105);
  10202. int32_t L_106 = RectOffset_get_bottom_m890891527(L_105, /*hidden argument*/NULL);
  10203. RectOffset_t1369453676 * L_107 = V_0;
  10204. NullCheck(L_107);
  10205. int32_t L_108 = RectOffset_get_bottom_m890891527(L_107, /*hidden argument*/NULL);
  10206. int32_t L_109 = Mathf_Max_m3673002171(NULL /*static, unused*/, L_106, L_108, /*hidden argument*/NULL);
  10207. float L_110 = V_15;
  10208. V_17 = ((float)il2cpp_codegen_subtract((float)((float)il2cpp_codegen_subtract((float)L_103, (float)(((float)((float)L_109))))), (float)L_110));
  10209. GUILayoutEntry_t3214611570 * L_111 = V_13;
  10210. NullCheck(L_111);
  10211. int32_t L_112 = L_111->get_stretchHeight_6();
  10212. if (!L_112)
  10213. {
  10214. goto IL_02ce;
  10215. }
  10216. }
  10217. IL_02be:
  10218. {
  10219. GUILayoutEntry_t3214611570 * L_113 = V_13;
  10220. float L_114 = V_16;
  10221. float L_115 = V_17;
  10222. NullCheck(L_113);
  10223. VirtActionInvoker2< float, float >::Invoke(8 /* System.Void UnityEngine.GUILayoutEntry::SetVertical(System.Single,System.Single) */, L_113, L_114, L_115);
  10224. goto IL_02ec;
  10225. }
  10226. IL_02ce:
  10227. {
  10228. GUILayoutEntry_t3214611570 * L_116 = V_13;
  10229. float L_117 = V_16;
  10230. float L_118 = V_17;
  10231. GUILayoutEntry_t3214611570 * L_119 = V_13;
  10232. NullCheck(L_119);
  10233. float L_120 = L_119->get_minHeight_2();
  10234. GUILayoutEntry_t3214611570 * L_121 = V_13;
  10235. NullCheck(L_121);
  10236. float L_122 = L_121->get_maxHeight_3();
  10237. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  10238. float L_123 = Mathf_Clamp_m3350697880(NULL /*static, unused*/, L_118, L_120, L_122, /*hidden argument*/NULL);
  10239. NullCheck(L_116);
  10240. VirtActionInvoker2< float, float >::Invoke(8 /* System.Void UnityEngine.GUILayoutEntry::SetVertical(System.Single,System.Single) */, L_116, L_117, L_123);
  10241. }
  10242. IL_02ec:
  10243. {
  10244. }
  10245. IL_02ed:
  10246. {
  10247. bool L_124 = Enumerator_MoveNext_m2324433341((&V_14), /*hidden argument*/Enumerator_MoveNext_m2324433341_RuntimeMethod_var);
  10248. if (L_124)
  10249. {
  10250. goto IL_0269;
  10251. }
  10252. }
  10253. IL_02f9:
  10254. {
  10255. IL2CPP_LEAVE(0x30C, FINALLY_02fe);
  10256. }
  10257. } // end try (depth: 1)
  10258. catch(Il2CppExceptionWrapper& e)
  10259. {
  10260. __last_unhandled_exception = (Exception_t *)e.ex;
  10261. goto FINALLY_02fe;
  10262. }
  10263. FINALLY_02fe:
  10264. { // begin finally (depth: 1)
  10265. Enumerator_Dispose_m3494652212((&V_14), /*hidden argument*/Enumerator_Dispose_m3494652212_RuntimeMethod_var);
  10266. IL2CPP_END_FINALLY(766)
  10267. } // end finally (depth: 1)
  10268. IL2CPP_CLEANUP(766)
  10269. {
  10270. IL2CPP_JUMP_TBL(0x30C, IL_030c)
  10271. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  10272. }
  10273. IL_030c:
  10274. {
  10275. goto IL_03e3;
  10276. }
  10277. IL_0312:
  10278. {
  10279. float L_125 = ___y0;
  10280. RectOffset_t1369453676 * L_126 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, __this);
  10281. NullCheck(L_126);
  10282. int32_t L_127 = RectOffset_get_top_m2855347295(L_126, /*hidden argument*/NULL);
  10283. V_18 = ((float)il2cpp_codegen_subtract((float)L_125, (float)(((float)((float)L_127)))));
  10284. float L_128 = ___height1;
  10285. RectOffset_t1369453676 * L_129 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, __this);
  10286. NullCheck(L_129);
  10287. int32_t L_130 = RectOffset_get_vertical_m2029961580(L_129, /*hidden argument*/NULL);
  10288. V_19 = ((float)il2cpp_codegen_add((float)L_128, (float)(((float)((float)L_130)))));
  10289. List_1_t391719016 * L_131 = __this->get_entries_10();
  10290. NullCheck(L_131);
  10291. Enumerator_t2280962893 L_132 = List_1_GetEnumerator_m1934946323(L_131, /*hidden argument*/List_1_GetEnumerator_m1934946323_RuntimeMethod_var);
  10292. V_21 = L_132;
  10293. }
  10294. IL_0341:
  10295. try
  10296. { // begin try (depth: 1)
  10297. {
  10298. goto IL_03c3;
  10299. }
  10300. IL_0346:
  10301. {
  10302. GUILayoutEntry_t3214611570 * L_133 = Enumerator_get_Current_m2663170093((&V_21), /*hidden argument*/Enumerator_get_Current_m2663170093_RuntimeMethod_var);
  10303. V_20 = L_133;
  10304. GUILayoutEntry_t3214611570 * L_134 = V_20;
  10305. NullCheck(L_134);
  10306. int32_t L_135 = L_134->get_stretchHeight_6();
  10307. if (!L_135)
  10308. {
  10309. goto IL_0388;
  10310. }
  10311. }
  10312. IL_035c:
  10313. {
  10314. GUILayoutEntry_t3214611570 * L_136 = V_20;
  10315. float L_137 = V_18;
  10316. GUILayoutEntry_t3214611570 * L_138 = V_20;
  10317. NullCheck(L_138);
  10318. RectOffset_t1369453676 * L_139 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_138);
  10319. NullCheck(L_139);
  10320. int32_t L_140 = RectOffset_get_top_m2855347295(L_139, /*hidden argument*/NULL);
  10321. float L_141 = V_19;
  10322. GUILayoutEntry_t3214611570 * L_142 = V_20;
  10323. NullCheck(L_142);
  10324. RectOffset_t1369453676 * L_143 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_142);
  10325. NullCheck(L_143);
  10326. int32_t L_144 = RectOffset_get_vertical_m2029961580(L_143, /*hidden argument*/NULL);
  10327. NullCheck(L_136);
  10328. VirtActionInvoker2< float, float >::Invoke(8 /* System.Void UnityEngine.GUILayoutEntry::SetVertical(System.Single,System.Single) */, L_136, ((float)il2cpp_codegen_add((float)L_137, (float)(((float)((float)L_140))))), ((float)il2cpp_codegen_subtract((float)L_141, (float)(((float)((float)L_144))))));
  10329. goto IL_03c2;
  10330. }
  10331. IL_0388:
  10332. {
  10333. GUILayoutEntry_t3214611570 * L_145 = V_20;
  10334. float L_146 = V_18;
  10335. GUILayoutEntry_t3214611570 * L_147 = V_20;
  10336. NullCheck(L_147);
  10337. RectOffset_t1369453676 * L_148 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_147);
  10338. NullCheck(L_148);
  10339. int32_t L_149 = RectOffset_get_top_m2855347295(L_148, /*hidden argument*/NULL);
  10340. float L_150 = V_19;
  10341. GUILayoutEntry_t3214611570 * L_151 = V_20;
  10342. NullCheck(L_151);
  10343. RectOffset_t1369453676 * L_152 = VirtFuncInvoker0< RectOffset_t1369453676 * >::Invoke(4 /* UnityEngine.RectOffset UnityEngine.GUILayoutEntry::get_margin() */, L_151);
  10344. NullCheck(L_152);
  10345. int32_t L_153 = RectOffset_get_vertical_m2029961580(L_152, /*hidden argument*/NULL);
  10346. GUILayoutEntry_t3214611570 * L_154 = V_20;
  10347. NullCheck(L_154);
  10348. float L_155 = L_154->get_minHeight_2();
  10349. GUILayoutEntry_t3214611570 * L_156 = V_20;
  10350. NullCheck(L_156);
  10351. float L_157 = L_156->get_maxHeight_3();
  10352. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  10353. float L_158 = Mathf_Clamp_m3350697880(NULL /*static, unused*/, ((float)il2cpp_codegen_subtract((float)L_150, (float)(((float)((float)L_153))))), L_155, L_157, /*hidden argument*/NULL);
  10354. NullCheck(L_145);
  10355. VirtActionInvoker2< float, float >::Invoke(8 /* System.Void UnityEngine.GUILayoutEntry::SetVertical(System.Single,System.Single) */, L_145, ((float)il2cpp_codegen_add((float)L_146, (float)(((float)((float)L_149))))), L_158);
  10356. }
  10357. IL_03c2:
  10358. {
  10359. }
  10360. IL_03c3:
  10361. {
  10362. bool L_159 = Enumerator_MoveNext_m2324433341((&V_21), /*hidden argument*/Enumerator_MoveNext_m2324433341_RuntimeMethod_var);
  10363. if (L_159)
  10364. {
  10365. goto IL_0346;
  10366. }
  10367. }
  10368. IL_03cf:
  10369. {
  10370. IL2CPP_LEAVE(0x3E2, FINALLY_03d4);
  10371. }
  10372. } // end try (depth: 1)
  10373. catch(Il2CppExceptionWrapper& e)
  10374. {
  10375. __last_unhandled_exception = (Exception_t *)e.ex;
  10376. goto FINALLY_03d4;
  10377. }
  10378. FINALLY_03d4:
  10379. { // begin finally (depth: 1)
  10380. Enumerator_Dispose_m3494652212((&V_21), /*hidden argument*/Enumerator_Dispose_m3494652212_RuntimeMethod_var);
  10381. IL2CPP_END_FINALLY(980)
  10382. } // end finally (depth: 1)
  10383. IL2CPP_CLEANUP(980)
  10384. {
  10385. IL2CPP_JUMP_TBL(0x3E2, IL_03e2)
  10386. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  10387. }
  10388. IL_03e2:
  10389. {
  10390. }
  10391. IL_03e3:
  10392. {
  10393. }
  10394. IL_03e4:
  10395. {
  10396. return;
  10397. }
  10398. }
  10399. // System.String UnityEngine.GUILayoutGroup::ToString()
  10400. extern "C" IL2CPP_METHOD_ATTR String_t* GUILayoutGroup_ToString_m3162736776 (GUILayoutGroup_t2157789695 * __this, const RuntimeMethod* method)
  10401. {
  10402. static bool s_Il2CppMethodInitialized;
  10403. if (!s_Il2CppMethodInitialized)
  10404. {
  10405. il2cpp_codegen_initialize_method (GUILayoutGroup_ToString_m3162736776_MetadataUsageId);
  10406. s_Il2CppMethodInitialized = true;
  10407. }
  10408. String_t* V_0 = NULL;
  10409. String_t* V_1 = NULL;
  10410. int32_t V_2 = 0;
  10411. String_t* V_3 = NULL;
  10412. GUILayoutEntry_t3214611570 * V_4 = NULL;
  10413. Enumerator_t2280962893 V_5;
  10414. memset(&V_5, 0, sizeof(V_5));
  10415. String_t* V_6 = NULL;
  10416. Exception_t * __last_unhandled_exception = 0;
  10417. NO_UNUSED_WARNING (__last_unhandled_exception);
  10418. Exception_t * __exception_local = 0;
  10419. NO_UNUSED_WARNING (__exception_local);
  10420. int32_t __leave_target = 0;
  10421. NO_UNUSED_WARNING (__leave_target);
  10422. {
  10423. V_0 = _stringLiteral757602046;
  10424. V_1 = _stringLiteral757602046;
  10425. V_2 = 0;
  10426. goto IL_0024;
  10427. }
  10428. IL_0014:
  10429. {
  10430. String_t* L_0 = V_1;
  10431. IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
  10432. String_t* L_1 = String_Concat_m3937257545(NULL /*static, unused*/, L_0, _stringLiteral3452614528, /*hidden argument*/NULL);
  10433. V_1 = L_1;
  10434. int32_t L_2 = V_2;
  10435. V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1));
  10436. }
  10437. IL_0024:
  10438. {
  10439. int32_t L_3 = V_2;
  10440. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutEntry_t3214611570_il2cpp_TypeInfo_var);
  10441. int32_t L_4 = ((GUILayoutEntry_t3214611570_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutEntry_t3214611570_il2cpp_TypeInfo_var))->get_indent_9();
  10442. if ((((int32_t)L_3) < ((int32_t)L_4)))
  10443. {
  10444. goto IL_0014;
  10445. }
  10446. }
  10447. {
  10448. String_t* L_5 = V_0;
  10449. V_3 = L_5;
  10450. ObjectU5BU5D_t2843939325* L_6 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)5));
  10451. String_t* L_7 = V_3;
  10452. NullCheck(L_6);
  10453. ArrayElementTypeCheck (L_6, L_7);
  10454. (L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_7);
  10455. ObjectU5BU5D_t2843939325* L_8 = L_6;
  10456. String_t* L_9 = GUILayoutEntry_ToString_m3366663569(__this, /*hidden argument*/NULL);
  10457. NullCheck(L_8);
  10458. ArrayElementTypeCheck (L_8, L_9);
  10459. (L_8)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_9);
  10460. ObjectU5BU5D_t2843939325* L_10 = L_8;
  10461. NullCheck(L_10);
  10462. ArrayElementTypeCheck (L_10, _stringLiteral2110742732);
  10463. (L_10)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteral2110742732);
  10464. ObjectU5BU5D_t2843939325* L_11 = L_10;
  10465. float L_12 = __this->get_m_ChildMinHeight_24();
  10466. float L_13 = L_12;
  10467. RuntimeObject * L_14 = Box(Single_t1397266774_il2cpp_TypeInfo_var, &L_13);
  10468. NullCheck(L_11);
  10469. ArrayElementTypeCheck (L_11, L_14);
  10470. (L_11)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_14);
  10471. ObjectU5BU5D_t2843939325* L_15 = L_11;
  10472. NullCheck(L_15);
  10473. ArrayElementTypeCheck (L_15, _stringLiteral3173274056);
  10474. (L_15)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)_stringLiteral3173274056);
  10475. IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
  10476. String_t* L_16 = String_Concat_m2971454694(NULL /*static, unused*/, L_15, /*hidden argument*/NULL);
  10477. V_0 = L_16;
  10478. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutEntry_t3214611570_il2cpp_TypeInfo_var);
  10479. int32_t L_17 = ((GUILayoutEntry_t3214611570_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutEntry_t3214611570_il2cpp_TypeInfo_var))->get_indent_9();
  10480. ((GUILayoutEntry_t3214611570_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutEntry_t3214611570_il2cpp_TypeInfo_var))->set_indent_9(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)4)));
  10481. List_1_t391719016 * L_18 = __this->get_entries_10();
  10482. NullCheck(L_18);
  10483. Enumerator_t2280962893 L_19 = List_1_GetEnumerator_m1934946323(L_18, /*hidden argument*/List_1_GetEnumerator_m1934946323_RuntimeMethod_var);
  10484. V_5 = L_19;
  10485. }
  10486. IL_0082:
  10487. try
  10488. { // begin try (depth: 1)
  10489. {
  10490. goto IL_00a5;
  10491. }
  10492. IL_0087:
  10493. {
  10494. GUILayoutEntry_t3214611570 * L_20 = Enumerator_get_Current_m2663170093((&V_5), /*hidden argument*/Enumerator_get_Current_m2663170093_RuntimeMethod_var);
  10495. V_4 = L_20;
  10496. String_t* L_21 = V_0;
  10497. GUILayoutEntry_t3214611570 * L_22 = V_4;
  10498. NullCheck(L_22);
  10499. String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_22);
  10500. IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
  10501. String_t* L_24 = String_Concat_m3755062657(NULL /*static, unused*/, L_21, L_23, _stringLiteral3452614566, /*hidden argument*/NULL);
  10502. V_0 = L_24;
  10503. }
  10504. IL_00a5:
  10505. {
  10506. bool L_25 = Enumerator_MoveNext_m2324433341((&V_5), /*hidden argument*/Enumerator_MoveNext_m2324433341_RuntimeMethod_var);
  10507. if (L_25)
  10508. {
  10509. goto IL_0087;
  10510. }
  10511. }
  10512. IL_00b1:
  10513. {
  10514. IL2CPP_LEAVE(0xC4, FINALLY_00b6);
  10515. }
  10516. } // end try (depth: 1)
  10517. catch(Il2CppExceptionWrapper& e)
  10518. {
  10519. __last_unhandled_exception = (Exception_t *)e.ex;
  10520. goto FINALLY_00b6;
  10521. }
  10522. FINALLY_00b6:
  10523. { // begin finally (depth: 1)
  10524. Enumerator_Dispose_m3494652212((&V_5), /*hidden argument*/Enumerator_Dispose_m3494652212_RuntimeMethod_var);
  10525. IL2CPP_END_FINALLY(182)
  10526. } // end finally (depth: 1)
  10527. IL2CPP_CLEANUP(182)
  10528. {
  10529. IL2CPP_JUMP_TBL(0xC4, IL_00c4)
  10530. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  10531. }
  10532. IL_00c4:
  10533. {
  10534. String_t* L_26 = V_0;
  10535. String_t* L_27 = V_1;
  10536. IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
  10537. String_t* L_28 = String_Concat_m3755062657(NULL /*static, unused*/, L_26, L_27, _stringLiteral3452614611, /*hidden argument*/NULL);
  10538. V_0 = L_28;
  10539. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutEntry_t3214611570_il2cpp_TypeInfo_var);
  10540. int32_t L_29 = ((GUILayoutEntry_t3214611570_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutEntry_t3214611570_il2cpp_TypeInfo_var))->get_indent_9();
  10541. ((GUILayoutEntry_t3214611570_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutEntry_t3214611570_il2cpp_TypeInfo_var))->set_indent_9(((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)4)));
  10542. String_t* L_30 = V_0;
  10543. V_6 = L_30;
  10544. goto IL_00e5;
  10545. }
  10546. IL_00e5:
  10547. {
  10548. String_t* L_31 = V_6;
  10549. return L_31;
  10550. }
  10551. }
  10552. #ifdef __clang__
  10553. #pragma clang diagnostic pop
  10554. #endif
  10555. #ifdef __clang__
  10556. #pragma clang diagnostic push
  10557. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  10558. #pragma clang diagnostic ignored "-Wunused-variable"
  10559. #endif
  10560. // System.Void UnityEngine.GUILayoutOption::.ctor(UnityEngine.GUILayoutOption/Type,System.Object)
  10561. extern "C" IL2CPP_METHOD_ATTR void GUILayoutOption__ctor_m2091649807 (GUILayoutOption_t811797299 * __this, int32_t ___type0, RuntimeObject * ___value1, const RuntimeMethod* method)
  10562. {
  10563. {
  10564. Object__ctor_m297566312(__this, /*hidden argument*/NULL);
  10565. int32_t L_0 = ___type0;
  10566. __this->set_type_0(L_0);
  10567. RuntimeObject * L_1 = ___value1;
  10568. __this->set_value_1(L_1);
  10569. return;
  10570. }
  10571. }
  10572. #ifdef __clang__
  10573. #pragma clang diagnostic pop
  10574. #endif
  10575. #ifdef __clang__
  10576. #pragma clang diagnostic push
  10577. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  10578. #pragma clang diagnostic ignored "-Wunused-variable"
  10579. #endif
  10580. #ifdef __clang__
  10581. #pragma clang diagnostic pop
  10582. #endif
  10583. #ifdef __clang__
  10584. #pragma clang diagnostic push
  10585. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  10586. #pragma clang diagnostic ignored "-Wunused-variable"
  10587. #endif
  10588. // UnityEngine.Rect UnityEngine.GUILayoutUtility::Internal_GetWindowRect(System.Int32)
  10589. extern "C" IL2CPP_METHOD_ATTR Rect_t2360479859 GUILayoutUtility_Internal_GetWindowRect_m2131267775 (RuntimeObject * __this /* static, unused */, int32_t ___windowID0, const RuntimeMethod* method)
  10590. {
  10591. static bool s_Il2CppMethodInitialized;
  10592. if (!s_Il2CppMethodInitialized)
  10593. {
  10594. il2cpp_codegen_initialize_method (GUILayoutUtility_Internal_GetWindowRect_m2131267775_MetadataUsageId);
  10595. s_Il2CppMethodInitialized = true;
  10596. }
  10597. Rect_t2360479859 V_0;
  10598. memset(&V_0, 0, sizeof(V_0));
  10599. Rect_t2360479859 V_1;
  10600. memset(&V_1, 0, sizeof(V_1));
  10601. {
  10602. int32_t L_0 = ___windowID0;
  10603. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  10604. GUILayoutUtility_INTERNAL_CALL_Internal_GetWindowRect_m2348654813(NULL /*static, unused*/, L_0, (&V_0), /*hidden argument*/NULL);
  10605. Rect_t2360479859 L_1 = V_0;
  10606. V_1 = L_1;
  10607. goto IL_0010;
  10608. }
  10609. IL_0010:
  10610. {
  10611. Rect_t2360479859 L_2 = V_1;
  10612. return L_2;
  10613. }
  10614. }
  10615. // System.Void UnityEngine.GUILayoutUtility::INTERNAL_CALL_Internal_GetWindowRect(System.Int32,UnityEngine.Rect&)
  10616. extern "C" IL2CPP_METHOD_ATTR void GUILayoutUtility_INTERNAL_CALL_Internal_GetWindowRect_m2348654813 (RuntimeObject * __this /* static, unused */, int32_t ___windowID0, Rect_t2360479859 * ___value1, const RuntimeMethod* method)
  10617. {
  10618. typedef void (*GUILayoutUtility_INTERNAL_CALL_Internal_GetWindowRect_m2348654813_ftn) (int32_t, Rect_t2360479859 *);
  10619. static GUILayoutUtility_INTERNAL_CALL_Internal_GetWindowRect_m2348654813_ftn _il2cpp_icall_func;
  10620. if (!_il2cpp_icall_func)
  10621. _il2cpp_icall_func = (GUILayoutUtility_INTERNAL_CALL_Internal_GetWindowRect_m2348654813_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUILayoutUtility::INTERNAL_CALL_Internal_GetWindowRect(System.Int32,UnityEngine.Rect&)");
  10622. _il2cpp_icall_func(___windowID0, ___value1);
  10623. }
  10624. // System.Void UnityEngine.GUILayoutUtility::Internal_MoveWindow(System.Int32,UnityEngine.Rect)
  10625. extern "C" IL2CPP_METHOD_ATTR void GUILayoutUtility_Internal_MoveWindow_m3463958180 (RuntimeObject * __this /* static, unused */, int32_t ___windowID0, Rect_t2360479859 ___r1, const RuntimeMethod* method)
  10626. {
  10627. static bool s_Il2CppMethodInitialized;
  10628. if (!s_Il2CppMethodInitialized)
  10629. {
  10630. il2cpp_codegen_initialize_method (GUILayoutUtility_Internal_MoveWindow_m3463958180_MetadataUsageId);
  10631. s_Il2CppMethodInitialized = true;
  10632. }
  10633. {
  10634. int32_t L_0 = ___windowID0;
  10635. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  10636. GUILayoutUtility_INTERNAL_CALL_Internal_MoveWindow_m2976690564(NULL /*static, unused*/, L_0, (&___r1), /*hidden argument*/NULL);
  10637. return;
  10638. }
  10639. }
  10640. // System.Void UnityEngine.GUILayoutUtility::INTERNAL_CALL_Internal_MoveWindow(System.Int32,UnityEngine.Rect&)
  10641. extern "C" IL2CPP_METHOD_ATTR void GUILayoutUtility_INTERNAL_CALL_Internal_MoveWindow_m2976690564 (RuntimeObject * __this /* static, unused */, int32_t ___windowID0, Rect_t2360479859 * ___r1, const RuntimeMethod* method)
  10642. {
  10643. typedef void (*GUILayoutUtility_INTERNAL_CALL_Internal_MoveWindow_m2976690564_ftn) (int32_t, Rect_t2360479859 *);
  10644. static GUILayoutUtility_INTERNAL_CALL_Internal_MoveWindow_m2976690564_ftn _il2cpp_icall_func;
  10645. if (!_il2cpp_icall_func)
  10646. _il2cpp_icall_func = (GUILayoutUtility_INTERNAL_CALL_Internal_MoveWindow_m2976690564_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUILayoutUtility::INTERNAL_CALL_Internal_MoveWindow(System.Int32,UnityEngine.Rect&)");
  10647. _il2cpp_icall_func(___windowID0, ___r1);
  10648. }
  10649. // UnityEngine.GUILayoutUtility/LayoutCache UnityEngine.GUILayoutUtility::SelectIDList(System.Int32,System.Boolean)
  10650. extern "C" IL2CPP_METHOD_ATTR LayoutCache_t78309876 * GUILayoutUtility_SelectIDList_m294753167 (RuntimeObject * __this /* static, unused */, int32_t ___instanceID0, bool ___isWindow1, const RuntimeMethod* method)
  10651. {
  10652. static bool s_Il2CppMethodInitialized;
  10653. if (!s_Il2CppMethodInitialized)
  10654. {
  10655. il2cpp_codegen_initialize_method (GUILayoutUtility_SelectIDList_m294753167_MetadataUsageId);
  10656. s_Il2CppMethodInitialized = true;
  10657. }
  10658. Dictionary_2_t3261990503 * V_0 = NULL;
  10659. LayoutCache_t78309876 * V_1 = NULL;
  10660. LayoutCache_t78309876 * V_2 = NULL;
  10661. Dictionary_2_t3261990503 * G_B3_0 = NULL;
  10662. {
  10663. bool L_0 = ___isWindow1;
  10664. if (!L_0)
  10665. {
  10666. goto IL_0011;
  10667. }
  10668. }
  10669. {
  10670. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  10671. Dictionary_2_t3261990503 * L_1 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_s_StoredWindows_1();
  10672. G_B3_0 = L_1;
  10673. goto IL_0016;
  10674. }
  10675. IL_0011:
  10676. {
  10677. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  10678. Dictionary_2_t3261990503 * L_2 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_s_StoredLayouts_0();
  10679. G_B3_0 = L_2;
  10680. }
  10681. IL_0016:
  10682. {
  10683. V_0 = G_B3_0;
  10684. Dictionary_2_t3261990503 * L_3 = V_0;
  10685. int32_t L_4 = ___instanceID0;
  10686. NullCheck(L_3);
  10687. bool L_5 = Dictionary_2_TryGetValue_m4148288222(L_3, L_4, (&V_1), /*hidden argument*/Dictionary_2_TryGetValue_m4148288222_RuntimeMethod_var);
  10688. if (L_5)
  10689. {
  10690. goto IL_003a;
  10691. }
  10692. }
  10693. {
  10694. LayoutCache_t78309876 * L_6 = (LayoutCache_t78309876 *)il2cpp_codegen_object_new(LayoutCache_t78309876_il2cpp_TypeInfo_var);
  10695. LayoutCache__ctor_m3885940174(L_6, /*hidden argument*/NULL);
  10696. V_1 = L_6;
  10697. Dictionary_2_t3261990503 * L_7 = V_0;
  10698. int32_t L_8 = ___instanceID0;
  10699. LayoutCache_t78309876 * L_9 = V_1;
  10700. NullCheck(L_7);
  10701. Dictionary_2_set_Item_m2818144(L_7, L_8, L_9, /*hidden argument*/Dictionary_2_set_Item_m2818144_RuntimeMethod_var);
  10702. goto IL_003c;
  10703. }
  10704. IL_003a:
  10705. {
  10706. }
  10707. IL_003c:
  10708. {
  10709. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  10710. LayoutCache_t78309876 * L_10 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10711. LayoutCache_t78309876 * L_11 = V_1;
  10712. NullCheck(L_11);
  10713. GUILayoutGroup_t2157789695 * L_12 = L_11->get_topLevel_0();
  10714. NullCheck(L_10);
  10715. L_10->set_topLevel_0(L_12);
  10716. LayoutCache_t78309876 * L_13 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10717. LayoutCache_t78309876 * L_14 = V_1;
  10718. NullCheck(L_14);
  10719. GenericStack_t1310059385 * L_15 = L_14->get_layoutGroups_1();
  10720. NullCheck(L_13);
  10721. L_13->set_layoutGroups_1(L_15);
  10722. LayoutCache_t78309876 * L_16 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10723. LayoutCache_t78309876 * L_17 = V_1;
  10724. NullCheck(L_17);
  10725. GUILayoutGroup_t2157789695 * L_18 = L_17->get_windows_2();
  10726. NullCheck(L_16);
  10727. L_16->set_windows_2(L_18);
  10728. LayoutCache_t78309876 * L_19 = V_1;
  10729. V_2 = L_19;
  10730. goto IL_0073;
  10731. }
  10732. IL_0073:
  10733. {
  10734. LayoutCache_t78309876 * L_20 = V_2;
  10735. return L_20;
  10736. }
  10737. }
  10738. // System.Void UnityEngine.GUILayoutUtility::Begin(System.Int32)
  10739. extern "C" IL2CPP_METHOD_ATTR void GUILayoutUtility_Begin_m1358735224 (RuntimeObject * __this /* static, unused */, int32_t ___instanceID0, const RuntimeMethod* method)
  10740. {
  10741. static bool s_Il2CppMethodInitialized;
  10742. if (!s_Il2CppMethodInitialized)
  10743. {
  10744. il2cpp_codegen_initialize_method (GUILayoutUtility_Begin_m1358735224_MetadataUsageId);
  10745. s_Il2CppMethodInitialized = true;
  10746. }
  10747. LayoutCache_t78309876 * V_0 = NULL;
  10748. GUILayoutGroup_t2157789695 * V_1 = NULL;
  10749. {
  10750. int32_t L_0 = ___instanceID0;
  10751. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  10752. LayoutCache_t78309876 * L_1 = GUILayoutUtility_SelectIDList_m294753167(NULL /*static, unused*/, L_0, (bool)0, /*hidden argument*/NULL);
  10753. V_0 = L_1;
  10754. Event_t2956885303 * L_2 = Event_get_current_m2393892120(NULL /*static, unused*/, /*hidden argument*/NULL);
  10755. NullCheck(L_2);
  10756. int32_t L_3 = Event_get_type_m1370041809(L_2, /*hidden argument*/NULL);
  10757. if ((!(((uint32_t)L_3) == ((uint32_t)8))))
  10758. {
  10759. goto IL_0078;
  10760. }
  10761. }
  10762. {
  10763. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  10764. LayoutCache_t78309876 * L_4 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10765. LayoutCache_t78309876 * L_5 = V_0;
  10766. GUILayoutGroup_t2157789695 * L_6 = (GUILayoutGroup_t2157789695 *)il2cpp_codegen_object_new(GUILayoutGroup_t2157789695_il2cpp_TypeInfo_var);
  10767. GUILayoutGroup__ctor_m3245996524(L_6, /*hidden argument*/NULL);
  10768. GUILayoutGroup_t2157789695 * L_7 = L_6;
  10769. V_1 = L_7;
  10770. NullCheck(L_5);
  10771. L_5->set_topLevel_0(L_7);
  10772. GUILayoutGroup_t2157789695 * L_8 = V_1;
  10773. NullCheck(L_4);
  10774. L_4->set_topLevel_0(L_8);
  10775. LayoutCache_t78309876 * L_9 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10776. NullCheck(L_9);
  10777. GenericStack_t1310059385 * L_10 = L_9->get_layoutGroups_1();
  10778. NullCheck(L_10);
  10779. VirtActionInvoker0::Invoke(13 /* System.Void System.Collections.Stack::Clear() */, L_10);
  10780. LayoutCache_t78309876 * L_11 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10781. NullCheck(L_11);
  10782. GenericStack_t1310059385 * L_12 = L_11->get_layoutGroups_1();
  10783. LayoutCache_t78309876 * L_13 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10784. NullCheck(L_13);
  10785. GUILayoutGroup_t2157789695 * L_14 = L_13->get_topLevel_0();
  10786. NullCheck(L_12);
  10787. VirtActionInvoker1< RuntimeObject * >::Invoke(20 /* System.Void System.Collections.Stack::Push(System.Object) */, L_12, L_14);
  10788. LayoutCache_t78309876 * L_15 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10789. LayoutCache_t78309876 * L_16 = V_0;
  10790. GUILayoutGroup_t2157789695 * L_17 = (GUILayoutGroup_t2157789695 *)il2cpp_codegen_object_new(GUILayoutGroup_t2157789695_il2cpp_TypeInfo_var);
  10791. GUILayoutGroup__ctor_m3245996524(L_17, /*hidden argument*/NULL);
  10792. GUILayoutGroup_t2157789695 * L_18 = L_17;
  10793. V_1 = L_18;
  10794. NullCheck(L_16);
  10795. L_16->set_windows_2(L_18);
  10796. GUILayoutGroup_t2157789695 * L_19 = V_1;
  10797. NullCheck(L_15);
  10798. L_15->set_windows_2(L_19);
  10799. goto IL_00aa;
  10800. }
  10801. IL_0078:
  10802. {
  10803. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  10804. LayoutCache_t78309876 * L_20 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10805. LayoutCache_t78309876 * L_21 = V_0;
  10806. NullCheck(L_21);
  10807. GUILayoutGroup_t2157789695 * L_22 = L_21->get_topLevel_0();
  10808. NullCheck(L_20);
  10809. L_20->set_topLevel_0(L_22);
  10810. LayoutCache_t78309876 * L_23 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10811. LayoutCache_t78309876 * L_24 = V_0;
  10812. NullCheck(L_24);
  10813. GenericStack_t1310059385 * L_25 = L_24->get_layoutGroups_1();
  10814. NullCheck(L_23);
  10815. L_23->set_layoutGroups_1(L_25);
  10816. LayoutCache_t78309876 * L_26 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10817. LayoutCache_t78309876 * L_27 = V_0;
  10818. NullCheck(L_27);
  10819. GUILayoutGroup_t2157789695 * L_28 = L_27->get_windows_2();
  10820. NullCheck(L_26);
  10821. L_26->set_windows_2(L_28);
  10822. }
  10823. IL_00aa:
  10824. {
  10825. return;
  10826. }
  10827. }
  10828. // System.Void UnityEngine.GUILayoutUtility::BeginWindow(System.Int32,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])
  10829. extern "C" IL2CPP_METHOD_ATTR void GUILayoutUtility_BeginWindow_m2240221150 (RuntimeObject * __this /* static, unused */, int32_t ___windowID0, GUIStyle_t3956901511 * ___style1, GUILayoutOptionU5BU5D_t2510215842* ___options2, const RuntimeMethod* method)
  10830. {
  10831. static bool s_Il2CppMethodInitialized;
  10832. if (!s_Il2CppMethodInitialized)
  10833. {
  10834. il2cpp_codegen_initialize_method (GUILayoutUtility_BeginWindow_m2240221150_MetadataUsageId);
  10835. s_Il2CppMethodInitialized = true;
  10836. }
  10837. LayoutCache_t78309876 * V_0 = NULL;
  10838. GUILayoutGroup_t2157789695 * V_1 = NULL;
  10839. {
  10840. int32_t L_0 = ___windowID0;
  10841. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  10842. LayoutCache_t78309876 * L_1 = GUILayoutUtility_SelectIDList_m294753167(NULL /*static, unused*/, L_0, (bool)1, /*hidden argument*/NULL);
  10843. V_0 = L_1;
  10844. Event_t2956885303 * L_2 = Event_get_current_m2393892120(NULL /*static, unused*/, /*hidden argument*/NULL);
  10845. NullCheck(L_2);
  10846. int32_t L_3 = Event_get_type_m1370041809(L_2, /*hidden argument*/NULL);
  10847. if ((!(((uint32_t)L_3) == ((uint32_t)8))))
  10848. {
  10849. goto IL_00ae;
  10850. }
  10851. }
  10852. {
  10853. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  10854. LayoutCache_t78309876 * L_4 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10855. LayoutCache_t78309876 * L_5 = V_0;
  10856. GUILayoutGroup_t2157789695 * L_6 = (GUILayoutGroup_t2157789695 *)il2cpp_codegen_object_new(GUILayoutGroup_t2157789695_il2cpp_TypeInfo_var);
  10857. GUILayoutGroup__ctor_m3245996524(L_6, /*hidden argument*/NULL);
  10858. GUILayoutGroup_t2157789695 * L_7 = L_6;
  10859. V_1 = L_7;
  10860. NullCheck(L_5);
  10861. L_5->set_topLevel_0(L_7);
  10862. GUILayoutGroup_t2157789695 * L_8 = V_1;
  10863. NullCheck(L_4);
  10864. L_4->set_topLevel_0(L_8);
  10865. LayoutCache_t78309876 * L_9 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10866. NullCheck(L_9);
  10867. GUILayoutGroup_t2157789695 * L_10 = L_9->get_topLevel_0();
  10868. GUIStyle_t3956901511 * L_11 = ___style1;
  10869. NullCheck(L_10);
  10870. GUILayoutEntry_set_style_m1702960184(L_10, L_11, /*hidden argument*/NULL);
  10871. LayoutCache_t78309876 * L_12 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10872. NullCheck(L_12);
  10873. GUILayoutGroup_t2157789695 * L_13 = L_12->get_topLevel_0();
  10874. int32_t L_14 = ___windowID0;
  10875. NullCheck(L_13);
  10876. L_13->set_windowID_16(L_14);
  10877. GUILayoutOptionU5BU5D_t2510215842* L_15 = ___options2;
  10878. if (!L_15)
  10879. {
  10880. goto IL_0068;
  10881. }
  10882. }
  10883. {
  10884. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  10885. LayoutCache_t78309876 * L_16 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10886. NullCheck(L_16);
  10887. GUILayoutGroup_t2157789695 * L_17 = L_16->get_topLevel_0();
  10888. GUILayoutOptionU5BU5D_t2510215842* L_18 = ___options2;
  10889. NullCheck(L_17);
  10890. VirtActionInvoker1< GUILayoutOptionU5BU5D_t2510215842* >::Invoke(10 /* System.Void UnityEngine.GUILayoutEntry::ApplyOptions(UnityEngine.GUILayoutOption[]) */, L_17, L_18);
  10891. }
  10892. IL_0068:
  10893. {
  10894. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  10895. LayoutCache_t78309876 * L_19 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10896. NullCheck(L_19);
  10897. GenericStack_t1310059385 * L_20 = L_19->get_layoutGroups_1();
  10898. NullCheck(L_20);
  10899. VirtActionInvoker0::Invoke(13 /* System.Void System.Collections.Stack::Clear() */, L_20);
  10900. LayoutCache_t78309876 * L_21 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10901. NullCheck(L_21);
  10902. GenericStack_t1310059385 * L_22 = L_21->get_layoutGroups_1();
  10903. LayoutCache_t78309876 * L_23 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10904. NullCheck(L_23);
  10905. GUILayoutGroup_t2157789695 * L_24 = L_23->get_topLevel_0();
  10906. NullCheck(L_22);
  10907. VirtActionInvoker1< RuntimeObject * >::Invoke(20 /* System.Void System.Collections.Stack::Push(System.Object) */, L_22, L_24);
  10908. LayoutCache_t78309876 * L_25 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10909. LayoutCache_t78309876 * L_26 = V_0;
  10910. GUILayoutGroup_t2157789695 * L_27 = (GUILayoutGroup_t2157789695 *)il2cpp_codegen_object_new(GUILayoutGroup_t2157789695_il2cpp_TypeInfo_var);
  10911. GUILayoutGroup__ctor_m3245996524(L_27, /*hidden argument*/NULL);
  10912. GUILayoutGroup_t2157789695 * L_28 = L_27;
  10913. V_1 = L_28;
  10914. NullCheck(L_26);
  10915. L_26->set_windows_2(L_28);
  10916. GUILayoutGroup_t2157789695 * L_29 = V_1;
  10917. NullCheck(L_25);
  10918. L_25->set_windows_2(L_29);
  10919. goto IL_00e0;
  10920. }
  10921. IL_00ae:
  10922. {
  10923. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  10924. LayoutCache_t78309876 * L_30 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10925. LayoutCache_t78309876 * L_31 = V_0;
  10926. NullCheck(L_31);
  10927. GUILayoutGroup_t2157789695 * L_32 = L_31->get_topLevel_0();
  10928. NullCheck(L_30);
  10929. L_30->set_topLevel_0(L_32);
  10930. LayoutCache_t78309876 * L_33 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10931. LayoutCache_t78309876 * L_34 = V_0;
  10932. NullCheck(L_34);
  10933. GenericStack_t1310059385 * L_35 = L_34->get_layoutGroups_1();
  10934. NullCheck(L_33);
  10935. L_33->set_layoutGroups_1(L_35);
  10936. LayoutCache_t78309876 * L_36 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10937. LayoutCache_t78309876 * L_37 = V_0;
  10938. NullCheck(L_37);
  10939. GUILayoutGroup_t2157789695 * L_38 = L_37->get_windows_2();
  10940. NullCheck(L_36);
  10941. L_36->set_windows_2(L_38);
  10942. }
  10943. IL_00e0:
  10944. {
  10945. return;
  10946. }
  10947. }
  10948. // System.Void UnityEngine.GUILayoutUtility::Layout()
  10949. extern "C" IL2CPP_METHOD_ATTR void GUILayoutUtility_Layout_m1159951704 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  10950. {
  10951. static bool s_Il2CppMethodInitialized;
  10952. if (!s_Il2CppMethodInitialized)
  10953. {
  10954. il2cpp_codegen_initialize_method (GUILayoutUtility_Layout_m1159951704_MetadataUsageId);
  10955. s_Il2CppMethodInitialized = true;
  10956. }
  10957. {
  10958. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  10959. LayoutCache_t78309876 * L_0 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10960. NullCheck(L_0);
  10961. GUILayoutGroup_t2157789695 * L_1 = L_0->get_topLevel_0();
  10962. NullCheck(L_1);
  10963. int32_t L_2 = L_1->get_windowID_16();
  10964. if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
  10965. {
  10966. goto IL_00b2;
  10967. }
  10968. }
  10969. {
  10970. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  10971. LayoutCache_t78309876 * L_3 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10972. NullCheck(L_3);
  10973. GUILayoutGroup_t2157789695 * L_4 = L_3->get_topLevel_0();
  10974. NullCheck(L_4);
  10975. VirtActionInvoker0::Invoke(5 /* System.Void UnityEngine.GUILayoutEntry::CalcWidth() */, L_4);
  10976. LayoutCache_t78309876 * L_5 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10977. NullCheck(L_5);
  10978. GUILayoutGroup_t2157789695 * L_6 = L_5->get_topLevel_0();
  10979. int32_t L_7 = Screen_get_width_m345039817(NULL /*static, unused*/, /*hidden argument*/NULL);
  10980. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  10981. float L_8 = GUIUtility_get_pixelsPerPoint_m2369948084(NULL /*static, unused*/, /*hidden argument*/NULL);
  10982. LayoutCache_t78309876 * L_9 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10983. NullCheck(L_9);
  10984. GUILayoutGroup_t2157789695 * L_10 = L_9->get_topLevel_0();
  10985. NullCheck(L_10);
  10986. float L_11 = ((GUILayoutEntry_t3214611570 *)L_10)->get_maxWidth_1();
  10987. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  10988. float L_12 = Mathf_Min_m1073399594(NULL /*static, unused*/, ((float)((float)(((float)((float)L_7)))/(float)L_8)), L_11, /*hidden argument*/NULL);
  10989. NullCheck(L_6);
  10990. VirtActionInvoker2< float, float >::Invoke(7 /* System.Void UnityEngine.GUILayoutEntry::SetHorizontal(System.Single,System.Single) */, L_6, (0.0f), L_12);
  10991. LayoutCache_t78309876 * L_13 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10992. NullCheck(L_13);
  10993. GUILayoutGroup_t2157789695 * L_14 = L_13->get_topLevel_0();
  10994. NullCheck(L_14);
  10995. VirtActionInvoker0::Invoke(6 /* System.Void UnityEngine.GUILayoutEntry::CalcHeight() */, L_14);
  10996. LayoutCache_t78309876 * L_15 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  10997. NullCheck(L_15);
  10998. GUILayoutGroup_t2157789695 * L_16 = L_15->get_topLevel_0();
  10999. int32_t L_17 = Screen_get_height_m1623532518(NULL /*static, unused*/, /*hidden argument*/NULL);
  11000. float L_18 = GUIUtility_get_pixelsPerPoint_m2369948084(NULL /*static, unused*/, /*hidden argument*/NULL);
  11001. LayoutCache_t78309876 * L_19 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  11002. NullCheck(L_19);
  11003. GUILayoutGroup_t2157789695 * L_20 = L_19->get_topLevel_0();
  11004. NullCheck(L_20);
  11005. float L_21 = ((GUILayoutEntry_t3214611570 *)L_20)->get_maxHeight_3();
  11006. float L_22 = Mathf_Min_m1073399594(NULL /*static, unused*/, ((float)((float)(((float)((float)L_17)))/(float)L_18)), L_21, /*hidden argument*/NULL);
  11007. NullCheck(L_16);
  11008. VirtActionInvoker2< float, float >::Invoke(8 /* System.Void UnityEngine.GUILayoutEntry::SetVertical(System.Single,System.Single) */, L_16, (0.0f), L_22);
  11009. LayoutCache_t78309876 * L_23 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  11010. NullCheck(L_23);
  11011. GUILayoutGroup_t2157789695 * L_24 = L_23->get_windows_2();
  11012. GUILayoutUtility_LayoutFreeGroup_m2955697397(NULL /*static, unused*/, L_24, /*hidden argument*/NULL);
  11013. goto IL_00d2;
  11014. }
  11015. IL_00b2:
  11016. {
  11017. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  11018. LayoutCache_t78309876 * L_25 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  11019. NullCheck(L_25);
  11020. GUILayoutGroup_t2157789695 * L_26 = L_25->get_topLevel_0();
  11021. GUILayoutUtility_LayoutSingleGroup_m700786689(NULL /*static, unused*/, L_26, /*hidden argument*/NULL);
  11022. LayoutCache_t78309876 * L_27 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  11023. NullCheck(L_27);
  11024. GUILayoutGroup_t2157789695 * L_28 = L_27->get_windows_2();
  11025. GUILayoutUtility_LayoutFreeGroup_m2955697397(NULL /*static, unused*/, L_28, /*hidden argument*/NULL);
  11026. }
  11027. IL_00d2:
  11028. {
  11029. return;
  11030. }
  11031. }
  11032. // System.Void UnityEngine.GUILayoutUtility::LayoutFromEditorWindow()
  11033. extern "C" IL2CPP_METHOD_ATTR void GUILayoutUtility_LayoutFromEditorWindow_m2914699782 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  11034. {
  11035. static bool s_Il2CppMethodInitialized;
  11036. if (!s_Il2CppMethodInitialized)
  11037. {
  11038. il2cpp_codegen_initialize_method (GUILayoutUtility_LayoutFromEditorWindow_m2914699782_MetadataUsageId);
  11039. s_Il2CppMethodInitialized = true;
  11040. }
  11041. {
  11042. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  11043. LayoutCache_t78309876 * L_0 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  11044. NullCheck(L_0);
  11045. GUILayoutGroup_t2157789695 * L_1 = L_0->get_topLevel_0();
  11046. NullCheck(L_1);
  11047. VirtActionInvoker0::Invoke(5 /* System.Void UnityEngine.GUILayoutEntry::CalcWidth() */, L_1);
  11048. LayoutCache_t78309876 * L_2 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  11049. NullCheck(L_2);
  11050. GUILayoutGroup_t2157789695 * L_3 = L_2->get_topLevel_0();
  11051. int32_t L_4 = Screen_get_width_m345039817(NULL /*static, unused*/, /*hidden argument*/NULL);
  11052. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  11053. float L_5 = GUIUtility_get_pixelsPerPoint_m2369948084(NULL /*static, unused*/, /*hidden argument*/NULL);
  11054. NullCheck(L_3);
  11055. VirtActionInvoker2< float, float >::Invoke(7 /* System.Void UnityEngine.GUILayoutEntry::SetHorizontal(System.Single,System.Single) */, L_3, (0.0f), ((float)((float)(((float)((float)L_4)))/(float)L_5)));
  11056. LayoutCache_t78309876 * L_6 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  11057. NullCheck(L_6);
  11058. GUILayoutGroup_t2157789695 * L_7 = L_6->get_topLevel_0();
  11059. NullCheck(L_7);
  11060. VirtActionInvoker0::Invoke(6 /* System.Void UnityEngine.GUILayoutEntry::CalcHeight() */, L_7);
  11061. LayoutCache_t78309876 * L_8 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  11062. NullCheck(L_8);
  11063. GUILayoutGroup_t2157789695 * L_9 = L_8->get_topLevel_0();
  11064. int32_t L_10 = Screen_get_height_m1623532518(NULL /*static, unused*/, /*hidden argument*/NULL);
  11065. float L_11 = GUIUtility_get_pixelsPerPoint_m2369948084(NULL /*static, unused*/, /*hidden argument*/NULL);
  11066. NullCheck(L_9);
  11067. VirtActionInvoker2< float, float >::Invoke(8 /* System.Void UnityEngine.GUILayoutEntry::SetVertical(System.Single,System.Single) */, L_9, (0.0f), ((float)((float)(((float)((float)L_10)))/(float)L_11)));
  11068. LayoutCache_t78309876 * L_12 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  11069. NullCheck(L_12);
  11070. GUILayoutGroup_t2157789695 * L_13 = L_12->get_windows_2();
  11071. GUILayoutUtility_LayoutFreeGroup_m2955697397(NULL /*static, unused*/, L_13, /*hidden argument*/NULL);
  11072. return;
  11073. }
  11074. }
  11075. // System.Void UnityEngine.GUILayoutUtility::LayoutFreeGroup(UnityEngine.GUILayoutGroup)
  11076. extern "C" IL2CPP_METHOD_ATTR void GUILayoutUtility_LayoutFreeGroup_m2955697397 (RuntimeObject * __this /* static, unused */, GUILayoutGroup_t2157789695 * ___toplevel0, const RuntimeMethod* method)
  11077. {
  11078. static bool s_Il2CppMethodInitialized;
  11079. if (!s_Il2CppMethodInitialized)
  11080. {
  11081. il2cpp_codegen_initialize_method (GUILayoutUtility_LayoutFreeGroup_m2955697397_MetadataUsageId);
  11082. s_Il2CppMethodInitialized = true;
  11083. }
  11084. GUILayoutGroup_t2157789695 * V_0 = NULL;
  11085. Enumerator_t2280962893 V_1;
  11086. memset(&V_1, 0, sizeof(V_1));
  11087. Exception_t * __last_unhandled_exception = 0;
  11088. NO_UNUSED_WARNING (__last_unhandled_exception);
  11089. Exception_t * __exception_local = 0;
  11090. NO_UNUSED_WARNING (__exception_local);
  11091. int32_t __leave_target = 0;
  11092. NO_UNUSED_WARNING (__leave_target);
  11093. {
  11094. GUILayoutGroup_t2157789695 * L_0 = ___toplevel0;
  11095. NullCheck(L_0);
  11096. List_1_t391719016 * L_1 = L_0->get_entries_10();
  11097. NullCheck(L_1);
  11098. Enumerator_t2280962893 L_2 = List_1_GetEnumerator_m1934946323(L_1, /*hidden argument*/List_1_GetEnumerator_m1934946323_RuntimeMethod_var);
  11099. V_1 = L_2;
  11100. }
  11101. IL_000e:
  11102. try
  11103. { // begin try (depth: 1)
  11104. {
  11105. goto IL_0028;
  11106. }
  11107. IL_0013:
  11108. {
  11109. GUILayoutEntry_t3214611570 * L_3 = Enumerator_get_Current_m2663170093((&V_1), /*hidden argument*/Enumerator_get_Current_m2663170093_RuntimeMethod_var);
  11110. V_0 = ((GUILayoutGroup_t2157789695 *)CastclassClass((RuntimeObject*)L_3, GUILayoutGroup_t2157789695_il2cpp_TypeInfo_var));
  11111. GUILayoutGroup_t2157789695 * L_4 = V_0;
  11112. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  11113. GUILayoutUtility_LayoutSingleGroup_m700786689(NULL /*static, unused*/, L_4, /*hidden argument*/NULL);
  11114. }
  11115. IL_0028:
  11116. {
  11117. bool L_5 = Enumerator_MoveNext_m2324433341((&V_1), /*hidden argument*/Enumerator_MoveNext_m2324433341_RuntimeMethod_var);
  11118. if (L_5)
  11119. {
  11120. goto IL_0013;
  11121. }
  11122. }
  11123. IL_0034:
  11124. {
  11125. IL2CPP_LEAVE(0x47, FINALLY_0039);
  11126. }
  11127. } // end try (depth: 1)
  11128. catch(Il2CppExceptionWrapper& e)
  11129. {
  11130. __last_unhandled_exception = (Exception_t *)e.ex;
  11131. goto FINALLY_0039;
  11132. }
  11133. FINALLY_0039:
  11134. { // begin finally (depth: 1)
  11135. Enumerator_Dispose_m3494652212((&V_1), /*hidden argument*/Enumerator_Dispose_m3494652212_RuntimeMethod_var);
  11136. IL2CPP_END_FINALLY(57)
  11137. } // end finally (depth: 1)
  11138. IL2CPP_CLEANUP(57)
  11139. {
  11140. IL2CPP_JUMP_TBL(0x47, IL_0047)
  11141. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  11142. }
  11143. IL_0047:
  11144. {
  11145. GUILayoutGroup_t2157789695 * L_6 = ___toplevel0;
  11146. NullCheck(L_6);
  11147. GUILayoutGroup_ResetCursor_m672314614(L_6, /*hidden argument*/NULL);
  11148. return;
  11149. }
  11150. }
  11151. // System.Void UnityEngine.GUILayoutUtility::LayoutSingleGroup(UnityEngine.GUILayoutGroup)
  11152. extern "C" IL2CPP_METHOD_ATTR void GUILayoutUtility_LayoutSingleGroup_m700786689 (RuntimeObject * __this /* static, unused */, GUILayoutGroup_t2157789695 * ___i0, const RuntimeMethod* method)
  11153. {
  11154. static bool s_Il2CppMethodInitialized;
  11155. if (!s_Il2CppMethodInitialized)
  11156. {
  11157. il2cpp_codegen_initialize_method (GUILayoutUtility_LayoutSingleGroup_m700786689_MetadataUsageId);
  11158. s_Il2CppMethodInitialized = true;
  11159. }
  11160. float V_0 = 0.0f;
  11161. float V_1 = 0.0f;
  11162. float V_2 = 0.0f;
  11163. float V_3 = 0.0f;
  11164. Rect_t2360479859 V_4;
  11165. memset(&V_4, 0, sizeof(V_4));
  11166. {
  11167. GUILayoutGroup_t2157789695 * L_0 = ___i0;
  11168. NullCheck(L_0);
  11169. bool L_1 = L_0->get_isWindow_15();
  11170. if (L_1)
  11171. {
  11172. goto IL_0077;
  11173. }
  11174. }
  11175. {
  11176. GUILayoutGroup_t2157789695 * L_2 = ___i0;
  11177. NullCheck(L_2);
  11178. float L_3 = ((GUILayoutEntry_t3214611570 *)L_2)->get_minWidth_0();
  11179. V_0 = L_3;
  11180. GUILayoutGroup_t2157789695 * L_4 = ___i0;
  11181. NullCheck(L_4);
  11182. float L_5 = ((GUILayoutEntry_t3214611570 *)L_4)->get_maxWidth_1();
  11183. V_1 = L_5;
  11184. GUILayoutGroup_t2157789695 * L_6 = ___i0;
  11185. NullCheck(L_6);
  11186. VirtActionInvoker0::Invoke(5 /* System.Void UnityEngine.GUILayoutEntry::CalcWidth() */, L_6);
  11187. GUILayoutGroup_t2157789695 * L_7 = ___i0;
  11188. GUILayoutGroup_t2157789695 * L_8 = ___i0;
  11189. NullCheck(L_8);
  11190. Rect_t2360479859 * L_9 = ((GUILayoutEntry_t3214611570 *)L_8)->get_address_of_rect_4();
  11191. float L_10 = Rect_get_x_m3839990490(L_9, /*hidden argument*/NULL);
  11192. GUILayoutGroup_t2157789695 * L_11 = ___i0;
  11193. NullCheck(L_11);
  11194. float L_12 = ((GUILayoutEntry_t3214611570 *)L_11)->get_maxWidth_1();
  11195. float L_13 = V_0;
  11196. float L_14 = V_1;
  11197. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  11198. float L_15 = Mathf_Clamp_m3350697880(NULL /*static, unused*/, L_12, L_13, L_14, /*hidden argument*/NULL);
  11199. NullCheck(L_7);
  11200. VirtActionInvoker2< float, float >::Invoke(7 /* System.Void UnityEngine.GUILayoutEntry::SetHorizontal(System.Single,System.Single) */, L_7, L_10, L_15);
  11201. GUILayoutGroup_t2157789695 * L_16 = ___i0;
  11202. NullCheck(L_16);
  11203. float L_17 = ((GUILayoutEntry_t3214611570 *)L_16)->get_minHeight_2();
  11204. V_2 = L_17;
  11205. GUILayoutGroup_t2157789695 * L_18 = ___i0;
  11206. NullCheck(L_18);
  11207. float L_19 = ((GUILayoutEntry_t3214611570 *)L_18)->get_maxHeight_3();
  11208. V_3 = L_19;
  11209. GUILayoutGroup_t2157789695 * L_20 = ___i0;
  11210. NullCheck(L_20);
  11211. VirtActionInvoker0::Invoke(6 /* System.Void UnityEngine.GUILayoutEntry::CalcHeight() */, L_20);
  11212. GUILayoutGroup_t2157789695 * L_21 = ___i0;
  11213. GUILayoutGroup_t2157789695 * L_22 = ___i0;
  11214. NullCheck(L_22);
  11215. Rect_t2360479859 * L_23 = ((GUILayoutEntry_t3214611570 *)L_22)->get_address_of_rect_4();
  11216. float L_24 = Rect_get_y_m1501338330(L_23, /*hidden argument*/NULL);
  11217. GUILayoutGroup_t2157789695 * L_25 = ___i0;
  11218. NullCheck(L_25);
  11219. float L_26 = ((GUILayoutEntry_t3214611570 *)L_25)->get_maxHeight_3();
  11220. float L_27 = V_2;
  11221. float L_28 = V_3;
  11222. float L_29 = Mathf_Clamp_m3350697880(NULL /*static, unused*/, L_26, L_27, L_28, /*hidden argument*/NULL);
  11223. NullCheck(L_21);
  11224. VirtActionInvoker2< float, float >::Invoke(8 /* System.Void UnityEngine.GUILayoutEntry::SetVertical(System.Single,System.Single) */, L_21, L_24, L_29);
  11225. goto IL_00ed;
  11226. }
  11227. IL_0077:
  11228. {
  11229. GUILayoutGroup_t2157789695 * L_30 = ___i0;
  11230. NullCheck(L_30);
  11231. VirtActionInvoker0::Invoke(5 /* System.Void UnityEngine.GUILayoutEntry::CalcWidth() */, L_30);
  11232. GUILayoutGroup_t2157789695 * L_31 = ___i0;
  11233. NullCheck(L_31);
  11234. int32_t L_32 = L_31->get_windowID_16();
  11235. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  11236. Rect_t2360479859 L_33 = GUILayoutUtility_Internal_GetWindowRect_m2131267775(NULL /*static, unused*/, L_32, /*hidden argument*/NULL);
  11237. V_4 = L_33;
  11238. GUILayoutGroup_t2157789695 * L_34 = ___i0;
  11239. float L_35 = Rect_get_x_m3839990490((&V_4), /*hidden argument*/NULL);
  11240. float L_36 = Rect_get_width_m3421484486((&V_4), /*hidden argument*/NULL);
  11241. GUILayoutGroup_t2157789695 * L_37 = ___i0;
  11242. NullCheck(L_37);
  11243. float L_38 = ((GUILayoutEntry_t3214611570 *)L_37)->get_minWidth_0();
  11244. GUILayoutGroup_t2157789695 * L_39 = ___i0;
  11245. NullCheck(L_39);
  11246. float L_40 = ((GUILayoutEntry_t3214611570 *)L_39)->get_maxWidth_1();
  11247. IL2CPP_RUNTIME_CLASS_INIT(Mathf_t3464937446_il2cpp_TypeInfo_var);
  11248. float L_41 = Mathf_Clamp_m3350697880(NULL /*static, unused*/, L_36, L_38, L_40, /*hidden argument*/NULL);
  11249. NullCheck(L_34);
  11250. VirtActionInvoker2< float, float >::Invoke(7 /* System.Void UnityEngine.GUILayoutEntry::SetHorizontal(System.Single,System.Single) */, L_34, L_35, L_41);
  11251. GUILayoutGroup_t2157789695 * L_42 = ___i0;
  11252. NullCheck(L_42);
  11253. VirtActionInvoker0::Invoke(6 /* System.Void UnityEngine.GUILayoutEntry::CalcHeight() */, L_42);
  11254. GUILayoutGroup_t2157789695 * L_43 = ___i0;
  11255. float L_44 = Rect_get_y_m1501338330((&V_4), /*hidden argument*/NULL);
  11256. float L_45 = Rect_get_height_m1358425599((&V_4), /*hidden argument*/NULL);
  11257. GUILayoutGroup_t2157789695 * L_46 = ___i0;
  11258. NullCheck(L_46);
  11259. float L_47 = ((GUILayoutEntry_t3214611570 *)L_46)->get_minHeight_2();
  11260. GUILayoutGroup_t2157789695 * L_48 = ___i0;
  11261. NullCheck(L_48);
  11262. float L_49 = ((GUILayoutEntry_t3214611570 *)L_48)->get_maxHeight_3();
  11263. float L_50 = Mathf_Clamp_m3350697880(NULL /*static, unused*/, L_45, L_47, L_49, /*hidden argument*/NULL);
  11264. NullCheck(L_43);
  11265. VirtActionInvoker2< float, float >::Invoke(8 /* System.Void UnityEngine.GUILayoutEntry::SetVertical(System.Single,System.Single) */, L_43, L_44, L_50);
  11266. GUILayoutGroup_t2157789695 * L_51 = ___i0;
  11267. NullCheck(L_51);
  11268. int32_t L_52 = L_51->get_windowID_16();
  11269. GUILayoutGroup_t2157789695 * L_53 = ___i0;
  11270. NullCheck(L_53);
  11271. Rect_t2360479859 L_54 = ((GUILayoutEntry_t3214611570 *)L_53)->get_rect_4();
  11272. GUILayoutUtility_Internal_MoveWindow_m3463958180(NULL /*static, unused*/, L_52, L_54, /*hidden argument*/NULL);
  11273. }
  11274. IL_00ed:
  11275. {
  11276. return;
  11277. }
  11278. }
  11279. // UnityEngine.Rect UnityEngine.GUILayoutUtility::GetRect(UnityEngine.GUIContent,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])
  11280. extern "C" IL2CPP_METHOD_ATTR Rect_t2360479859 GUILayoutUtility_GetRect_m1923267526 (RuntimeObject * __this /* static, unused */, GUIContent_t3050628031 * ___content0, GUIStyle_t3956901511 * ___style1, GUILayoutOptionU5BU5D_t2510215842* ___options2, const RuntimeMethod* method)
  11281. {
  11282. static bool s_Il2CppMethodInitialized;
  11283. if (!s_Il2CppMethodInitialized)
  11284. {
  11285. il2cpp_codegen_initialize_method (GUILayoutUtility_GetRect_m1923267526_MetadataUsageId);
  11286. s_Il2CppMethodInitialized = true;
  11287. }
  11288. Rect_t2360479859 V_0;
  11289. memset(&V_0, 0, sizeof(V_0));
  11290. {
  11291. GUIContent_t3050628031 * L_0 = ___content0;
  11292. GUIStyle_t3956901511 * L_1 = ___style1;
  11293. GUILayoutOptionU5BU5D_t2510215842* L_2 = ___options2;
  11294. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  11295. Rect_t2360479859 L_3 = GUILayoutUtility_DoGetRect_m3125143831(NULL /*static, unused*/, L_0, L_1, L_2, /*hidden argument*/NULL);
  11296. V_0 = L_3;
  11297. goto IL_000f;
  11298. }
  11299. IL_000f:
  11300. {
  11301. Rect_t2360479859 L_4 = V_0;
  11302. return L_4;
  11303. }
  11304. }
  11305. // UnityEngine.Rect UnityEngine.GUILayoutUtility::DoGetRect(UnityEngine.GUIContent,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])
  11306. extern "C" IL2CPP_METHOD_ATTR Rect_t2360479859 GUILayoutUtility_DoGetRect_m3125143831 (RuntimeObject * __this /* static, unused */, GUIContent_t3050628031 * ___content0, GUIStyle_t3956901511 * ___style1, GUILayoutOptionU5BU5D_t2510215842* ___options2, const RuntimeMethod* method)
  11307. {
  11308. static bool s_Il2CppMethodInitialized;
  11309. if (!s_Il2CppMethodInitialized)
  11310. {
  11311. il2cpp_codegen_initialize_method (GUILayoutUtility_DoGetRect_m3125143831_MetadataUsageId);
  11312. s_Il2CppMethodInitialized = true;
  11313. }
  11314. int32_t V_0 = 0;
  11315. Vector2_t2156229523 V_1;
  11316. memset(&V_1, 0, sizeof(V_1));
  11317. GUILayoutOption_t811797299 * V_2 = NULL;
  11318. GUILayoutOptionU5BU5D_t2510215842* V_3 = NULL;
  11319. int32_t V_4 = 0;
  11320. int32_t V_5 = 0;
  11321. Vector2_t2156229523 V_6;
  11322. memset(&V_6, 0, sizeof(V_6));
  11323. Rect_t2360479859 V_7;
  11324. memset(&V_7, 0, sizeof(V_7));
  11325. GUILayoutEntry_t3214611570 * V_8 = NULL;
  11326. {
  11327. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  11328. GUIUtility_CheckOnGUI_m3924092168(NULL /*static, unused*/, /*hidden argument*/NULL);
  11329. Event_t2956885303 * L_0 = Event_get_current_m2393892120(NULL /*static, unused*/, /*hidden argument*/NULL);
  11330. NullCheck(L_0);
  11331. int32_t L_1 = Event_get_type_m1370041809(L_0, /*hidden argument*/NULL);
  11332. V_0 = L_1;
  11333. int32_t L_2 = V_0;
  11334. if ((((int32_t)L_2) == ((int32_t)8)))
  11335. {
  11336. goto IL_0025;
  11337. }
  11338. }
  11339. {
  11340. int32_t L_3 = V_0;
  11341. if ((((int32_t)L_3) == ((int32_t)((int32_t)12))))
  11342. {
  11343. goto IL_011e;
  11344. }
  11345. }
  11346. {
  11347. goto IL_012a;
  11348. }
  11349. IL_0025:
  11350. {
  11351. GUIStyle_t3956901511 * L_4 = ___style1;
  11352. NullCheck(L_4);
  11353. bool L_5 = GUIStyle_get_isHeightDependantOnWidth_m2062056154(L_4, /*hidden argument*/NULL);
  11354. if (!L_5)
  11355. {
  11356. goto IL_004e;
  11357. }
  11358. }
  11359. {
  11360. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  11361. LayoutCache_t78309876 * L_6 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  11362. NullCheck(L_6);
  11363. GUILayoutGroup_t2157789695 * L_7 = L_6->get_topLevel_0();
  11364. GUIStyle_t3956901511 * L_8 = ___style1;
  11365. GUIContent_t3050628031 * L_9 = ___content0;
  11366. GUILayoutOptionU5BU5D_t2510215842* L_10 = ___options2;
  11367. GUIWordWrapSizer_t2043268473 * L_11 = (GUIWordWrapSizer_t2043268473 *)il2cpp_codegen_object_new(GUIWordWrapSizer_t2043268473_il2cpp_TypeInfo_var);
  11368. GUIWordWrapSizer__ctor_m3789151557(L_11, L_8, L_9, L_10, /*hidden argument*/NULL);
  11369. NullCheck(L_7);
  11370. GUILayoutGroup_Add_m1933515568(L_7, L_11, /*hidden argument*/NULL);
  11371. goto IL_0112;
  11372. }
  11373. IL_004e:
  11374. {
  11375. Vector2__ctor_m3970636864((&V_1), (0.0f), (0.0f), /*hidden argument*/NULL);
  11376. GUILayoutOptionU5BU5D_t2510215842* L_12 = ___options2;
  11377. if (!L_12)
  11378. {
  11379. goto IL_00d5;
  11380. }
  11381. }
  11382. {
  11383. GUILayoutOptionU5BU5D_t2510215842* L_13 = ___options2;
  11384. V_3 = L_13;
  11385. V_4 = 0;
  11386. goto IL_00ca;
  11387. }
  11388. IL_0072:
  11389. {
  11390. GUILayoutOptionU5BU5D_t2510215842* L_14 = V_3;
  11391. int32_t L_15 = V_4;
  11392. NullCheck(L_14);
  11393. int32_t L_16 = L_15;
  11394. GUILayoutOption_t811797299 * L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
  11395. V_2 = L_17;
  11396. GUILayoutOption_t811797299 * L_18 = V_2;
  11397. NullCheck(L_18);
  11398. int32_t L_19 = L_18->get_type_0();
  11399. V_5 = L_19;
  11400. int32_t L_20 = V_5;
  11401. if ((((int32_t)L_20) == ((int32_t)5)))
  11402. {
  11403. goto IL_0095;
  11404. }
  11405. }
  11406. {
  11407. int32_t L_21 = V_5;
  11408. if ((((int32_t)L_21) == ((int32_t)3)))
  11409. {
  11410. goto IL_00ac;
  11411. }
  11412. }
  11413. {
  11414. goto IL_00c3;
  11415. }
  11416. IL_0095:
  11417. {
  11418. GUILayoutOption_t811797299 * L_22 = V_2;
  11419. NullCheck(L_22);
  11420. RuntimeObject * L_23 = L_22->get_value_1();
  11421. (&V_1)->set_y_1(((*(float*)((float*)UnBox(L_23, Single_t1397266774_il2cpp_TypeInfo_var)))));
  11422. goto IL_00c3;
  11423. }
  11424. IL_00ac:
  11425. {
  11426. GUILayoutOption_t811797299 * L_24 = V_2;
  11427. NullCheck(L_24);
  11428. RuntimeObject * L_25 = L_24->get_value_1();
  11429. (&V_1)->set_x_0(((*(float*)((float*)UnBox(L_25, Single_t1397266774_il2cpp_TypeInfo_var)))));
  11430. goto IL_00c3;
  11431. }
  11432. IL_00c3:
  11433. {
  11434. int32_t L_26 = V_4;
  11435. V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
  11436. }
  11437. IL_00ca:
  11438. {
  11439. int32_t L_27 = V_4;
  11440. GUILayoutOptionU5BU5D_t2510215842* L_28 = V_3;
  11441. NullCheck(L_28);
  11442. if ((((int32_t)L_27) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_28)->max_length)))))))
  11443. {
  11444. goto IL_0072;
  11445. }
  11446. }
  11447. {
  11448. }
  11449. IL_00d5:
  11450. {
  11451. GUIStyle_t3956901511 * L_29 = ___style1;
  11452. GUIContent_t3050628031 * L_30 = ___content0;
  11453. Vector2_t2156229523 L_31 = V_1;
  11454. NullCheck(L_29);
  11455. Vector2_t2156229523 L_32 = GUIStyle_CalcSizeWithConstraints_m3847734790(L_29, L_30, L_31, /*hidden argument*/NULL);
  11456. V_6 = L_32;
  11457. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  11458. LayoutCache_t78309876 * L_33 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  11459. NullCheck(L_33);
  11460. GUILayoutGroup_t2157789695 * L_34 = L_33->get_topLevel_0();
  11461. float L_35 = (&V_6)->get_x_0();
  11462. float L_36 = (&V_6)->get_x_0();
  11463. float L_37 = (&V_6)->get_y_1();
  11464. float L_38 = (&V_6)->get_y_1();
  11465. GUIStyle_t3956901511 * L_39 = ___style1;
  11466. GUILayoutOptionU5BU5D_t2510215842* L_40 = ___options2;
  11467. GUILayoutEntry_t3214611570 * L_41 = (GUILayoutEntry_t3214611570 *)il2cpp_codegen_object_new(GUILayoutEntry_t3214611570_il2cpp_TypeInfo_var);
  11468. GUILayoutEntry__ctor_m1644640309(L_41, L_35, L_36, L_37, L_38, L_39, L_40, /*hidden argument*/NULL);
  11469. NullCheck(L_34);
  11470. GUILayoutGroup_Add_m1933515568(L_34, L_41, /*hidden argument*/NULL);
  11471. }
  11472. IL_0112:
  11473. {
  11474. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  11475. Rect_t2360479859 L_42 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_kDummyRect_3();
  11476. V_7 = L_42;
  11477. goto IL_0149;
  11478. }
  11479. IL_011e:
  11480. {
  11481. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  11482. Rect_t2360479859 L_43 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_kDummyRect_3();
  11483. V_7 = L_43;
  11484. goto IL_0149;
  11485. }
  11486. IL_012a:
  11487. {
  11488. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  11489. LayoutCache_t78309876 * L_44 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_current_2();
  11490. NullCheck(L_44);
  11491. GUILayoutGroup_t2157789695 * L_45 = L_44->get_topLevel_0();
  11492. NullCheck(L_45);
  11493. GUILayoutEntry_t3214611570 * L_46 = GUILayoutGroup_GetNext_m4171972759(L_45, /*hidden argument*/NULL);
  11494. V_8 = L_46;
  11495. GUILayoutEntry_t3214611570 * L_47 = V_8;
  11496. NullCheck(L_47);
  11497. Rect_t2360479859 L_48 = L_47->get_rect_4();
  11498. V_7 = L_48;
  11499. goto IL_0149;
  11500. }
  11501. IL_0149:
  11502. {
  11503. Rect_t2360479859 L_49 = V_7;
  11504. return L_49;
  11505. }
  11506. }
  11507. // UnityEngine.GUIStyle UnityEngine.GUILayoutUtility::get_spaceStyle()
  11508. extern "C" IL2CPP_METHOD_ATTR GUIStyle_t3956901511 * GUILayoutUtility_get_spaceStyle_m3392862907 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  11509. {
  11510. static bool s_Il2CppMethodInitialized;
  11511. if (!s_Il2CppMethodInitialized)
  11512. {
  11513. il2cpp_codegen_initialize_method (GUILayoutUtility_get_spaceStyle_m3392862907_MetadataUsageId);
  11514. s_Il2CppMethodInitialized = true;
  11515. }
  11516. GUIStyle_t3956901511 * V_0 = NULL;
  11517. {
  11518. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  11519. GUIStyle_t3956901511 * L_0 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_s_SpaceStyle_4();
  11520. if (L_0)
  11521. {
  11522. goto IL_0015;
  11523. }
  11524. }
  11525. {
  11526. GUIStyle_t3956901511 * L_1 = (GUIStyle_t3956901511 *)il2cpp_codegen_object_new(GUIStyle_t3956901511_il2cpp_TypeInfo_var);
  11527. GUIStyle__ctor_m4038363858(L_1, /*hidden argument*/NULL);
  11528. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  11529. ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->set_s_SpaceStyle_4(L_1);
  11530. }
  11531. IL_0015:
  11532. {
  11533. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  11534. GUIStyle_t3956901511 * L_2 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_s_SpaceStyle_4();
  11535. NullCheck(L_2);
  11536. GUIStyle_set_stretchWidth_m2564034386(L_2, (bool)0, /*hidden argument*/NULL);
  11537. GUIStyle_t3956901511 * L_3 = ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->get_s_SpaceStyle_4();
  11538. V_0 = L_3;
  11539. goto IL_002b;
  11540. }
  11541. IL_002b:
  11542. {
  11543. GUIStyle_t3956901511 * L_4 = V_0;
  11544. return L_4;
  11545. }
  11546. }
  11547. // System.Void UnityEngine.GUILayoutUtility::.cctor()
  11548. extern "C" IL2CPP_METHOD_ATTR void GUILayoutUtility__cctor_m554256666 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  11549. {
  11550. static bool s_Il2CppMethodInitialized;
  11551. if (!s_Il2CppMethodInitialized)
  11552. {
  11553. il2cpp_codegen_initialize_method (GUILayoutUtility__cctor_m554256666_MetadataUsageId);
  11554. s_Il2CppMethodInitialized = true;
  11555. }
  11556. {
  11557. Dictionary_2_t3261990503 * L_0 = (Dictionary_2_t3261990503 *)il2cpp_codegen_object_new(Dictionary_2_t3261990503_il2cpp_TypeInfo_var);
  11558. Dictionary_2__ctor_m610848861(L_0, /*hidden argument*/Dictionary_2__ctor_m610848861_RuntimeMethod_var);
  11559. ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->set_s_StoredLayouts_0(L_0);
  11560. Dictionary_2_t3261990503 * L_1 = (Dictionary_2_t3261990503 *)il2cpp_codegen_object_new(Dictionary_2_t3261990503_il2cpp_TypeInfo_var);
  11561. Dictionary_2__ctor_m610848861(L_1, /*hidden argument*/Dictionary_2__ctor_m610848861_RuntimeMethod_var);
  11562. ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->set_s_StoredWindows_1(L_1);
  11563. LayoutCache_t78309876 * L_2 = (LayoutCache_t78309876 *)il2cpp_codegen_object_new(LayoutCache_t78309876_il2cpp_TypeInfo_var);
  11564. LayoutCache__ctor_m3885940174(L_2, /*hidden argument*/NULL);
  11565. ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->set_current_2(L_2);
  11566. Rect_t2360479859 L_3;
  11567. memset(&L_3, 0, sizeof(L_3));
  11568. Rect__ctor_m2614021312((&L_3), (0.0f), (0.0f), (1.0f), (1.0f), /*hidden argument*/NULL);
  11569. ((GUILayoutUtility_t66395690_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var))->set_kDummyRect_3(L_3);
  11570. return;
  11571. }
  11572. }
  11573. #ifdef __clang__
  11574. #pragma clang diagnostic pop
  11575. #endif
  11576. #ifdef __clang__
  11577. #pragma clang diagnostic push
  11578. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  11579. #pragma clang diagnostic ignored "-Wunused-variable"
  11580. #endif
  11581. // System.Void UnityEngine.GUILayoutUtility/LayoutCache::.ctor()
  11582. extern "C" IL2CPP_METHOD_ATTR void LayoutCache__ctor_m3885940174 (LayoutCache_t78309876 * __this, const RuntimeMethod* method)
  11583. {
  11584. static bool s_Il2CppMethodInitialized;
  11585. if (!s_Il2CppMethodInitialized)
  11586. {
  11587. il2cpp_codegen_initialize_method (LayoutCache__ctor_m3885940174_MetadataUsageId);
  11588. s_Il2CppMethodInitialized = true;
  11589. }
  11590. {
  11591. GUILayoutGroup_t2157789695 * L_0 = (GUILayoutGroup_t2157789695 *)il2cpp_codegen_object_new(GUILayoutGroup_t2157789695_il2cpp_TypeInfo_var);
  11592. GUILayoutGroup__ctor_m3245996524(L_0, /*hidden argument*/NULL);
  11593. __this->set_topLevel_0(L_0);
  11594. GenericStack_t1310059385 * L_1 = (GenericStack_t1310059385 *)il2cpp_codegen_object_new(GenericStack_t1310059385_il2cpp_TypeInfo_var);
  11595. GenericStack__ctor_m933681517(L_1, /*hidden argument*/NULL);
  11596. __this->set_layoutGroups_1(L_1);
  11597. GUILayoutGroup_t2157789695 * L_2 = (GUILayoutGroup_t2157789695 *)il2cpp_codegen_object_new(GUILayoutGroup_t2157789695_il2cpp_TypeInfo_var);
  11598. GUILayoutGroup__ctor_m3245996524(L_2, /*hidden argument*/NULL);
  11599. __this->set_windows_2(L_2);
  11600. Object__ctor_m297566312(__this, /*hidden argument*/NULL);
  11601. GenericStack_t1310059385 * L_3 = __this->get_layoutGroups_1();
  11602. GUILayoutGroup_t2157789695 * L_4 = __this->get_topLevel_0();
  11603. NullCheck(L_3);
  11604. VirtActionInvoker1< RuntimeObject * >::Invoke(20 /* System.Void System.Collections.Stack::Push(System.Object) */, L_3, L_4);
  11605. return;
  11606. }
  11607. }
  11608. #ifdef __clang__
  11609. #pragma clang diagnostic pop
  11610. #endif
  11611. #ifdef __clang__
  11612. #pragma clang diagnostic push
  11613. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  11614. #pragma clang diagnostic ignored "-Wunused-variable"
  11615. #endif
  11616. // System.Void UnityEngine.GUIScrollGroup::.ctor()
  11617. extern "C" IL2CPP_METHOD_ATTR void GUIScrollGroup__ctor_m2584604936 (GUIScrollGroup_t1523329021 * __this, const RuntimeMethod* method)
  11618. {
  11619. {
  11620. __this->set_allowHorizontalScroll_33((bool)1);
  11621. __this->set_allowVerticalScroll_34((bool)1);
  11622. GUILayoutGroup__ctor_m3245996524(__this, /*hidden argument*/NULL);
  11623. return;
  11624. }
  11625. }
  11626. // System.Void UnityEngine.GUIScrollGroup::CalcWidth()
  11627. extern "C" IL2CPP_METHOD_ATTR void GUIScrollGroup_CalcWidth_m3382294862 (GUIScrollGroup_t1523329021 * __this, const RuntimeMethod* method)
  11628. {
  11629. float V_0 = 0.0f;
  11630. float V_1 = 0.0f;
  11631. {
  11632. float L_0 = ((GUILayoutEntry_t3214611570 *)__this)->get_minWidth_0();
  11633. V_0 = L_0;
  11634. float L_1 = ((GUILayoutEntry_t3214611570 *)__this)->get_maxWidth_1();
  11635. V_1 = L_1;
  11636. bool L_2 = __this->get_allowHorizontalScroll_33();
  11637. if (!L_2)
  11638. {
  11639. goto IL_0032;
  11640. }
  11641. }
  11642. {
  11643. ((GUILayoutEntry_t3214611570 *)__this)->set_minWidth_0((0.0f));
  11644. ((GUILayoutEntry_t3214611570 *)__this)->set_maxWidth_1((0.0f));
  11645. }
  11646. IL_0032:
  11647. {
  11648. GUILayoutGroup_CalcWidth_m1389741370(__this, /*hidden argument*/NULL);
  11649. float L_3 = ((GUILayoutEntry_t3214611570 *)__this)->get_minWidth_0();
  11650. __this->set_calcMinWidth_27(L_3);
  11651. float L_4 = ((GUILayoutEntry_t3214611570 *)__this)->get_maxWidth_1();
  11652. __this->set_calcMaxWidth_28(L_4);
  11653. bool L_5 = __this->get_allowHorizontalScroll_33();
  11654. if (!L_5)
  11655. {
  11656. goto IL_00a5;
  11657. }
  11658. }
  11659. {
  11660. float L_6 = ((GUILayoutEntry_t3214611570 *)__this)->get_minWidth_0();
  11661. if ((!(((float)L_6) > ((float)(32.0f)))))
  11662. {
  11663. goto IL_0077;
  11664. }
  11665. }
  11666. {
  11667. ((GUILayoutEntry_t3214611570 *)__this)->set_minWidth_0((32.0f));
  11668. }
  11669. IL_0077:
  11670. {
  11671. float L_7 = V_0;
  11672. if ((((float)L_7) == ((float)(0.0f))))
  11673. {
  11674. goto IL_0089;
  11675. }
  11676. }
  11677. {
  11678. float L_8 = V_0;
  11679. ((GUILayoutEntry_t3214611570 *)__this)->set_minWidth_0(L_8);
  11680. }
  11681. IL_0089:
  11682. {
  11683. float L_9 = V_1;
  11684. if ((((float)L_9) == ((float)(0.0f))))
  11685. {
  11686. goto IL_00a4;
  11687. }
  11688. }
  11689. {
  11690. float L_10 = V_1;
  11691. ((GUILayoutEntry_t3214611570 *)__this)->set_maxWidth_1(L_10);
  11692. ((GUILayoutEntry_t3214611570 *)__this)->set_stretchWidth_5(0);
  11693. }
  11694. IL_00a4:
  11695. {
  11696. }
  11697. IL_00a5:
  11698. {
  11699. return;
  11700. }
  11701. }
  11702. // System.Void UnityEngine.GUIScrollGroup::SetHorizontal(System.Single,System.Single)
  11703. extern "C" IL2CPP_METHOD_ATTR void GUIScrollGroup_SetHorizontal_m291416666 (GUIScrollGroup_t1523329021 * __this, float ___x0, float ___width1, const RuntimeMethod* method)
  11704. {
  11705. float V_0 = 0.0f;
  11706. float G_B3_0 = 0.0f;
  11707. {
  11708. bool L_0 = __this->get_needsVerticalScrollbar_36();
  11709. if (!L_0)
  11710. {
  11711. goto IL_0030;
  11712. }
  11713. }
  11714. {
  11715. float L_1 = ___width1;
  11716. GUIStyle_t3956901511 * L_2 = __this->get_verticalScrollbar_38();
  11717. NullCheck(L_2);
  11718. float L_3 = GUIStyle_get_fixedWidth_m2576616348(L_2, /*hidden argument*/NULL);
  11719. GUIStyle_t3956901511 * L_4 = __this->get_verticalScrollbar_38();
  11720. NullCheck(L_4);
  11721. RectOffset_t1369453676 * L_5 = GUIStyle_get_margin_m3595798603(L_4, /*hidden argument*/NULL);
  11722. NullCheck(L_5);
  11723. int32_t L_6 = RectOffset_get_left_m1232181034(L_5, /*hidden argument*/NULL);
  11724. G_B3_0 = ((float)il2cpp_codegen_subtract((float)((float)il2cpp_codegen_subtract((float)L_1, (float)L_3)), (float)(((float)((float)L_6)))));
  11725. goto IL_0031;
  11726. }
  11727. IL_0030:
  11728. {
  11729. float L_7 = ___width1;
  11730. G_B3_0 = L_7;
  11731. }
  11732. IL_0031:
  11733. {
  11734. V_0 = G_B3_0;
  11735. bool L_8 = __this->get_allowHorizontalScroll_33();
  11736. if (!L_8)
  11737. {
  11738. goto IL_0094;
  11739. }
  11740. }
  11741. {
  11742. float L_9 = V_0;
  11743. float L_10 = __this->get_calcMinWidth_27();
  11744. if ((!(((float)L_9) < ((float)L_10))))
  11745. {
  11746. goto IL_0094;
  11747. }
  11748. }
  11749. {
  11750. __this->set_needsHorizontalScrollbar_35((bool)1);
  11751. float L_11 = __this->get_calcMinWidth_27();
  11752. ((GUILayoutEntry_t3214611570 *)__this)->set_minWidth_0(L_11);
  11753. float L_12 = __this->get_calcMaxWidth_28();
  11754. ((GUILayoutEntry_t3214611570 *)__this)->set_maxWidth_1(L_12);
  11755. float L_13 = ___x0;
  11756. float L_14 = __this->get_calcMinWidth_27();
  11757. GUILayoutGroup_SetHorizontal_m996475327(__this, L_13, L_14, /*hidden argument*/NULL);
  11758. Rect_t2360479859 * L_15 = ((GUILayoutEntry_t3214611570 *)__this)->get_address_of_rect_4();
  11759. float L_16 = ___width1;
  11760. Rect_set_width_m2963421158(L_15, L_16, /*hidden argument*/NULL);
  11761. float L_17 = __this->get_calcMinWidth_27();
  11762. __this->set_clientWidth_31(L_17);
  11763. goto IL_00dd;
  11764. }
  11765. IL_0094:
  11766. {
  11767. __this->set_needsHorizontalScrollbar_35((bool)0);
  11768. bool L_18 = __this->get_allowHorizontalScroll_33();
  11769. if (!L_18)
  11770. {
  11771. goto IL_00c1;
  11772. }
  11773. }
  11774. {
  11775. float L_19 = __this->get_calcMinWidth_27();
  11776. ((GUILayoutEntry_t3214611570 *)__this)->set_minWidth_0(L_19);
  11777. float L_20 = __this->get_calcMaxWidth_28();
  11778. ((GUILayoutEntry_t3214611570 *)__this)->set_maxWidth_1(L_20);
  11779. }
  11780. IL_00c1:
  11781. {
  11782. float L_21 = ___x0;
  11783. float L_22 = V_0;
  11784. GUILayoutGroup_SetHorizontal_m996475327(__this, L_21, L_22, /*hidden argument*/NULL);
  11785. Rect_t2360479859 * L_23 = ((GUILayoutEntry_t3214611570 *)__this)->get_address_of_rect_4();
  11786. float L_24 = ___width1;
  11787. Rect_set_width_m2963421158(L_23, L_24, /*hidden argument*/NULL);
  11788. float L_25 = V_0;
  11789. __this->set_clientWidth_31(L_25);
  11790. }
  11791. IL_00dd:
  11792. {
  11793. return;
  11794. }
  11795. }
  11796. // System.Void UnityEngine.GUIScrollGroup::CalcHeight()
  11797. extern "C" IL2CPP_METHOD_ATTR void GUIScrollGroup_CalcHeight_m3173593443 (GUIScrollGroup_t1523329021 * __this, const RuntimeMethod* method)
  11798. {
  11799. float V_0 = 0.0f;
  11800. float V_1 = 0.0f;
  11801. float V_2 = 0.0f;
  11802. {
  11803. float L_0 = ((GUILayoutEntry_t3214611570 *)__this)->get_minHeight_2();
  11804. V_0 = L_0;
  11805. float L_1 = ((GUILayoutEntry_t3214611570 *)__this)->get_maxHeight_3();
  11806. V_1 = L_1;
  11807. bool L_2 = __this->get_allowVerticalScroll_34();
  11808. if (!L_2)
  11809. {
  11810. goto IL_0032;
  11811. }
  11812. }
  11813. {
  11814. ((GUILayoutEntry_t3214611570 *)__this)->set_minHeight_2((0.0f));
  11815. ((GUILayoutEntry_t3214611570 *)__this)->set_maxHeight_3((0.0f));
  11816. }
  11817. IL_0032:
  11818. {
  11819. GUILayoutGroup_CalcHeight_m1669391299(__this, /*hidden argument*/NULL);
  11820. float L_3 = ((GUILayoutEntry_t3214611570 *)__this)->get_minHeight_2();
  11821. __this->set_calcMinHeight_29(L_3);
  11822. float L_4 = ((GUILayoutEntry_t3214611570 *)__this)->get_maxHeight_3();
  11823. __this->set_calcMaxHeight_30(L_4);
  11824. bool L_5 = __this->get_needsHorizontalScrollbar_35();
  11825. if (!L_5)
  11826. {
  11827. goto IL_0097;
  11828. }
  11829. }
  11830. {
  11831. GUIStyle_t3956901511 * L_6 = __this->get_horizontalScrollbar_37();
  11832. NullCheck(L_6);
  11833. float L_7 = GUIStyle_get_fixedHeight_m2868324709(L_6, /*hidden argument*/NULL);
  11834. GUIStyle_t3956901511 * L_8 = __this->get_horizontalScrollbar_37();
  11835. NullCheck(L_8);
  11836. RectOffset_t1369453676 * L_9 = GUIStyle_get_margin_m3595798603(L_8, /*hidden argument*/NULL);
  11837. NullCheck(L_9);
  11838. int32_t L_10 = RectOffset_get_top_m2855347295(L_9, /*hidden argument*/NULL);
  11839. V_2 = ((float)il2cpp_codegen_add((float)L_7, (float)(((float)((float)L_10)))));
  11840. float L_11 = ((GUILayoutEntry_t3214611570 *)__this)->get_minHeight_2();
  11841. float L_12 = V_2;
  11842. ((GUILayoutEntry_t3214611570 *)__this)->set_minHeight_2(((float)il2cpp_codegen_add((float)L_11, (float)L_12)));
  11843. float L_13 = ((GUILayoutEntry_t3214611570 *)__this)->get_maxHeight_3();
  11844. float L_14 = V_2;
  11845. ((GUILayoutEntry_t3214611570 *)__this)->set_maxHeight_3(((float)il2cpp_codegen_add((float)L_13, (float)L_14)));
  11846. }
  11847. IL_0097:
  11848. {
  11849. bool L_15 = __this->get_allowVerticalScroll_34();
  11850. if (!L_15)
  11851. {
  11852. goto IL_00ec;
  11853. }
  11854. }
  11855. {
  11856. float L_16 = ((GUILayoutEntry_t3214611570 *)__this)->get_minHeight_2();
  11857. if ((!(((float)L_16) > ((float)(32.0f)))))
  11858. {
  11859. goto IL_00be;
  11860. }
  11861. }
  11862. {
  11863. ((GUILayoutEntry_t3214611570 *)__this)->set_minHeight_2((32.0f));
  11864. }
  11865. IL_00be:
  11866. {
  11867. float L_17 = V_0;
  11868. if ((((float)L_17) == ((float)(0.0f))))
  11869. {
  11870. goto IL_00d0;
  11871. }
  11872. }
  11873. {
  11874. float L_18 = V_0;
  11875. ((GUILayoutEntry_t3214611570 *)__this)->set_minHeight_2(L_18);
  11876. }
  11877. IL_00d0:
  11878. {
  11879. float L_19 = V_1;
  11880. if ((((float)L_19) == ((float)(0.0f))))
  11881. {
  11882. goto IL_00eb;
  11883. }
  11884. }
  11885. {
  11886. float L_20 = V_1;
  11887. ((GUILayoutEntry_t3214611570 *)__this)->set_maxHeight_3(L_20);
  11888. ((GUILayoutEntry_t3214611570 *)__this)->set_stretchHeight_6(0);
  11889. }
  11890. IL_00eb:
  11891. {
  11892. }
  11893. IL_00ec:
  11894. {
  11895. return;
  11896. }
  11897. }
  11898. // System.Void UnityEngine.GUIScrollGroup::SetVertical(System.Single,System.Single)
  11899. extern "C" IL2CPP_METHOD_ATTR void GUIScrollGroup_SetVertical_m353811564 (GUIScrollGroup_t1523329021 * __this, float ___y0, float ___height1, const RuntimeMethod* method)
  11900. {
  11901. float V_0 = 0.0f;
  11902. float V_1 = 0.0f;
  11903. float V_2 = 0.0f;
  11904. float V_3 = 0.0f;
  11905. {
  11906. float L_0 = ___height1;
  11907. V_0 = L_0;
  11908. bool L_1 = __this->get_needsHorizontalScrollbar_35();
  11909. if (!L_1)
  11910. {
  11911. goto IL_002e;
  11912. }
  11913. }
  11914. {
  11915. float L_2 = V_0;
  11916. GUIStyle_t3956901511 * L_3 = __this->get_horizontalScrollbar_37();
  11917. NullCheck(L_3);
  11918. float L_4 = GUIStyle_get_fixedHeight_m2868324709(L_3, /*hidden argument*/NULL);
  11919. GUIStyle_t3956901511 * L_5 = __this->get_horizontalScrollbar_37();
  11920. NullCheck(L_5);
  11921. RectOffset_t1369453676 * L_6 = GUIStyle_get_margin_m3595798603(L_5, /*hidden argument*/NULL);
  11922. NullCheck(L_6);
  11923. int32_t L_7 = RectOffset_get_top_m2855347295(L_6, /*hidden argument*/NULL);
  11924. V_0 = ((float)il2cpp_codegen_subtract((float)L_2, (float)((float)il2cpp_codegen_add((float)L_4, (float)(((float)((float)L_7)))))));
  11925. }
  11926. IL_002e:
  11927. {
  11928. bool L_8 = __this->get_allowVerticalScroll_34();
  11929. if (!L_8)
  11930. {
  11931. goto IL_013e;
  11932. }
  11933. }
  11934. {
  11935. float L_9 = V_0;
  11936. float L_10 = __this->get_calcMinHeight_29();
  11937. if ((!(((float)L_9) < ((float)L_10))))
  11938. {
  11939. goto IL_013e;
  11940. }
  11941. }
  11942. {
  11943. bool L_11 = __this->get_needsHorizontalScrollbar_35();
  11944. if (L_11)
  11945. {
  11946. goto IL_00df;
  11947. }
  11948. }
  11949. {
  11950. bool L_12 = __this->get_needsVerticalScrollbar_36();
  11951. if (L_12)
  11952. {
  11953. goto IL_00df;
  11954. }
  11955. }
  11956. {
  11957. Rect_t2360479859 * L_13 = ((GUILayoutEntry_t3214611570 *)__this)->get_address_of_rect_4();
  11958. float L_14 = Rect_get_width_m3421484486(L_13, /*hidden argument*/NULL);
  11959. GUIStyle_t3956901511 * L_15 = __this->get_verticalScrollbar_38();
  11960. NullCheck(L_15);
  11961. float L_16 = GUIStyle_get_fixedWidth_m2576616348(L_15, /*hidden argument*/NULL);
  11962. GUIStyle_t3956901511 * L_17 = __this->get_verticalScrollbar_38();
  11963. NullCheck(L_17);
  11964. RectOffset_t1369453676 * L_18 = GUIStyle_get_margin_m3595798603(L_17, /*hidden argument*/NULL);
  11965. NullCheck(L_18);
  11966. int32_t L_19 = RectOffset_get_left_m1232181034(L_18, /*hidden argument*/NULL);
  11967. __this->set_clientWidth_31(((float)il2cpp_codegen_subtract((float)((float)il2cpp_codegen_subtract((float)L_14, (float)L_16)), (float)(((float)((float)L_19))))));
  11968. float L_20 = __this->get_clientWidth_31();
  11969. float L_21 = __this->get_calcMinWidth_27();
  11970. if ((!(((float)L_20) < ((float)L_21))))
  11971. {
  11972. goto IL_00a9;
  11973. }
  11974. }
  11975. {
  11976. float L_22 = __this->get_calcMinWidth_27();
  11977. __this->set_clientWidth_31(L_22);
  11978. }
  11979. IL_00a9:
  11980. {
  11981. Rect_t2360479859 * L_23 = ((GUILayoutEntry_t3214611570 *)__this)->get_address_of_rect_4();
  11982. float L_24 = Rect_get_width_m3421484486(L_23, /*hidden argument*/NULL);
  11983. V_1 = L_24;
  11984. Rect_t2360479859 * L_25 = ((GUILayoutEntry_t3214611570 *)__this)->get_address_of_rect_4();
  11985. float L_26 = Rect_get_x_m3839990490(L_25, /*hidden argument*/NULL);
  11986. float L_27 = __this->get_clientWidth_31();
  11987. VirtActionInvoker2< float, float >::Invoke(7 /* System.Void UnityEngine.GUILayoutEntry::SetHorizontal(System.Single,System.Single) */, __this, L_26, L_27);
  11988. VirtActionInvoker0::Invoke(6 /* System.Void UnityEngine.GUILayoutEntry::CalcHeight() */, __this);
  11989. Rect_t2360479859 * L_28 = ((GUILayoutEntry_t3214611570 *)__this)->get_address_of_rect_4();
  11990. float L_29 = V_1;
  11991. Rect_set_width_m2963421158(L_28, L_29, /*hidden argument*/NULL);
  11992. }
  11993. IL_00df:
  11994. {
  11995. float L_30 = ((GUILayoutEntry_t3214611570 *)__this)->get_minHeight_2();
  11996. V_2 = L_30;
  11997. float L_31 = ((GUILayoutEntry_t3214611570 *)__this)->get_maxHeight_3();
  11998. V_3 = L_31;
  11999. float L_32 = __this->get_calcMinHeight_29();
  12000. ((GUILayoutEntry_t3214611570 *)__this)->set_minHeight_2(L_32);
  12001. float L_33 = __this->get_calcMaxHeight_30();
  12002. ((GUILayoutEntry_t3214611570 *)__this)->set_maxHeight_3(L_33);
  12003. float L_34 = ___y0;
  12004. float L_35 = __this->get_calcMinHeight_29();
  12005. GUILayoutGroup_SetVertical_m2446642182(__this, L_34, L_35, /*hidden argument*/NULL);
  12006. float L_36 = V_2;
  12007. ((GUILayoutEntry_t3214611570 *)__this)->set_minHeight_2(L_36);
  12008. float L_37 = V_3;
  12009. ((GUILayoutEntry_t3214611570 *)__this)->set_maxHeight_3(L_37);
  12010. Rect_t2360479859 * L_38 = ((GUILayoutEntry_t3214611570 *)__this)->get_address_of_rect_4();
  12011. float L_39 = ___height1;
  12012. Rect_set_height_m1625569324(L_38, L_39, /*hidden argument*/NULL);
  12013. float L_40 = __this->get_calcMinHeight_29();
  12014. __this->set_clientHeight_32(L_40);
  12015. goto IL_0180;
  12016. }
  12017. IL_013e:
  12018. {
  12019. bool L_41 = __this->get_allowVerticalScroll_34();
  12020. if (!L_41)
  12021. {
  12022. goto IL_0164;
  12023. }
  12024. }
  12025. {
  12026. float L_42 = __this->get_calcMinHeight_29();
  12027. ((GUILayoutEntry_t3214611570 *)__this)->set_minHeight_2(L_42);
  12028. float L_43 = __this->get_calcMaxHeight_30();
  12029. ((GUILayoutEntry_t3214611570 *)__this)->set_maxHeight_3(L_43);
  12030. }
  12031. IL_0164:
  12032. {
  12033. float L_44 = ___y0;
  12034. float L_45 = V_0;
  12035. GUILayoutGroup_SetVertical_m2446642182(__this, L_44, L_45, /*hidden argument*/NULL);
  12036. Rect_t2360479859 * L_46 = ((GUILayoutEntry_t3214611570 *)__this)->get_address_of_rect_4();
  12037. float L_47 = ___height1;
  12038. Rect_set_height_m1625569324(L_46, L_47, /*hidden argument*/NULL);
  12039. float L_48 = V_0;
  12040. __this->set_clientHeight_32(L_48);
  12041. }
  12042. IL_0180:
  12043. {
  12044. return;
  12045. }
  12046. }
  12047. #ifdef __clang__
  12048. #pragma clang diagnostic pop
  12049. #endif
  12050. #ifdef __clang__
  12051. #pragma clang diagnostic push
  12052. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  12053. #pragma clang diagnostic ignored "-Wunused-variable"
  12054. #endif
  12055. // System.Void UnityEngine.GUISettings::.ctor()
  12056. extern "C" IL2CPP_METHOD_ATTR void GUISettings__ctor_m2761652600 (GUISettings_t1774757634 * __this, const RuntimeMethod* method)
  12057. {
  12058. {
  12059. __this->set_m_DoubleClickSelectsWord_0((bool)1);
  12060. __this->set_m_TripleClickSelectsLine_1((bool)1);
  12061. Color_t2555686324 L_0 = Color_get_white_m332174077(NULL /*static, unused*/, /*hidden argument*/NULL);
  12062. __this->set_m_CursorColor_2(L_0);
  12063. __this->set_m_CursorFlashSpeed_3((-1.0f));
  12064. Color_t2555686324 L_1;
  12065. memset(&L_1, 0, sizeof(L_1));
  12066. Color__ctor_m286683560((&L_1), (0.5f), (0.5f), (1.0f), /*hidden argument*/NULL);
  12067. __this->set_m_SelectionColor_4(L_1);
  12068. Object__ctor_m297566312(__this, /*hidden argument*/NULL);
  12069. return;
  12070. }
  12071. }
  12072. #ifdef __clang__
  12073. #pragma clang diagnostic pop
  12074. #endif
  12075. #ifdef __clang__
  12076. #pragma clang diagnostic push
  12077. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  12078. #pragma clang diagnostic ignored "-Wunused-variable"
  12079. #endif
  12080. // System.Void UnityEngine.GUISkin::.ctor()
  12081. extern "C" IL2CPP_METHOD_ATTR void GUISkin__ctor_m3576427628 (GUISkin_t1244372282 * __this, const RuntimeMethod* method)
  12082. {
  12083. static bool s_Il2CppMethodInitialized;
  12084. if (!s_Il2CppMethodInitialized)
  12085. {
  12086. il2cpp_codegen_initialize_method (GUISkin__ctor_m3576427628_MetadataUsageId);
  12087. s_Il2CppMethodInitialized = true;
  12088. }
  12089. {
  12090. GUISettings_t1774757634 * L_0 = (GUISettings_t1774757634 *)il2cpp_codegen_object_new(GUISettings_t1774757634_il2cpp_TypeInfo_var);
  12091. GUISettings__ctor_m2761652600(L_0, /*hidden argument*/NULL);
  12092. __this->set_m_Settings_24(L_0);
  12093. __this->set_m_Styles_25((Dictionary_2_t3742157810 *)NULL);
  12094. ScriptableObject__ctor_m1310743131(__this, /*hidden argument*/NULL);
  12095. __this->set_m_CustomStyles_23(((GUIStyleU5BU5D_t2383250302*)SZArrayNew(GUIStyleU5BU5D_t2383250302_il2cpp_TypeInfo_var, (uint32_t)1)));
  12096. return;
  12097. }
  12098. }
  12099. // UnityEngine.Font UnityEngine.GUISkin::get_font()
  12100. extern "C" IL2CPP_METHOD_ATTR Font_t1956802104 * GUISkin_get_font_m3937910082 (GUISkin_t1244372282 * __this, const RuntimeMethod* method)
  12101. {
  12102. Font_t1956802104 * V_0 = NULL;
  12103. {
  12104. Font_t1956802104 * L_0 = __this->get_m_Font_2();
  12105. V_0 = L_0;
  12106. goto IL_000d;
  12107. }
  12108. IL_000d:
  12109. {
  12110. Font_t1956802104 * L_1 = V_0;
  12111. return L_1;
  12112. }
  12113. }
  12114. // UnityEngine.GUIStyle UnityEngine.GUISkin::get_label()
  12115. extern "C" IL2CPP_METHOD_ATTR GUIStyle_t3956901511 * GUISkin_get_label_m1693050720 (GUISkin_t1244372282 * __this, const RuntimeMethod* method)
  12116. {
  12117. GUIStyle_t3956901511 * V_0 = NULL;
  12118. {
  12119. GUIStyle_t3956901511 * L_0 = __this->get_m_label_6();
  12120. V_0 = L_0;
  12121. goto IL_000d;
  12122. }
  12123. IL_000d:
  12124. {
  12125. GUIStyle_t3956901511 * L_1 = V_0;
  12126. return L_1;
  12127. }
  12128. }
  12129. // UnityEngine.GUIStyle UnityEngine.GUISkin::get_button()
  12130. extern "C" IL2CPP_METHOD_ATTR GUIStyle_t3956901511 * GUISkin_get_button_m2792560996 (GUISkin_t1244372282 * __this, const RuntimeMethod* method)
  12131. {
  12132. GUIStyle_t3956901511 * V_0 = NULL;
  12133. {
  12134. GUIStyle_t3956901511 * L_0 = __this->get_m_button_4();
  12135. V_0 = L_0;
  12136. goto IL_000d;
  12137. }
  12138. IL_000d:
  12139. {
  12140. GUIStyle_t3956901511 * L_1 = V_0;
  12141. return L_1;
  12142. }
  12143. }
  12144. // System.Void UnityEngine.GUISkin::MakeCurrent()
  12145. extern "C" IL2CPP_METHOD_ATTR void GUISkin_MakeCurrent_m3239192349 (GUISkin_t1244372282 * __this, const RuntimeMethod* method)
  12146. {
  12147. static bool s_Il2CppMethodInitialized;
  12148. if (!s_Il2CppMethodInitialized)
  12149. {
  12150. il2cpp_codegen_initialize_method (GUISkin_MakeCurrent_m3239192349_MetadataUsageId);
  12151. s_Il2CppMethodInitialized = true;
  12152. }
  12153. {
  12154. ((GUISkin_t1244372282_StaticFields*)il2cpp_codegen_static_fields_for(GUISkin_t1244372282_il2cpp_TypeInfo_var))->set_current_27(__this);
  12155. Font_t1956802104 * L_0 = GUISkin_get_font_m3937910082(__this, /*hidden argument*/NULL);
  12156. IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t3956901511_il2cpp_TypeInfo_var);
  12157. GUIStyle_SetDefaultFont_m1581452579(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
  12158. SkinChangedDelegate_t1143955295 * L_1 = ((GUISkin_t1244372282_StaticFields*)il2cpp_codegen_static_fields_for(GUISkin_t1244372282_il2cpp_TypeInfo_var))->get_m_SkinChanged_26();
  12159. if (!L_1)
  12160. {
  12161. goto IL_0026;
  12162. }
  12163. }
  12164. {
  12165. SkinChangedDelegate_t1143955295 * L_2 = ((GUISkin_t1244372282_StaticFields*)il2cpp_codegen_static_fields_for(GUISkin_t1244372282_il2cpp_TypeInfo_var))->get_m_SkinChanged_26();
  12166. NullCheck(L_2);
  12167. SkinChangedDelegate_Invoke_m3627689407(L_2, /*hidden argument*/NULL);
  12168. }
  12169. IL_0026:
  12170. {
  12171. return;
  12172. }
  12173. }
  12174. #ifdef __clang__
  12175. #pragma clang diagnostic pop
  12176. #endif
  12177. #ifdef __clang__
  12178. #pragma clang diagnostic push
  12179. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  12180. #pragma clang diagnostic ignored "-Wunused-variable"
  12181. #endif
  12182. extern "C" void DelegatePInvokeWrapper_SkinChangedDelegate_t1143955295 (SkinChangedDelegate_t1143955295 * __this, const RuntimeMethod* method)
  12183. {
  12184. typedef void (DEFAULT_CALL *PInvokeFunc)();
  12185. PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
  12186. // Native function invocation
  12187. il2cppPInvokeFunc();
  12188. }
  12189. // System.Void UnityEngine.GUISkin/SkinChangedDelegate::.ctor(System.Object,System.IntPtr)
  12190. extern "C" IL2CPP_METHOD_ATTR void SkinChangedDelegate__ctor_m1270439727 (SkinChangedDelegate_t1143955295 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
  12191. {
  12192. __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
  12193. __this->set_method_3(___method1);
  12194. __this->set_m_target_2(___object0);
  12195. }
  12196. // System.Void UnityEngine.GUISkin/SkinChangedDelegate::Invoke()
  12197. extern "C" IL2CPP_METHOD_ATTR void SkinChangedDelegate_Invoke_m3627689407 (SkinChangedDelegate_t1143955295 * __this, const RuntimeMethod* method)
  12198. {
  12199. if(__this->get_prev_9() != NULL)
  12200. {
  12201. SkinChangedDelegate_Invoke_m3627689407((SkinChangedDelegate_t1143955295 *)__this->get_prev_9(), method);
  12202. }
  12203. Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
  12204. RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
  12205. RuntimeObject* targetThis = __this->get_m_target_2();
  12206. il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
  12207. bool ___methodIsStatic = MethodIsStatic(targetMethod);
  12208. if (___methodIsStatic)
  12209. {
  12210. if (il2cpp_codegen_method_parameter_count(targetMethod) == 0)
  12211. {
  12212. // open
  12213. {
  12214. typedef void (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
  12215. ((FunctionPointerType)targetMethodPointer)(NULL, targetMethod);
  12216. }
  12217. }
  12218. else
  12219. {
  12220. // closed
  12221. {
  12222. typedef void (*FunctionPointerType) (RuntimeObject *, void*, const RuntimeMethod*);
  12223. ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, targetMethod);
  12224. }
  12225. }
  12226. }
  12227. else
  12228. {
  12229. {
  12230. // closed
  12231. if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
  12232. {
  12233. if (il2cpp_codegen_method_is_generic_instance(targetMethod))
  12234. {
  12235. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  12236. GenericInterfaceActionInvoker0::Invoke(targetMethod, targetThis);
  12237. else
  12238. GenericVirtActionInvoker0::Invoke(targetMethod, targetThis);
  12239. }
  12240. else
  12241. {
  12242. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  12243. InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis);
  12244. else
  12245. VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis);
  12246. }
  12247. }
  12248. else
  12249. {
  12250. typedef void (*FunctionPointerType) (void*, const RuntimeMethod*);
  12251. ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod);
  12252. }
  12253. }
  12254. }
  12255. }
  12256. // System.IAsyncResult UnityEngine.GUISkin/SkinChangedDelegate::BeginInvoke(System.AsyncCallback,System.Object)
  12257. extern "C" IL2CPP_METHOD_ATTR RuntimeObject* SkinChangedDelegate_BeginInvoke_m2963887440 (SkinChangedDelegate_t1143955295 * __this, AsyncCallback_t3962456242 * ___callback0, RuntimeObject * ___object1, const RuntimeMethod* method)
  12258. {
  12259. void *__d_args[1] = {0};
  12260. return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback0, (RuntimeObject*)___object1);
  12261. }
  12262. // System.Void UnityEngine.GUISkin/SkinChangedDelegate::EndInvoke(System.IAsyncResult)
  12263. extern "C" IL2CPP_METHOD_ATTR void SkinChangedDelegate_EndInvoke_m1346531361 (SkinChangedDelegate_t1143955295 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
  12264. {
  12265. il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
  12266. }
  12267. #ifdef __clang__
  12268. #pragma clang diagnostic pop
  12269. #endif
  12270. #ifdef __clang__
  12271. #pragma clang diagnostic push
  12272. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  12273. #pragma clang diagnostic ignored "-Wunused-variable"
  12274. #endif
  12275. // Conversion methods for marshalling of: UnityEngine.GUIStyle
  12276. extern "C" void GUIStyle_t3956901511_marshal_pinvoke(const GUIStyle_t3956901511& unmarshaled, GUIStyle_t3956901511_marshaled_pinvoke& marshaled)
  12277. {
  12278. Exception_t* ___m_Normal_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Normal' of type 'GUIStyle': Reference type field marshaling is not supported.");
  12279. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Normal_1Exception,NULL);
  12280. }
  12281. extern "C" void GUIStyle_t3956901511_marshal_pinvoke_back(const GUIStyle_t3956901511_marshaled_pinvoke& marshaled, GUIStyle_t3956901511& unmarshaled)
  12282. {
  12283. Exception_t* ___m_Normal_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Normal' of type 'GUIStyle': Reference type field marshaling is not supported.");
  12284. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Normal_1Exception,NULL);
  12285. }
  12286. // Conversion method for clean up from marshalling of: UnityEngine.GUIStyle
  12287. extern "C" void GUIStyle_t3956901511_marshal_pinvoke_cleanup(GUIStyle_t3956901511_marshaled_pinvoke& marshaled)
  12288. {
  12289. }
  12290. // Conversion methods for marshalling of: UnityEngine.GUIStyle
  12291. extern "C" void GUIStyle_t3956901511_marshal_com(const GUIStyle_t3956901511& unmarshaled, GUIStyle_t3956901511_marshaled_com& marshaled)
  12292. {
  12293. Exception_t* ___m_Normal_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Normal' of type 'GUIStyle': Reference type field marshaling is not supported.");
  12294. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Normal_1Exception,NULL);
  12295. }
  12296. extern "C" void GUIStyle_t3956901511_marshal_com_back(const GUIStyle_t3956901511_marshaled_com& marshaled, GUIStyle_t3956901511& unmarshaled)
  12297. {
  12298. Exception_t* ___m_Normal_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Normal' of type 'GUIStyle': Reference type field marshaling is not supported.");
  12299. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Normal_1Exception,NULL);
  12300. }
  12301. // Conversion method for clean up from marshalling of: UnityEngine.GUIStyle
  12302. extern "C" void GUIStyle_t3956901511_marshal_com_cleanup(GUIStyle_t3956901511_marshaled_com& marshaled)
  12303. {
  12304. }
  12305. // System.Void UnityEngine.GUIStyle::.ctor()
  12306. extern "C" IL2CPP_METHOD_ATTR void GUIStyle__ctor_m4038363858 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method)
  12307. {
  12308. {
  12309. Object__ctor_m297566312(__this, /*hidden argument*/NULL);
  12310. GUIStyle_Init_m3558067362(__this, /*hidden argument*/NULL);
  12311. return;
  12312. }
  12313. }
  12314. // System.Void UnityEngine.GUIStyle::Init()
  12315. extern "C" IL2CPP_METHOD_ATTR void GUIStyle_Init_m3558067362 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method)
  12316. {
  12317. typedef void (*GUIStyle_Init_m3558067362_ftn) (GUIStyle_t3956901511 *);
  12318. static GUIStyle_Init_m3558067362_ftn _il2cpp_icall_func;
  12319. if (!_il2cpp_icall_func)
  12320. _il2cpp_icall_func = (GUIStyle_Init_m3558067362_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::Init()");
  12321. _il2cpp_icall_func(__this);
  12322. }
  12323. // System.Void UnityEngine.GUIStyle::Cleanup()
  12324. extern "C" IL2CPP_METHOD_ATTR void GUIStyle_Cleanup_m3602061751 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method)
  12325. {
  12326. typedef void (*GUIStyle_Cleanup_m3602061751_ftn) (GUIStyle_t3956901511 *);
  12327. static GUIStyle_Cleanup_m3602061751_ftn _il2cpp_icall_func;
  12328. if (!_il2cpp_icall_func)
  12329. _il2cpp_icall_func = (GUIStyle_Cleanup_m3602061751_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::Cleanup()");
  12330. _il2cpp_icall_func(__this);
  12331. }
  12332. // System.String UnityEngine.GUIStyle::get_name()
  12333. extern "C" IL2CPP_METHOD_ATTR String_t* GUIStyle_get_name_m2109418832 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method)
  12334. {
  12335. typedef String_t* (*GUIStyle_get_name_m2109418832_ftn) (GUIStyle_t3956901511 *);
  12336. static GUIStyle_get_name_m2109418832_ftn _il2cpp_icall_func;
  12337. if (!_il2cpp_icall_func)
  12338. _il2cpp_icall_func = (GUIStyle_get_name_m2109418832_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::get_name()");
  12339. String_t* retVal = _il2cpp_icall_func(__this);
  12340. return retVal;
  12341. }
  12342. // System.IntPtr UnityEngine.GUIStyle::GetRectOffsetPtr(System.Int32)
  12343. extern "C" IL2CPP_METHOD_ATTR intptr_t GUIStyle_GetRectOffsetPtr_m2881421249 (GUIStyle_t3956901511 * __this, int32_t ___idx0, const RuntimeMethod* method)
  12344. {
  12345. static bool s_Il2CppMethodInitialized;
  12346. if (!s_Il2CppMethodInitialized)
  12347. {
  12348. il2cpp_codegen_initialize_method (GUIStyle_GetRectOffsetPtr_m2881421249_MetadataUsageId);
  12349. s_Il2CppMethodInitialized = true;
  12350. }
  12351. intptr_t V_0;
  12352. memset(&V_0, 0, sizeof(V_0));
  12353. intptr_t V_1;
  12354. memset(&V_1, 0, sizeof(V_1));
  12355. {
  12356. int32_t L_0 = ___idx0;
  12357. IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t3956901511_il2cpp_TypeInfo_var);
  12358. GUIStyle_INTERNAL_CALL_GetRectOffsetPtr_m152975056(NULL /*static, unused*/, __this, L_0, (&V_0), /*hidden argument*/NULL);
  12359. intptr_t L_1 = V_0;
  12360. V_1 = L_1;
  12361. goto IL_0011;
  12362. }
  12363. IL_0011:
  12364. {
  12365. intptr_t L_2 = V_1;
  12366. return L_2;
  12367. }
  12368. }
  12369. // System.Void UnityEngine.GUIStyle::INTERNAL_CALL_GetRectOffsetPtr(UnityEngine.GUIStyle,System.Int32,System.IntPtr&)
  12370. extern "C" IL2CPP_METHOD_ATTR void GUIStyle_INTERNAL_CALL_GetRectOffsetPtr_m152975056 (RuntimeObject * __this /* static, unused */, GUIStyle_t3956901511 * ___self0, int32_t ___idx1, intptr_t* ___value2, const RuntimeMethod* method)
  12371. {
  12372. typedef void (*GUIStyle_INTERNAL_CALL_GetRectOffsetPtr_m152975056_ftn) (GUIStyle_t3956901511 *, int32_t, intptr_t*);
  12373. static GUIStyle_INTERNAL_CALL_GetRectOffsetPtr_m152975056_ftn _il2cpp_icall_func;
  12374. if (!_il2cpp_icall_func)
  12375. _il2cpp_icall_func = (GUIStyle_INTERNAL_CALL_GetRectOffsetPtr_m152975056_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::INTERNAL_CALL_GetRectOffsetPtr(UnityEngine.GUIStyle,System.Int32,System.IntPtr&)");
  12376. _il2cpp_icall_func(___self0, ___idx1, ___value2);
  12377. }
  12378. // UnityEngine.ImagePosition UnityEngine.GUIStyle::get_imagePosition()
  12379. extern "C" IL2CPP_METHOD_ATTR int32_t GUIStyle_get_imagePosition_m2258358513 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method)
  12380. {
  12381. typedef int32_t (*GUIStyle_get_imagePosition_m2258358513_ftn) (GUIStyle_t3956901511 *);
  12382. static GUIStyle_get_imagePosition_m2258358513_ftn _il2cpp_icall_func;
  12383. if (!_il2cpp_icall_func)
  12384. _il2cpp_icall_func = (GUIStyle_get_imagePosition_m2258358513_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::get_imagePosition()");
  12385. int32_t retVal = _il2cpp_icall_func(__this);
  12386. return retVal;
  12387. }
  12388. // System.Boolean UnityEngine.GUIStyle::get_wordWrap()
  12389. extern "C" IL2CPP_METHOD_ATTR bool GUIStyle_get_wordWrap_m1603285441 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method)
  12390. {
  12391. typedef bool (*GUIStyle_get_wordWrap_m1603285441_ftn) (GUIStyle_t3956901511 *);
  12392. static GUIStyle_get_wordWrap_m1603285441_ftn _il2cpp_icall_func;
  12393. if (!_il2cpp_icall_func)
  12394. _il2cpp_icall_func = (GUIStyle_get_wordWrap_m1603285441_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::get_wordWrap()");
  12395. bool retVal = _il2cpp_icall_func(__this);
  12396. return retVal;
  12397. }
  12398. // System.Single UnityEngine.GUIStyle::get_fixedWidth()
  12399. extern "C" IL2CPP_METHOD_ATTR float GUIStyle_get_fixedWidth_m2576616348 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method)
  12400. {
  12401. typedef float (*GUIStyle_get_fixedWidth_m2576616348_ftn) (GUIStyle_t3956901511 *);
  12402. static GUIStyle_get_fixedWidth_m2576616348_ftn _il2cpp_icall_func;
  12403. if (!_il2cpp_icall_func)
  12404. _il2cpp_icall_func = (GUIStyle_get_fixedWidth_m2576616348_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::get_fixedWidth()");
  12405. float retVal = _il2cpp_icall_func(__this);
  12406. return retVal;
  12407. }
  12408. // System.Single UnityEngine.GUIStyle::get_fixedHeight()
  12409. extern "C" IL2CPP_METHOD_ATTR float GUIStyle_get_fixedHeight_m2868324709 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method)
  12410. {
  12411. typedef float (*GUIStyle_get_fixedHeight_m2868324709_ftn) (GUIStyle_t3956901511 *);
  12412. static GUIStyle_get_fixedHeight_m2868324709_ftn _il2cpp_icall_func;
  12413. if (!_il2cpp_icall_func)
  12414. _il2cpp_icall_func = (GUIStyle_get_fixedHeight_m2868324709_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::get_fixedHeight()");
  12415. float retVal = _il2cpp_icall_func(__this);
  12416. return retVal;
  12417. }
  12418. // System.Boolean UnityEngine.GUIStyle::get_stretchWidth()
  12419. extern "C" IL2CPP_METHOD_ATTR bool GUIStyle_get_stretchWidth_m3556443132 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method)
  12420. {
  12421. typedef bool (*GUIStyle_get_stretchWidth_m3556443132_ftn) (GUIStyle_t3956901511 *);
  12422. static GUIStyle_get_stretchWidth_m3556443132_ftn _il2cpp_icall_func;
  12423. if (!_il2cpp_icall_func)
  12424. _il2cpp_icall_func = (GUIStyle_get_stretchWidth_m3556443132_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::get_stretchWidth()");
  12425. bool retVal = _il2cpp_icall_func(__this);
  12426. return retVal;
  12427. }
  12428. // System.Void UnityEngine.GUIStyle::set_stretchWidth(System.Boolean)
  12429. extern "C" IL2CPP_METHOD_ATTR void GUIStyle_set_stretchWidth_m2564034386 (GUIStyle_t3956901511 * __this, bool ___value0, const RuntimeMethod* method)
  12430. {
  12431. typedef void (*GUIStyle_set_stretchWidth_m2564034386_ftn) (GUIStyle_t3956901511 *, bool);
  12432. static GUIStyle_set_stretchWidth_m2564034386_ftn _il2cpp_icall_func;
  12433. if (!_il2cpp_icall_func)
  12434. _il2cpp_icall_func = (GUIStyle_set_stretchWidth_m2564034386_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::set_stretchWidth(System.Boolean)");
  12435. _il2cpp_icall_func(__this, ___value0);
  12436. }
  12437. // System.Boolean UnityEngine.GUIStyle::get_stretchHeight()
  12438. extern "C" IL2CPP_METHOD_ATTR bool GUIStyle_get_stretchHeight_m4172805773 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method)
  12439. {
  12440. typedef bool (*GUIStyle_get_stretchHeight_m4172805773_ftn) (GUIStyle_t3956901511 *);
  12441. static GUIStyle_get_stretchHeight_m4172805773_ftn _il2cpp_icall_func;
  12442. if (!_il2cpp_icall_func)
  12443. _il2cpp_icall_func = (GUIStyle_get_stretchHeight_m4172805773_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::get_stretchHeight()");
  12444. bool retVal = _il2cpp_icall_func(__this);
  12445. return retVal;
  12446. }
  12447. // System.Void UnityEngine.GUIStyle::set_fontSize(System.Int32)
  12448. extern "C" IL2CPP_METHOD_ATTR void GUIStyle_set_fontSize_m1566850023 (GUIStyle_t3956901511 * __this, int32_t ___value0, const RuntimeMethod* method)
  12449. {
  12450. typedef void (*GUIStyle_set_fontSize_m1566850023_ftn) (GUIStyle_t3956901511 *, int32_t);
  12451. static GUIStyle_set_fontSize_m1566850023_ftn _il2cpp_icall_func;
  12452. if (!_il2cpp_icall_func)
  12453. _il2cpp_icall_func = (GUIStyle_set_fontSize_m1566850023_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::set_fontSize(System.Int32)");
  12454. _il2cpp_icall_func(__this, ___value0);
  12455. }
  12456. // System.Void UnityEngine.GUIStyle::SetDefaultFont(UnityEngine.Font)
  12457. extern "C" IL2CPP_METHOD_ATTR void GUIStyle_SetDefaultFont_m1581452579 (RuntimeObject * __this /* static, unused */, Font_t1956802104 * ___font0, const RuntimeMethod* method)
  12458. {
  12459. typedef void (*GUIStyle_SetDefaultFont_m1581452579_ftn) (Font_t1956802104 *);
  12460. static GUIStyle_SetDefaultFont_m1581452579_ftn _il2cpp_icall_func;
  12461. if (!_il2cpp_icall_func)
  12462. _il2cpp_icall_func = (GUIStyle_SetDefaultFont_m1581452579_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::SetDefaultFont(UnityEngine.Font)");
  12463. _il2cpp_icall_func(___font0);
  12464. }
  12465. // System.Void UnityEngine.GUIStyle::Internal_CalcSizeWithConstraints(System.IntPtr,UnityEngine.GUIContent,UnityEngine.Vector2,UnityEngine.Vector2&)
  12466. extern "C" IL2CPP_METHOD_ATTR void GUIStyle_Internal_CalcSizeWithConstraints_m2170360553 (RuntimeObject * __this /* static, unused */, intptr_t ___target0, GUIContent_t3050628031 * ___content1, Vector2_t2156229523 ___maxSize2, Vector2_t2156229523 * ___ret3, const RuntimeMethod* method)
  12467. {
  12468. static bool s_Il2CppMethodInitialized;
  12469. if (!s_Il2CppMethodInitialized)
  12470. {
  12471. il2cpp_codegen_initialize_method (GUIStyle_Internal_CalcSizeWithConstraints_m2170360553_MetadataUsageId);
  12472. s_Il2CppMethodInitialized = true;
  12473. }
  12474. {
  12475. intptr_t L_0 = ___target0;
  12476. GUIContent_t3050628031 * L_1 = ___content1;
  12477. Vector2_t2156229523 * L_2 = ___ret3;
  12478. IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t3956901511_il2cpp_TypeInfo_var);
  12479. GUIStyle_INTERNAL_CALL_Internal_CalcSizeWithConstraints_m2830618198(NULL /*static, unused*/, L_0, L_1, (&___maxSize2), L_2, /*hidden argument*/NULL);
  12480. return;
  12481. }
  12482. }
  12483. // System.Void UnityEngine.GUIStyle::INTERNAL_CALL_Internal_CalcSizeWithConstraints(System.IntPtr,UnityEngine.GUIContent,UnityEngine.Vector2&,UnityEngine.Vector2&)
  12484. extern "C" IL2CPP_METHOD_ATTR void GUIStyle_INTERNAL_CALL_Internal_CalcSizeWithConstraints_m2830618198 (RuntimeObject * __this /* static, unused */, intptr_t ___target0, GUIContent_t3050628031 * ___content1, Vector2_t2156229523 * ___maxSize2, Vector2_t2156229523 * ___ret3, const RuntimeMethod* method)
  12485. {
  12486. typedef void (*GUIStyle_INTERNAL_CALL_Internal_CalcSizeWithConstraints_m2830618198_ftn) (intptr_t, GUIContent_t3050628031 *, Vector2_t2156229523 *, Vector2_t2156229523 *);
  12487. static GUIStyle_INTERNAL_CALL_Internal_CalcSizeWithConstraints_m2830618198_ftn _il2cpp_icall_func;
  12488. if (!_il2cpp_icall_func)
  12489. _il2cpp_icall_func = (GUIStyle_INTERNAL_CALL_Internal_CalcSizeWithConstraints_m2830618198_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::INTERNAL_CALL_Internal_CalcSizeWithConstraints(System.IntPtr,UnityEngine.GUIContent,UnityEngine.Vector2&,UnityEngine.Vector2&)");
  12490. _il2cpp_icall_func(___target0, ___content1, ___maxSize2, ___ret3);
  12491. }
  12492. // System.Single UnityEngine.GUIStyle::Internal_CalcHeight(System.IntPtr,UnityEngine.GUIContent,System.Single)
  12493. extern "C" IL2CPP_METHOD_ATTR float GUIStyle_Internal_CalcHeight_m446125850 (RuntimeObject * __this /* static, unused */, intptr_t ___target0, GUIContent_t3050628031 * ___content1, float ___width2, const RuntimeMethod* method)
  12494. {
  12495. typedef float (*GUIStyle_Internal_CalcHeight_m446125850_ftn) (intptr_t, GUIContent_t3050628031 *, float);
  12496. static GUIStyle_Internal_CalcHeight_m446125850_ftn _il2cpp_icall_func;
  12497. if (!_il2cpp_icall_func)
  12498. _il2cpp_icall_func = (GUIStyle_Internal_CalcHeight_m446125850_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::Internal_CalcHeight(System.IntPtr,UnityEngine.GUIContent,System.Single)");
  12499. float retVal = _il2cpp_icall_func(___target0, ___content1, ___width2);
  12500. return retVal;
  12501. }
  12502. // System.Void UnityEngine.GUIStyle::Internal_CalcMinMaxWidth(System.IntPtr,UnityEngine.GUIContent,System.Single&,System.Single&)
  12503. extern "C" IL2CPP_METHOD_ATTR void GUIStyle_Internal_CalcMinMaxWidth_m1461639539 (RuntimeObject * __this /* static, unused */, intptr_t ___target0, GUIContent_t3050628031 * ___content1, float* ___minWidth2, float* ___maxWidth3, const RuntimeMethod* method)
  12504. {
  12505. typedef void (*GUIStyle_Internal_CalcMinMaxWidth_m1461639539_ftn) (intptr_t, GUIContent_t3050628031 *, float*, float*);
  12506. static GUIStyle_Internal_CalcMinMaxWidth_m1461639539_ftn _il2cpp_icall_func;
  12507. if (!_il2cpp_icall_func)
  12508. _il2cpp_icall_func = (GUIStyle_Internal_CalcMinMaxWidth_m1461639539_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::Internal_CalcMinMaxWidth(System.IntPtr,UnityEngine.GUIContent,System.Single&,System.Single&)");
  12509. _il2cpp_icall_func(___target0, ___content1, ___minWidth2, ___maxWidth3);
  12510. }
  12511. // System.Void UnityEngine.GUIStyle::Finalize()
  12512. extern "C" IL2CPP_METHOD_ATTR void GUIStyle_Finalize_m1912900812 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method)
  12513. {
  12514. Exception_t * __last_unhandled_exception = 0;
  12515. NO_UNUSED_WARNING (__last_unhandled_exception);
  12516. Exception_t * __exception_local = 0;
  12517. NO_UNUSED_WARNING (__exception_local);
  12518. int32_t __leave_target = 0;
  12519. NO_UNUSED_WARNING (__leave_target);
  12520. {
  12521. }
  12522. IL_0001:
  12523. try
  12524. { // begin try (depth: 1)
  12525. GUIStyle_Cleanup_m3602061751(__this, /*hidden argument*/NULL);
  12526. IL2CPP_LEAVE(0x13, FINALLY_000c);
  12527. } // end try (depth: 1)
  12528. catch(Il2CppExceptionWrapper& e)
  12529. {
  12530. __last_unhandled_exception = (Exception_t *)e.ex;
  12531. goto FINALLY_000c;
  12532. }
  12533. FINALLY_000c:
  12534. { // begin finally (depth: 1)
  12535. Object_Finalize_m3076187857(__this, /*hidden argument*/NULL);
  12536. IL2CPP_END_FINALLY(12)
  12537. } // end finally (depth: 1)
  12538. IL2CPP_CLEANUP(12)
  12539. {
  12540. IL2CPP_JUMP_TBL(0x13, IL_0013)
  12541. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  12542. }
  12543. IL_0013:
  12544. {
  12545. return;
  12546. }
  12547. }
  12548. // UnityEngine.RectOffset UnityEngine.GUIStyle::get_margin()
  12549. extern "C" IL2CPP_METHOD_ATTR RectOffset_t1369453676 * GUIStyle_get_margin_m3595798603 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method)
  12550. {
  12551. static bool s_Il2CppMethodInitialized;
  12552. if (!s_Il2CppMethodInitialized)
  12553. {
  12554. il2cpp_codegen_initialize_method (GUIStyle_get_margin_m3595798603_MetadataUsageId);
  12555. s_Il2CppMethodInitialized = true;
  12556. }
  12557. RectOffset_t1369453676 * V_0 = NULL;
  12558. {
  12559. RectOffset_t1369453676 * L_0 = __this->get_m_Margin_11();
  12560. if (L_0)
  12561. {
  12562. goto IL_001f;
  12563. }
  12564. }
  12565. {
  12566. intptr_t L_1 = GUIStyle_GetRectOffsetPtr_m2881421249(__this, 1, /*hidden argument*/NULL);
  12567. RectOffset_t1369453676 * L_2 = (RectOffset_t1369453676 *)il2cpp_codegen_object_new(RectOffset_t1369453676_il2cpp_TypeInfo_var);
  12568. RectOffset__ctor_m2718275157(L_2, __this, L_1, /*hidden argument*/NULL);
  12569. __this->set_m_Margin_11(L_2);
  12570. }
  12571. IL_001f:
  12572. {
  12573. RectOffset_t1369453676 * L_3 = __this->get_m_Margin_11();
  12574. V_0 = L_3;
  12575. goto IL_002b;
  12576. }
  12577. IL_002b:
  12578. {
  12579. RectOffset_t1369453676 * L_4 = V_0;
  12580. return L_4;
  12581. }
  12582. }
  12583. // UnityEngine.RectOffset UnityEngine.GUIStyle::get_padding()
  12584. extern "C" IL2CPP_METHOD_ATTR RectOffset_t1369453676 * GUIStyle_get_padding_m3526264743 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method)
  12585. {
  12586. static bool s_Il2CppMethodInitialized;
  12587. if (!s_Il2CppMethodInitialized)
  12588. {
  12589. il2cpp_codegen_initialize_method (GUIStyle_get_padding_m3526264743_MetadataUsageId);
  12590. s_Il2CppMethodInitialized = true;
  12591. }
  12592. RectOffset_t1369453676 * V_0 = NULL;
  12593. {
  12594. RectOffset_t1369453676 * L_0 = __this->get_m_Padding_10();
  12595. if (L_0)
  12596. {
  12597. goto IL_001f;
  12598. }
  12599. }
  12600. {
  12601. intptr_t L_1 = GUIStyle_GetRectOffsetPtr_m2881421249(__this, 2, /*hidden argument*/NULL);
  12602. RectOffset_t1369453676 * L_2 = (RectOffset_t1369453676 *)il2cpp_codegen_object_new(RectOffset_t1369453676_il2cpp_TypeInfo_var);
  12603. RectOffset__ctor_m2718275157(L_2, __this, L_1, /*hidden argument*/NULL);
  12604. __this->set_m_Padding_10(L_2);
  12605. }
  12606. IL_001f:
  12607. {
  12608. RectOffset_t1369453676 * L_3 = __this->get_m_Padding_10();
  12609. V_0 = L_3;
  12610. goto IL_002b;
  12611. }
  12612. IL_002b:
  12613. {
  12614. RectOffset_t1369453676 * L_4 = V_0;
  12615. return L_4;
  12616. }
  12617. }
  12618. // UnityEngine.GUIStyle UnityEngine.GUIStyle::get_none()
  12619. extern "C" IL2CPP_METHOD_ATTR GUIStyle_t3956901511 * GUIStyle_get_none_m1545577352 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  12620. {
  12621. static bool s_Il2CppMethodInitialized;
  12622. if (!s_Il2CppMethodInitialized)
  12623. {
  12624. il2cpp_codegen_initialize_method (GUIStyle_get_none_m1545577352_MetadataUsageId);
  12625. s_Il2CppMethodInitialized = true;
  12626. }
  12627. GUIStyle_t3956901511 * V_0 = NULL;
  12628. {
  12629. IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t3956901511_il2cpp_TypeInfo_var);
  12630. GUIStyle_t3956901511 * L_0 = ((GUIStyle_t3956901511_StaticFields*)il2cpp_codegen_static_fields_for(GUIStyle_t3956901511_il2cpp_TypeInfo_var))->get_s_None_15();
  12631. if (L_0)
  12632. {
  12633. goto IL_0015;
  12634. }
  12635. }
  12636. {
  12637. GUIStyle_t3956901511 * L_1 = (GUIStyle_t3956901511 *)il2cpp_codegen_object_new(GUIStyle_t3956901511_il2cpp_TypeInfo_var);
  12638. GUIStyle__ctor_m4038363858(L_1, /*hidden argument*/NULL);
  12639. IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t3956901511_il2cpp_TypeInfo_var);
  12640. ((GUIStyle_t3956901511_StaticFields*)il2cpp_codegen_static_fields_for(GUIStyle_t3956901511_il2cpp_TypeInfo_var))->set_s_None_15(L_1);
  12641. }
  12642. IL_0015:
  12643. {
  12644. IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t3956901511_il2cpp_TypeInfo_var);
  12645. GUIStyle_t3956901511 * L_2 = ((GUIStyle_t3956901511_StaticFields*)il2cpp_codegen_static_fields_for(GUIStyle_t3956901511_il2cpp_TypeInfo_var))->get_s_None_15();
  12646. V_0 = L_2;
  12647. goto IL_0020;
  12648. }
  12649. IL_0020:
  12650. {
  12651. GUIStyle_t3956901511 * L_3 = V_0;
  12652. return L_3;
  12653. }
  12654. }
  12655. // UnityEngine.Vector2 UnityEngine.GUIStyle::CalcSizeWithConstraints(UnityEngine.GUIContent,UnityEngine.Vector2)
  12656. extern "C" IL2CPP_METHOD_ATTR Vector2_t2156229523 GUIStyle_CalcSizeWithConstraints_m3847734790 (GUIStyle_t3956901511 * __this, GUIContent_t3050628031 * ___content0, Vector2_t2156229523 ___constraints1, const RuntimeMethod* method)
  12657. {
  12658. static bool s_Il2CppMethodInitialized;
  12659. if (!s_Il2CppMethodInitialized)
  12660. {
  12661. il2cpp_codegen_initialize_method (GUIStyle_CalcSizeWithConstraints_m3847734790_MetadataUsageId);
  12662. s_Il2CppMethodInitialized = true;
  12663. }
  12664. Vector2_t2156229523 V_0;
  12665. memset(&V_0, 0, sizeof(V_0));
  12666. Vector2_t2156229523 V_1;
  12667. memset(&V_1, 0, sizeof(V_1));
  12668. {
  12669. intptr_t L_0 = __this->get_m_Ptr_0();
  12670. GUIContent_t3050628031 * L_1 = ___content0;
  12671. Vector2_t2156229523 L_2 = ___constraints1;
  12672. IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t3956901511_il2cpp_TypeInfo_var);
  12673. GUIStyle_Internal_CalcSizeWithConstraints_m2170360553(NULL /*static, unused*/, L_0, L_1, L_2, (&V_0), /*hidden argument*/NULL);
  12674. Vector2_t2156229523 L_3 = V_0;
  12675. V_1 = L_3;
  12676. goto IL_0017;
  12677. }
  12678. IL_0017:
  12679. {
  12680. Vector2_t2156229523 L_4 = V_1;
  12681. return L_4;
  12682. }
  12683. }
  12684. // System.Single UnityEngine.GUIStyle::CalcHeight(UnityEngine.GUIContent,System.Single)
  12685. extern "C" IL2CPP_METHOD_ATTR float GUIStyle_CalcHeight_m1341687357 (GUIStyle_t3956901511 * __this, GUIContent_t3050628031 * ___content0, float ___width1, const RuntimeMethod* method)
  12686. {
  12687. static bool s_Il2CppMethodInitialized;
  12688. if (!s_Il2CppMethodInitialized)
  12689. {
  12690. il2cpp_codegen_initialize_method (GUIStyle_CalcHeight_m1341687357_MetadataUsageId);
  12691. s_Il2CppMethodInitialized = true;
  12692. }
  12693. float V_0 = 0.0f;
  12694. {
  12695. intptr_t L_0 = __this->get_m_Ptr_0();
  12696. GUIContent_t3050628031 * L_1 = ___content0;
  12697. float L_2 = ___width1;
  12698. IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t3956901511_il2cpp_TypeInfo_var);
  12699. float L_3 = GUIStyle_Internal_CalcHeight_m446125850(NULL /*static, unused*/, L_0, L_1, L_2, /*hidden argument*/NULL);
  12700. V_0 = L_3;
  12701. goto IL_0014;
  12702. }
  12703. IL_0014:
  12704. {
  12705. float L_4 = V_0;
  12706. return L_4;
  12707. }
  12708. }
  12709. // System.Boolean UnityEngine.GUIStyle::get_isHeightDependantOnWidth()
  12710. extern "C" IL2CPP_METHOD_ATTR bool GUIStyle_get_isHeightDependantOnWidth_m2062056154 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method)
  12711. {
  12712. bool V_0 = false;
  12713. int32_t G_B4_0 = 0;
  12714. int32_t G_B6_0 = 0;
  12715. {
  12716. float L_0 = GUIStyle_get_fixedHeight_m2868324709(__this, /*hidden argument*/NULL);
  12717. if ((!(((float)L_0) == ((float)(0.0f)))))
  12718. {
  12719. goto IL_002d;
  12720. }
  12721. }
  12722. {
  12723. bool L_1 = GUIStyle_get_wordWrap_m1603285441(__this, /*hidden argument*/NULL);
  12724. if (!L_1)
  12725. {
  12726. goto IL_002a;
  12727. }
  12728. }
  12729. {
  12730. int32_t L_2 = GUIStyle_get_imagePosition_m2258358513(__this, /*hidden argument*/NULL);
  12731. G_B4_0 = ((((int32_t)((((int32_t)L_2) == ((int32_t)2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  12732. goto IL_002b;
  12733. }
  12734. IL_002a:
  12735. {
  12736. G_B4_0 = 0;
  12737. }
  12738. IL_002b:
  12739. {
  12740. G_B6_0 = G_B4_0;
  12741. goto IL_002e;
  12742. }
  12743. IL_002d:
  12744. {
  12745. G_B6_0 = 0;
  12746. }
  12747. IL_002e:
  12748. {
  12749. V_0 = (bool)G_B6_0;
  12750. goto IL_0034;
  12751. }
  12752. IL_0034:
  12753. {
  12754. bool L_3 = V_0;
  12755. return L_3;
  12756. }
  12757. }
  12758. // System.Void UnityEngine.GUIStyle::CalcMinMaxWidth(UnityEngine.GUIContent,System.Single&,System.Single&)
  12759. extern "C" IL2CPP_METHOD_ATTR void GUIStyle_CalcMinMaxWidth_m999727240 (GUIStyle_t3956901511 * __this, GUIContent_t3050628031 * ___content0, float* ___minWidth1, float* ___maxWidth2, const RuntimeMethod* method)
  12760. {
  12761. static bool s_Il2CppMethodInitialized;
  12762. if (!s_Il2CppMethodInitialized)
  12763. {
  12764. il2cpp_codegen_initialize_method (GUIStyle_CalcMinMaxWidth_m999727240_MetadataUsageId);
  12765. s_Il2CppMethodInitialized = true;
  12766. }
  12767. {
  12768. intptr_t L_0 = __this->get_m_Ptr_0();
  12769. GUIContent_t3050628031 * L_1 = ___content0;
  12770. float* L_2 = ___minWidth1;
  12771. float* L_3 = ___maxWidth2;
  12772. IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t3956901511_il2cpp_TypeInfo_var);
  12773. GUIStyle_Internal_CalcMinMaxWidth_m1461639539(NULL /*static, unused*/, L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
  12774. return;
  12775. }
  12776. }
  12777. // System.String UnityEngine.GUIStyle::ToString()
  12778. extern "C" IL2CPP_METHOD_ATTR String_t* GUIStyle_ToString_m3014660435 (GUIStyle_t3956901511 * __this, const RuntimeMethod* method)
  12779. {
  12780. static bool s_Il2CppMethodInitialized;
  12781. if (!s_Il2CppMethodInitialized)
  12782. {
  12783. il2cpp_codegen_initialize_method (GUIStyle_ToString_m3014660435_MetadataUsageId);
  12784. s_Il2CppMethodInitialized = true;
  12785. }
  12786. String_t* V_0 = NULL;
  12787. {
  12788. ObjectU5BU5D_t2843939325* L_0 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)1));
  12789. String_t* L_1 = GUIStyle_get_name_m2109418832(__this, /*hidden argument*/NULL);
  12790. NullCheck(L_0);
  12791. ArrayElementTypeCheck (L_0, L_1);
  12792. (L_0)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_1);
  12793. String_t* L_2 = UnityString_Format_m261690510(NULL /*static, unused*/, _stringLiteral1207742195, L_0, /*hidden argument*/NULL);
  12794. V_0 = L_2;
  12795. goto IL_0020;
  12796. }
  12797. IL_0020:
  12798. {
  12799. String_t* L_3 = V_0;
  12800. return L_3;
  12801. }
  12802. }
  12803. // System.Void UnityEngine.GUIStyle::.cctor()
  12804. extern "C" IL2CPP_METHOD_ATTR void GUIStyle__cctor_m3477697449 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  12805. {
  12806. static bool s_Il2CppMethodInitialized;
  12807. if (!s_Il2CppMethodInitialized)
  12808. {
  12809. il2cpp_codegen_initialize_method (GUIStyle__cctor_m3477697449_MetadataUsageId);
  12810. s_Il2CppMethodInitialized = true;
  12811. }
  12812. {
  12813. ((GUIStyle_t3956901511_StaticFields*)il2cpp_codegen_static_fields_for(GUIStyle_t3956901511_il2cpp_TypeInfo_var))->set_showKeyboardFocus_14((bool)1);
  12814. return;
  12815. }
  12816. }
  12817. #ifdef __clang__
  12818. #pragma clang diagnostic pop
  12819. #endif
  12820. #ifdef __clang__
  12821. #pragma clang diagnostic push
  12822. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  12823. #pragma clang diagnostic ignored "-Wunused-variable"
  12824. #endif
  12825. // Conversion methods for marshalling of: UnityEngine.GUIStyleState
  12826. extern "C" void GUIStyleState_t1397964415_marshal_pinvoke(const GUIStyleState_t1397964415& unmarshaled, GUIStyleState_t1397964415_marshaled_pinvoke& marshaled)
  12827. {
  12828. Exception_t* ___m_SourceStyle_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_SourceStyle' of type 'GUIStyleState': Reference type field marshaling is not supported.");
  12829. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_SourceStyle_1Exception,NULL);
  12830. }
  12831. extern "C" void GUIStyleState_t1397964415_marshal_pinvoke_back(const GUIStyleState_t1397964415_marshaled_pinvoke& marshaled, GUIStyleState_t1397964415& unmarshaled)
  12832. {
  12833. Exception_t* ___m_SourceStyle_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_SourceStyle' of type 'GUIStyleState': Reference type field marshaling is not supported.");
  12834. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_SourceStyle_1Exception,NULL);
  12835. }
  12836. // Conversion method for clean up from marshalling of: UnityEngine.GUIStyleState
  12837. extern "C" void GUIStyleState_t1397964415_marshal_pinvoke_cleanup(GUIStyleState_t1397964415_marshaled_pinvoke& marshaled)
  12838. {
  12839. }
  12840. // Conversion methods for marshalling of: UnityEngine.GUIStyleState
  12841. extern "C" void GUIStyleState_t1397964415_marshal_com(const GUIStyleState_t1397964415& unmarshaled, GUIStyleState_t1397964415_marshaled_com& marshaled)
  12842. {
  12843. Exception_t* ___m_SourceStyle_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_SourceStyle' of type 'GUIStyleState': Reference type field marshaling is not supported.");
  12844. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_SourceStyle_1Exception,NULL);
  12845. }
  12846. extern "C" void GUIStyleState_t1397964415_marshal_com_back(const GUIStyleState_t1397964415_marshaled_com& marshaled, GUIStyleState_t1397964415& unmarshaled)
  12847. {
  12848. Exception_t* ___m_SourceStyle_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_SourceStyle' of type 'GUIStyleState': Reference type field marshaling is not supported.");
  12849. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_SourceStyle_1Exception,NULL);
  12850. }
  12851. // Conversion method for clean up from marshalling of: UnityEngine.GUIStyleState
  12852. extern "C" void GUIStyleState_t1397964415_marshal_com_cleanup(GUIStyleState_t1397964415_marshaled_com& marshaled)
  12853. {
  12854. }
  12855. // System.Void UnityEngine.GUIStyleState::.ctor()
  12856. extern "C" IL2CPP_METHOD_ATTR void GUIStyleState__ctor_m1648430456 (GUIStyleState_t1397964415 * __this, const RuntimeMethod* method)
  12857. {
  12858. {
  12859. Object__ctor_m297566312(__this, /*hidden argument*/NULL);
  12860. GUIStyleState_Init_m3047380323(__this, /*hidden argument*/NULL);
  12861. return;
  12862. }
  12863. }
  12864. // System.Void UnityEngine.GUIStyleState::Init()
  12865. extern "C" IL2CPP_METHOD_ATTR void GUIStyleState_Init_m3047380323 (GUIStyleState_t1397964415 * __this, const RuntimeMethod* method)
  12866. {
  12867. typedef void (*GUIStyleState_Init_m3047380323_ftn) (GUIStyleState_t1397964415 *);
  12868. static GUIStyleState_Init_m3047380323_ftn _il2cpp_icall_func;
  12869. if (!_il2cpp_icall_func)
  12870. _il2cpp_icall_func = (GUIStyleState_Init_m3047380323_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyleState::Init()");
  12871. _il2cpp_icall_func(__this);
  12872. }
  12873. // System.Void UnityEngine.GUIStyleState::Cleanup()
  12874. extern "C" IL2CPP_METHOD_ATTR void GUIStyleState_Cleanup_m696329069 (GUIStyleState_t1397964415 * __this, const RuntimeMethod* method)
  12875. {
  12876. typedef void (*GUIStyleState_Cleanup_m696329069_ftn) (GUIStyleState_t1397964415 *);
  12877. static GUIStyleState_Cleanup_m696329069_ftn _il2cpp_icall_func;
  12878. if (!_il2cpp_icall_func)
  12879. _il2cpp_icall_func = (GUIStyleState_Cleanup_m696329069_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyleState::Cleanup()");
  12880. _il2cpp_icall_func(__this);
  12881. }
  12882. // System.Void UnityEngine.GUIStyleState::Finalize()
  12883. extern "C" IL2CPP_METHOD_ATTR void GUIStyleState_Finalize_m1466589588 (GUIStyleState_t1397964415 * __this, const RuntimeMethod* method)
  12884. {
  12885. Exception_t * __last_unhandled_exception = 0;
  12886. NO_UNUSED_WARNING (__last_unhandled_exception);
  12887. Exception_t * __exception_local = 0;
  12888. NO_UNUSED_WARNING (__exception_local);
  12889. int32_t __leave_target = 0;
  12890. NO_UNUSED_WARNING (__leave_target);
  12891. {
  12892. }
  12893. IL_0001:
  12894. try
  12895. { // begin try (depth: 1)
  12896. {
  12897. GUIStyle_t3956901511 * L_0 = __this->get_m_SourceStyle_1();
  12898. if (L_0)
  12899. {
  12900. goto IL_0012;
  12901. }
  12902. }
  12903. IL_000c:
  12904. {
  12905. GUIStyleState_Cleanup_m696329069(__this, /*hidden argument*/NULL);
  12906. }
  12907. IL_0012:
  12908. {
  12909. IL2CPP_LEAVE(0x1E, FINALLY_0017);
  12910. }
  12911. } // end try (depth: 1)
  12912. catch(Il2CppExceptionWrapper& e)
  12913. {
  12914. __last_unhandled_exception = (Exception_t *)e.ex;
  12915. goto FINALLY_0017;
  12916. }
  12917. FINALLY_0017:
  12918. { // begin finally (depth: 1)
  12919. Object_Finalize_m3076187857(__this, /*hidden argument*/NULL);
  12920. IL2CPP_END_FINALLY(23)
  12921. } // end finally (depth: 1)
  12922. IL2CPP_CLEANUP(23)
  12923. {
  12924. IL2CPP_JUMP_TBL(0x1E, IL_001e)
  12925. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  12926. }
  12927. IL_001e:
  12928. {
  12929. return;
  12930. }
  12931. }
  12932. #ifdef __clang__
  12933. #pragma clang diagnostic pop
  12934. #endif
  12935. #ifdef __clang__
  12936. #pragma clang diagnostic push
  12937. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  12938. #pragma clang diagnostic ignored "-Wunused-variable"
  12939. #endif
  12940. // System.Int32 UnityEngine.GUITargetAttribute::GetGUITargetAttrValue(System.Type,System.String)
  12941. extern "C" IL2CPP_METHOD_ATTR int32_t GUITargetAttribute_GetGUITargetAttrValue_m2954410352 (RuntimeObject * __this /* static, unused */, Type_t * ___klass0, String_t* ___methodName1, const RuntimeMethod* method)
  12942. {
  12943. static bool s_Il2CppMethodInitialized;
  12944. if (!s_Il2CppMethodInitialized)
  12945. {
  12946. il2cpp_codegen_initialize_method (GUITargetAttribute_GetGUITargetAttrValue_m2954410352_MetadataUsageId);
  12947. s_Il2CppMethodInitialized = true;
  12948. }
  12949. MethodInfo_t * V_0 = NULL;
  12950. ObjectU5BU5D_t2843939325* V_1 = NULL;
  12951. int32_t V_2 = 0;
  12952. GUITargetAttribute_t25796337 * V_3 = NULL;
  12953. int32_t V_4 = 0;
  12954. {
  12955. Type_t * L_0 = ___klass0;
  12956. String_t* L_1 = ___methodName1;
  12957. NullCheck(L_0);
  12958. MethodInfo_t * L_2 = Type_GetMethod_m1197120913(L_0, L_1, ((int32_t)52), /*hidden argument*/NULL);
  12959. V_0 = L_2;
  12960. MethodInfo_t * L_3 = V_0;
  12961. if (!L_3)
  12962. {
  12963. goto IL_006a;
  12964. }
  12965. }
  12966. {
  12967. MethodInfo_t * L_4 = V_0;
  12968. NullCheck(L_4);
  12969. ObjectU5BU5D_t2843939325* L_5 = VirtFuncInvoker1< ObjectU5BU5D_t2843939325*, bool >::Invoke(12 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Boolean) */, L_4, (bool)1);
  12970. V_1 = L_5;
  12971. ObjectU5BU5D_t2843939325* L_6 = V_1;
  12972. if (!L_6)
  12973. {
  12974. goto IL_0069;
  12975. }
  12976. }
  12977. {
  12978. V_2 = 0;
  12979. goto IL_005f;
  12980. }
  12981. IL_0028:
  12982. {
  12983. ObjectU5BU5D_t2843939325* L_7 = V_1;
  12984. int32_t L_8 = V_2;
  12985. NullCheck(L_7);
  12986. int32_t L_9 = L_8;
  12987. RuntimeObject * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
  12988. NullCheck(L_10);
  12989. Type_t * L_11 = Object_GetType_m88164663(L_10, /*hidden argument*/NULL);
  12990. RuntimeTypeHandle_t3027515415 L_12 = { reinterpret_cast<intptr_t> (GUITargetAttribute_t25796337_0_0_0_var) };
  12991. IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
  12992. Type_t * L_13 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_12, /*hidden argument*/NULL);
  12993. if ((((RuntimeObject*)(Type_t *)L_11) == ((RuntimeObject*)(Type_t *)L_13)))
  12994. {
  12995. goto IL_0045;
  12996. }
  12997. }
  12998. {
  12999. goto IL_005b;
  13000. }
  13001. IL_0045:
  13002. {
  13003. ObjectU5BU5D_t2843939325* L_14 = V_1;
  13004. int32_t L_15 = V_2;
  13005. NullCheck(L_14);
  13006. int32_t L_16 = L_15;
  13007. RuntimeObject * L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
  13008. V_3 = ((GUITargetAttribute_t25796337 *)IsInstClass((RuntimeObject*)L_17, GUITargetAttribute_t25796337_il2cpp_TypeInfo_var));
  13009. GUITargetAttribute_t25796337 * L_18 = V_3;
  13010. NullCheck(L_18);
  13011. int32_t L_19 = L_18->get_displayMask_0();
  13012. V_4 = L_19;
  13013. goto IL_0072;
  13014. }
  13015. IL_005b:
  13016. {
  13017. int32_t L_20 = V_2;
  13018. V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1));
  13019. }
  13020. IL_005f:
  13021. {
  13022. int32_t L_21 = V_2;
  13023. ObjectU5BU5D_t2843939325* L_22 = V_1;
  13024. NullCheck(L_22);
  13025. if ((((int32_t)L_21) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_22)->max_length)))))))
  13026. {
  13027. goto IL_0028;
  13028. }
  13029. }
  13030. {
  13031. }
  13032. IL_0069:
  13033. {
  13034. }
  13035. IL_006a:
  13036. {
  13037. V_4 = (-1);
  13038. goto IL_0072;
  13039. }
  13040. IL_0072:
  13041. {
  13042. int32_t L_23 = V_4;
  13043. return L_23;
  13044. }
  13045. }
  13046. #ifdef __clang__
  13047. #pragma clang diagnostic pop
  13048. #endif
  13049. #ifdef __clang__
  13050. #pragma clang diagnostic push
  13051. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  13052. #pragma clang diagnostic ignored "-Wunused-variable"
  13053. #endif
  13054. // System.Single UnityEngine.GUIUtility::Internal_GetPixelsPerPoint()
  13055. extern "C" IL2CPP_METHOD_ATTR float GUIUtility_Internal_GetPixelsPerPoint_m290411053 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  13056. {
  13057. typedef float (*GUIUtility_Internal_GetPixelsPerPoint_m290411053_ftn) ();
  13058. static GUIUtility_Internal_GetPixelsPerPoint_m290411053_ftn _il2cpp_icall_func;
  13059. if (!_il2cpp_icall_func)
  13060. _il2cpp_icall_func = (GUIUtility_Internal_GetPixelsPerPoint_m290411053_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIUtility::Internal_GetPixelsPerPoint()");
  13061. float retVal = _il2cpp_icall_func();
  13062. return retVal;
  13063. }
  13064. // UnityEngine.GUISkin UnityEngine.GUIUtility::Internal_GetDefaultSkin(System.Int32)
  13065. extern "C" IL2CPP_METHOD_ATTR GUISkin_t1244372282 * GUIUtility_Internal_GetDefaultSkin_m2977444868 (RuntimeObject * __this /* static, unused */, int32_t ___skinMode0, const RuntimeMethod* method)
  13066. {
  13067. typedef GUISkin_t1244372282 * (*GUIUtility_Internal_GetDefaultSkin_m2977444868_ftn) (int32_t);
  13068. static GUIUtility_Internal_GetDefaultSkin_m2977444868_ftn _il2cpp_icall_func;
  13069. if (!_il2cpp_icall_func)
  13070. _il2cpp_icall_func = (GUIUtility_Internal_GetDefaultSkin_m2977444868_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIUtility::Internal_GetDefaultSkin(System.Int32)");
  13071. GUISkin_t1244372282 * retVal = _il2cpp_icall_func(___skinMode0);
  13072. return retVal;
  13073. }
  13074. // System.Void UnityEngine.GUIUtility::Internal_ExitGUI()
  13075. extern "C" IL2CPP_METHOD_ATTR void GUIUtility_Internal_ExitGUI_m273923508 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  13076. {
  13077. typedef void (*GUIUtility_Internal_ExitGUI_m273923508_ftn) ();
  13078. static GUIUtility_Internal_ExitGUI_m273923508_ftn _il2cpp_icall_func;
  13079. if (!_il2cpp_icall_func)
  13080. _il2cpp_icall_func = (GUIUtility_Internal_ExitGUI_m273923508_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIUtility::Internal_ExitGUI()");
  13081. _il2cpp_icall_func();
  13082. }
  13083. // System.Int32 UnityEngine.GUIUtility::Internal_GetGUIDepth()
  13084. extern "C" IL2CPP_METHOD_ATTR int32_t GUIUtility_Internal_GetGUIDepth_m1169824684 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  13085. {
  13086. typedef int32_t (*GUIUtility_Internal_GetGUIDepth_m1169824684_ftn) ();
  13087. static GUIUtility_Internal_GetGUIDepth_m1169824684_ftn _il2cpp_icall_func;
  13088. if (!_il2cpp_icall_func)
  13089. _il2cpp_icall_func = (GUIUtility_Internal_GetGUIDepth_m1169824684_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIUtility::Internal_GetGUIDepth()");
  13090. int32_t retVal = _il2cpp_icall_func();
  13091. return retVal;
  13092. }
  13093. // System.Single UnityEngine.GUIUtility::get_pixelsPerPoint()
  13094. extern "C" IL2CPP_METHOD_ATTR float GUIUtility_get_pixelsPerPoint_m2369948084 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  13095. {
  13096. static bool s_Il2CppMethodInitialized;
  13097. if (!s_Il2CppMethodInitialized)
  13098. {
  13099. il2cpp_codegen_initialize_method (GUIUtility_get_pixelsPerPoint_m2369948084_MetadataUsageId);
  13100. s_Il2CppMethodInitialized = true;
  13101. }
  13102. float V_0 = 0.0f;
  13103. {
  13104. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  13105. float L_0 = GUIUtility_Internal_GetPixelsPerPoint_m290411053(NULL /*static, unused*/, /*hidden argument*/NULL);
  13106. V_0 = L_0;
  13107. goto IL_000c;
  13108. }
  13109. IL_000c:
  13110. {
  13111. float L_1 = V_0;
  13112. return L_1;
  13113. }
  13114. }
  13115. // System.Void UnityEngine.GUIUtility::set_guiIsExiting(System.Boolean)
  13116. extern "C" IL2CPP_METHOD_ATTR void GUIUtility_set_guiIsExiting_m1558910088 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method)
  13117. {
  13118. static bool s_Il2CppMethodInitialized;
  13119. if (!s_Il2CppMethodInitialized)
  13120. {
  13121. il2cpp_codegen_initialize_method (GUIUtility_set_guiIsExiting_m1558910088_MetadataUsageId);
  13122. s_Il2CppMethodInitialized = true;
  13123. }
  13124. {
  13125. bool L_0 = ___value0;
  13126. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  13127. ((GUIUtility_t1868551600_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t1868551600_il2cpp_TypeInfo_var))->set_U3CguiIsExitingU3Ek__BackingField_6(L_0);
  13128. return;
  13129. }
  13130. }
  13131. // System.Void UnityEngine.GUIUtility::TakeCapture()
  13132. extern "C" IL2CPP_METHOD_ATTR void GUIUtility_TakeCapture_m1130863121 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  13133. {
  13134. static bool s_Il2CppMethodInitialized;
  13135. if (!s_Il2CppMethodInitialized)
  13136. {
  13137. il2cpp_codegen_initialize_method (GUIUtility_TakeCapture_m1130863121_MetadataUsageId);
  13138. s_Il2CppMethodInitialized = true;
  13139. }
  13140. {
  13141. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  13142. Action_t1264377477 * L_0 = ((GUIUtility_t1868551600_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t1868551600_il2cpp_TypeInfo_var))->get_takeCapture_2();
  13143. if (!L_0)
  13144. {
  13145. goto IL_0015;
  13146. }
  13147. }
  13148. {
  13149. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  13150. Action_t1264377477 * L_1 = ((GUIUtility_t1868551600_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t1868551600_il2cpp_TypeInfo_var))->get_takeCapture_2();
  13151. NullCheck(L_1);
  13152. Action_Invoke_m937035532(L_1, /*hidden argument*/NULL);
  13153. }
  13154. IL_0015:
  13155. {
  13156. return;
  13157. }
  13158. }
  13159. // System.Void UnityEngine.GUIUtility::RemoveCapture()
  13160. extern "C" IL2CPP_METHOD_ATTR void GUIUtility_RemoveCapture_m1294193818 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  13161. {
  13162. static bool s_Il2CppMethodInitialized;
  13163. if (!s_Il2CppMethodInitialized)
  13164. {
  13165. il2cpp_codegen_initialize_method (GUIUtility_RemoveCapture_m1294193818_MetadataUsageId);
  13166. s_Il2CppMethodInitialized = true;
  13167. }
  13168. {
  13169. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  13170. Action_t1264377477 * L_0 = ((GUIUtility_t1868551600_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t1868551600_il2cpp_TypeInfo_var))->get_releaseCapture_3();
  13171. if (!L_0)
  13172. {
  13173. goto IL_0015;
  13174. }
  13175. }
  13176. {
  13177. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  13178. Action_t1264377477 * L_1 = ((GUIUtility_t1868551600_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t1868551600_il2cpp_TypeInfo_var))->get_releaseCapture_3();
  13179. NullCheck(L_1);
  13180. Action_Invoke_m937035532(L_1, /*hidden argument*/NULL);
  13181. }
  13182. IL_0015:
  13183. {
  13184. return;
  13185. }
  13186. }
  13187. // UnityEngine.GUISkin UnityEngine.GUIUtility::GetDefaultSkin()
  13188. extern "C" IL2CPP_METHOD_ATTR GUISkin_t1244372282 * GUIUtility_GetDefaultSkin_m1141001896 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  13189. {
  13190. static bool s_Il2CppMethodInitialized;
  13191. if (!s_Il2CppMethodInitialized)
  13192. {
  13193. il2cpp_codegen_initialize_method (GUIUtility_GetDefaultSkin_m1141001896_MetadataUsageId);
  13194. s_Il2CppMethodInitialized = true;
  13195. }
  13196. GUISkin_t1244372282 * V_0 = NULL;
  13197. {
  13198. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  13199. int32_t L_0 = ((GUIUtility_t1868551600_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t1868551600_il2cpp_TypeInfo_var))->get_s_SkinMode_0();
  13200. GUISkin_t1244372282 * L_1 = GUIUtility_Internal_GetDefaultSkin_m2977444868(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
  13201. V_0 = L_1;
  13202. goto IL_0011;
  13203. }
  13204. IL_0011:
  13205. {
  13206. GUISkin_t1244372282 * L_2 = V_0;
  13207. return L_2;
  13208. }
  13209. }
  13210. // System.Boolean UnityEngine.GUIUtility::ProcessEvent(System.Int32,System.IntPtr)
  13211. extern "C" IL2CPP_METHOD_ATTR bool GUIUtility_ProcessEvent_m3254259822 (RuntimeObject * __this /* static, unused */, int32_t ___instanceID0, intptr_t ___nativeEventPtr1, const RuntimeMethod* method)
  13212. {
  13213. static bool s_Il2CppMethodInitialized;
  13214. if (!s_Il2CppMethodInitialized)
  13215. {
  13216. il2cpp_codegen_initialize_method (GUIUtility_ProcessEvent_m3254259822_MetadataUsageId);
  13217. s_Il2CppMethodInitialized = true;
  13218. }
  13219. bool V_0 = false;
  13220. {
  13221. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  13222. Func_3_t4119323734 * L_0 = ((GUIUtility_t1868551600_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t1868551600_il2cpp_TypeInfo_var))->get_processEvent_4();
  13223. if (!L_0)
  13224. {
  13225. goto IL_001d;
  13226. }
  13227. }
  13228. {
  13229. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  13230. Func_3_t4119323734 * L_1 = ((GUIUtility_t1868551600_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t1868551600_il2cpp_TypeInfo_var))->get_processEvent_4();
  13231. int32_t L_2 = ___instanceID0;
  13232. intptr_t L_3 = ___nativeEventPtr1;
  13233. NullCheck(L_1);
  13234. bool L_4 = Func_3_Invoke_m4134091626(L_1, L_2, L_3, /*hidden argument*/Func_3_Invoke_m4134091626_RuntimeMethod_var);
  13235. V_0 = L_4;
  13236. goto IL_0024;
  13237. }
  13238. IL_001d:
  13239. {
  13240. V_0 = (bool)0;
  13241. goto IL_0024;
  13242. }
  13243. IL_0024:
  13244. {
  13245. bool L_5 = V_0;
  13246. return L_5;
  13247. }
  13248. }
  13249. // System.Void UnityEngine.GUIUtility::BeginGUI(System.Int32,System.Int32,System.Int32)
  13250. extern "C" IL2CPP_METHOD_ATTR void GUIUtility_BeginGUI_m1428629348 (RuntimeObject * __this /* static, unused */, int32_t ___skinMode0, int32_t ___instanceID1, int32_t ___useGUILayout2, const RuntimeMethod* method)
  13251. {
  13252. static bool s_Il2CppMethodInitialized;
  13253. if (!s_Il2CppMethodInitialized)
  13254. {
  13255. il2cpp_codegen_initialize_method (GUIUtility_BeginGUI_m1428629348_MetadataUsageId);
  13256. s_Il2CppMethodInitialized = true;
  13257. }
  13258. {
  13259. int32_t L_0 = ___skinMode0;
  13260. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  13261. ((GUIUtility_t1868551600_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t1868551600_il2cpp_TypeInfo_var))->set_s_SkinMode_0(L_0);
  13262. int32_t L_1 = ___instanceID1;
  13263. ((GUIUtility_t1868551600_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t1868551600_il2cpp_TypeInfo_var))->set_s_OriginalID_1(L_1);
  13264. GUIUtility_ResetGlobalState_m2426294461(NULL /*static, unused*/, /*hidden argument*/NULL);
  13265. int32_t L_2 = ___useGUILayout2;
  13266. if (!L_2)
  13267. {
  13268. goto IL_0020;
  13269. }
  13270. }
  13271. {
  13272. int32_t L_3 = ___instanceID1;
  13273. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  13274. GUILayoutUtility_Begin_m1358735224(NULL /*static, unused*/, L_3, /*hidden argument*/NULL);
  13275. }
  13276. IL_0020:
  13277. {
  13278. return;
  13279. }
  13280. }
  13281. // System.Void UnityEngine.GUIUtility::EndGUI(System.Int32)
  13282. extern "C" IL2CPP_METHOD_ATTR void GUIUtility_EndGUI_m1799980929 (RuntimeObject * __this /* static, unused */, int32_t ___layoutType0, const RuntimeMethod* method)
  13283. {
  13284. static bool s_Il2CppMethodInitialized;
  13285. if (!s_Il2CppMethodInitialized)
  13286. {
  13287. il2cpp_codegen_initialize_method (GUIUtility_EndGUI_m1799980929_MetadataUsageId);
  13288. s_Il2CppMethodInitialized = true;
  13289. }
  13290. Exception_t * __last_unhandled_exception = 0;
  13291. NO_UNUSED_WARNING (__last_unhandled_exception);
  13292. Exception_t * __exception_local = 0;
  13293. NO_UNUSED_WARNING (__exception_local);
  13294. int32_t __leave_target = 0;
  13295. NO_UNUSED_WARNING (__leave_target);
  13296. {
  13297. }
  13298. IL_0001:
  13299. try
  13300. { // begin try (depth: 1)
  13301. {
  13302. Event_t2956885303 * L_0 = Event_get_current_m2393892120(NULL /*static, unused*/, /*hidden argument*/NULL);
  13303. NullCheck(L_0);
  13304. int32_t L_1 = Event_get_type_m1370041809(L_0, /*hidden argument*/NULL);
  13305. if ((!(((uint32_t)L_1) == ((uint32_t)8))))
  13306. {
  13307. goto IL_0046;
  13308. }
  13309. }
  13310. IL_0012:
  13311. {
  13312. int32_t L_2 = ___layoutType0;
  13313. if (!L_2)
  13314. {
  13315. goto IL_002c;
  13316. }
  13317. }
  13318. IL_0019:
  13319. {
  13320. int32_t L_3 = ___layoutType0;
  13321. if ((((int32_t)L_3) == ((int32_t)1)))
  13322. {
  13323. goto IL_0031;
  13324. }
  13325. }
  13326. IL_0020:
  13327. {
  13328. int32_t L_4 = ___layoutType0;
  13329. if ((((int32_t)L_4) == ((int32_t)2)))
  13330. {
  13331. goto IL_003b;
  13332. }
  13333. }
  13334. IL_0027:
  13335. {
  13336. goto IL_0045;
  13337. }
  13338. IL_002c:
  13339. {
  13340. goto IL_0045;
  13341. }
  13342. IL_0031:
  13343. {
  13344. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  13345. GUILayoutUtility_Layout_m1159951704(NULL /*static, unused*/, /*hidden argument*/NULL);
  13346. goto IL_0045;
  13347. }
  13348. IL_003b:
  13349. {
  13350. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  13351. GUILayoutUtility_LayoutFromEditorWindow_m2914699782(NULL /*static, unused*/, /*hidden argument*/NULL);
  13352. goto IL_0045;
  13353. }
  13354. IL_0045:
  13355. {
  13356. }
  13357. IL_0046:
  13358. {
  13359. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  13360. int32_t L_5 = ((GUIUtility_t1868551600_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t1868551600_il2cpp_TypeInfo_var))->get_s_OriginalID_1();
  13361. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_t66395690_il2cpp_TypeInfo_var);
  13362. GUILayoutUtility_SelectIDList_m294753167(NULL /*static, unused*/, L_5, (bool)0, /*hidden argument*/NULL);
  13363. IL2CPP_RUNTIME_CLASS_INIT(GUIContent_t3050628031_il2cpp_TypeInfo_var);
  13364. GUIContent_ClearStaticCache_m1205116045(NULL /*static, unused*/, /*hidden argument*/NULL);
  13365. IL2CPP_LEAVE(0x65, FINALLY_005d);
  13366. }
  13367. } // end try (depth: 1)
  13368. catch(Il2CppExceptionWrapper& e)
  13369. {
  13370. __last_unhandled_exception = (Exception_t *)e.ex;
  13371. goto FINALLY_005d;
  13372. }
  13373. FINALLY_005d:
  13374. { // begin finally (depth: 1)
  13375. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  13376. GUIUtility_Internal_ExitGUI_m273923508(NULL /*static, unused*/, /*hidden argument*/NULL);
  13377. IL2CPP_END_FINALLY(93)
  13378. } // end finally (depth: 1)
  13379. IL2CPP_CLEANUP(93)
  13380. {
  13381. IL2CPP_JUMP_TBL(0x65, IL_0065)
  13382. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  13383. }
  13384. IL_0065:
  13385. {
  13386. return;
  13387. }
  13388. }
  13389. // System.Boolean UnityEngine.GUIUtility::EndGUIFromException(System.Exception)
  13390. extern "C" IL2CPP_METHOD_ATTR bool GUIUtility_EndGUIFromException_m3524906492 (RuntimeObject * __this /* static, unused */, Exception_t * ___exception0, const RuntimeMethod* method)
  13391. {
  13392. static bool s_Il2CppMethodInitialized;
  13393. if (!s_Il2CppMethodInitialized)
  13394. {
  13395. il2cpp_codegen_initialize_method (GUIUtility_EndGUIFromException_m3524906492_MetadataUsageId);
  13396. s_Il2CppMethodInitialized = true;
  13397. }
  13398. bool V_0 = false;
  13399. {
  13400. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  13401. GUIUtility_Internal_ExitGUI_m273923508(NULL /*static, unused*/, /*hidden argument*/NULL);
  13402. Exception_t * L_0 = ___exception0;
  13403. bool L_1 = GUIUtility_ShouldRethrowException_m1544932394(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
  13404. V_0 = L_1;
  13405. goto IL_0012;
  13406. }
  13407. IL_0012:
  13408. {
  13409. bool L_2 = V_0;
  13410. return L_2;
  13411. }
  13412. }
  13413. // System.Boolean UnityEngine.GUIUtility::EndContainerGUIFromException(System.Exception)
  13414. extern "C" IL2CPP_METHOD_ATTR bool GUIUtility_EndContainerGUIFromException_m530164245 (RuntimeObject * __this /* static, unused */, Exception_t * ___exception0, const RuntimeMethod* method)
  13415. {
  13416. static bool s_Il2CppMethodInitialized;
  13417. if (!s_Il2CppMethodInitialized)
  13418. {
  13419. il2cpp_codegen_initialize_method (GUIUtility_EndContainerGUIFromException_m530164245_MetadataUsageId);
  13420. s_Il2CppMethodInitialized = true;
  13421. }
  13422. bool V_0 = false;
  13423. {
  13424. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  13425. Func_2_t3450341358 * L_0 = ((GUIUtility_t1868551600_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t1868551600_il2cpp_TypeInfo_var))->get_endContainerGUIFromException_5();
  13426. if (!L_0)
  13427. {
  13428. goto IL_001c;
  13429. }
  13430. }
  13431. {
  13432. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  13433. Func_2_t3450341358 * L_1 = ((GUIUtility_t1868551600_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t1868551600_il2cpp_TypeInfo_var))->get_endContainerGUIFromException_5();
  13434. Exception_t * L_2 = ___exception0;
  13435. NullCheck(L_1);
  13436. bool L_3 = Func_2_Invoke_m2401667781(L_1, L_2, /*hidden argument*/Func_2_Invoke_m2401667781_RuntimeMethod_var);
  13437. V_0 = L_3;
  13438. goto IL_0023;
  13439. }
  13440. IL_001c:
  13441. {
  13442. V_0 = (bool)0;
  13443. goto IL_0023;
  13444. }
  13445. IL_0023:
  13446. {
  13447. bool L_4 = V_0;
  13448. return L_4;
  13449. }
  13450. }
  13451. // System.Void UnityEngine.GUIUtility::ResetGlobalState()
  13452. extern "C" IL2CPP_METHOD_ATTR void GUIUtility_ResetGlobalState_m2426294461 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  13453. {
  13454. static bool s_Il2CppMethodInitialized;
  13455. if (!s_Il2CppMethodInitialized)
  13456. {
  13457. il2cpp_codegen_initialize_method (GUIUtility_ResetGlobalState_m2426294461_MetadataUsageId);
  13458. s_Il2CppMethodInitialized = true;
  13459. }
  13460. {
  13461. IL2CPP_RUNTIME_CLASS_INIT(GUI_t1624858472_il2cpp_TypeInfo_var);
  13462. GUI_set_skin_m3073574632(NULL /*static, unused*/, (GUISkin_t1244372282 *)NULL, /*hidden argument*/NULL);
  13463. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  13464. GUIUtility_set_guiIsExiting_m1558910088(NULL /*static, unused*/, (bool)0, /*hidden argument*/NULL);
  13465. GUI_set_changed_m535954674(NULL /*static, unused*/, (bool)0, /*hidden argument*/NULL);
  13466. return;
  13467. }
  13468. }
  13469. // System.Boolean UnityEngine.GUIUtility::IsExitGUIException(System.Exception)
  13470. extern "C" IL2CPP_METHOD_ATTR bool GUIUtility_IsExitGUIException_m3644066650 (RuntimeObject * __this /* static, unused */, Exception_t * ___exception0, const RuntimeMethod* method)
  13471. {
  13472. static bool s_Il2CppMethodInitialized;
  13473. if (!s_Il2CppMethodInitialized)
  13474. {
  13475. il2cpp_codegen_initialize_method (GUIUtility_IsExitGUIException_m3644066650_MetadataUsageId);
  13476. s_Il2CppMethodInitialized = true;
  13477. }
  13478. bool V_0 = false;
  13479. {
  13480. goto IL_000e;
  13481. }
  13482. IL_0006:
  13483. {
  13484. Exception_t * L_0 = ___exception0;
  13485. NullCheck(L_0);
  13486. Exception_t * L_1 = Exception_get_InnerException_m3836775(L_0, /*hidden argument*/NULL);
  13487. ___exception0 = L_1;
  13488. }
  13489. IL_000e:
  13490. {
  13491. Exception_t * L_2 = ___exception0;
  13492. if (!((TargetInvocationException_t4266643902 *)IsInstSealed((RuntimeObject*)L_2, TargetInvocationException_t4266643902_il2cpp_TypeInfo_var)))
  13493. {
  13494. goto IL_0024;
  13495. }
  13496. }
  13497. {
  13498. Exception_t * L_3 = ___exception0;
  13499. NullCheck(L_3);
  13500. Exception_t * L_4 = Exception_get_InnerException_m3836775(L_3, /*hidden argument*/NULL);
  13501. if (L_4)
  13502. {
  13503. goto IL_0006;
  13504. }
  13505. }
  13506. IL_0024:
  13507. {
  13508. Exception_t * L_5 = ___exception0;
  13509. V_0 = (bool)((!(((RuntimeObject*)(ExitGUIException_t133215258 *)((ExitGUIException_t133215258 *)IsInstSealed((RuntimeObject*)L_5, ExitGUIException_t133215258_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
  13510. goto IL_0033;
  13511. }
  13512. IL_0033:
  13513. {
  13514. bool L_6 = V_0;
  13515. return L_6;
  13516. }
  13517. }
  13518. // System.Boolean UnityEngine.GUIUtility::ShouldRethrowException(System.Exception)
  13519. extern "C" IL2CPP_METHOD_ATTR bool GUIUtility_ShouldRethrowException_m1544932394 (RuntimeObject * __this /* static, unused */, Exception_t * ___exception0, const RuntimeMethod* method)
  13520. {
  13521. static bool s_Il2CppMethodInitialized;
  13522. if (!s_Il2CppMethodInitialized)
  13523. {
  13524. il2cpp_codegen_initialize_method (GUIUtility_ShouldRethrowException_m1544932394_MetadataUsageId);
  13525. s_Il2CppMethodInitialized = true;
  13526. }
  13527. bool V_0 = false;
  13528. {
  13529. Exception_t * L_0 = ___exception0;
  13530. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  13531. bool L_1 = GUIUtility_IsExitGUIException_m3644066650(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
  13532. V_0 = L_1;
  13533. goto IL_000d;
  13534. }
  13535. IL_000d:
  13536. {
  13537. bool L_2 = V_0;
  13538. return L_2;
  13539. }
  13540. }
  13541. // System.Void UnityEngine.GUIUtility::CheckOnGUI()
  13542. extern "C" IL2CPP_METHOD_ATTR void GUIUtility_CheckOnGUI_m3924092168 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  13543. {
  13544. static bool s_Il2CppMethodInitialized;
  13545. if (!s_Il2CppMethodInitialized)
  13546. {
  13547. il2cpp_codegen_initialize_method (GUIUtility_CheckOnGUI_m3924092168_MetadataUsageId);
  13548. s_Il2CppMethodInitialized = true;
  13549. }
  13550. {
  13551. IL2CPP_RUNTIME_CLASS_INIT(GUIUtility_t1868551600_il2cpp_TypeInfo_var);
  13552. int32_t L_0 = GUIUtility_Internal_GetGUIDepth_m1169824684(NULL /*static, unused*/, /*hidden argument*/NULL);
  13553. if ((((int32_t)L_0) > ((int32_t)0)))
  13554. {
  13555. goto IL_0017;
  13556. }
  13557. }
  13558. {
  13559. ArgumentException_t132251570 * L_1 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
  13560. ArgumentException__ctor_m1312628991(L_1, _stringLiteral3544956457, /*hidden argument*/NULL);
  13561. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,GUIUtility_CheckOnGUI_m3924092168_RuntimeMethod_var);
  13562. }
  13563. IL_0017:
  13564. {
  13565. return;
  13566. }
  13567. }
  13568. // System.Void UnityEngine.GUIUtility::.cctor()
  13569. extern "C" IL2CPP_METHOD_ATTR void GUIUtility__cctor_m3177179339 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  13570. {
  13571. static bool s_Il2CppMethodInitialized;
  13572. if (!s_Il2CppMethodInitialized)
  13573. {
  13574. il2cpp_codegen_initialize_method (GUIUtility__cctor_m3177179339_MetadataUsageId);
  13575. s_Il2CppMethodInitialized = true;
  13576. }
  13577. {
  13578. IL2CPP_RUNTIME_CLASS_INIT(Vector2_t2156229523_il2cpp_TypeInfo_var);
  13579. Vector2_t2156229523 L_0 = Vector2_get_zero_m540426400(NULL /*static, unused*/, /*hidden argument*/NULL);
  13580. ((GUIUtility_t1868551600_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t1868551600_il2cpp_TypeInfo_var))->set_s_EditorScreenPointOffset_7(L_0);
  13581. return;
  13582. }
  13583. }
  13584. #ifdef __clang__
  13585. #pragma clang diagnostic pop
  13586. #endif
  13587. #ifdef __clang__
  13588. #pragma clang diagnostic push
  13589. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  13590. #pragma clang diagnostic ignored "-Wunused-variable"
  13591. #endif
  13592. // System.Void UnityEngine.GUIWordWrapSizer::.ctor(UnityEngine.GUIStyle,UnityEngine.GUIContent,UnityEngine.GUILayoutOption[])
  13593. extern "C" IL2CPP_METHOD_ATTR void GUIWordWrapSizer__ctor_m3789151557 (GUIWordWrapSizer_t2043268473 * __this, GUIStyle_t3956901511 * ___style0, GUIContent_t3050628031 * ___content1, GUILayoutOptionU5BU5D_t2510215842* ___options2, const RuntimeMethod* method)
  13594. {
  13595. static bool s_Il2CppMethodInitialized;
  13596. if (!s_Il2CppMethodInitialized)
  13597. {
  13598. il2cpp_codegen_initialize_method (GUIWordWrapSizer__ctor_m3789151557_MetadataUsageId);
  13599. s_Il2CppMethodInitialized = true;
  13600. }
  13601. {
  13602. GUIStyle_t3956901511 * L_0 = ___style0;
  13603. IL2CPP_RUNTIME_CLASS_INIT(GUILayoutEntry_t3214611570_il2cpp_TypeInfo_var);
  13604. GUILayoutEntry__ctor_m2229197035(__this, (0.0f), (0.0f), (0.0f), (0.0f), L_0, /*hidden argument*/NULL);
  13605. GUIContent_t3050628031 * L_1 = ___content1;
  13606. GUIContent_t3050628031 * L_2 = (GUIContent_t3050628031 *)il2cpp_codegen_object_new(GUIContent_t3050628031_il2cpp_TypeInfo_var);
  13607. GUIContent__ctor_m476350501(L_2, L_1, /*hidden argument*/NULL);
  13608. __this->set_m_Content_10(L_2);
  13609. GUILayoutOptionU5BU5D_t2510215842* L_3 = ___options2;
  13610. VirtActionInvoker1< GUILayoutOptionU5BU5D_t2510215842* >::Invoke(10 /* System.Void UnityEngine.GUILayoutEntry::ApplyOptions(UnityEngine.GUILayoutOption[]) */, __this, L_3);
  13611. float L_4 = ((GUILayoutEntry_t3214611570 *)__this)->get_minHeight_2();
  13612. __this->set_m_ForcedMinHeight_11(L_4);
  13613. float L_5 = ((GUILayoutEntry_t3214611570 *)__this)->get_maxHeight_3();
  13614. __this->set_m_ForcedMaxHeight_12(L_5);
  13615. return;
  13616. }
  13617. }
  13618. // System.Void UnityEngine.GUIWordWrapSizer::CalcWidth()
  13619. extern "C" IL2CPP_METHOD_ATTR void GUIWordWrapSizer_CalcWidth_m606896659 (GUIWordWrapSizer_t2043268473 * __this, const RuntimeMethod* method)
  13620. {
  13621. float V_0 = 0.0f;
  13622. float V_1 = 0.0f;
  13623. {
  13624. float L_0 = ((GUILayoutEntry_t3214611570 *)__this)->get_minWidth_0();
  13625. if ((((float)L_0) == ((float)(0.0f))))
  13626. {
  13627. goto IL_0021;
  13628. }
  13629. }
  13630. {
  13631. float L_1 = ((GUILayoutEntry_t3214611570 *)__this)->get_maxWidth_1();
  13632. if ((!(((float)L_1) == ((float)(0.0f)))))
  13633. {
  13634. goto IL_0066;
  13635. }
  13636. }
  13637. IL_0021:
  13638. {
  13639. GUIStyle_t3956901511 * L_2 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  13640. GUIContent_t3050628031 * L_3 = __this->get_m_Content_10();
  13641. NullCheck(L_2);
  13642. GUIStyle_CalcMinMaxWidth_m999727240(L_2, L_3, (&V_0), (&V_1), /*hidden argument*/NULL);
  13643. float L_4 = ((GUILayoutEntry_t3214611570 *)__this)->get_minWidth_0();
  13644. if ((!(((float)L_4) == ((float)(0.0f)))))
  13645. {
  13646. goto IL_004e;
  13647. }
  13648. }
  13649. {
  13650. float L_5 = V_0;
  13651. ((GUILayoutEntry_t3214611570 *)__this)->set_minWidth_0(L_5);
  13652. }
  13653. IL_004e:
  13654. {
  13655. float L_6 = ((GUILayoutEntry_t3214611570 *)__this)->get_maxWidth_1();
  13656. if ((!(((float)L_6) == ((float)(0.0f)))))
  13657. {
  13658. goto IL_0065;
  13659. }
  13660. }
  13661. {
  13662. float L_7 = V_1;
  13663. ((GUILayoutEntry_t3214611570 *)__this)->set_maxWidth_1(L_7);
  13664. }
  13665. IL_0065:
  13666. {
  13667. }
  13668. IL_0066:
  13669. {
  13670. return;
  13671. }
  13672. }
  13673. // System.Void UnityEngine.GUIWordWrapSizer::CalcHeight()
  13674. extern "C" IL2CPP_METHOD_ATTR void GUIWordWrapSizer_CalcHeight_m2277788216 (GUIWordWrapSizer_t2043268473 * __this, const RuntimeMethod* method)
  13675. {
  13676. float V_0 = 0.0f;
  13677. {
  13678. float L_0 = __this->get_m_ForcedMinHeight_11();
  13679. if ((((float)L_0) == ((float)(0.0f))))
  13680. {
  13681. goto IL_0021;
  13682. }
  13683. }
  13684. {
  13685. float L_1 = __this->get_m_ForcedMaxHeight_12();
  13686. if ((!(((float)L_1) == ((float)(0.0f)))))
  13687. {
  13688. goto IL_0090;
  13689. }
  13690. }
  13691. IL_0021:
  13692. {
  13693. GUIStyle_t3956901511 * L_2 = GUILayoutEntry_get_style_m3965981147(__this, /*hidden argument*/NULL);
  13694. GUIContent_t3050628031 * L_3 = __this->get_m_Content_10();
  13695. Rect_t2360479859 * L_4 = ((GUILayoutEntry_t3214611570 *)__this)->get_address_of_rect_4();
  13696. float L_5 = Rect_get_width_m3421484486(L_4, /*hidden argument*/NULL);
  13697. NullCheck(L_2);
  13698. float L_6 = GUIStyle_CalcHeight_m1341687357(L_2, L_3, L_5, /*hidden argument*/NULL);
  13699. V_0 = L_6;
  13700. float L_7 = __this->get_m_ForcedMinHeight_11();
  13701. if ((!(((float)L_7) == ((float)(0.0f)))))
  13702. {
  13703. goto IL_005b;
  13704. }
  13705. }
  13706. {
  13707. float L_8 = V_0;
  13708. ((GUILayoutEntry_t3214611570 *)__this)->set_minHeight_2(L_8);
  13709. goto IL_0067;
  13710. }
  13711. IL_005b:
  13712. {
  13713. float L_9 = __this->get_m_ForcedMinHeight_11();
  13714. ((GUILayoutEntry_t3214611570 *)__this)->set_minHeight_2(L_9);
  13715. }
  13716. IL_0067:
  13717. {
  13718. float L_10 = __this->get_m_ForcedMaxHeight_12();
  13719. if ((!(((float)L_10) == ((float)(0.0f)))))
  13720. {
  13721. goto IL_0083;
  13722. }
  13723. }
  13724. {
  13725. float L_11 = V_0;
  13726. ((GUILayoutEntry_t3214611570 *)__this)->set_maxHeight_3(L_11);
  13727. goto IL_008f;
  13728. }
  13729. IL_0083:
  13730. {
  13731. float L_12 = __this->get_m_ForcedMaxHeight_12();
  13732. ((GUILayoutEntry_t3214611570 *)__this)->set_maxHeight_3(L_12);
  13733. }
  13734. IL_008f:
  13735. {
  13736. }
  13737. IL_0090:
  13738. {
  13739. return;
  13740. }
  13741. }
  13742. #ifdef __clang__
  13743. #pragma clang diagnostic pop
  13744. #endif
  13745. #ifdef __clang__
  13746. #pragma clang diagnostic push
  13747. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  13748. #pragma clang diagnostic ignored "-Wunused-variable"
  13749. #endif
  13750. #ifdef __clang__
  13751. #pragma clang diagnostic pop
  13752. #endif
  13753. #ifdef __clang__
  13754. #pragma clang diagnostic push
  13755. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  13756. #pragma clang diagnostic ignored "-Wunused-variable"
  13757. #endif
  13758. // System.Void UnityEngine.ScrollViewState::.ctor()
  13759. extern "C" IL2CPP_METHOD_ATTR void ScrollViewState__ctor_m1599613496 (ScrollViewState_t3797911395 * __this, const RuntimeMethod* method)
  13760. {
  13761. {
  13762. Object__ctor_m297566312(__this, /*hidden argument*/NULL);
  13763. return;
  13764. }
  13765. }
  13766. #ifdef __clang__
  13767. #pragma clang diagnostic pop
  13768. #endif
  13769. #ifdef __clang__
  13770. #pragma clang diagnostic push
  13771. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  13772. #pragma clang diagnostic ignored "-Wunused-variable"
  13773. #endif
  13774. // System.Void UnityEngine.SliderState::.ctor()
  13775. extern "C" IL2CPP_METHOD_ATTR void SliderState__ctor_m3367986001 (SliderState_t2207048770 * __this, const RuntimeMethod* method)
  13776. {
  13777. {
  13778. Object__ctor_m297566312(__this, /*hidden argument*/NULL);
  13779. return;
  13780. }
  13781. }
  13782. #ifdef __clang__
  13783. #pragma clang diagnostic pop
  13784. #endif
  13785. #ifdef __clang__
  13786. #pragma clang diagnostic push
  13787. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  13788. #pragma clang diagnostic ignored "-Wunused-variable"
  13789. #endif
  13790. // System.Void UnityEngine.TextEditor::.ctor()
  13791. extern "C" IL2CPP_METHOD_ATTR void TextEditor__ctor_m242049450 (TextEditor_t2759855366 * __this, const RuntimeMethod* method)
  13792. {
  13793. static bool s_Il2CppMethodInitialized;
  13794. if (!s_Il2CppMethodInitialized)
  13795. {
  13796. il2cpp_codegen_initialize_method (TextEditor__ctor_m242049450_MetadataUsageId);
  13797. s_Il2CppMethodInitialized = true;
  13798. }
  13799. {
  13800. __this->set_keyboardOnScreen_0((TouchScreenKeyboard_t731888065 *)NULL);
  13801. __this->set_controlID_1(0);
  13802. IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t3956901511_il2cpp_TypeInfo_var);
  13803. GUIStyle_t3956901511 * L_0 = GUIStyle_get_none_m1545577352(NULL /*static, unused*/, /*hidden argument*/NULL);
  13804. __this->set_style_2(L_0);
  13805. __this->set_multiline_3((bool)0);
  13806. __this->set_hasHorizontalCursorPos_4((bool)0);
  13807. __this->set_isPasswordField_5((bool)0);
  13808. IL2CPP_RUNTIME_CLASS_INIT(Vector2_t2156229523_il2cpp_TypeInfo_var);
  13809. Vector2_t2156229523 L_1 = Vector2_get_zero_m540426400(NULL /*static, unused*/, /*hidden argument*/NULL);
  13810. __this->set_scrollOffset_6(L_1);
  13811. GUIContent_t3050628031 * L_2 = (GUIContent_t3050628031 *)il2cpp_codegen_object_new(GUIContent_t3050628031_il2cpp_TypeInfo_var);
  13812. GUIContent__ctor_m3360759894(L_2, /*hidden argument*/NULL);
  13813. __this->set_m_Content_7(L_2);
  13814. __this->set_m_CursorIndex_8(0);
  13815. __this->set_m_SelectIndex_9(0);
  13816. __this->set_m_RevealCursor_10((bool)0);
  13817. __this->set_m_MouseDragSelectsWholeWords_11((bool)0);
  13818. __this->set_m_DblClickInitPos_12(0);
  13819. __this->set_m_DblClickSnap_13(0);
  13820. __this->set_m_bJustSelected_14((bool)0);
  13821. __this->set_m_iAltCursorPos_15((-1));
  13822. Object__ctor_m297566312(__this, /*hidden argument*/NULL);
  13823. return;
  13824. }
  13825. }
  13826. #ifdef __clang__
  13827. #pragma clang diagnostic pop
  13828. #endif
  13829. #ifdef __clang__
  13830. #pragma clang diagnostic push
  13831. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  13832. #pragma clang diagnostic ignored "-Wunused-variable"
  13833. #endif
  13834. #ifdef __clang__
  13835. #pragma clang diagnostic pop
  13836. #endif