blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2 values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 905 values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22 values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141 values | src_encoding stringclasses 34 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 2 classes | length_bytes int64 3 10.4M | extension stringclasses 115 values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
f9ba66aa5a8e349055c3ab287e89f3a55fae2043 | 2e3f7d511efc89fa54c99545ce5e0bcbe9456974 | /tests/stream_bench/src/Main.cpp | 9f8a0e48e23f7735641bd6f09ac1452fd80788e9 | [
"BSD-3-Clause"
] | permissive | PacificBiosciences/OpenHT | a3aab4ddf01c9339899531d737de4ee38a35bd2e | 63898397de4d303ba514d88b621cc91367ffe2a6 | refs/heads/master | 2021-06-03T19:43:09.920841 | 2020-09-24T14:32:52 | 2020-09-24T14:32:52 | 33,895,564 | 1 | 1 | null | 2015-04-13T21:39:54 | 2015-04-13T21:39:53 | null | UTF-8 | C++ | false | false | 2,618 | cpp | #include "Ht.h"
using namespace Ht;
#include "time.h"
timespec tv_diff(timespec start, timespec end) {
timespec temp;
if ((end.tv_nsec-start.tv_nsec)<0) {
temp.tv_sec = end.tv_sec-start.tv_sec-1;
temp.tv_nsec = 1000000000+end.tv_nsec-start.tv_nsec;
} else {
temp.tv_sec = end.tv_sec-start.tv_sec;
temp.tv_nsec = end.tv_nsec-start.tv_nsec;
}
return temp;
}
#if defined(HT_MODEL)
uint64_t dataLength = 100000;
#endif
#if defined(HT_SYSC)
uint64_t dataLength = 10000;
#endif
#if defined(HT_VSIM)
uint64_t dataLength = 50;
#endif
#if defined(HT_APP)
uint64_t dataLength = 50000;
#endif
// Main Program
int main(int argc, char **argv) {
// Init coprocessor - Alloc 1 AU
CHtHif *pHtHif = new CHtHif();
CHtAuUnit *pAuUnit = new CHtAuUnit(pHtHif);
// Make initial call
pAuUnit->SendCall_htmain();
// Populate data array with information to send to coprocessor
uint64_t *sendData;
sendData = (uint64_t*)calloc(dataLength, sizeof(uint64_t));
for (uint32_t i = 0; i < dataLength; i++) {
sendData[i] = i;
}
uint64_t numSent = 0;
uint64_t sentSum = 0;
uint64_t numRcvd = 0;
uint64_t rcvdSum = 0;
// Print Starting Time
timespec startTime;
clock_gettime(CLOCK_REALTIME, &startTime);
// Send / Recv data
bool markerSent = false;
while (numRcvd < dataLength) {
uint64_t temp;
if (pAuUnit->RecvHostData(1, &temp)) {
rcvdSum += temp;
numRcvd++;
}
if (numSent < dataLength && pAuUnit->SendHostData(1, &sendData[numSent])) {
sentSum += sendData[numSent];
numSent++;
}
if (numSent == dataLength && !markerSent) {
pAuUnit->SendHostDataMarker();
pAuUnit->FlushHostData();
markerSent = true;
}
}
// Return from coproccessor
uint32_t byteCnt;
while (!pAuUnit->RecvReturn_htmain(byteCnt)) {
usleep(1000);
}
// Print Ending Time
timespec endTime;
clock_gettime(CLOCK_REALTIME, &endTime);
timespec diff;
diff = tv_diff(startTime, endTime);
double sec = (double)diff.tv_sec + ((double)diff.tv_nsec / 1.0e9);
printf("Elapsed time = %f sec\n", sec);
printf("Bytes transferred/received = %d\n", byteCnt);
double throughput = (double)byteCnt / sec;
throughput /= 1000000.0;
printf("Throughput = %f MB/s\n", throughput);
if (byteCnt != 8*dataLength) {
printf("FAILED: ByteCnt Mismatch: Expected: %lld, Returned: %lld\n", (long long int)8*dataLength, (long long int)byteCnt);
} else if (sentSum != rcvdSum) {
printf("FAILED: Sum Mismatch: Sent: %lld, Received: %lld\n", (long long int)sentSum, (long long int)rcvdSum);
} else {
printf("PASSED\n");
}
// Free resources
free(sendData);
delete pAuUnit;
delete pHtHif;
return 0;
}
| [
"github.com@RuffFamily.net"
] | github.com@RuffFamily.net |
0b75af8ea0322f080fec2a3df38cb18659c96077 | 9df8caaa9fffb19d5e6f77c3b4e9c8af93a3360a | /AOJ/ALDS/11_Graph1/D_Connected_Components.cpp | d4d4053618a4fd917d613720b933c3378aae339e | [] | no_license | Hiroki9759/Atcoder | 605383cab4c24968b9cf671cb744fe4c05184d9c | be008661a6f324ed58796cba72f67d84ebe88647 | refs/heads/master | 2021-06-27T07:02:19.089286 | 2020-12-11T09:01:54 | 2020-12-11T09:01:54 | 192,643,747 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,110 | cpp | #include<bits/stdc++.h>
using namespace std;
static const int MAX = 100000;
static const int NIL = -1;
int n;
int color[MAX];
vector<int> G[MAX];
void dfs(int r,int c){
stack<int>S;
S.push(r);
color[r]=c;
while(!S.empty()){
int u = S.top();
S.pop();
for(int i = 0;i<G[u].size();i++){
int v = G[u][i];
if(color[v]==NIL){
color[v] = c;
S.push(v);
}
}
}
}
void assignColor(){
int id = 1;
for (int i = 0; i < n; i++)
{
color[i] = NIL;
}
for (int u = 0; u < n; u++)
{
if(color[u]==NIL){
dfs(u,id++);
}
}
}
int main(){
int s,t,m,q;
cin >> n >> m;
for (int i = 0; i < m; i++)
{
cin >> s >> t;
G[s].push_back(t);
G[t].push_back(s);
}
assignColor();
cin>>q;
for (int i = 0; i < q; i++)
{
cin >> s >> t;
if(color[s] == color[t]){
cout << "yes" << endl;
}else{
cout << "no" << endl;
}
}
return 0;
} | [
"hiroki338@gmail.com"
] | hiroki338@gmail.com |
3de1df166e6e5d54381882a70552aac1d20b0ff7 | bd5590209ea02a095d4e84b4c92c6e052afb1030 | /globais.cpp | dc9da94cb33e4c749fcae75ce0b04f81f6323bcb | [] | no_license | paulononaka/cplusplus_opengl_navalbattle3D | 0c26889187b81815aba6ee64b2f9e8485bdb5b5b | 1375090146138fc0e054d6089f7b57e09fe0be11 | refs/heads/master | 2020-04-10T17:42:42.196220 | 2013-03-26T03:36:24 | 2013-03-26T03:36:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,139 | cpp | #ifndef _GLOBAIS_CPP
#define _GLOBAIS_CPP
/**
* Define todas as variaveis globais
*/
#include "constantes.cpp"
#include "ceumar.cpp"
#include "canhao.cpp"
#include "navio.cpp"
#include "cruzador.cpp"
#include "destroier.cpp"
#include "submarino.cpp"
#include "portaAviao.cpp"
Submarino gsubmarino; // Objeto submarino
PortaAviao gportaaviao; // Objeto porta aviao
Destroier gdestroier; // Objeto destroier
Cruzador gcruzador; // Objeto cruzado
Navio gnavio; // Objeto navio
Ceumar gceumar; // Objeto para o ceu e o mar
double gdesliza_tela_horizontal = 0; // soma ao gluOrtho no eixo X quando aperta H e K
double gdesliza_tela_vertical = 0; // soma ao gluOrtho no eixo Y quando aperta U e J
int gPressionandoTeclaTiro = 0; // booleana para saber se esta apertando a tecla T
int visao = 1; // para alternar entre visao pespectiva e ortografica
int opmenu[5] = {0,0,0,0,0}; // vetor para armazenar opcoes do menu
GLint idMina; // lista de mina
GLint idCanhao; // lista do canhao
#endif /* _GLOBAIS_CPP */
| [
"paulononaka@gmail.com"
] | paulononaka@gmail.com |
e142f617799101c90dee7ce4cc29787121c22627 | 894ddd02b4bdf887dcc4559e3e172d91ac29a202 | /GraduationWork/Source/Objects/TestBullet.cpp | 734eb4b7bcb4216ad573e9bec795ea0ee8e1e97a | [] | no_license | yy-yusuke0122/GraduationWork_STG | 79bf14f8ac82ae4430761dc963abfb3a3ff76ed4 | 8bb5ca5786dca8d425efcb4886acaf63dff6b5c7 | refs/heads/master | 2023-03-01T08:33:23.696944 | 2021-02-04T01:27:27 | 2021-02-04T01:27:27 | 313,806,234 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 583 | cpp | #include "TestBullet.h"
#include "../Components/ProjectileMoveMent.h"
TestBullet::TestBullet()
{
}
TestBullet::~TestBullet()
{
}
void TestBullet::Start()
{
GameObject* player = FindGameObject("Player");
transform->SetPosition(player->transform->position);
AddComponent<ImageRenderer>()->SetImage("Media/TestBullet.png");
AddComponent<CircleCollider2D>();
ProjectileMoveMent* comp = AddComponent<ProjectileMoveMent>();
comp->direction = transform->GetRight();
comp->speed = 10.0f;
PhysicalBehavior* physics = AddComponent<PhysicalBehavior>();
physics->gravity = 10.f;
}
| [
"61263724+yy-yusuke0122@users.noreply.github.com"
] | 61263724+yy-yusuke0122@users.noreply.github.com |
7129361d1a1bd916dc4b1dbd151e1d9192ce4726 | 5958562b8f949c2e1eb6f79c8bfa2c6d6973fcd2 | /fitRootConverted/PolarisationHeMinuit1D_chi2_trigger_differentAxE.cpp | 7c75b4888d62273ecc5117d295b9cd9f30410e17 | [] | no_license | siragoni/UPCforData | f716bbcc32405d752e64cf2cf72961a46addbc07 | e517434d3452622e6c66c81601c04e2b83bb1d83 | refs/heads/master | 2023-06-21T08:37:05.310048 | 2023-06-20T13:15:23 | 2023-06-20T13:15:23 | 199,396,086 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 29,007 | cpp | #include "TCanvas.h"
#include "TFile.h"
#include "TTree.h"
#include "TLeaf.h"
#include "TH1D.h"
#include "TH2F.h"
#include "TCanvas.h"
#include "TAxis.h"
#include "TMath.h"
#include "TF1.h"
#include "TLatex.h"
#include "TStyle.h"
using namespace std;
#include <math.h>
#include "TH2D.h"
#include "TF2.h"
#include "TStyle.h"
#include "TRandom3.h"
#include "TVirtualFitter.h"
#include "TList.h"
#include "TDatime.h"
#include <vector>
#include <map>
Int_t switchFlag = 0;
Double_t ReducedChiSquare = 0;
//_____________________________________________________________________________
/* - Coding in the fit functions.
- The fit is modelled as the sum of 3 different functions:
- 1) CosTheta only
- 2) Phi only
- 3) Mix of the two
-
*/
//______________________________________________
/* -
* - CosTheta's distribution
*/
Double_t CosTheta(Double_t *x, Double_t *par) {
Double_t CosSquaredTheta = x[0] * x[0];
Double_t returnValue = 1 + par[0] * CosSquaredTheta;
returnValue = par[1] * returnValue / ( 3 + par[0] );
return returnValue;
}
//______________________________________________
/* -
* - Phi's distribution
*/
Double_t Phi(Double_t *x, Double_t *par) {
Double_t CosOfTwoPhi = TMath::Cos( 2 * x[1] );
Double_t returnValue = par[2] * ( 1 + 2 * par[3] * CosOfTwoPhi / ( 3 + par[0] ) );
return returnValue;
}
//______________________________________________
/* -
* - Phi's distribution but taken along the same axis as CosTheta
*/
Double_t PhiV2(Double_t *x, Double_t *par) {
Double_t CosOfTwoPhi = TMath::Cos( 2 * x[0] );
Double_t returnValue = par[2] * ( 1 + 2 * par[3] * CosOfTwoPhi / ( 3 + par[0] ) );
return returnValue;
}
//______________________________________________
Double_t DummyPhi(Double_t *x, Double_t *par) {
Double_t CosOfTwoPhi = TMath::Cos( 2 * x[1] );
Double_t returnValue = par[0] * ( 1 + 2 * par[1] * CosOfTwoPhi / ( 3 + 1.13220 ) );
return returnValue;
}
//______________________________________________
Double_t MixWithPositiveCosTheta(Double_t *x, Double_t *par) {
Double_t CosTwoTildePhi = TMath::Cos( 2 * x[1] - 0.50 * TMath::Pi() );
Double_t returnValue = par[4] * ( 1 + TMath::Sqrt(2) * par[5] * CosTwoTildePhi / ( 3 + par[0] ) );
return returnValue;
}
//______________________________________________
Double_t MixWithNegativeCosTheta(Double_t *x, Double_t *par) {
Double_t CosTwoTildePhi = TMath::Cos( 2 * x[1] - 1.50 * TMath::Pi() );
Double_t returnValue = par[4] * ( 1 + TMath::Sqrt(2) * par[5] * CosTwoTildePhi / ( 3 + par[0] ) );
return returnValue;
}
//______________________________________________
/* -
* - TildePhi's distribution.
*/
Double_t TildePhi(Double_t *x, Double_t *par) {
Double_t CosTwoTildePhi = TMath::Cos( 2 * x[2] );
Double_t returnValue = par[4] * ( 1 + TMath::Sqrt(2) * par[5] * CosTwoTildePhi / ( 3 + par[0] ) );
return returnValue;
}
//______________________________________________
/* -
* - TildePhi's distribution but along the same axis as x[0]
*/
Double_t TildePhiV2(Double_t *x, Double_t *par) {
Double_t CosTwoTildePhi = TMath::Cos( 2 * x[0] );
Double_t returnValue = par[4] * ( 1 + TMath::Sqrt(2) * par[5] * CosTwoTildePhi / ( 3 + par[0] ) );
return returnValue;
}
//_____________________________________________________________________________
/* - Simultaneous fit complete.
* -
*/
Double_t SimultaneousFitComplete(double *x, double *par) {
Double_t sumOfTheSubFits = 0;
if ( x[0] < 0 ) {
sumOfTheSubFits = CosTheta( x, par ) + Phi( x, par ) + MixWithNegativeCosTheta( x, par );
} else {
sumOfTheSubFits = CosTheta( x, par ) + Phi( x, par ) + MixWithPositiveCosTheta( x, par );
}
return sumOfTheSubFits;
}
//_____________________________________________________________________________
/* - Simultaneous fit complete.
* -
*/
Double_t SimultaneousFit(double *x, double *par) {
Double_t sumOfTheSubFits = 0;
sumOfTheSubFits = CosTheta( x, par ) + Phi( x, par ) + TildePhi( x, par );
return sumOfTheSubFits;
}
//_____________________________________________________________________________
/* - Simultaneous fit complete.
* -
*/
Double_t SimultaneousFitLastHopeComplete(double *x, double *par) {
Double_t sumOfTheSubFits = 0;
if ( x[0] < 2*TMath::Pi() ){
sumOfTheSubFits = CosTheta( x, par );
} else if ( x[0] < 6*TMath::Pi() ){
sumOfTheSubFits = PhiV2( x, par );
} else {
sumOfTheSubFits = TildePhiV2( x, par );
}
return sumOfTheSubFits;
}
//_____________________________________________________________________________
/* - Simultaneous fit complete.
* -
*/
Double_t SimultaneousFitLastHope(double *x, double *par) {
Double_t sumOfTheSubFits = 0;
sumOfTheSubFits = ( x[0] < 2*TMath::Pi() ) ? CosTheta( x, par ) : PhiV2( x, par );
return sumOfTheSubFits;
}
//_____________________________________________________________________________
/* - Dummy fit CosTheta only.
* -
*/
Double_t DummyFitCosTheta(double *x, double *par) {
Double_t sumOfTheSubFits = 0;
sumOfTheSubFits = CosTheta( x, par );
return sumOfTheSubFits;
}
//_____________________________________________________________________________
/* - Simultaneous fit complete.
* -
*/
Double_t DummyFitPhi(double *x, double *par) {
Double_t sumOfTheSubFits = 0;
sumOfTheSubFits = DummyPhi( x, par );
return sumOfTheSubFits;
}
//_____________________________________________________________________________
/* - Data needed for the global fit.
* - They have to be global to be visible.
*/
// std::vector< std::pair< Double_t, Double_t > > coords;
std::vector< Double_t > coords;
std::vector< Double_t > values;
std::vector< Double_t > errors;
// void FcnForMinimisation(Int_t & /*nPar*/, Double_t * /*grad*/ , Double_t &fval, Double_t *p, Int_t /*iflag */ )
void FcnForMinimisation(Int_t &npar, Double_t *gin, Double_t &f, Double_t *p, Int_t iflag)
{
// cout << "HI" << flush << endl;
Int_t n = coords.size();
// cout << "n is " << n << flush << endl;
// Int_t n = 40;
Double_t chi2 = 0;
Double_t tmp,x[3];
for ( Int_t i = 0; i < n; ++i ) {
if ( i < 15 ) {
x[0] = coords[i];
x[1] = 0;
x[2] = 0;
} else if ( i < 40 ) {
x[0] = 0;
x[1] = coords[i];
x[2] = 0;
} else {
x[0] = 0;
x[1] = 0;
x[2] = coords[i];
}
// cout << "HI2" << flush << endl;
if ( values[i] != 0 ) {
tmp = ( values[i] - SimultaneousFit( x, p ) ) / errors[i];
// tmp = ( values[i] - DummyFitCosTheta( x, p ) ) / errors[i];
// tmp = ( values[i] - DummyFitPhi( x, p ) ) / errors[i];
} else {
tmp = 0;
}
chi2 += tmp*tmp;
}
f = chi2;
cout << "ChiSquared = " << chi2 << endl;
}
//_____________________________________________________________________________
void FcnForMinimisationV2(Int_t &npar, Double_t *gin, Double_t &f, Double_t *p, Int_t iflag)
{
Int_t n = coords.size();
Double_t chi2 = 0;
Double_t tmp,x[2];
for ( Int_t i = 0; i < n; ++i ) {
if ( i < 15 ) {
x[0] = coords[i];
x[1] = 0;
} else if ( i < 40 ) {
// x[0] = coords[i] + 4*TMath::Pi();
x[0] = coords[i] + 4*3.14;
x[1] = 0;
} else {
// x[0] = coords[i] + 8*TMath::Pi();
x[0] = coords[i] + 8*3.14;
x[1] = 0;
}
if ( values[i] != 0 ) {
tmp = ( values[i] - SimultaneousFitLastHopeComplete( x, p ) ) / errors[i];
// tmp = ( values[i] - SimultaneousFit( x, p ) ) / errors[i];
} else {
tmp = 0;
}
chi2 += tmp*tmp;
}
f = chi2;
cout << "ChiSquared = " << chi2 << endl;
}
//_____________________________________________________________________________
void FcnForMinimisationV3(Int_t &npar, Double_t *gin, Double_t &f, Double_t *p, Int_t iflag)
{
Int_t n = coords.size();
Double_t chi2 = 0;
Double_t tmp,x[2];
// cout << "SignalRangeModeFromBash = " << SignalRangeModeFromBash << endl;
// cout << "Counter = " << Counter << endl;
for ( Int_t i = 0; i < n; ++i ) {
if ( i < 25 ) {
// x[0] = coords[i] + 4*TMath::Pi();
x[0] = coords[i] + 4*3.14;
x[1] = 0;
} else if ( i < 50 ) {
// x[0] = coords[i] + 8*TMath::Pi();
x[0] = coords[i] + 8*3.14;
x[1] = 0;
} else {
x[0] = coords[i];
x[1] = 0;
}
if ( values[i] != 0 ) {
tmp = ( values[i] - SimultaneousFitLastHopeComplete( x, p ) ) / errors[i];
// tmp = ( values[i] - SimultaneousFit( x, p ) ) / errors[i];
} else {
tmp = 0;
}
chi2 += tmp*tmp;
}
f = chi2;
cout << "ChiSquared = " << chi2 << endl;
ReducedChiSquare = chi2;
}
//_____________________________________________________________________________
/* - Fit function for the helicity case. It is basically a parabolic fit...
-
*/
void PolarisationHeMinuit1D( Int_t SignalRangeSelectionMode = 0, Int_t FitRangeMode = 0 ){
// SignalRangeModeFromBash = SignalRangeSelectionMode;
TDatime d;
// TFile* file1D = new TFile(Form("pngResults/%d-%2.2d-%2.2d/1Dresults/PolarisationCorrectedCs1D.root", d.GetYear(), d.GetMonth(), d.GetDay() ) );
TFile* file1D = 0x0;
if ( SignalRangeSelectionMode == 0 ) {
file1D = new TFile(Form("pngResults/%d-%2.2d-%2.2d/1Dresults/PolarisationCorrectedHe1D.root", d.GetYear(), d.GetMonth(), d.GetDay() ) );
} else if ( SignalRangeSelectionMode == 1 ) {
file1D = new TFile("pngResults/PolTrigger1/1Dresults/PolarisationCorrectedHe1D_trigger_differentAxE.root" );
} else if ( SignalRangeSelectionMode == 2 ) {
file1D = new TFile("pngResults/PolTrigger2/1Dresults/PolarisationCorrectedHe1D_trigger_differentAxE.root" );
} else if ( SignalRangeSelectionMode == 3 ) {
file1D = new TFile("pngResults/PolTrigger3/1Dresults/PolarisationCorrectedHe1D_trigger_differentAxE.root" );
} else if ( SignalRangeSelectionMode == 4 ) {
file1D = new TFile("pngResults/PolTrigger4/1Dresults/PolarisationCorrectedHe1D_trigger_differentAxE.root" );
} else if ( SignalRangeSelectionMode == 5 ) {
file1D = new TFile("pngResults/PolTrigger5/1Dresults/PolarisationCorrectedHe1D_trigger_differentAxE.root" );
} else if ( SignalRangeSelectionMode == 6 ) {
file1D = new TFile("pngResults/PolTrigger6/1Dresults/PolarisationCorrectedHe1D_trigger_differentAxE.root" );
} else if ( SignalRangeSelectionMode == 7 ) {
file1D = new TFile("pngResults/PolTrigger7/1Dresults/PolarisationCorrectedHe1D_trigger_differentAxE.root" );
} else {
file1D = new TFile(Form("pngResults/%d-%2.2d-%2.2d/1Dresults/PolarisationCorrectedHe1D.root", d.GetYear(), d.GetMonth(), d.GetDay() ) );
}
TH1F* CorrectedCosTheta = (TH1F*) file1D->Get("CorrCosThetaH");
TH1F* CorrectedPhi = (TH1F*) file1D->Get("CorrPhiH");
TH1F* CorrectedTildePhi = (TH1F*) file1D->Get("CorrTildePhiH");
Double_t CosThetaLowLimit = -1;
Double_t CosThetaUpperLimit = +1;
Double_t PhiLowLimit = -3.14;
Double_t PhiUpperLimit = +3.14;
// TF2 * helicitySimultaneously1d = new TF2( "helicitySimultaneously1d",
// my2Dfunc,xlow2,xup2,ylow2,yup2, 10);
Int_t nBinsCosTheta = CorrectedCosTheta->GetNbinsX();
Int_t nBinsPhi = CorrectedPhi ->GetNbinsX();
Int_t nBinsTildePhi = CorrectedTildePhi->GetNbinsX();
/// reset data structure
// coords = std::vector<std::pair<double,double> >();
coords = std::vector<Double_t>();
values = std::vector<Double_t>();
errors = std::vector<Double_t>();
/// fill data structure
// for (Int_t ix = 6; ix <= nBinsCosTheta-5; ++ix) {
// coords.push_back( CorrectedCosTheta->GetXaxis()->GetBinCenter(ix) );
// values.push_back( CorrectedCosTheta->GetBinContent(ix) );
// errors.push_back( CorrectedCosTheta->GetBinError(ix) );
// }
for (Int_t iy = 1; iy <= nBinsPhi; ++iy) {
coords.push_back( CorrectedPhi ->GetXaxis()->GetBinCenter(iy) );
values.push_back( CorrectedPhi ->GetBinContent(iy) );
errors.push_back( CorrectedPhi ->GetBinError(iy) );
}
for (Int_t iy = 1; iy <= nBinsTildePhi; ++iy) {
coords.push_back( CorrectedTildePhi->GetXaxis()->GetBinCenter(iy) );
values.push_back( CorrectedTildePhi->GetBinContent(iy) );
errors.push_back( CorrectedTildePhi->GetBinError(iy) );
}
for (Int_t ix = 6; ix <= nBinsCosTheta-5; ++ix) {
if ( FitRangeMode == 1 ) {
if ( (ix == 6) || (ix == nBinsCosTheta-5) ) continue;
} else if ( FitRangeMode == 2 ) {
if ( (ix == 6) || (ix == 7) || (ix == nBinsCosTheta-6) || (ix == nBinsCosTheta-5) ) continue;
} else {
}
// Counter+=1;
coords.push_back( CorrectedCosTheta->GetXaxis()->GetBinCenter(ix) );
values.push_back( CorrectedCosTheta->GetBinContent(ix) );
errors.push_back( CorrectedCosTheta->GetBinError(ix) );
}
for( Int_t i = 0; i < 50; i++ ){
cout << i << " " << coords[i] << " " << values[i] << endl;
}
TMinuit *gMinuit = new TMinuit(6);
// gMinuit->SetFCN(FcnForMinimisation);
// gMinuit->SetFCN(FcnForMinimisationV2);
gMinuit->SetFCN(FcnForMinimisationV3);
gMinuit->DefineParameter(0, "LambdaTheta", 1., 0.1, -2, 2);
gMinuit->DefineParameter(1, "NormalTheta", 2.60e+04, 100, 2.2e+04, 3.2e+04);
// gMinuit->DefineParameter(2, "NormalisPhi", 4137, 100, 4000, 4400);
gMinuit->DefineParameter(2, "NormalisPhi", 8300, 100, 7700, 8700);
gMinuit->DefineParameter(3, "LambdaPhi", 0, 0.1, -2, 2 );
gMinuit->DefineParameter(4, "NormalisTildePhi", 8300, 100, 7700, 8900);
gMinuit->DefineParameter(5, "LambdaThetaPhi", 0, 0.1, -2, 2 );
gMinuit->Command("SIMPLEX");
gMinuit->Command("MIGRAD");
gMinuit->Command("MIGRAD");
gMinuit->Command("MINOS");
Double_t LambdaTheta, LambdaPhi, NormalTheta, NormalisPhi, LambdaThetaPhi, NormalisTildePhi;
Double_t LambdaThetaErr, LambdaPhiErr, NormalThetaErr, NormalisPhiErr, LambdaThetaPhiErr, NormalisTildePhiErr;
gMinuit->GetParameter(0, LambdaTheta, LambdaThetaErr );
gMinuit->GetParameter(1, NormalTheta, NormalThetaErr );
gMinuit->GetParameter(2, NormalisPhi, NormalisPhiErr );
gMinuit->GetParameter(3, LambdaPhi, LambdaPhiErr );
gMinuit->GetParameter(4, NormalisTildePhi, NormalisTildePhiErr);
gMinuit->GetParameter(5, LambdaThetaPhi, LambdaThetaPhiErr );
printf("LambdaTheta : %+.7f +- %.7f\n",LambdaTheta, LambdaThetaErr );
printf("NormalTheta : %+.7f +- %.7f\n",NormalTheta, NormalThetaErr );
printf("NormalisPhi : %+.7f +- %.7f\n",NormalisPhi, NormalisPhiErr );
printf("LambdaPhi : %+.7f +- %.7f\n",LambdaPhi, LambdaPhiErr );
printf("NormalisTildePhi: %+.7f +- %.7f\n",NormalisTildePhi,NormalisTildePhiErr);
printf("LambdaThetaPhi : %+.7f +- %.7f\n",LambdaThetaPhi, LambdaThetaPhiErr );
Double_t amin,edm,errdef;
Int_t nvpar,nparx,icstat;
gMinuit->mnstat(amin,edm,errdef,nvpar,nparx,icstat);
gMinuit->mnprin(3,amin);
gStyle->SetOptStat(0);
TF1* Model = new TF1("Model", "[1]*(1+[0]*x*x)/(3+[0])", -0.6 ,0.6 );
new TCanvas;
gPad->SetMargin(0.13,0.01,0.12,0.01);
CorrectedCosTheta->GetXaxis()->SetTitleOffset(1.15);
// CorrectedCosTheta->GetYaxis()->SetTitleOffset(1.25);
CorrectedCosTheta->GetYaxis()->SetTitleOffset(1.55);
CorrectedCosTheta->GetXaxis()->SetTitleSize(0.045);
CorrectedCosTheta->GetYaxis()->SetTitleSize(0.045);
CorrectedCosTheta->GetXaxis()->SetLabelSize(0.045);
CorrectedCosTheta->GetYaxis()->SetLabelSize(0.045);
CorrectedCosTheta->GetXaxis()->SetTitleFont(42);
CorrectedCosTheta->GetYaxis()->SetTitleFont(42);
CorrectedCosTheta->GetXaxis()->SetLabelFont(42);
CorrectedCosTheta->GetYaxis()->SetLabelFont(42);
CorrectedCosTheta->GetXaxis()->SetNdivisions(408);
CorrectedCosTheta->GetYaxis()->SetRangeUser(0., CorrectedCosTheta->GetMaximum()*2);
// CorrectedCosTheta->GetXaxis()->SetRangeUser(2, 6);
CorrectedCosTheta->SetTitle( Form( ";cos(#theta); ACCxEFF Corrected Counts / %.3f",
CorrectedCosTheta->GetXaxis()->GetBinWidth(1) ) );
CorrectedCosTheta->Draw();
TLatex* latex = new TLatex();
latex->SetTextSize(0.05);
latex->SetTextFont(42);
latex->SetTextAlign(11);
latex->SetNDC();
latex->DrawLatex(0.17,0.94,"ALICE Performance, PbPb #sqrt{s_{NN}} = 5.02 TeV");
latex->SetTextSize(0.045);
latex->DrawLatex(0.55,0.84,"UPC, Run 2 dataset, HE");
latex->DrawLatex(0.55,0.78,"Simultaneous Minuit Fit");
latex->DrawLatex(0.55,0.70,Form("#lambda_{#theta} = %.3f #pm %.3f", LambdaTheta, LambdaThetaErr));
// latex->DrawLatex(0.55,0.62,Form("#tilde{#chi} = %.3f #pm %.3f", LambdaTheta, LambdaThetaErr));
latex->DrawLatex(0.55,0.18,Form( "#tilde{#chi}^{2} = %.2f / %.2d = %.2f ",
ReducedChiSquare,
65 - gMinuit->GetNumFreePars(),
ReducedChiSquare/((Double_t) (65 - gMinuit->GetNumFreePars()))
)
);
Model->SetParameter( 0, LambdaTheta );
Model->SetParameter( 1, NormalTheta );
Model->SetNpx(500);
Model->Draw("same");
// gPad->SaveAs("pngResults/CosThetaCsMinuit.png", "recreate");
if ( SignalRangeSelectionMode == 0 || FitRangeMode == 0 ) gPad->SaveAs("pngResults/CosThetaHeMinuit.png", "recreate");
gPad->SaveAs(Form("pngResults/CosThetaHeMinuit_SigEx_%d_FitRange_%d_HE_trigger_differentAxE.png", SignalRangeSelectionMode, FitRangeMode), "recreate");
TF1* Model2 = new TF1("Model2", "[1]*(1+2*[2]*cos(2*x)/(3+[0]))", -3.1 ,3.1 );
new TCanvas;
gPad->SetMargin(0.13,0.01,0.12,0.01);
CorrectedPhi->GetXaxis()->SetTitleOffset(1.15);
// CorrectedPhi->GetYaxis()->SetTitleOffset(1.25);
CorrectedPhi->GetYaxis()->SetTitleOffset(1.55);
CorrectedPhi->GetXaxis()->SetTitleSize(0.045);
CorrectedPhi->GetYaxis()->SetTitleSize(0.045);
CorrectedPhi->GetXaxis()->SetLabelSize(0.045);
CorrectedPhi->GetYaxis()->SetLabelSize(0.045);
CorrectedPhi->GetXaxis()->SetTitleFont(42);
CorrectedPhi->GetYaxis()->SetTitleFont(42);
CorrectedPhi->GetXaxis()->SetLabelFont(42);
CorrectedPhi->GetYaxis()->SetLabelFont(42);
CorrectedPhi->GetXaxis()->SetNdivisions(408);
CorrectedPhi->GetYaxis()->SetRangeUser(0., CorrectedPhi->GetMaximum()*2);
// CorrectedPhi->GetXaxis()->SetRangeUser(2, 6);
CorrectedPhi->SetTitle( Form( ";#phi; ACCxEFF Corrected Counts / %.3f",
CorrectedPhi->GetXaxis()->GetBinWidth(1) ) );
CorrectedPhi->Draw();
TLatex* latex2 = new TLatex();
latex2->SetTextSize(0.05);
latex2->SetTextFont(42);
latex2->SetTextAlign(11);
latex2->SetNDC();
latex2->DrawLatex(0.17,0.94,"ALICE Performance, PbPb #sqrt{s_{NN}} = 5.02 TeV");
latex2->SetTextSize(0.045);
latex2->DrawLatex(0.55,0.84,"UPC, Run 2 dataset, HE");
latex2->DrawLatex(0.55,0.78,"Simultaneous Minuit Fit");
latex2->DrawLatex(0.55,0.70,Form("#lambda_{#phi} = %.3f #pm %.3f", LambdaPhi, LambdaPhiErr));
latex2->DrawLatex(0.55,0.62,Form("#lambda_{#theta} = %.3f #pm %.3f", LambdaTheta, LambdaThetaErr));
// latex2->DrawLatex(0.55,0.62,Form("#tilde{#chi} = %.3f #pm %.3f", LambdaTheta, LambdaThetaErr));
latex2->DrawLatex(0.55,0.18,Form( "#tilde{#chi}^{2} = %.2f / %.2d = %.2f ",
ReducedChiSquare,
65 - gMinuit->GetNumFreePars(),
ReducedChiSquare/((Double_t) (65 - gMinuit->GetNumFreePars()))
)
);
Model2->SetParameter( 0, LambdaTheta );
Model2->SetParameter( 2, LambdaPhi );
Model2->SetParameter( 1, NormalisPhi );
Model2->SetNpx(500);
Model2->Draw("same");
// gPad->SaveAs("pngResults/PhiCsMinuit.png", "recreate");
if ( SignalRangeSelectionMode == 0 || FitRangeMode == 0 ) gPad->SaveAs("pngResults/PhiHeMinuit.png", "recreate");
gPad->SaveAs(Form("pngResults/PhiHeMinuit_SigEx_%d_FitRange_%d_HE_trigger_differentAxE.png", SignalRangeSelectionMode, FitRangeMode), "recreate");
TF1* Model3 = new TF1("Model3", "[1]*(1+TMath::Sqrt(2)*[2]*cos(2*x)/(3+[0]))", 0 ,6.2 );
new TCanvas;
gPad->SetMargin(0.13,0.01,0.12,0.01);
CorrectedTildePhi->GetXaxis()->SetTitleOffset(1.15);
// CorrectedTildePhi->GetYaxis()->SetTitleOffset(1.25);
CorrectedTildePhi->GetYaxis()->SetTitleOffset(1.55);
CorrectedTildePhi->GetXaxis()->SetTitleSize(0.045);
CorrectedTildePhi->GetYaxis()->SetTitleSize(0.045);
CorrectedTildePhi->GetXaxis()->SetLabelSize(0.045);
CorrectedTildePhi->GetYaxis()->SetLabelSize(0.045);
CorrectedTildePhi->GetXaxis()->SetTitleFont(42);
CorrectedTildePhi->GetYaxis()->SetTitleFont(42);
CorrectedTildePhi->GetXaxis()->SetLabelFont(42);
CorrectedTildePhi->GetYaxis()->SetLabelFont(42);
CorrectedTildePhi->GetXaxis()->SetNdivisions(408);
CorrectedTildePhi->GetYaxis()->SetRangeUser(0., CorrectedPhi->GetMaximum()*2);
// CorrectedTildePhi->GetXaxis()->SetRangeUser(2, 6);
CorrectedTildePhi->SetTitle( Form( ";#tilde{#phi}; ACCxEFF Corrected Counts / %.3f",
CorrectedTildePhi->GetXaxis()->GetBinWidth(1) ) );
CorrectedTildePhi->Draw();
TLatex* latex3 = new TLatex();
latex3->SetTextSize(0.05);
latex3->SetTextFont(42);
latex3->SetTextAlign(11);
latex3->SetNDC();
latex3->DrawLatex(0.17,0.94,"ALICE Performance, PbPb #sqrt{s_{NN}} = 5.02 TeV");
latex3->SetTextSize(0.045);
latex3->DrawLatex(0.55,0.84,"UPC, Run 2 dataset, HE");
latex3->DrawLatex(0.55,0.78,"Simultaneous Minuit Fit");
// latex3->DrawLatex(0.55,0.70,Form("#lambda_{#phi} = %.3f #pm %.3f", LambdaPhi, LambdaPhiErr));
latex3->DrawLatex(0.55,0.70,Form("#lambda_{#theta} = %.3f #pm %.3f", LambdaTheta, LambdaThetaErr));
latex3->DrawLatex(0.55,0.62,Form("#lambda_{#theta#phi} = %.3f #pm %.3f", LambdaThetaPhi, LambdaThetaPhiErr));
// latex3->DrawLatex(0.55,0.62,Form("#tilde{#chi} = %.3f #pm %.3f", LambdaTheta, LambdaThetaErr));
latex3->DrawLatex(0.55,0.18,Form( "#tilde{#chi}^{2} = %.2f / %.2d = %.2f ",
ReducedChiSquare,
65 - gMinuit->GetNumFreePars(),
ReducedChiSquare/((Double_t) (65 - gMinuit->GetNumFreePars()))
)
);
Model3->SetParameter( 0, LambdaTheta );
Model3->SetParameter( 2, LambdaThetaPhi );
Model3->SetParameter( 1, NormalisTildePhi );
Model3->SetNpx(500);
Model3->Draw("same");
// gPad->SaveAs("pngResults/TildePhiCsMinuit.png", "recreate");
if ( SignalRangeSelectionMode == 0 || FitRangeMode == 0 ) gPad->SaveAs("pngResults/TildePhiHeMinuit.png", "recreate");
gPad->SaveAs(Form("pngResults/TildePhiHeMinuit_SigEx_%d_FitRange_%d_HE_trigger_differentAxE.png", SignalRangeSelectionMode, FitRangeMode), "recreate");
TFile SavingFile( Form("pngResults/PolTrigger%d/1Dresults/Parameters_SigEx_0_FitRange_0_HE_trigger_differentAxE.root", SignalRangeSelectionMode ), "recreate" );
// TFile SavingFile( Form("pngResults/Parameters_SigEx_%d_FitRange_%d_CS.root", SignalRangeSelectionMode, FitRangeMode), "recreate" );
TH1F* SavingParamH = new TH1F( "SavingParamH", "SavingParamH", 10, 0, 10 );
SavingParamH->SetBinContent( 1, LambdaTheta );
SavingParamH->SetBinContent( 2, LambdaPhi );
SavingParamH->SetBinContent( 3, LambdaThetaPhi );
SavingParamH->SetBinContent( 6, LambdaThetaErr );
SavingParamH->SetBinContent( 7, LambdaPhiErr );
SavingParamH->SetBinContent( 8, LambdaThetaPhiErr );
SavingParamH->SetBinError( 1, 0 );
SavingParamH->SetBinError( 2, 0 );
SavingParamH->SetBinError( 3, 0 );
SavingParamH->SetBinError( 6, 0 );
SavingParamH->SetBinError( 7, 0 );
SavingParamH->SetBinError( 8, 0 );
SavingParamH ->Write();
CorrectedCosTheta->Write();
CorrectedPhi ->Write();
CorrectedTildePhi->Write();
SavingFile.Close();
}
//_____________________________________________________________________________
/* - Fit function for the helicity case.
* - It is basically a parabolic fit...
* - Only CosTheta Fit.
*/
void fitOnlyCosTheta(){
TFile* fileNew = new TFile("pngResults/TH1corr25bins.root");
TH1F* CorrectedCosTheta = (TH1F*) fileNew->Get("RawCosTheta2H");
Double_t CosThetaLowLimit = -1;
Double_t CosThetaUpperLimit = +1;
Int_t nBinsCosTheta = CorrectedCosTheta->GetNbinsX();
/// reset data structure
// coords = std::vector<std::pair<double,double> >();
coords = std::vector<Double_t>();
values = std::vector<Double_t>();
errors = std::vector<Double_t>();
/// fill data structure
for (Int_t ix = 7; ix <= nBinsCosTheta-6; ++ix) {
// coords.push_back( std::make_pair(xaxis1->GetBinCenter(ix), yaxis1->GetBinCenter(iy) ) );
coords.push_back( CorrectedCosTheta->GetXaxis()->GetBinCenter(ix) );
values.push_back( CorrectedCosTheta->GetBinContent(ix) );
errors.push_back( CorrectedCosTheta->GetBinError(ix) );
}
for(int i=0; i < 18; i++){
cout << i << " " << coords[i] << " " << values[i] << endl;
}
TMinuit *gMinuit = new TMinuit(2);
gMinuit->SetFCN(FcnForMinimisation);
gMinuit->DefineParameter(0, "LambdaTheta", 1., 0.1, -2, 2);
gMinuit->DefineParameter(1, "NormalTheta", 2.60e+04, 100, 2.58e+04, 2.62e+04);
gMinuit->Command("SIMPLEX");
gMinuit->Command("MIGRAD");
// gMinuit->Command("MIGRAD");
gMinuit->Command("MINOS");
Double_t LambdaTheta,LambdaPhi,NormalTheta,NormalisPhi;
Double_t LambdaThetaErr,LambdaPhiErr,NormalThetaErr,NormalisPhiErr;
gMinuit->GetParameter(0,LambdaTheta,LambdaThetaErr);
gMinuit->GetParameter(1,NormalTheta,NormalThetaErr);
printf("LambdaTheta: %+.7f +- %.7f\n",LambdaTheta,LambdaThetaErr);
printf("NormalTheta: %+.7f +- %.7f\n",NormalTheta,NormalThetaErr);
Double_t amin,edm,errdef;
Int_t nvpar,nparx,icstat;
gMinuit->mnstat(amin,edm,errdef,nvpar,nparx,icstat);
gMinuit->mnprin(3,amin);
TF1* Model = new TF1("Model", "[1]*(1+[0]*x*x)/(3+[0])", -1 ,1 );
new TCanvas;
CorrectedCosTheta->Draw();
Model->SetParameter( 0, LambdaTheta );
Model->SetParameter( 1, NormalTheta );
Model->SetNpx(500);
Model->Draw("same");
}
//_____________________________________________________________________________
/* - Fit function for the helicity case.
* - Flat Phi ONLY...
* -
*/
void fitOnlyPhi(){
TFile* file1D = new TFile("pngResults/TH1corr.root");
TH1F* CorrectedPhi = (TH1F*) file1D->Get("RawPhiH");
Double_t PhiLowLimit = -3.14;
Double_t PhiUpperLimit = +3.14;
Int_t nBinsPhi = CorrectedPhi ->GetNbinsX();
/// reset data structure
// coords = std::vector<std::pair<double,double> >();
coords = std::vector<Double_t>();
values = std::vector<Double_t>();
errors = std::vector<Double_t>();
/// fill data structure
for (Int_t iy = 1; iy <= nBinsPhi; ++iy) {
coords.push_back( CorrectedPhi ->GetXaxis()->GetBinCenter(iy) );
values.push_back( CorrectedPhi ->GetBinContent(iy) );
errors.push_back( CorrectedPhi ->GetBinError(iy) );
}
for(int i=0; i < 50; i++){
cout << i << " " << coords[i] << " " << values[i] << endl;
}
TMinuit *gMinuit = new TMinuit(2);
gMinuit->SetFCN(FcnForMinimisation);
// gMinuit->DefineParameter(0, "LambdaTheta", 1., 0.1, -2, 2);
// gMinuit->DefineParameter(1, "NormalTheta", 2.60e+04, 100, 2.58e+04, 2.62e+04);
// gMinuit->DefineParameter(1, "NormalTheta", 2.52497e+04, 100, 2.50e+04, 2.55e+04);
gMinuit->DefineParameter(0, "NormalisPhi", 4000, 100, 3500, 5000);
gMinuit->DefineParameter(1, "LambdaPhi", 0, 0.1, -2, 2);
gMinuit->Command("SIMPLEX");
gMinuit->Command("MIGRAD");
// gMinuit->Command("MIGRAD");
// gMinuit->Command("MINOS");
Double_t LambdaTheta,LambdaPhi,NormalTheta,NormalisPhi;
Double_t LambdaThetaErr,LambdaPhiErr,NormalThetaErr,NormalisPhiErr;
// gMinuit->GetParameter(0,LambdaTheta,LambdaThetaErr);
// gMinuit->GetParameter(1,NormalTheta,NormalThetaErr);
gMinuit->GetParameter(0,NormalisPhi,NormalisPhiErr);
gMinuit->GetParameter(1,LambdaPhi, LambdaPhiErr);
printf("LambdaTheta: %+.7f +- %.7f\n",LambdaTheta,LambdaThetaErr);
printf("NormalTheta: %+.7f +- %.7f\n",NormalTheta,NormalThetaErr);
printf("NormalisPhi: %+.7f +- %.7f\n",NormalisPhi,NormalisPhiErr);
printf("LambdaPhi : %+.7f +- %.7f\n",LambdaPhi, LambdaPhiErr);
Double_t amin,edm,errdef;
Int_t nvpar,nparx,icstat;
gMinuit->mnstat(amin,edm,errdef,nvpar,nparx,icstat);
gMinuit->mnprin(3,amin);
TF1* Model2 = new TF1("Model2", "[1]*(1+2*[2]*cos(2*x)/(3+[0]))", -3.1 ,3.1 );
new TCanvas;
CorrectedPhi->Draw();
Model2->SetParameter( 0, 1.13220 );
Model2->SetParameter( 1, NormalisPhi );
Model2->SetParameter( 2, LambdaPhi );
Model2->SetNpx(500);
Model2->Draw("same");
}
| [
"simone.ragoni@cern.ch"
] | simone.ragoni@cern.ch |
be6e3c14602e2bdb47c0ce0d4b9cf5210b8a7e00 | 9974ebf5cd7e0c11f1e1d8c270f10683caba0388 | /A5/A5.cpp | fd3cf2660738c055b8091a26667bc6159c348527 | [] | no_license | intergrals/CS488 | 1250a7ec4c1277491f82be98a604dd7773d81633 | 4862aafc7b4d1faba4fdc9875cd9a93a18a8e011 | refs/heads/master | 2021-10-28T19:47:48.945004 | 2019-04-24T18:52:41 | 2019-04-24T18:52:41 | 151,970,928 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 33,890 | cpp | // Fall 2018
#include <glm/ext.hpp>
#include <thread>
#include <mutex>
#include <random>
#include <iomanip>
#include <stack>
#include <algorithm>
#include <queue>
#include "A5.hpp"
#include "GeometryNode.hpp"
std::mutex mtx;
std::vector<photon> pList;
TreeNode *pTree;
bool donePM = false;
void loading(float percent) {
float p = percent;
std::cout << '[';
for (int i = 0; i < 25; i++) {
if (percent >= 4) {
std::cout << '#';
percent -= 4;
} else if (percent >= 2) {
std::cout << '=';
percent -= 2;
} else {
std::cout << '-';
}
}
std::cout << ']';
std::cout.width(4);
std::cout << std::right << p << '%' << '\r' << std::flush;
}
// n-closest neighbours
std::vector<photon> getNClosest(glm::vec3 n) {
auto cmp = [&n](photon a, photon b) { return glm::distance(n, a.pos) < glm::distance(n, b.pos); };
std::priority_queue<photon, std::vector<photon>, decltype(cmp)> pq(cmp);
for (auto p : pList) {
pq.push(p);
if (pq.size() > ClosestN) {
pq.pop();
}
}
std::vector<photon> ret;
while (!pq.empty()) {
ret.push_back(std::move(const_cast<photon &>(pq.top())));
pq.pop();
}
return ret;
}
// KD TREE
// Make kd tree for photons
TreeNode *makeKD(char layer, uint start, uint end) {
// tree depth value
uint i;
if (layer == 'x') i = 0;
else if (layer == 'y') i = 1;
else i = 2;
char nextLayer;
if (layer == 'z') nextLayer = 'x';
else nextLayer = char(layer + 1);
if (end - start == 0) {
TreeNode *retNode = new TreeNode(pList.front(), nextLayer);
retNode->min = retNode->p.pos;
retNode->max = retNode->p.pos;
return retNode;
}
uint mid = (end + start) / 2;
std::nth_element(pList.begin() + start, pList.begin() + mid, pList.begin() + end,
[&i](photon a, photon b) { return a.pos[i] < b.pos[i]; });
TreeNode *node = new TreeNode(pList[pList.size() / 2], layer);
// Set bounds
for (auto p = pList.begin() + start; p != pList.begin() + end; p++) {
node->min.x = glm::min(node->min.x, p->pos.x);
node->min.y = glm::min(node->min.y, p->pos.y);
node->min.z = glm::min(node->min.z, p->pos.z);
node->max.x = glm::max(node->max.x, p->pos.x);
node->max.y = glm::max(node->max.y, p->pos.y);
node->max.z = glm::max(node->max.z, p->pos.z);
}
std::cout << glm::to_string(node->p.pos) << glm::to_string(node->min) << glm::to_string(node->max) << std::endl;
if (mid - start >= 1) {
node->left = makeKD(nextLayer, start, mid - 1);
}
if (end - mid >= 1) {
node->right = makeKD(nextLayer, mid + 1, end);
}
return node;
}
// Check every node for intersection.
surface checkIntersect(const SceneNode &node, ray r) {
surface ret;
r.E = glm::vec3(glm::inverse(node.trans) * glm::vec4(r.E, 1.0f));
r.P = glm::vec3(glm::inverse(node.trans) * glm::vec4(r.P, 1.0f));
r.trans = r.trans * node.trans;
for (SceneNode *n: node.children) {
// Recursive intersection check
surface s;
// Child intersection
s = checkIntersect(*n, r);
if (!s.intersected) {
} else if (!ret.intersected) {
ret = s;
} else if (s.t < ret.t) {
ret = s;
}
// Check intersection for geometry nodes only
if (n->m_nodeType == NodeType::GeometryNode) {
GeometryNode *gNode = static_cast<GeometryNode *>(n);
s = gNode->intersection(r);
if (!s.intersected) {
continue;
} else if (!ret.intersected) {
ret = s;
} else if (s.t < ret.t) {
ret = s;
}
}
}
return ret;
}
/* Given parameters about the surface of an intersection point, the light sources, and a list of scene nodes, determine the colour of the intersection point.
* A list of scene nodes is required in order to determine whether a shadow is cast over the point.
*/
std::random_device rd;
std::mt19937 mt(rd());
glm::vec3 getColour(surface s, const std::list<Light *> &lights, SceneNode *root, glm::vec3 ambient) {
glm::vec3 Lout(0);
float distRange = 1;
std::uniform_real_distribution<double> dist(-distRange, distRange);
// Display photon mapping if enabled
if (ShowPhotonMapping && donePM) {
uint numWithin = 0;
glm::vec3 pColour(0.0f);
for (photon p : pList) {
//std::cout << glm::distance( s.intersect_pt, p.pos ) << std::endl;
if (glm::distance(s.intersect_pt, p.pos) < 0.01) {
pColour += p.intensity;
numWithin++;
}
}
if (numWithin) {
pColour /= numWithin;
return pColour;
}
}
ray lR;
lR.E = s.intersect_pt;
lR.origE = s.intersect_pt;
for (auto *l : lights) {
// Check light ray intersection.
glm::vec3 colAccumulator(0);
uint numConts = 0;
bool moveOn = (SoftShad == 1) ? true : false;
for (int i = 0; i < SoftShad; i++) {
if (moveOn) lR.P = l->position;
else lR.P = l->position + glm::normalize(glm::vec3(dist(mt), -glm::abs(dist(mt)), dist(mt))) / (1/distRange);
if (checkIntersect(*root, lR).intersected) {
numConts++;
continue;
} else if (numConts == 0 && i > SoftShad / 4) {
// If no shadows are being hit, just move onto the next pixel
moveOn = true;
}
glm::vec3 l_dir = glm::normalize(lR.P - lR.E);
double light_dist = glm::length(lR.P - lR.E);
glm::vec3 r = -l_dir + 2 * glm::dot(l_dir, s.n) * s.n;
glm::vec3 col = s.mat->get_kd() * glm::dot(l_dir, s.n) * l->colour
+ s.mat->get_ks() * pow(glm::dot(r, s.v), s.mat->get_shininess()) * l->colour;
col /= (l->falloff[0] + l->falloff[1] * light_dist + l->falloff[2] * light_dist * light_dist);
col[0] = glm::max(col[0], 0.0f);
col[1] = glm::max(col[1], 0.0f);
col[2] = glm::max(col[2], 0.0f);
colAccumulator += col;
if (moveOn) {
Lout += col;
break;
}
}
if (!moveOn) {
colAccumulator /= SoftShad;
Lout += colAccumulator;
}
}
// Add ambient light
Lout += s.mat->get_kd() * ambient;
// Photon colors
if( MaxPhotons > 0 && !ShowPhotonMapping ) {
std::vector<photon> pClosest = getNClosest(s.intersect_pt);
glm::vec3 photonCol(0.0f);
float maxDist = 0.0f;
for (auto p: pClosest) {
photonCol += (glm::dot( -p.dir, p.n ) * Lout * ( p.intensity /*/ pList.size()*/ ) );
//std::cout << glm::to_string(p.dir) << glm::to_string(p.n) << glm::dot( -p.dir, p.n ) << std::endl;
maxDist = glm::max(maxDist, glm::distance(p.pos, s.intersect_pt));
}
//std::cout << glm::to_string(Lout) << std::endl;
Lout = photonCol / ClosestN;
}
return Lout;
}
// Given a ray, a surface normal, and two refractive indices n and nt, calculate refracted ray from n to nt
glm::vec3 getRefractedRay(glm::vec3 r, surface s, std::stack<double> &rIndexes) {
double n;
double nt;
double angle = acos(glm::dot(glm::reflect(r, s.n), s.n));
if (angle > glm::half_pi<double>()) {
// case where ray goes out of object
//std::cout << dot(rayDir, s.n) << " " << acos( glm::dot(rayDir, s.n) ) << std::endl;
s.n = -s.n;
n = rIndexes.top();
rIndexes.pop();
nt = rIndexes.top();
} else {
// case where ray goes into object
n = rIndexes.top();
nt = s.refractiveness;
rIndexes.push(s.refractiveness);
}
// use refraction formula to get new ray direction
glm::vec3 t = n * (r - s.n * dot(r, s.n)) / nt -
s.n * sqrt(1 - pow(n, 2) * (1 - pow(glm::dot(r, s.n), 2)) / pow(nt, 2));
return t;
}
glm::vec3 refraction(glm::vec3 surfaceColour, glm::vec3 rayDir, surface s, std::stack<double> &rIndexes,
const std::list<Light *> &lights, SceneNode *root, glm::vec3 ambient) {
// get refractive indices
// Check if normal is facing away. If it is, then flip it.
glm::vec3 t = getRefractedRay(rayDir, s, rIndexes);
// check if the new ray intersects any objects
ray refR;
refR.origE = s.intersect_pt;
refR.E = s.intersect_pt;
refR.P = refR.E + t;
surface refS = checkIntersect(*root, refR);
// If ray intersects an object with transparency, recursively call function
if (refS.intersected && refS.transparency > 0) {
glm::vec3 nextSurfaceColour = getColour(refS, lights, root, ambient);
return (1 - s.transparency) * surfaceColour +
s.transparency * refraction(nextSurfaceColour, t, refS, rIndexes, lights, root, ambient);
} else if (refS.intersected) {
// If ray intersects an object with no transparency, compute colour and return
return getColour(refS, lights, root, ambient);
} else {
return glm::vec3(0);
}
/*mtx.lock();
//std::cout << glm::dot( rayDir, s.n) << std::endl;
//std::cout << glm::to_string( s.n ) << std::endl;
mtx.unlock();*/
}
// Get the colour of the reflection cast from a surface. There will only be one reflective iteration.
glm::vec3
getReflection(glm::vec3 surfaceColour, glm::vec3 eye, surface s, SceneNode *root, const std::list<Light *> &lights,
glm::vec3 ambient) {
glm::vec3 col;
// Get reflected eye ray
glm::vec3 cReflect = glm::normalize(eye - s.intersect_pt);
cReflect = -cReflect + 2 * glm::dot(cReflect, s.n) * s.n;
// reflected ray
ray rR;
rR.E = s.intersect_pt;
rR.origE = s.intersect_pt;
rR.P = s.intersect_pt + cReflect;
// check intersection of reflected intersection
surface rS = checkIntersect(*root, rR);
uint timesInt = 0;
if (rS.intersected) {
col = getColour(rS, lights, root, ambient);
timesInt++;
} else {
col = glm::vec3(0.0f);
}
if (GlossAmt != 1) {
std::uniform_real_distribution<double> dist(-1.0f, 1.0f);
for (int i = 1; i < GlossAmt; i++) {
rR.P = (s.intersect_pt + cReflect * 25) + glm::normalize(glm::vec3(dist(mt), dist(mt), dist(mt)));
rS = checkIntersect(*root, rR);
if (rS.intersected) {
timesInt++;
glm::vec3 temp = getColour(rS, lights, root, ambient);
//std::cout << glm::to_string( rS.mat->get_kd() ) << glm::to_string(temp) << std::endl;
col += temp;
} else {
col += surfaceColour;
}
}
if (timesInt == 0) return glm::vec3(0);
col /= GlossAmt;
//std::cout << glm::to_string( col ) << std::endl;
}
if( s.metallic ) {
col = glm::vec3( 0.2126 * col.r + 0.7152 * col.g + 0.0722 * col.b );
}
return col;
}
// Cast a ray from the eye to a projected x and y point relative to a screen denoted by topLeft.
glm::vec3 castRayTo(float x, float y,
size_t h, size_t w,
glm::vec3 eye, glm::vec3 topLeft, double pixelSize,
SceneNode *root, const std::list<Light *> &lights,
glm::vec3 ambient) {
ray R;
glm::vec3 P(topLeft.x + pixelSize * x, topLeft.y - pixelSize * y, topLeft.z);
R.origE = eye;
R.E = eye;
R.P = P;
// Check if ray intersects object
surface s = checkIntersect(*root, R);
// if it intersects, calculate the colour through lighting
if (s.intersected) {
// Get surface colour
glm::vec3 Lout = getColour(s, lights, root, ambient);
// Do reflection
if (reflect && s.mat->get_ks().x != 0 && s.mat->get_ks().y != 0 && s.mat->get_ks().z != 0) {
glm::vec3 Lout2 = getReflection(Lout, eye, s, root, lights, ambient);
if (Lout2.x != -1 && Lout2.y != -1 && Lout2.z != -1)
Lout = (1 - s.reflectiveness) * Lout + s.reflectiveness * Lout2;
}
// Do refraction
if (s.transparency > 0) {
std::stack<double> rIndexes;
rIndexes.push(1.0);
Lout = refraction(Lout, glm::normalize(R.P - R.E), s, rIndexes, lights, root, ambient);
}
/*for( int i = 0; i < 1; i++ ) {
double n = 1;
double nt = 1.2;
glm::vec3 t = refraction(glm::normalize(R.P - R.E), s, n, nt, root);
ray refR;
refR.origE = s.intersect_pt;
refR.E = s.intersect_pt;
refR.P = refR.E + t*//* s.intersect_pt + (R.P - R.E)*//*;
surface refS = checkIntersect( *root, refR );
t = refraction( t, refS, nt, n, root );
mtx.lock();
//std::cout << glm::to_string( t );
//std::cout << glm::to_string( glm::normalize( R.P - R.E ) ) << std::endl;
mtx.unlock();
refR.E = refS.intersect_pt;
refR.origE = refS.intersect_pt;
refR.P = refR.E + t*//* refS.intersect_pt + (R.P - R.E)*//*;
refS = checkIntersect( *root, refR );
if( refS.intersected ) {
glm::vec3 Lout3 = getColour( refS, lights, root, ambient );
if( refractMap ) Lout = glm::vec3(1, 0, 0);
else Lout = *//*0.5 * Lout + 0.5 **//* Lout3;
} else {
if( refractMap ) Lout = glm::vec3(0, 0, 1);
else Lout = glm::vec3(0);
}
}*/
return Lout;
} else {
glm::vec3 Lout;
Lout.x = 0;
Lout.y = (float) glm::max(1 - (y / h * 1.3), 0.2);
Lout.z = (float) glm::max(1 - (y / h * 1.3), 0.2);
//std::cout << y << " " << h << " " << superPoints[x][y][2] << std::endl;
float invX = w - x;
if (invX * invX + y * y < (w / 5.0) * (w / 5.0)) {
Lout.x = 1;
Lout.y = 1;
Lout.z = 0;
}
return Lout;
}
}
/*********************************** Photon Mapping (First Pass) **********************************/
// Decide photon path via russian roulette until it is absorbed or lost.
photon tracePhoton(photon p, SceneNode *root, std::stack<double> &rIndexes, uint bounces) {
std::uniform_real_distribution<double> dist(0.0f, 1.0f);
// If photon bounced 10 times, absorb
if (bounces <= 0) {
return p;
}
ray r(p.pos, p.pos + p.dir);
surface s = checkIntersect(*root, r);
// return if photon fails to intersect
if (!s.intersected) {
p.lost = true;
return p;
}
// probabilities of each action
// Diffuse reflection
double Pd = glm::max(s.mat->get_kd().r * p.intensity.r,
glm::max(s.mat->get_kd().g * p.intensity.g, s.mat->get_kd().b * p.intensity.b)) /
glm::max(p.intensity.r, glm::max(p.intensity.g, p.intensity.b));
// Specular reflection
double Ps = glm::max(s.mat->get_ks().r * p.intensity.r,
glm::max(s.mat->get_ks().g * p.intensity.g, s.mat->get_ks().b * p.intensity.b)) /
glm::max(p.intensity.r, glm::max(p.intensity.g, p.intensity.b));
// Refraction
double Pr = glm::max(s.transparency * p.intensity.r,
glm::max(s.transparency * p.intensity.g, s.transparency * p.intensity.b)) /
glm::max(p.intensity.r, glm::max(p.intensity.g, p.intensity.b));
// TEST
//std::cout << Pd << " + " << Ps << " + " << Pr << " = " << Pd+Ps+Pr << std::endl;
// Choose action
double Xi = dist(mt); // random double between 0 and 1.
uint action;
if (Xi <= Pd) {
// Diffuse reflection chosen
// Adjust photon intensity
p.intensity = p.intensity * (s.mat->get_kd() / Pd);
p.pos = s.intersect_pt;
p.n = s.n;
p.dir = glm::reflect(p.dir, s.n);
// Add photon to ulist
mtx.lock();
pList.push_back(p);
mtx.unlock();
return tracePhoton(p, root, rIndexes, bounces - 1);
} else if (Xi <= Ps + Pd) {
// Specular reflection chosen
// Adjust photon intensity
p.intensity = p.intensity * (s.mat->get_ks() / Ps);
p.pos = s.intersect_pt;
p.n = s.n;
p.dir = glm::reflect(p.dir, s.n);
// Add photon to ulist
mtx.lock();
pList.push_back(p);
mtx.unlock();
return tracePhoton(p, root, rIndexes, bounces - 1);
} else if (Xi <= Ps + Pd + Pr) {
// Refraction chosen
// Adjust photon intensity
p.intensity = p.intensity * (s.transparency / Pr);
p.pos = s.intersect_pt;
p.n = s.n;
p.dir = getRefractedRay(p.dir, s, rIndexes);
// Add photon to ulist
mtx.lock();
pList.push_back(p);
mtx.unlock();
return tracePhoton(p, root, rIndexes, bounces - 1);
} else if (Xi <= 1) {
// Absorption chosen
p.pos = s.intersect_pt;
p.n = s.n;
p.dir = glm::reflect( p.dir, s.n );
return p;
} else {
// Error case
std::cerr << "How can this be? Why is Xi = " << Xi << "?" << std::endl;
exit(1);
}
}
// Cast photons from light source & trace until it is absorbed.
void castPhoton(Light l, SceneNode *root, uint &numPhotons) {
std::uniform_real_distribution<double> dist(-1.0f, 1.0f);
// Cast photon in random direction from light
while (numPhotons < MaxPhotons) {
photon p;
// generate direction TODO: should it be uniform or not (pixar 51)
p.dir = glm::normalize(glm::vec3(dist(mt), dist(mt), dist(mt)));
p.pos = l.position;
p.intensity = l.colour;
std::stack<double> rIndexes;
rIndexes.push(1.0f);
// Trace photon to a termination point (or until lost)
p = tracePhoton(p, root, rIndexes, 10);
// continue without incrementing count if photon has been lost with a 50% chance
if (p.lost) {
if (dist(mt) < 0) numPhotons++;
continue;
}
std::cout << pList.size() << '\r' << std::flush;
mtx.lock();
// Add photon to ulist
pList.push_back(p);
numPhotons++;
mtx.unlock();
}
std::cout << std::endl;
// TODO: Scale photon powers
}
/**************************************************************************************************/
// Make the image.
void makeImage(glm::vec3 **superPoints, Image &image,
size_t h, size_t w,
uint &globalx, uint &globaly,
glm::vec3 eye, glm::vec3 topLeft, double pixelSize,
SceneNode *root, const std::list<Light *> &lights,
glm::vec3 ambient) {
while (1) {
// set x and y
uint x, y;
mtx.lock();
x = globalx;
y = globaly;
if (x < w - 1) {
globalx++;
} else if (y < h - 1) {
globalx = 0;
globaly++;
loading(y * ((Adaptive == 1) ? 100 : 50) / h);
} else {
mtx.unlock();
return;
}
mtx.unlock();
glm::vec3 Lout = castRayTo(x, y, h, w, eye, topLeft, pixelSize, root, lights, ambient);
if (super) {
superPoints[x][y][0] = Lout.x;
superPoints[x][y][1] = Lout.y;
superPoints[x][y][2] = Lout.z;
} else {
image(x, y, 0) = Lout.x;
image(x, y, 1) = Lout.y;
image(x, y, 2) = Lout.z;
}
}
}
// Get colour difference of two pixels.
float getColourDiff(Image &image, uint x1, uint y1, uint x2, uint y2) {
if (x1 < 0 || x2 < 0 || y1 < 0 || y2 < 0) {
std::cerr << "ERROR: Indices out of bounds when retrieving colour difference." << std::endl;
exit(1);
}
return float(glm::sqrt(
glm::pow(image(x1, y1, 0) - image(x2, y2, 0), 2) + glm::pow(image(x1, y1, 1) - image(x2, y2, 1), 2) +
glm::pow(image(x1, y1, 2) - image(x2, y2, 2), 2)));
}
void adaptiveAA(Image &aImage, Image &image,
size_t w, size_t h,
uint &globalx, uint &globaly,
glm::vec3 eye, glm::vec3 topLeft, double pixelSize,
SceneNode *root, const std::list<Light *> &lights,
glm::vec3 ambient) {
while (1) {
// set x and y
uint x, y;
mtx.lock();
x = globalx;
y = globaly;
if (x < w - 1) {
globalx++;
} else if (y < h - 1) {
globalx = 0;
globaly++;
loading(50 + (y * 50) / h);
} else {
mtx.unlock();
return;
}
mtx.unlock();
float colourDiff = 0;
// cmp with left
if (x != 0) {
colourDiff = glm::max(colourDiff, getColourDiff(image, x, y, x - 1, y));
}
// cmp with right
if (x != w - 1) {
colourDiff = glm::max(colourDiff, getColourDiff(image, x, y, x + 1, y));
}
// cmp with bottom
if (y != 0) {
colourDiff = glm::max(colourDiff, getColourDiff(image, x, y, x, y - 1));
}
// cmp with top
if (y != h - 1) {
colourDiff = glm::max(colourDiff, getColourDiff(image, x, y, x, y + 1));
}
if (colourDiff > 0.1) {
if (showAdaptive) {
aImage(x, y, 0) = 0;
aImage(x, y, 1) = 1;
aImage(x, y, 2) = 0;
}
// Sample points and take average. Point locations taken from (https://docs.microsoft.com/en-us/windows/desktop/api/d3d11/ne-d3d11-d3d11_standard_multisample_quality_levels)
glm::vec3 sampledPoints(0);
if (Adaptive == 2) {
sampledPoints += castRayTo(x + 4.0f / 16, y + 4.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + -4.0f / 16, y + -4.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints /= 2;
} else if (Adaptive == 4) {
sampledPoints += castRayTo(x + -2.0f / 16, y + -6.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + 6.0f / 16, y + -2.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + -6.0f / 16, y + 2.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + 2.0f / 16, y + 6.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints /= 4;
} else if (Adaptive == 8) {
sampledPoints += castRayTo(x + 1.0f / 16, y + -3.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + -1.0f / 16, y + -3.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + 5.0f / 16, y + 1.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + -3.0f / 16, y + -5.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + -5.0f / 16, y + 5.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + -7.0f / 16, y + 1.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + 3.0f / 16, y + 7.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + 7.0f / 16, y + -7.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints /= 8;
} else if (Adaptive == 16) {
sampledPoints += castRayTo(x + 1.0f / 16, y + 1.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + -1.0f / 16, y + -3.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + -3.0f / 16, y + 2.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + 4.0f / 16, y + -1.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + -5.0f / 16, y + -2.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + 2.0f / 16, y + 5.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + 5.0f / 16, y + 3.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + 3.0f / 16, y + -5.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + -2.0f / 16, y + 6.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + 0.0f / 16, y + -7.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + -4.0f / 16, y + -6.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + -6.0f / 16, y + 4.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + -8.0f / 16, y + 0.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + 7.0f / 16, y + -4.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + 6.0f / 16, y + 7.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints += castRayTo(x + -7.0f / 16, y + -8.0f / 16, h, w, eye, topLeft, pixelSize, root, lights,
ambient);
sampledPoints /= 16;
} else {
std::cerr << "ERROR: Antialiasing must be one of {1, 2, 4, 8, 16}." << std::endl;
}
aImage(x, y, 0) = sampledPoints.r;
aImage(x, y, 1) = sampledPoints.g;
aImage(x, y, 2) = sampledPoints.b;
}
}
}
// TEST multithreading
void test(uint &x, uint &y) {
while (1) {
//std::cout << x << " " << y << " " << std::this_thread::get_id() << std::endl;
for (int i = 0; i < 1000; i++) {
std::pow(std::log(x * y), y);
}
mtx.lock();
if (x < 256) {
x++;
} else if (y < 256) {
y++;
x = 0;
} else {
mtx.unlock();
return;
}
mtx.unlock();
}
}
void A5_Render(
// What to render
SceneNode *root,
// Image to write to, set to a given width and height
Image &image,
// Viewing parameters
const glm::vec3 &eye,
const glm::vec3 &view,
const glm::vec3 &up,
double fovy,
// Lighting parameters
const glm::vec3 &ambient,
const std::list<Light *> &lights
) {
// Fill in raytracing code here...
double aspect = (double) image.width() / image.height();
glm::vec3 nView = glm::normalize(view);
const glm::vec3 &right = glm::cross(view, up) / glm::length(glm::cross(view, up));
// get virtual screen parameters
double screenDist = 1;
double vHeight = 2 * tan(glm::radians(fovy) / 2) * screenDist;
double vWidth = vHeight * aspect;
//std::cout << vHeight << std::endl;
double pixelSize = vWidth / image.width();
//glm::vec3 topLeft = eye + view - vWidth/2 * right + vHeight/2 * up + pixelSize / 2 * right + pixelSize / 2 * up;
glm::vec3 topLeft = eye + nView - vWidth / 2 * right + vHeight / 2 * up;
if (!super) {
topLeft += pixelSize / 2 * right + pixelSize / 2 * up;
}
std::cout << "Calling A5_Render(\n" <<
"\t" << *root <<
"\t" << "numthreads: " << (mthread ? std::thread::hardware_concurrency() : 1) << std::endl <<
"\t" << "Supersampling: " << (super ? "ON" : "OFF") << std::endl <<
"\t" << "Image(width:" << image.width() << ", height:" << image.height() << ")\n"
"\t" << "eye: "
<< glm::to_string(eye) << std::endl <<
"\t" << "view: " << glm::to_string(view) << std::endl <<
"\t" << "up: " << glm::to_string(up) << std::endl <<
"\t" << "right:" << glm::to_string(right) << std::endl <<
"\t" << "fovy: " << fovy << std::endl <<
"\t" << "ambient: " << glm::to_string(ambient) << std::endl <<
"\t" << "lights{" << std::endl;
for (const Light *light : lights) {
std::cout << "\t\t" << *light << std::endl;
}
std::cout << "\t}" << std::endl;
std::cout << ")" << std::endl;
size_t h = image.height();
size_t w = image.width();
// constructing superPoints array
glm::vec3 **superPoints/*[w+1][h+1]*/;
superPoints = new glm::vec3 *[w + 1];
for (int i = 0; i <= w; i++) {
superPoints[i] = new glm::vec3[h + 1];
}
if (super) {
h++;
w++;
}
// Make an array of threads
int numThreads = mthread ? std::thread::hardware_concurrency() : 1;
std::thread renderThread[numThreads];
if (MaxPhotons > 0) {
for (auto *l : lights) {
uint numPhotons = 0;
// Photon mapping (first pass)
for (int i = 0; i < numThreads; i++) {
renderThread[i] = std::thread(castPhoton, *l, root, std::ref(numPhotons));
}
for (int i = 0; i < numThreads; i++) {
renderThread[i].join();
}
}
}
donePM = true;
// Sort photons in KD tree
//pTree = makeKD( 'x', 0, (uint)pList.size() );
// TEST Priority Queue (HEAP)
/*std::vector<photon> closest = getNClosest(glm::vec3(0.0f));
for (photon p: closest) {
std::cout << glm::to_string(p.pos) << glm::distance(glm::vec3(0.0f), p.pos) << std::endl;
}*/
uint globalx = 0;
uint globaly = 0;
// Render each pixel concurrently
for (int i = 0; i < numThreads; i++) {
//Test: renderThread[i] = std::thread(test, std::ref(x), std::ref(y));
renderThread[i] = std::thread(makeImage, superPoints, std::ref(image), h, w, std::ref(globalx),
std::ref(globaly), eye, topLeft, pixelSize, root, lights, ambient);
}
for (int i = 0; i < numThreads; i++) {
renderThread[i].join();
}
// handle supersampling
if (super) {
for (uint y = 0; y < h; y++) {
for (uint x = 0; x < w; x++) {
if (x >= 1 && y >= 1) {
for (uint i = 0; i < 3; i++) {
image(x - 1, y - 1, i) = (superPoints[x - 1][y - 1][i]
+ superPoints[x - 1][y][i]
+ superPoints[x][y - 1][i]
+ superPoints[x][y][i]) / 4;
//std::cout << image( x-1, y-1, i ) << " ";
}
//std::cout << std::endl;
}
}
}
}
// concurrently do adaptive antialiased image
if (Adaptive > 1) {
Image aImage = image;
globalx = 0;
globaly = 0;
for (int i = 0; i < numThreads; i++) {
//Test: renderThread[i] = std::thread(test, std::ref(x), std::ref(y));
renderThread[i] = std::thread(adaptiveAA, std::ref(aImage), std::ref(image), w, h, std::ref(globalx),
std::ref(globaly), eye, topLeft, pixelSize, root, lights, ambient);
}
for (int i = 0; i < numThreads; i++) {
renderThread[i].join();
}
image = aImage;
}
if (super) {
// set width and height back to correct values
h--;
w--;
}
loading(100);
// TODO: Delete superpts.
}
| [
"hlpan@edu.uwaterloo.ca"
] | hlpan@edu.uwaterloo.ca |
051cd352c47508e79c026d13432e68e95bbf4829 | 9ec67e83200f643f9f55ed90e0b2cae4581ebcb6 | /SupportLib/ObjectSourcesXML.h | 3058095c37f48e690fab9cc5dc1103e139eacfff | [] | no_license | andrewpaterson/Codaphela.Library | 465770eaf2839589fc305660725abb38033f8aa2 | 2a4722ba0a4b98a304a297a9d74c9b6811fa4ac5 | refs/heads/master | 2023-05-25T13:01:45.587888 | 2023-05-14T11:46:36 | 2023-05-14T11:46:36 | 3,248,841 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,593 | h | /** ---------------- COPYRIGHT NOTICE, DISCLAIMER, and LICENSE ------------- **
Copyright (c) 2012 Andrew Paterson
This file is part of The Codaphela Project: Codaphela SupportLib
Codaphela SupportLib is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Codaphela SupportLib is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with Codaphela SupportLib. If not, see <http://www.gnu.org/licenses/>.
libpng is Copyright Glenn Randers-Pehrson
zlib is Copyright Jean-loup Gailly and Mark Adler
** ------------------------------------------------------------------------ **/
#ifndef __OBJECT_SOURCES_XML_H__
#define __OBJECT_SOURCES_XML_H__
#include "BaseLib/MarkupTag.h"
#include "ImageCelGroup.h"
class CTileWorld;
class CTileType;
class CObjectSourcesXML
{
public:
CTileWorld* mpcWorld;
bool Import(CTileWorld* pcWorld, CMarkupTag* pcTag);
bool ImportObjectClass(CTileWorld* pcWorld, CMarkupTag* pcTag);
bool ImportImages(CTileType* pcType, CMarkupTag* pcTag);
bool ImportImage(CTileType* pcType, CMarkupTag* pcTag);
bool ImportBooleans(CTileType* pcType, CMarkupTag* pcTag);
};
#endif // !__OBJECT_SOURCES_XML_H__
| [
"andrew.ian.paterson@gmail.com"
] | andrew.ian.paterson@gmail.com |
605d85494f4bfc15f0ee19711114f86c87536ab0 | ecadb984b00652c9a746852a023e59d397299b34 | /binary_tree_preorder_traversal.cpp | 6f3f2f198381c9ab26e09f341aaf52ce8c447a9b | [] | no_license | sylcrq/leetcode | 12dfa56451cfeac7e34020f505f1c7e1efcaec25 | 315bb79471a91e74a43262ce5762eb2a40986a10 | refs/heads/master | 2021-01-20T02:46:45.683702 | 2015-07-13T06:31:42 | 2015-07-13T06:31:42 | 23,686,865 | 7 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,113 | cpp | #include <stack>
#include <vector>
#include "binary_tree.h"
using namespace std;
/**
* Definition for binary tree
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
vector<int> g_preorder_result;
// 递归
vector<int> preorderTraversal_recursive(TreeNode *root)
{
if(!root) return g_preorder_result;
g_preorder_result.push_back(root->val);
preorderTraversal_recursive(root->left);
preorderTraversal_recursive(root->right);
return g_preorder_result;
}
// 非递归
vector<int> preorderTraversal(TreeNode* root)
{
vector<int> result;
stack<TreeNode*> my_stack; // 辅助栈
if(!root) return result;
my_stack.push(root);
while(!my_stack.empty())
{
TreeNode* tmp = my_stack.top();
my_stack.pop();
result.push_back(tmp->val);
// right child node
if(tmp->right)
my_stack.push(tmp->right);
// left child node
if(tmp->left)
my_stack.push(tmp->left);
}
return result;
}
| [
"syl272365943@126.com"
] | syl272365943@126.com |
241d0cbe0eeb73c41a179ab9a9ae33594fab34fd | b23e526f8a8c014c12542e8dd0d66dddf8399cf4 | /Project2.1/main.cc | 092f6b29bc6484a0d6f8cb70d0361e5176407333 | [] | no_license | domi131domi/Project2.1 | b4b908705470705c3166e8674228de8f81317d9f | 7e60c8d9bde5ec950a01f3b4fe1d777f7390565a | refs/heads/master | 2022-04-17T07:30:57.764659 | 2020-03-04T17:38:02 | 2020-03-04T17:38:02 | 176,746,345 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,228 | cc | /*
Title: LargeNumber Program
Purpose: Showing LargeNumber class capabilities
Author: Dominik Szaciłowski
Version: 0.0.7 09/03/2019
*/
#include <iostream>
#include <string>
#include <bitset>
#include <stdexcept>
#include <cstdlib>
#include "LargeNumber.h"
#include "supportFunctions.h"
using namespace std;
int main() {
LargeNumber example("101111101011110000011111111");
LargeNumber example2(99999999);
cout << example << endl << example2 << endl;
cout << example.smallToLL(30) << example2.smallToLL(30) << endl << endl;
LargeNumber a;
LargeNumber b;
long long c;
long long d;
while( cin >> c ) {
cin >> d;
a.fromLL(c);
b.fromLL(d);
cout << endl << c << "+" << d << " = " << (a+b).smallToLL(30) << " " << a+b << endl;
cout << endl << c << "-" << d << " = " << (a-b).smallToLL(30) << " " << a-b << endl;
cout << endl << c << "*" << d << " = " << (a*b).smallToLL(30) << " " << a*b <<endl << endl;
}
a.fromLL(10);
b.fromLL(17);
cout << a << " " << b << " " << bool(a==b) << " " << bool(a>b) << endl;
a = b;
cout << a << " " << b << " " << bool(a==b) << " " << bool(a<=b) << endl;
return 0;
}
| [
"d.szaci@gmail.com"
] | d.szaci@gmail.com |
3adf85f5a81cd2f5845aedf262e7bca567bd21ad | 2cfb31bf995318540bd1a7b6e19eb8b12cb8acd9 | /Codeforces/474A.cpp | 6a30d3ec2dc9c986c94ad3a620d79dbea2016d86 | [] | no_license | aurko96/Competitive-Programming | cf6265456450355e04c34acf9b7500b1cc30fd58 | 7b5a22d077f29145b92caef0883734ca40096227 | refs/heads/master | 2020-03-18T15:08:14.533253 | 2018-05-25T19:07:25 | 2018-05-25T19:07:25 | 134,889,195 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 594 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
string b,a="qwertyuiopasdfghjkl;zxcvbnm,./";
char ch;
long long i,j,n,x,y,z;
cin>>ch>>b;
if(ch=='R')
{
for(i=0,j=0;j<b.size();i++)
{
if(b[j]==a[i])
{
cout<<a[i-1];
j++;
i=-1;
}
}
}
else if(ch=='L')
{
for(i=0,j=0;j<b.size();i++)
{
if(b[j]==a[i])
{
cout<<a[i+1];
j++;
i=-1;
}
}
}
}
| [
"malikaurko192@gmail.com"
] | malikaurko192@gmail.com |
6d658e213039d7a865c75a392f4b17b634a97183 | a87ad3fcdd8c48d28b298944b34dbe327fab0684 | /include/executioners/ExecutionerEuler1Phase.h | 7e46f8ec6e81cec8065537be16740aa67bad06a3 | [
"MIT"
] | permissive | joshuahansel/cl1de | e672844d28a4eb8cc32747f5e00154f74a47ee47 | a6e641f6f6ffaa477a3a82ef40e013100577b61f | refs/heads/master | 2021-06-12T11:37:23.030874 | 2021-04-24T02:16:22 | 2021-04-24T02:16:22 | 181,805,386 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,470 | h | #ifndef ExecutionerEuler1Phase_H
#define ExecutionerEuler1Phase_H
#include "Executioner.h"
class BCEuler1Phase;
class EOS1Phase;
class FluxEuler1Phase;
class Function;
class ICsEuler1Phase;
class ProblemEuler1Phase;
class ReconstructorEuler1Phase;
class RunParametersEuler1Phase;
class DoFHandlerEuler1Phase;
class ExecutionerEuler1Phase : public Executioner
{
public:
ExecutionerEuler1Phase(
const ProblemEuler1Phase & problem,
const RunParametersEuler1Phase & run_params);
protected:
virtual void initializeSolution(std::vector<double> & U) const override;
virtual double computeMaxWaveSpeed(const std::vector<double> & U) const override;
virtual void computeSteadyStateResidual(
const std::vector<double> & U, std::vector<double> & ss_rhs) const override;
virtual void outputSolution(const std::vector<double> & U) const override;
std::vector<double> computeAreaNode() const;
std::vector<double> computeAreaElem() const;
const ProblemEuler1Phase & _problem;
const RunParametersEuler1Phase & _run_params;
const DoFHandlerEuler1Phase & _dof_handler;
const EOS1Phase & _eos;
const Function & _A_fn;
const ICsEuler1Phase & _ics;
const BCEuler1Phase & _bc_left;
const BCEuler1Phase & _bc_right;
const double & _gravity;
const FluxEuler1Phase & _flux;
const ReconstructorEuler1Phase & _reconstructor;
const std::vector<double> _A_node;
const std::vector<double> _A_elem;
};
#endif /* ExecutionerEuler1Phase_H */
| [
"joshua.hansel@inl.gov"
] | joshua.hansel@inl.gov |
440c98d2af0b076a6e98ad9f7e0c3497498d591a | 41d8877eea10c28a3777fd294aac4c005bc6e89f | /source/mainwindow.cpp | 6f31d19858a0d72151e7aca9af4df11f26172c7c | [] | no_license | nikcherr/lamp_control | d9688d73d6a78e35623ddab05ca9c2bc7dc4c651 | bfdc8bc5027dce8595f5c6cb4565540b6817eed6 | refs/heads/master | 2020-08-02T01:03:33.458942 | 2019-11-11T19:19:58 | 2019-11-11T19:19:58 | 211,186,484 | 0 | 0 | null | 2019-10-17T18:38:03 | 2019-09-26T21:45:06 | C++ | UTF-8 | C++ | false | false | 2,086 | cpp | #include "mainwindow.h"
#include "ui_mainwindow.h"
#include <memory>
#include <tcp_client.h>
using namespace tlv;
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow),
client(new TCPClient, custom_deleter)
{
ui->setupUi(this);
connection_timer = std::make_unique<QTimer>();
container = std::make_shared<TLVContainer>();
lantern = std::make_unique<RenderLantern>(this, container.get());
if(QCoreApplication::arguments().size() > 1){
address = QCoreApplication::arguments().at(1).toStdString();
port = QCoreApplication::arguments().at(2).toUShort();
}
QObject::connect(client.get(), SIGNAL(send_to_TLVContainer(const QByteArray&)), container.get(), SLOT(getFromSocket(const QByteArray&)));
QObject::connect(client->getSocket(), SIGNAL(stateChanged(QAbstractSocket::SocketState)), this, SLOT(onClientStateChange(QAbstractSocket::SocketState)));
QObject::connect(connection_timer.get(), SIGNAL(timeout()), this, SLOT(tryToConnect()));
client->run(address, port);
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::tryToConnect()
{
client->tryGetSocket(address, port);
}
void MainWindow::onClientStateChange(QAbstractSocket::SocketState state)
{
switch(state) {
case QAbstractSocket::SocketState::HostLookupState:
case QAbstractSocket::SocketState::ConnectingState:
connection_timer->stop();
this->setWindowTitle("Connecting...");
break;
case QAbstractSocket::SocketState::ConnectedState:
this->setWindowTitle("Connected to server");
break;
case QAbstractSocket::SocketState::ClosingState:
case QAbstractSocket::SocketState::UnconnectedState:
connection_timer->start(2000);
this->setWindowTitle("Connection timeout");
break;
}
}
void MainWindow::paintEvent(QPaintEvent *event)
{
QWidget::paintEvent(event);
QPainter p(this);
lantern->drawLed(&p);
}
void MainWindow::resizeEvent(QResizeEvent *event)
{
QWidget::resizeEvent(event);
lantern->resize();
}
| [
"nikcherr@yandex.ru"
] | nikcherr@yandex.ru |
42f0e9082054e1ec6955405e6770affa4a8849ee | 719b7a89983753a9a8dabda42552f0c2215c6795 | /encodedmessage/encodedmessage.cpp | f15e87156bba83877a14a6cd56346aca8d7c583d | [] | no_license | p-lots/kattis | c524baea77fec03fb3ad9d50931ef24c89e9fee5 | 5bc7692d6eaf9ca2ff933be800aa6414de1f5a8f | refs/heads/master | 2020-05-21T14:43:18.804553 | 2019-11-25T00:36:29 | 2019-11-25T00:36:29 | 186,088,181 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 704 | cpp | #include <cmath>
#include <iostream>
#include <string>
int main(int argc, char *argv[])
{
int cases;
std::cin >> cases;
while (cases-- > 0) {
std::string line;
std::cin >> line;
int side_len = std::sqrt(line.length());
char encoded_message[side_len][side_len];
unsigned i = 0;
for (unsigned j = 0; j < side_len; j++) {
for (unsigned k = 0; k < side_len; k++) {
encoded_message[j][k] = line.at(i++);
}
}
std::string decoded_message;
for (int k = side_len - 1; k > -1; k--) {
for (int j = 0; j < side_len; j++) {
decoded_message.push_back(encoded_message[j][k]);
}
}
for (char c : decoded_message) {
std::cout << c;
}
std::cout << '\n';
}
return 0;
}
| [
"paul@mbp.local"
] | paul@mbp.local |
1d1c81aaf13b267d13fe2ce8c3cb23e5b73b6115 | 9fbff544471056f0816fa52d1bbf0c4db47c1f24 | /leetcode/75.颜色分类.cpp | 8b6f4753c16a445f8a02b97ce2251cca134c434b | [] | no_license | theDreamBear/algorithmn | 88d1159fb70e60b5a16bb64673d7383e20dc5fe5 | c672d871848a7453ac3ddb8335b1e38d112626ee | refs/heads/master | 2023-06-08T15:47:08.368054 | 2023-06-02T13:00:30 | 2023-06-02T13:00:30 | 172,293,806 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,632 | cpp | /*
* @lc app=leetcode.cn id=75 lang=cpp
*
* [75] 颜色分类
*/
#include <iostream>
#include <string>
#include <string.h>
#include <vector>
#include <utility>
#include <map>
#include <set>
#include <stack>
#include <queue>
#include <unordered_map>
#include <unordered_set>
#include <algorithm>
#include <ranges.h>
using namespace std;
// @lc code=start
class Solution {
public:
void sortColors_sort(vector<int>& nums) {
sort(nums.begin(), nums.end());
return;
}
/*
[0, p1) 0
[p1, i) 1
[i, p2] 未定区域
(p2, len - 1] 2
*/
void sortColors1(vector<int>& nums) {
if (nums.size() <= 1) {
return;
}
int p1 = 0;
int i = 0;
int p2 = nums.size() - 1;
while (i <= p2) {
if (nums[i] == 0) {
swap(nums[i], nums[p1]);
++p1;
++i;
} else if (nums[i] == 1) {
++i;
} else {
swap(nums[i], nums[p2]);
--p2;
}
}
}
/*
*/
void sortColors(vector<int>& nums) {
if (nums.size() <= 1) {
return;
}
multi_partition(nums);
}
/*
[low, p) < temp
[p, i) >= temp;
[i, high) 未处理
故p 就是最左位置
*/
int _partition(vector<int>& nums, int low, int high, int temp) {
int i = low, p = low;
for (; i <= high; ++i) {
// 处理0的部分 这部分和 partition一致
if (nums[i] < temp) {
if (i > p) {
swap(nums[i], nums[p]);
}
++p;
}
}
return p;
}
/*
循环不变式
[0, p) 0
[p, i) 1
[i, p1) 未处理区域
[p1, high) 2
*/
void partition_once(vector<int>& nums) {
int temp = 1;
int i = 0, p = 0, p1 = nums.size() - 1;
for (; i <= p1;) {
// 处理0的部分 这部分和 partition一致
if (nums[i] < temp) {
if (i > p) {
swap(nums[i], nums[p]);
}
++p;
++i;
} else if (nums[i] > temp) {
swap(nums[i], nums[p1]);
--p1;
} else {
++i;
}
}
}
void multi_partition(vector<int>& nums) {
int p = 0, i = 0;
p = _partition(nums, 0, nums.size() - 1, 1);
_partition(nums, p, nums.size() - 1, 2);
}
};
// @lc code=end
| [
"512068167@qq.com"
] | 512068167@qq.com |
e7022f23c8daaed45dc55edf92da5cdd65b2043e | bf798d5af7effdb06f373ac653e98cb4dd145a5c | /src/qif191/QIFDocument/type_t.CSphericalSegmentFeatureNominalType.h | e3b2887e841701346724e1cd7641feb2b0dbd478 | [
"BSL-1.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | QualityInformationFramework/QIFResourcesEditor | 73387fca4f4280cc1145fae32438c5d2fdc63cd5 | 4ff1de9d1dd20d9c43eaa9cc320caeff1c57760e | refs/heads/master | 2022-07-29T15:57:04.341916 | 2021-08-04T16:36:42 | 2021-08-04T16:36:42 | 298,856,948 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,241 | h | #pragma once
#include "type_t.CFeatureNominalBaseType.h"
namespace qif191
{
namespace t
{
class CSphericalSegmentFeatureNominalType : public ::qif191::t::CFeatureNominalBaseType
{
public:
QIF191_EXPORT CSphericalSegmentFeatureNominalType(xercesc::DOMNode* const& init);
QIF191_EXPORT CSphericalSegmentFeatureNominalType(CSphericalSegmentFeatureNominalType const& init);
void operator=(CSphericalSegmentFeatureNominalType const& other) { m_node = other.m_node; }
static altova::meta::ComplexType StaticInfo() { return altova::meta::ComplexType(types + _altova_ti_t_altova_CSphericalSegmentFeatureNominalType); }
MemberElement<t::CPointType, _altova_mi_t_altova_CSphericalSegmentFeatureNominalType_altova_Location> Location;
struct Location { typedef Iterator<t::CPointType> iterator; };
MemberElement<t::COrientedLatitudeLongitudeSweepType, _altova_mi_t_altova_CSphericalSegmentFeatureNominalType_altova_LatitudeLongitudeSweep> LatitudeLongitudeSweep;
struct LatitudeLongitudeSweep { typedef Iterator<t::COrientedLatitudeLongitudeSweepType> iterator; };
QIF191_EXPORT void SetXsiType();
};
} // namespace t
} // namespace qif191
//#endif // _ALTOVA_INCLUDED_QIFDocument_ALTOVA_t_ALTOVA_CSphericalSegmentFeatureNominalType
| [
"dc@capvidia.com"
] | dc@capvidia.com |
a39cd2c2fe1733a7d565a5ca28d04c98be7ee816 | c583a5fd60d8497c82c2864e5dec2d1b0853f3b1 | /0535-Encode_and_Decode_TinyURL/main.cpp | 48b959f26586d555157859b6d5f4036b4f8b1ddd | [] | no_license | oliver-zeng/leetcode | 401c9455c73cfe198b1d947407596aaa4d61f6fe | d98fbefb9c6fc0dc78da3cfabf7906f3fa712102 | refs/heads/master | 2020-12-19T19:17:45.522346 | 2020-06-04T12:25:03 | 2020-06-04T12:25:03 | 235,826,235 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,331 | cpp | class Solution {
using ull = unsigned long long;
const string code = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
unordered_map<string, string> map;
public:
// Encodes a URL to a shortened URL.
string encode(string longUrl) {
ull num;
// Hascode转化为n进制
// 将 string 的每一位转换为固定质数的进制
// 将 string 转换为 hash value
for (int i = 0; i < longUrl.size(); i++)
num = num * 5 + longUrl[i];
// 这题要返回的是一个string类型的key
// 所以还需要把这个hash value再转成一个string
// 把数字按新的字母表长度len辗转相除得到一组新的数字
// 将每次得到的新数字 % len 对应到这个字母表中的一个字母
string res;
int len = code.size();
if (num) {
res += code[num % len];
num /= len;
}
// 最后记得map这个key与其真正代表的字符串
map[res] = longUrl;
return res;
}
// Decodes a shortened URL to its original URL.
string decode(string shortUrl) {
return map[shortUrl];
}
};
// Your Solution object will be instantiated and called as such:
// Solution solution;
// solution.decode(solution.encode(url)); | [
"964994927@qq.com"
] | 964994927@qq.com |
7b80f75f0c44d948f1d0f36ecd04ac6482efde4b | 1f2f8581608853d78ac8a3fd1e59879517c122fa | /计算机与信息类/物联网导论/QRCode/decode/QRCode/src/qrcode/QRCodeV10.cpp | 79c73c10e67350c57e70d558d011ac6960f43d46 | [
"MIT"
] | permissive | qianggui/USTC-CS-Courses-Resource | c02b48da99edcd5aea514fdb78d134cb812c2a3f | 773871ac6ad3f6e6b227af5ae28ceea57a1c629f | refs/heads/master | 2023-02-26T00:58:27.333487 | 2019-01-20T04:28:41 | 2019-01-20T04:28:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,858 | cpp | /*
* QR Code Generator
* Copyright (C) 2014 Stefano BARILETTI <hackaroth@gmail.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "QRCodeV10.h"
#include <string.h>
#include <iomanip>
QRCodeV10::QRCodeV10() : QRCode()
{
Version = 10;
Modules = 57;
REMINDER_BIT_COUNT = 0;
VersionInfoRequired = true;
InitCapabilities();
InitECInfo();
InitAlignementPatterns();
}
//-------------------------------------------------------------------
QRCodeV10::~QRCodeV10()
{
}
//----------------------------------------------------------------
void QRCodeV10::InitCapabilities(void)
{
CAP_L_CORRECTION_NUMERIC = 652;
CAP_L_CORRECTION_ALPHANUMERIC = 395;
CAP_L_CORRECTION_BYTE = 271;
CAP_L_CORRECTION_KANJI = 167;
CAP_M_CORRECTION_NUMERIC = 513;
CAP_M_CORRECTION_ALPHANUMERIC = 311;
CAP_M_CORRECTION_BYTE = 213;
CAP_M_CORRECTION_KANJI = 131;
CAP_Q_CORRECTION_NUMERIC = 364;
CAP_Q_CORRECTION_ALPHANUMERIC = 221;
CAP_Q_CORRECTION_BYTE = 151;
CAP_Q_CORRECTION_KANJI = 93;
CAP_H_CORRECTION_NUMERIC = 288;
CAP_H_CORRECTION_ALPHANUMERIC = 174;
CAP_H_CORRECTION_BYTE = 119;
CAP_H_CORRECTION_KANJI = 74;
}
//----------------------------------------------------------------
void QRCodeV10::InitECInfo(void)
{
ECL_LOW_EC_INFO.TotalCW = 274;
ECL_LOW_EC_INFO.EC_CWPerBlocks = 18;
ECL_LOW_EC_INFO.BlocksGroup1 = 2;
ECL_LOW_EC_INFO.BlocksGroup2 = 2;
ECL_LOW_EC_INFO.CWBlockGroup1 = 68;
ECL_LOW_EC_INFO.CWBlockGroup2 = 69;
ECL_MEDIUM_EC_INFO.TotalCW = 216;
ECL_MEDIUM_EC_INFO.EC_CWPerBlocks = 26;
ECL_MEDIUM_EC_INFO.BlocksGroup1 = 4;
ECL_MEDIUM_EC_INFO.BlocksGroup2 = 1;
ECL_MEDIUM_EC_INFO.CWBlockGroup1 = 43;
ECL_MEDIUM_EC_INFO.CWBlockGroup2 = 44;
ECL_QUALITY_EC_INFO.TotalCW = 154;
ECL_QUALITY_EC_INFO.EC_CWPerBlocks = 24;
ECL_QUALITY_EC_INFO.BlocksGroup1 = 6;
ECL_QUALITY_EC_INFO.BlocksGroup2 = 2;
ECL_QUALITY_EC_INFO.CWBlockGroup1 = 19;
ECL_QUALITY_EC_INFO.CWBlockGroup2 = 20;
ECL_HIGH_EC_INFO.TotalCW = 122;
ECL_HIGH_EC_INFO.EC_CWPerBlocks = 28;
ECL_HIGH_EC_INFO.BlocksGroup1 = 6;
ECL_HIGH_EC_INFO.BlocksGroup2 = 2;
ECL_HIGH_EC_INFO.CWBlockGroup1 = 15;
ECL_HIGH_EC_INFO.CWBlockGroup2 = 16;
}
//----------------------------------------------------------------
void QRCodeV10::InitAlignementPatterns(void)
{
AlignementPatterns.push_back(Point(28,6));
AlignementPatterns.push_back(Point(6,28));
AlignementPatterns.push_back(Point(28,28));
AlignementPatterns.push_back(Point(50,28));
AlignementPatterns.push_back(Point(28,50));
AlignementPatterns.push_back(Point(50,50));
}
//----------------------------------------------------------------
| [
"zhuheqin1@gmail.com"
] | zhuheqin1@gmail.com |
f2d84dcefac18ef773d309af261e38fe627afdf4 | 4597e1567abfa9dcc628fcf18e78c859eb208ae5 | /lab4/lab4.cpp | 44411cb430d58c8983fcbc760ef618143792f1a2 | [] | no_license | 22liiiii/16281134_OS | 61dc5320f05d6058996f2bd8476026481a4790e0 | 516cb008fac7e7c2d77f4a5e9a50bf3b3400bbc0 | refs/heads/master | 2020-04-28T05:03:28.000589 | 2019-06-13T08:56:20 | 2019-06-13T08:56:20 | 175,005,376 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,304 | cpp | //
// main.cpp
// lab4
//
// Created by 李婧祎 on 2019/5/27.
// Copyright © 2019 李婧祎. All rights reserved.
//
#include <stdio.h>
#include"stdlib.h"
#include"time.h"
#define R 32 //物理内存块数
#define V 64 //虚拟内存块数
struct LNode
{
int data;
int flag;//访问位
int modify;//修改位
};
void initMemo();
void generate();//生成访问序列
bool isInMemo (int n); //
void optimal (int n); //
void testOptimal();
void LRU (int n);
void testLRU();
void updated_Clock (int n);
void test_Clock();
int block = 5;
int access[32]; //访问序列
int* memo;
int lost = 0;//没找到的页面数
int index = 0;//指示当前下标
LNode* nodes;//改进型Clock置换算法用到的数据结构
int main (int argc, char* argv[])
{
generate();
testOptimal();
testLRU();
test_Clock();
int i = 0;
for (; i < 32; i++)
{
printf ("%d, ", access[i]);
}
getchar();
getchar();
return 0;
}
void generate()
{
srand ( (unsigned) time (NULL)); //用时间做种,每次产生随机数不一样
int p = rand() % 64;
int m = 8, e = 8;
int i, j;
double t;
t = rand() % 10 / 10.0;
for (i = 0; i < 4; i++)
{
for (j = i * m; j < (i + 1) *m; j++)
{
access[j] = (p + rand() % e) % 64;
}
double r = (rand() % 10) / 10.0;
if (r < t)
{
p = rand() % 64;
}
else
{
p = (p + 1) % 64;
}
}
}
void initMemo()
{
memo = (int*) malloc (block * sizeof (int));
int i = 0;
for (; i < block; i++)
{
memo[i] = -1;
}
return;
}
void testOptimal()
{
initMemo();
int i = 0;
printf ("最佳置换算法:\n");
for (; i < 32; i++)
{
optimal (i);
printf ("%d %d %d %d %d\n", memo[0], memo[1], memo[2],memo[3],memo[4]);
}
printf ("最佳置换算法缺页率: %2f %d\n", lost / 32.0, lost);
lost = 0;
free (memo);
index = 0;
}
bool isInMemo (int n)
{
int i = 0;
for (; i < block; i++)
{
if (access[n] == memo[i])
{
return true;
}
}
return false;
}
//最佳适应算法
void optimal (int n)
{
int i = 0, j = 0;
if (isInMemo (n))
{
printf ("页面已被调入\n");
}
else
if (index == block)
{
lost++;
int max = 0, pos, tag;
for (i = 0; i < block; i++)
{
tag = -1;
for (j = n + 1; j < 32; j++)
{
if (access[j] == memo[i])
{
tag = j;
break;
}
}
if (tag == -1)
{
max = 32;
pos = i;
break;
}
else
{
if (max < tag)
{
max = tag;
pos = i;
}
}
}
memo[pos] = access[n];
}
else
{
memo[index] = access[n];
index++;
}
}
////////LRU算法
void LRU (int n)
{
int i, j;
if (isInMemo (n))
{
printf ("已经装入内存\n");
}
else
if (index == block)
{
int max = n, pos = -1, tag;
for (i = 0; i < block; i++)
{
for (j = n - 1; j >= 0; j--)
{
if (access[j] == memo[i])
{
tag = j;
break;
}
}
if (tag < max)
{
max = tag;
pos = i;
if (max == 0)
{
break;
}
}
}
memo[pos] = access[n];
lost++;
}
else
{
memo[index] = access[n];
index++;
}
}
void testLRU()
{
int i;
initMemo();
printf ("最近最久未使用算法\n");
for (i = 0; i < 32; i++)
{
LRU (i);
printf ("%d %d %d %d %d\n", memo[0], memo[1], memo[2],memo[3],memo[4]);
}
printf ("最近最久未使用缺页率: %2f %d \n", lost / 32.0, lost);
lost = 0;
index = 0;
free (memo);
}
bool isInNodes (int n)
{
int i;
for (i = 0; i < block; i++)
{
if (nodes[i].data == access[n])
{
return true;
}
}
return false;
}
void updated_Clock (int n)
{
if (isInNodes (n))
{
printf ("已经装入内存\n");
}
else
if (index == block)
{
lost++;
int i = 0, tag = -1;
while (true)
{
if ( (i / block) % 2 == 0)
{
if (nodes[i % block].flag == 0 && nodes[i % block].modify == 0)
{
tag = i % block;
break;
}
}
if ( (i / block) % 2 == 1)
{
if (nodes[i % block].flag == 0 && nodes[i % block].modify == 1)
{
tag = i % block;
break;
}
else
{
nodes[i % block].flag = 0;
}
}
i++;
}
nodes[tag].data = access[n];
nodes[tag].flag = 1;
if (rand() % 10 < 4)
{
nodes[tag].modify = 1;
}
else
{
nodes[tag].modify = 0;
}
}
else
{
nodes[index].data = access[n];
nodes[index].flag = 1;
if (rand() % 10 < 4)
{
nodes[index].modify = 1;
}
else
{
nodes[index].modify = 0;
}
index++;
}
}
void test_Clock()
{
int i = 0, j = 0;
printf ("改进型Clock置换算法\n");
nodes = (LNode*) malloc (block * sizeof (LNode));
for (i = 0; i < block; i++)
{
nodes[i].data = -1;
nodes[i].flag = -1;
nodes[i].modify = -1;
}
for (i = 0; i < 32; i++)
{
updated_Clock (i);
for (j = 0; j < block; j++)
{
printf ("%d ", nodes[j].data);
}
printf ("\n");
}
printf ("改进型Clock置换算法缺页率: %2f %d \n", lost / 32.0, lost);
lost = 0;
index = 0;
}
| [
"lijingyi@lijingyideMacBook-Pro.local"
] | lijingyi@lijingyideMacBook-Pro.local |
b2e5b218c0ff73e2a3c5a81fc1a204aaff607d72 | 1859e30178bffa621c73aaeeb28f4168ba3e57d8 | /CharmCPP/cloudNonOutsrc/TestHIBE.h | 2f5b87da2262f1b596ebb29e7dba60fba9e482d2 | [] | no_license | JHUISI/auto-tools | a97441e96781523646f8607570a1978417a78135 | 88d20b08dbd2f7a799619ac25986184633af459f | refs/heads/master | 2021-08-29T07:04:06.846700 | 2021-08-23T13:29:55 | 2021-08-23T13:29:55 | 8,965,681 | 21 | 6 | null | 2017-01-23T20:07:52 | 2013-03-23T04:13:24 | Python | UTF-8 | C++ | false | false | 555 | h | #ifndef HIBE_H
#define HIBE_H
#include "Charm.h"
#include <iostream>
#include <sstream>
#include <string>
#include <list>
using namespace std;
class Hibe
{
public:
PairingGroup group;
Hibe() { group.setCurve(BN256); };
~Hibe() {};
void setup(int l, int z, CharmList & mpk, CharmList & mk);
void keygen(CharmList & mpk, CharmList & mk, string & id, CharmList & pk, CharmList & sk);
void encrypt(CharmList & mpk, CharmList & pk, GT & M, CharmList & ct);
void decrypt(CharmList & pk, CharmList & sk, CharmList & ct, GT & M);
private:
};
#endif
| [
"jakinye3@jhu.edu"
] | jakinye3@jhu.edu |
220b14295f9d0041ef12d2260379810b45eb5c95 | d7db098f4b1d1cd7d32952ebde8106e1f297252e | /AtCoder/ARC/039/a.cpp | c3f6a91412791b67b9575b62136773bc0a3afa78 | [] | no_license | monman53/online_judge | d1d3ce50f5a8a3364a259a78bb89980ce05b9419 | dec972d2b2b3922227d9eecaad607f1d9cc94434 | refs/heads/master | 2021-01-16T18:36:27.455888 | 2019-05-26T14:03:14 | 2019-05-26T14:03:14 | 25,679,069 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 691 | cpp | // header {{{
#include <bits/stdc++.h>
using namespace std;
// {U}{INT,LONG,LLONG}_{MAX,MIN}
#define ALPHABET (26)
#define INF INT_MAX
#define MOD (1000000007LL)
using LL = long long;
// }}}
int main() {
std::ios::sync_with_stdio(false);
int a, b;cin >> a >> b;
int ans = a-b;
for(int i=100;i>=1;i/=10){
int aa = a/i%10;
int bb = b/i%10;
if(i == 100){
if(aa == 9 && bb == 1) continue;
ans += i*max(bb-1, 9-aa);
break;
}else{
if(aa == 9 && bb == 0) continue;
ans += i*max(bb-0, 9-aa);
break;
}
}
cout << ans << endl;
return 0;
}
| [
"monman.cs@gmail.com"
] | monman.cs@gmail.com |
38b8da8325714c072cc5a249daec61dd41dc4b8a | 93b84d94220a39b1f756fe0e60a10c400fbded67 | /lista.h | de00427a898efc8e7326347a00670376b9599783 | [] | no_license | MKuzemczak/Robot_v3 | 190f80338162e7d9c79e3332d92e8ccdb0c1eab1 | de16383667b5950bb8ffb57aa90de1cec1f46db6 | refs/heads/master | 2020-03-27T22:27:45.941798 | 2019-02-28T12:28:53 | 2019-02-28T12:28:53 | 147,233,250 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,774 | h | #ifndef LISTA_H
#define LISTA_H
#include <list>
#include <QDebug>
template<class T, class Allocator = std::allocator<T>>
class Lista : public std::list<T, Allocator>
{
public:
T & operator [](const int index)
{
if(index < 0 || index > static_cast<int>(this->size()) - 1)
{
qDebug() << "Lista::operator [](const int) : index out of bounds, index == " << index;
}
int i = 0;
for (T & r : (*this))
{
if (i == index)
return r;
i++;
}
return this->front();
}
void erase(int index)
{
int i = 0;
for (auto it = std::list<T, Allocator>::begin(); it != std::list<T, Allocator>::end();)
{
if (i++ == index)
{
it = std::list<T, Allocator>::erase(it);
break;
}
else
++it;
}
}
auto iteratorAt(int i)
{
if(i < 0 || i > static_cast<int>(this->size()) - 1)
{
qDebug() << "Lista::iteratorAt(int) : index out of bounds";
}
int j = 0;
for (auto it = (*this).begin(); j <= i; it++)
{
if (j == i)
return it;
j++;
}
return this->end();
}
int indexOf(T obj)
{
for(int i = 0; i < static_cast<int>(this->size()); i++)
{
if(obj == (*this)[i])
return i;
}
return -1;
}
};
#endif // LISTA_H
| [
"m.kuzemczak@gmail.com"
] | m.kuzemczak@gmail.com |
053e8379dc999727e77efe184b5f16ede358f271 | 35187ece654f350b8f4a5b013b2ed2c4c7b9c119 | /OOAD Assignment 2 LMS/Clerk.cpp | 9006df3f6a8037d546b51a6f497ceec377ee1299 | [] | no_license | shaoormunir/library-management-system | 47b1ca7e99cd469652a2657f6e6c80e319c16bb3 | 3a16a806e01b7d6a4901d814ff9e324c9d6db9ab | refs/heads/master | 2021-06-08T20:24:20.765207 | 2016-10-04T11:01:28 | 2016-10-04T11:01:28 | 69,747,374 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 111 | cpp | #include "Clerk.h"
Clerk::Clerk(string name):User(name)
{
}
string Clerk::return_type()
{
return "clerk";
}
| [
"shaoormunir@outlook.com"
] | shaoormunir@outlook.com |
8812c4629584b7b776c1e51454829eb9019ffd69 | 30bd3b983e5f4c1075c171c2bfbece3bfb22e2a7 | /main.cpp | b5d26cdcffae735a7681324643605241f6bbb84d | [] | no_license | IgorMatsepura/homeWrk9 | 098eaf00cc3c4bf9651a4f8ee89c64d118c691dd | 9a512b0974b4d27b9ca49b53acb54341dc6f2a38 | refs/heads/master | 2021-08-19T21:47:08.172998 | 2017-11-27T13:45:29 | 2017-11-27T13:45:29 | 111,406,357 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 8,508 | cpp | #include <cstdlib>
#include <iostream>
#include <time.h>
#define NUMBERS_ANIMALS 100 //variable animals in Zoo
#define SELECTONE 1
#define SELECTTWO 2
#define SELECTTHRE 3
#define SELECTFOUR 4
const int ADMIN_PASS = 1000; //variable pass admin Lvl, manager lvl any value
using namespace std;
class Animal {
private :
int age; // variables age of animal;
char* kind; // variables type animal;
char* name; // variables name animal;
int pawsNum; // variables number of paws animal;
int health; // variables % health animal;
bool isLeave; // variables type of Leave (Zoo/aviary);
public:
Animal(){
age = 0;
pawsNum = 0;
isLeave = true;
srand (time(NULL));
}
Animal(const int age, char* kind, char* name, int pawsNum, int health, bool isLeave){
this->age = age;
this->kind = kind;
this->name = name;
this->pawsNum = pawsNum;
this->health = health;
this->isLeave = isLeave;
}
void setAge (int yearsAnimal) {
age = yearsAnimal;
}
void setKind(char* typeKind)
{
kind = typeKind;
}
void setName (char* nameAnimal) {
name = nameAnimal;
}
void setpawsNum (int countNum) {
pawsNum = countNum;
}
void setHealth (){
health = rand() % 100;
}
void setisLeave (int isLeave){
if (isLeave == 1){
isLeave = true;
} else {
isLeave = false;
}
}
int getAge() { return age; }
string getKind() { return kind; }
string getName() { return name; }
int getpawsNum() { return pawsNum; }
int getHealth() { health = rand() % 100; return health; }
bool getisLeave() { return isLeave; }
void inputDataAnimals() {
cout<<"...Add new animal..."<<endl;
cout<<"Input age animal : ";
cin>>age;
cout<<"Input type animal : ";
gets (kind);
gets (kind);
cout<<"Input name animal : ";
gets (name);
cout<<"Input number of paws animal : ";
cin>>pawsNum;
cout<<"Input locating animal : "<<1;
cout<<endl;
}
void showData() {
int age;
char* kind;
char* name;
int pawsNum;
int health;
bool isLeave = true;
cout << " Animal info: " << endl;
cout << "=========================================================================================================" << endl;
cout << " Age animal: " << age;
cout << " Type animal: " << kind;
cout << " Name animal: " << name;
cout << " Number of paws animal: " << pawsNum;
cout << " Health of animal: " << health;
cout << " Locating animal: " << isLeave<<endl;
cout << endl;
}
};
class Zoo{
Animal animals[NUMBERS_ANIMALS];
int size;
public:
void showAboutInfo();
Zoo() { size = 0; }
Animal getAnimal(int index);
// adding new animal to Zoo
void addNewAnimal(Animal a){
if (size >= NUMBERS_ANIMALS){
cout << "Animal was not - No space!";
return;
}
animals[size] = a;
size++;
}
// print all info about animal
void print(){
for (int i = 0; i < size; i++){
animals[i].showData();
}
}
// select using animal name in zoo
void showPopulation(char* name){
for (int i = 0; i < size; i++){
// if (m_animals[i] != nullptr){ // not worked?????
if (animals[i].getName().compare(name) == 0 ){
cout << " Age animal : "<< animals[i].getAge();
cout << " Kind animal : "<< animals[i].getKind();
cout << " Name animal : "<< animals[i].getName();
cout << " Number of paws animal: "<< animals[i].getpawsNum();
cout << " Health of animal: "<< animals[i].getHealth();
cout << " Animal in zoo?: "<< animals[i].getisLeave()<<endl;
cout <<endl;
// }
}
else {
cout << "Not found...\n\n";
}
}
}
// delete select animal from Zoo
void deleteAnimal(char* name){
for (int i = 0 ; i < size ; i++)
if (animals[i].getName().compare(name) == 0) {
delete animals[i];
animals[i] = nullptr;
cout<<">>>>>Animal was succesfully deleted<<<<<\n\n";
} else {
cout << "Not found...\n\n";
}
}
//edit select animal from Zoo
void editAnimalInfo(char* name){
int age;
char* kind;
char* animalName;
int pawsNum;
bool isLeave = true;
for (int i = 0 ; i < size ; i++)
if (animals[i].getName().compare(name) == 0) {
cout << "Enter new age animal: ";
cin >> age;
animals[i].setAge(age);
cout << "Enter new kind animal: ";
gets(kind);
animals[i].setKind(kind);
cout << "Enter new name animal: ";
gets(animalName);
animals[i].setName(animalName);
cout << "Enter new number of paws animal: ";
cin >> pawsNum;
animals[i].setpawsNum(pawsNum);
cout << "Enter new validation isShown (1-yes / 0-no): ";
cin >>isLeave;
animals[i].getisLeave();
} else {
cout << "Not found...\n\n";
}
}
};
// Lvl manager Zoo
class ManagerZoo{
public:
ManagerZoo(){
}
Animal anim;
Zoo z;
void userSelector(){
int userSelector;
char* name;
for(;;){
std::cout<<"Welcome to User panel Zoo. Pls choose?"<<endl;
std::cout<<"1 - Show about info"<<endl;
std::cout<<"2 - Edit property animal "<<endl;
std::cout<<"3 - Quit user panel "<<endl;
std::cout<<"Choose select: ";
cin>>userSelector;
switch (userSelector){
case SELECTONE:
std::cout<<"Show about info animal"<<endl;
anim.showData();
break;
case SELECTTWO:
std::cout<<"Edit property animal"<<endl;
cin>>name;
gets(name);
z.editAnimalInfo(name);
break;
default:
return;
}
}
}
};
//Lvl admin Zoo and select option
class AdminLvl{
public:
Animal anim;
Zoo z;
void adminSelector(){
int adminSelector;
char* nameAnimal;
for(;;){
cout <<"Welcome to Admin panel Zoo. Pls choose?"<<endl;
cout <<"1 - Add new animal "<<endl;
cout <<"2 - Delete animal "<<endl;
cout <<"3 - Show population animals "<<endl;
cout <<"4 - Edit animal "<<endl;
cout <<"5 - Quit admin panel "<<endl;
cout <<"Choose select: ";
cin >>adminSelector;
switch (adminSelector){
case SELECTONE:
cout<<"Add new animal into Zoo"<<endl;
anim.inputDataAnimals();
z.addNewAnimal(anim);
break;
case SELECTTWO:
cout<<"Delete animal into Zoo"<<endl;
gets (nameAnimal);
z.deleteAnimal(nameAnimal);
break;
case SELECTTHRE:
cout<<"Show population animal"<<endl;
gets (nameAnimal);
z.showPopulation(nameAnimal);
break;
case SELECTFOUR:
std::cout<<"Edit property animal"<<endl;
cin>>nameAnimal;
gets(nameAnimal);
z.editAnimalInfo(nameAnimal);
break;
default:
return;
}
}
}
};
// Lvl Authorization in Zoo (admin/manager)
class AuthorizationLvl{
private:
int pass;
public:
AuthorizationLvl(){
}
int setPass (int passAutentification) {
pass = passAutentification;
}
int getPass (int passAutent) { return passAutent;}
void inputAutentification(){
for(;;){
cout<<"Please input password in Zoo : ";
cin>>pass;
if (pass == ADMIN_PASS) {
AdminLvl admin;
admin.adminSelector();
} else {
ManagerZoo user;
user.userSelector();
}
}
}
};
int main()
{
AuthorizationLvl zooAuthorization;
zooAuthorization.inputAutentification();
}
| [
"Igor.Matsepura@gmail.com"
] | Igor.Matsepura@gmail.com |
848ffb7ad23ac578e42489d0d42a8447e5d02567 | 3c09d1c279c8578791dae535852c06e09efad4a1 | /Projects/Georgi Nyagolov/Mahjong v5.7/Texture.cpp | 5d2e2550dcea515faf054a8c346d4d22a534d93c | [] | no_license | rosen90/GitHub | f00653f8a65cdffc479b70d2d7ca8f9e103d3eeb | 851d210f2f6073d818e0984fa9daab96e833b066 | refs/heads/master | 2016-09-12T23:57:19.530896 | 2016-05-04T22:09:03 | 2016-05-04T22:09:03 | 58,085,509 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,351 | cpp | #include "Texture.h"
#include <SDL_image.h>
#include <stdio.h>
#include "Global.h"
Texture::Texture()
{
//Initialize
mTexture = NULL;
mWidth = 0;
mHeight = 0;
}
Texture::~Texture()
{
//Deallocate
free();
}
bool Texture::loadFromFile( std::string path )
{
//Get rid of preexisting texture
free();
//The final texture
SDL_Texture* newTexture = NULL;
//Load image at specified path
SDL_Surface* loadedSurface = IMG_Load( path.c_str() );
if( loadedSurface == NULL )
{
printf( "Unable to load image %s! SDL_image Error: %s\n", path.c_str(), IMG_GetError() );
}
else
{
//Color key image
SDL_SetColorKey( loadedSurface, SDL_TRUE, SDL_MapRGB( loadedSurface->format, 0, 0xFF, 0xFF ) );
//Create texture from surface pixels
newTexture = SDL_CreateTextureFromSurface( gRenderer, loadedSurface );
if( newTexture == NULL )
{
printf( "Unable to create texture from %s! SDL Error: %s\n", path.c_str(), SDL_GetError() );
}
else
{
//Get image dimensions
mWidth = loadedSurface->w;
mHeight = loadedSurface->h;
}
//Get rid of old loaded surface
SDL_FreeSurface( loadedSurface );
}
//Return success
mTexture = newTexture;
return mTexture != NULL;
}
#ifdef _SDL_TTF_H
bool Texture::loadFromRenderedText( std::string textureText, SDL_Color textColor )
{
//Get rid of preexisting texture
free();
//Render text surface
SDL_Surface* textSurface = TTF_RenderText_Solid( gFont, textureText.c_str(), textColor );
if( textSurface != NULL )
{
//Create texture from surface pixels
mTexture = SDL_CreateTextureFromSurface( gRenderer, textSurface );
if( mTexture == NULL )
{
printf( "Unable to create texture from rendered text! SDL Error: %s\n", SDL_GetError() );
}
else
{
//Get image dimensions
mWidth = textSurface->w;
mHeight = textSurface->h;
}
//Get rid of old surface
SDL_FreeSurface( textSurface );
}
else
{
printf( "Unable to render text surface! SDL_ttf Error: %s\n", TTF_GetError() );
}
//Return success
return mTexture != NULL;
}
#endif
void Texture::free()
{
//Free texture if it exists
if( mTexture != NULL )
{
SDL_DestroyTexture( mTexture );
mTexture = NULL;
mWidth = 0;
mHeight = 0;
}
}
void Texture::render( int x, int y, SDL_Rect* clip, double angle, SDL_Point* center, SDL_RendererFlip flip )
{
//Set rendering space and render to screen
SDL_Rect renderQuad = { x, y, mWidth, mHeight };
//Set clip rendering dimensions
if( clip != NULL )
{
renderQuad.w = clip->w;
renderQuad.h = clip->h;
}
//Render to screen
SDL_RenderCopyEx( gRenderer, mTexture, clip, &renderQuad, angle, center, flip );
}
int Texture::getWidth()
{
return mWidth;
}
int Texture::getHeight()
{
return mHeight;
}
SDL_Texture* Texture::getTexture()
{
return mTexture;
}
void Texture::setWidth(int w)
{
mWidth = w;
}
void Texture::setHeight(int h)
{
mHeight = h;
}
void Texture::setTexture(SDL_Texture* texture)
{
mTexture = texture;
}
| [
"karadinev@gmail.com"
] | karadinev@gmail.com |
d31ca6fd29d9280430e26b68f1866325814ef751 | b9c44d43f69fd3e6eea09cff9d33ccb77d00b001 | /784 - Maze Exploration.cpp | 30d1f16fe7622b4a5c6d0a0742f2e7b7f33387ef | [] | no_license | harryramsey/UVA-Online | e04b924aec2079d0b4a918267276cda03b9b58f4 | 32062582ec0c5e110c1a7fd7ddbd750091e0bd6c | refs/heads/master | 2021-01-21T12:35:50.591520 | 2015-09-18T04:08:21 | 2015-09-18T04:08:21 | 23,942,293 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,463 | cpp | #include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#include <math.h>
#include <string>
#include <memory.h>
#include <queue>
using namespace std;
char board[35][85];
int ld[4] = {0,1,-1,0};
int rd[4] = {-1,0,0,1};
void floodFill(int x, int y, char old, char newChar)
{
if (x >= 35 || x < 0 || y >= 85 || y < 0){
return;
}
if (board[x][y] != old) return;
if (board[x][y] == old){
board[x][y] = newChar;
for (int i = 0; i < 4; i++){
floodFill(x+ld[i],y+rd[i],old,newChar);
}
}
}
int main(void)
{
int N;
scanf("%d",&N);
string str;
getline(cin,str);
for (int i = 0; i < N; i++){
int line = 0;
memset(board,NULL,sizeof board);
while (getline(cin,str)){
if (str[0] == '_') break;
for (int j = 0; j < str.size(); j++){
board[line][j] = str[j];
}
line++;
}
for (int j = 0; j < line; j++){
for (int k = 0; board[j][k] != NULL; k++){
if (board[j][k] == '*'){
board[j][k] = ' ';
floodFill(j,k,' ','#');
}
}
}
for (int j = 0; j < line; j++){
for (int k = 0; board[j][k] != NULL; k++){
printf("%c",board[j][k]);
}
printf("\n");
}
printf("%s\n",str.c_str());
}
return 0;
}
| [
"hbramsey@live.unc.edu"
] | hbramsey@live.unc.edu |
9f7cca2bec1db8323ca8e22edf9f155e6dccd7c5 | 73b287fd8becd027a105056bdd099ec88173d2c7 | /src/c/tests/TestZookeeperClose.cc | 36f7692c6f3c908f24f912b8da05a208c2e0e35d | [
"Apache-2.0",
"FSFUL"
] | permissive | ucare-uchicago/SAMC | 68ebe456662172d4e05bb65416f1bed7796ef68b | 55acf82646aa5cf59a21dd02a82bdd5a347018e5 | refs/heads/master | 2020-03-14T17:44:59.251200 | 2018-05-01T15:14:08 | 2018-05-01T15:14:08 | 131,727,427 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,488 | cc | /**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <cppunit/extensions/HelperMacros.h>
#include "ZKMocks.h"
#ifdef THREADED
#include "PthreadMocks.h"
#endif
using namespace std;
class Zookeeper_close : public CPPUNIT_NS::TestFixture
{
CPPUNIT_TEST_SUITE(Zookeeper_close);
#ifdef THREADED
CPPUNIT_TEST(testIOThreadStoppedOnExpire);
#endif
CPPUNIT_TEST(testCloseUnconnected);
CPPUNIT_TEST(testCloseUnconnected1);
CPPUNIT_TEST(testCloseConnected1);
CPPUNIT_TEST(testCloseFromWatcher1);
CPPUNIT_TEST_SUITE_END();
zhandle_t *zh;
static void watcher(zhandle_t *, int, int, const char *,void*){}
public:
void setUp()
{
zoo_set_debug_level((ZooLogLevel)0); // disable logging
zoo_deterministic_conn_order(0);
zh=0;
}
void tearDown()
{
zookeeper_close(zh);
}
class CloseOnSessionExpired: public WatcherAction{
public:
CloseOnSessionExpired(bool callClose=true):
callClose_(callClose),rc(ZOK){}
virtual void onSessionExpired(zhandle_t* zh){
memcpy(&lzh,zh,sizeof(lzh));
if(callClose_)
rc=zookeeper_close(zh);
}
zhandle_t lzh;
bool callClose_;
int rc;
};
#ifndef THREADED
void testCloseUnconnected()
{
zh=zookeeper_init("localhost:2121",watcher,10000,0,0,0);
CPPUNIT_ASSERT(zh!=0);
// do not actually free the memory while in zookeeper_close()
Mock_free_noop freeMock;
// make a copy of zhandle before close() overwrites some of
// it members with NULLs
zhandle_t lzh;
memcpy(&lzh,zh,sizeof(lzh));
int rc=zookeeper_close(zh);
zhandle_t* savezh=zh; zh=0;
freeMock.disable(); // disable mock's fake free()- use libc's free() instead
// verify that zookeeper_close has done its job
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
// memory
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(savezh));
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(lzh.hostname));
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(lzh.addrs));
// This cannot be maintained properly CPPUNIT_ASSERT_EQUAL(9,freeMock.callCounter);
}
void testCloseUnconnected1()
{
zh=zookeeper_init("localhost:2121",watcher,10000,0,0,0);
CPPUNIT_ASSERT(zh!=0);
// simulate connected state
zh->fd=ZookeeperServer::FD;
zh->state=ZOO_CONNECTED_STATE;
Mock_flush_send_queue zkMock;
// do not actually free the memory while in zookeeper_close()
Mock_free_noop freeMock;
// make a copy of zhandle before close() overwrites some of
// it members with NULLs
zhandle_t lzh;
memcpy(&lzh,zh,sizeof(lzh));
int rc=zookeeper_close(zh);
zhandle_t* savezh=zh; zh=0;
freeMock.disable(); // disable mock's fake free()- use libc's free() instead
// verify that zookeeper_close has done its job
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
// memory
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(savezh));
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(lzh.hostname));
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(lzh.addrs));
// the close request sent?
CPPUNIT_ASSERT_EQUAL(1,zkMock.counter);
}
void testCloseConnected1()
{
ZookeeperServer zkServer;
// poll() will called from zookeeper_close()
Mock_poll pollMock(&zkServer,ZookeeperServer::FD);
zh=zookeeper_init("localhost:2121",watcher,10000,TEST_CLIENT_ID,0,0);
CPPUNIT_ASSERT(zh!=0);
Mock_gettimeofday timeMock;
int fd=0;
int interest=0;
timeval tv;
int rc=zookeeper_interest(zh,&fd,&interest,&tv);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
CPPUNIT_ASSERT_EQUAL(ZOO_CONNECTING_STATE,zoo_state(zh));
CPPUNIT_ASSERT_EQUAL(ZOOKEEPER_READ|ZOOKEEPER_WRITE,interest);
rc=zookeeper_process(zh,interest);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
CPPUNIT_ASSERT_EQUAL(ZOO_ASSOCIATING_STATE,zoo_state(zh));
rc=zookeeper_interest(zh,&fd,&interest,&tv);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
rc=zookeeper_process(zh,interest);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
CPPUNIT_ASSERT_EQUAL(ZOO_CONNECTED_STATE,zoo_state(zh));
// do not actually free the memory while in zookeeper_close()
Mock_free_noop freeMock;
// make a copy of zhandle before close() overwrites some of
// it members with NULLs
zhandle_t lzh;
memcpy(&lzh,zh,sizeof(lzh));
zookeeper_close(zh);
zhandle_t* savezh=zh; zh=0;
freeMock.disable(); // disable mock's fake free()- use libc's free() instead
// memory
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(savezh));
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(lzh.hostname));
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(lzh.addrs));
// the close request sent?
CPPUNIT_ASSERT_EQUAL(1,(int)zkServer.closeSent);
}
void testCloseFromWatcher1()
{
Mock_gettimeofday timeMock;
ZookeeperServer zkServer;
// make the server return a non-matching session id
zkServer.returnSessionExpired();
// poll() will called from zookeeper_close()
Mock_poll pollMock(&zkServer,ZookeeperServer::FD);
CloseOnSessionExpired closeAction;
zh=zookeeper_init("localhost:2121",activeWatcher,10000,
TEST_CLIENT_ID,&closeAction,0);
CPPUNIT_ASSERT(zh!=0);
int fd=0;
int interest=0;
timeval tv;
// initiate connection
int rc=zookeeper_interest(zh,&fd,&interest,&tv);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
CPPUNIT_ASSERT_EQUAL(ZOO_CONNECTING_STATE,zoo_state(zh));
CPPUNIT_ASSERT_EQUAL(ZOOKEEPER_READ|ZOOKEEPER_WRITE,interest);
rc=zookeeper_process(zh,interest);
// make sure the handshake in progress
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
CPPUNIT_ASSERT_EQUAL(ZOO_ASSOCIATING_STATE,zoo_state(zh));
rc=zookeeper_interest(zh,&fd,&interest,&tv);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
// do not actually free the memory while in zookeeper_close()
Mock_free_noop freeMock;
// should call the watcher with ZOO_EXPIRED_SESSION_STATE state
rc=zookeeper_process(zh,interest);
zhandle_t* savezh=zh; zh=0;
freeMock.disable(); // disable mock's fake free()- use libc's free() instead
CPPUNIT_ASSERT_EQUAL(ZOO_EXPIRED_SESSION_STATE,zoo_state(savezh));
// memory
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(savezh));
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(closeAction.lzh.hostname));
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(closeAction.lzh.addrs));
// make sure the close request NOT sent
CPPUNIT_ASSERT_EQUAL(0,(int)zkServer.closeSent);
}
#else
void testCloseUnconnected()
{
// disable threading
MockPthreadZKNull pthreadMock;
zh=zookeeper_init("localhost:2121",watcher,10000,0,0,0);
CPPUNIT_ASSERT(zh!=0);
adaptor_threads* adaptor=(adaptor_threads*)zh->adaptor_priv;
CPPUNIT_ASSERT(adaptor!=0);
// do not actually free the memory while in zookeeper_close()
Mock_free_noop freeMock;
// make a copy of zhandle before close() overwrites some of
// it members with NULLs
zhandle_t lzh;
memcpy(&lzh,zh,sizeof(lzh));
int rc=zookeeper_close(zh);
zhandle_t* savezh=zh; zh=0;
// we're done, disable mock's fake free(), use libc's free() instead
freeMock.disable();
// verify that zookeeper_close has done its job
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
// memory
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(savezh));
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(lzh.hostname));
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(lzh.addrs));
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(adaptor));
// Cannot be maintained accurately: CPPUNIT_ASSERT_EQUAL(10,freeMock.callCounter);
// threads
CPPUNIT_ASSERT_EQUAL(1,MockPthreadsNull::getDestroyCounter(adaptor->io));
CPPUNIT_ASSERT_EQUAL(1,MockPthreadsNull::getDestroyCounter(adaptor->completion));
// mutexes
CPPUNIT_ASSERT_EQUAL(1,MockPthreadsNull::getDestroyCounter(&savezh->to_process.lock));
CPPUNIT_ASSERT_EQUAL(0,MockPthreadsNull::getInvalidAccessCounter(&savezh->to_process.lock));
CPPUNIT_ASSERT_EQUAL(1,MockPthreadsNull::getDestroyCounter(&savezh->to_send.lock));
CPPUNIT_ASSERT_EQUAL(0,MockPthreadsNull::getInvalidAccessCounter(&savezh->to_send.lock));
CPPUNIT_ASSERT_EQUAL(1,MockPthreadsNull::getDestroyCounter(&savezh->sent_requests.lock));
CPPUNIT_ASSERT_EQUAL(0,MockPthreadsNull::getInvalidAccessCounter(&savezh->sent_requests.lock));
CPPUNIT_ASSERT_EQUAL(1,MockPthreadsNull::getDestroyCounter(&savezh->completions_to_process.lock));
CPPUNIT_ASSERT_EQUAL(0,MockPthreadsNull::getInvalidAccessCounter(&savezh->completions_to_process.lock));
// conditionals
CPPUNIT_ASSERT_EQUAL(1,MockPthreadsNull::getDestroyCounter(&savezh->sent_requests.cond));
CPPUNIT_ASSERT_EQUAL(0,MockPthreadsNull::getInvalidAccessCounter(&savezh->sent_requests.cond));
CPPUNIT_ASSERT_EQUAL(1,MockPthreadsNull::getDestroyCounter(&savezh->completions_to_process.cond));
CPPUNIT_ASSERT_EQUAL(0,MockPthreadsNull::getInvalidAccessCounter(&savezh->completions_to_process.cond));
}
void testCloseUnconnected1()
{
for(int i=0; i<100;i++){
zh=zookeeper_init("localhost:2121",watcher,10000,0,0,0);
CPPUNIT_ASSERT(zh!=0);
adaptor_threads* adaptor=(adaptor_threads*)zh->adaptor_priv;
CPPUNIT_ASSERT(adaptor!=0);
int rc=zookeeper_close(zh);
zh=0;
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
}
}
void testCloseConnected1()
{
// frozen time -- no timeouts and no pings
Mock_gettimeofday timeMock;
for(int i=0;i<100;i++){
ZookeeperServer zkServer;
Mock_poll pollMock(&zkServer,ZookeeperServer::FD);
// use a checked version of pthread calls
CheckedPthread threadMock;
// do not actually free the memory while in zookeeper_close()
Mock_free_noop freeMock;
zh=zookeeper_init("localhost:2121",watcher,10000,TEST_CLIENT_ID,0,0);
CPPUNIT_ASSERT(zh!=0);
// make sure the client has connected
CPPUNIT_ASSERT(ensureCondition(ClientConnected(zh),1000)<1000);
// make a copy of zhandle before close() overwrites some of
// its members with NULLs
zhandle_t lzh;
memcpy(&lzh,zh,sizeof(lzh));
int rc=zookeeper_close(zh);
zhandle_t* savezh=zh; zh=0;
// we're done, disable mock's fake free(), use libc's free() instead
freeMock.disable();
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
adaptor_threads* adaptor=(adaptor_threads*)lzh.adaptor_priv;
// memory
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(savezh));
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(lzh.hostname));
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(lzh.addrs));
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(adaptor));
// threads
CPPUNIT_ASSERT_EQUAL(1,CheckedPthread::getDestroyCounter(adaptor->io));
CPPUNIT_ASSERT_EQUAL(1,CheckedPthread::getDestroyCounter(adaptor->completion));
// mutexes
CPPUNIT_ASSERT_EQUAL(1,CheckedPthread::getDestroyCounter(&savezh->to_process.lock));
CPPUNIT_ASSERT_EQUAL(0,CheckedPthread::getInvalidAccessCounter(&savezh->to_process.lock));
CPPUNIT_ASSERT_EQUAL(1,CheckedPthread::getDestroyCounter(&savezh->to_send.lock));
CPPUNIT_ASSERT_EQUAL(0,CheckedPthread::getInvalidAccessCounter(&savezh->to_send.lock));
CPPUNIT_ASSERT_EQUAL(1,CheckedPthread::getDestroyCounter(&savezh->sent_requests.lock));
CPPUNIT_ASSERT_EQUAL(0,CheckedPthread::getInvalidAccessCounter(&savezh->sent_requests.lock));
CPPUNIT_ASSERT_EQUAL(1,CheckedPthread::getDestroyCounter(&savezh->completions_to_process.lock));
CPPUNIT_ASSERT_EQUAL(0,CheckedPthread::getInvalidAccessCounter(&savezh->completions_to_process.lock));
// conditionals
CPPUNIT_ASSERT_EQUAL(1,CheckedPthread::getDestroyCounter(&savezh->sent_requests.cond));
CPPUNIT_ASSERT_EQUAL(0,CheckedPthread::getInvalidAccessCounter(&savezh->sent_requests.cond));
CPPUNIT_ASSERT_EQUAL(1,CheckedPthread::getDestroyCounter(&savezh->completions_to_process.cond));
CPPUNIT_ASSERT_EQUAL(0,CheckedPthread::getInvalidAccessCounter(&savezh->completions_to_process.cond));
}
}
struct PointerFreed{
PointerFreed(Mock_free_noop& freeMock,void* ptr):
freeMock_(freeMock),ptr_(ptr){}
bool operator()() const{return freeMock_.isFreed(ptr_); }
Mock_free_noop& freeMock_;
void* ptr_;
};
// test if zookeeper_close may be called from a watcher callback on
// SESSION_EXPIRED event
void testCloseFromWatcher1()
{
// frozen time -- no timeouts and no pings
Mock_gettimeofday timeMock;
for(int i=0;i<100;i++){
ZookeeperServer zkServer;
// make the server return a non-matching session id
zkServer.returnSessionExpired();
Mock_poll pollMock(&zkServer,ZookeeperServer::FD);
// use a checked version of pthread calls
CheckedPthread threadMock;
// do not actually free the memory while in zookeeper_close()
Mock_free_noop freeMock;
CloseOnSessionExpired closeAction;
zh=zookeeper_init("localhost:2121",activeWatcher,10000,
TEST_CLIENT_ID,&closeAction,0);
CPPUNIT_ASSERT(zh!=0);
// we rely on the fact that zh is freed the last right before
// zookeeper_close() returns...
CPPUNIT_ASSERT(ensureCondition(PointerFreed(freeMock,zh),1000)<1000);
zhandle_t* lzh=zh;
zh=0;
// we're done, disable mock's fake free(), use libc's free() instead
freeMock.disable();
CPPUNIT_ASSERT_EQUAL((int)ZOK,closeAction.rc);
adaptor_threads* adaptor=(adaptor_threads*)closeAction.lzh.adaptor_priv;
// memory
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(lzh));
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(closeAction.lzh.hostname));
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(closeAction.lzh.addrs));
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(adaptor));
// threads
CPPUNIT_ASSERT_EQUAL(1,CheckedPthread::getDestroyCounter(adaptor->io));
CPPUNIT_ASSERT_EQUAL(1,CheckedPthread::getDestroyCounter(adaptor->completion));
// mutexes
CPPUNIT_ASSERT_EQUAL(1,CheckedPthread::getDestroyCounter(&lzh->to_process.lock));
CPPUNIT_ASSERT_EQUAL(0,CheckedPthread::getInvalidAccessCounter(&lzh->to_process.lock));
CPPUNIT_ASSERT_EQUAL(1,CheckedPthread::getDestroyCounter(&lzh->to_send.lock));
CPPUNIT_ASSERT_EQUAL(0,CheckedPthread::getInvalidAccessCounter(&lzh->to_send.lock));
CPPUNIT_ASSERT_EQUAL(1,CheckedPthread::getDestroyCounter(&lzh->sent_requests.lock));
CPPUNIT_ASSERT_EQUAL(0,CheckedPthread::getInvalidAccessCounter(&lzh->sent_requests.lock));
CPPUNIT_ASSERT_EQUAL(1,CheckedPthread::getDestroyCounter(&lzh->completions_to_process.lock));
CPPUNIT_ASSERT_EQUAL(0,CheckedPthread::getInvalidAccessCounter(&lzh->completions_to_process.lock));
// conditionals
CPPUNIT_ASSERT_EQUAL(1,CheckedPthread::getDestroyCounter(&lzh->sent_requests.cond));
CPPUNIT_ASSERT_EQUAL(0,CheckedPthread::getInvalidAccessCounter(&lzh->sent_requests.cond));
CPPUNIT_ASSERT_EQUAL(1,CheckedPthread::getDestroyCounter(&lzh->completions_to_process.cond));
CPPUNIT_ASSERT_EQUAL(0,CheckedPthread::getInvalidAccessCounter(&lzh->completions_to_process.cond));
}
}
void testIOThreadStoppedOnExpire()
{
// frozen time -- no timeouts and no pings
Mock_gettimeofday timeMock;
for(int i=0;i<100;i++){
ZookeeperServer zkServer;
// make the server return a non-matching session id
zkServer.returnSessionExpired();
Mock_poll pollMock(&zkServer,ZookeeperServer::FD);
// use a checked version of pthread calls
CheckedPthread threadMock;
// do not call zookeeper_close() from the watcher
CloseOnSessionExpired closeAction(false);
zh=zookeeper_init("localhost:2121",activeWatcher,10000,
&testClientId,&closeAction,0);
// this is to ensure that if any assert fires, zookeeper_close()
// will still be called while all the mocks are in the scope!
CloseFinally guard(&zh);
CPPUNIT_ASSERT(zh!=0);
CPPUNIT_ASSERT(ensureCondition(SessionExpired(zh),1000)<1000);
CPPUNIT_ASSERT(ensureCondition(IOThreadStopped(zh),1000)<1000);
// make sure the watcher has been processed
CPPUNIT_ASSERT(ensureCondition(closeAction.isWatcherTriggered(),1000)<1000);
// make sure the threads have not been destroyed yet
adaptor_threads* adaptor=(adaptor_threads*)zh->adaptor_priv;
CPPUNIT_ASSERT_EQUAL(0,CheckedPthread::getDestroyCounter(adaptor->io));
CPPUNIT_ASSERT_EQUAL(0,CheckedPthread::getDestroyCounter(adaptor->completion));
// about to call zookeeper_close() -- no longer need the guard
guard.disarm();
// do not actually free the memory while in zookeeper_close()
Mock_free_noop freeMock;
zookeeper_close(zh);
zhandle_t* lzh=zh; zh=0;
// we're done, disable mock's fake free(), use libc's free() instead
freeMock.disable();
// memory
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(lzh));
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(closeAction.lzh.hostname));
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(closeAction.lzh.addrs));
CPPUNIT_ASSERT_EQUAL(1,freeMock.getFreeCount(adaptor));
// threads
CPPUNIT_ASSERT_EQUAL(1,CheckedPthread::getDestroyCounter(adaptor->io));
CPPUNIT_ASSERT_EQUAL(1,CheckedPthread::getDestroyCounter(adaptor->completion));
// mutexes
CPPUNIT_ASSERT_EQUAL(1,CheckedPthread::getDestroyCounter(&lzh->to_process.lock));
CPPUNIT_ASSERT_EQUAL(0,CheckedPthread::getInvalidAccessCounter(&lzh->to_process.lock));
CPPUNIT_ASSERT_EQUAL(1,CheckedPthread::getDestroyCounter(&lzh->to_send.lock));
CPPUNIT_ASSERT_EQUAL(0,CheckedPthread::getInvalidAccessCounter(&lzh->to_send.lock));
CPPUNIT_ASSERT_EQUAL(1,CheckedPthread::getDestroyCounter(&lzh->sent_requests.lock));
CPPUNIT_ASSERT_EQUAL(0,CheckedPthread::getInvalidAccessCounter(&lzh->sent_requests.lock));
CPPUNIT_ASSERT_EQUAL(1,CheckedPthread::getDestroyCounter(&lzh->completions_to_process.lock));
CPPUNIT_ASSERT_EQUAL(0,CheckedPthread::getInvalidAccessCounter(&lzh->completions_to_process.lock));
// conditionals
CPPUNIT_ASSERT_EQUAL(1,CheckedPthread::getDestroyCounter(&lzh->sent_requests.cond));
CPPUNIT_ASSERT_EQUAL(0,CheckedPthread::getInvalidAccessCounter(&lzh->sent_requests.cond));
CPPUNIT_ASSERT_EQUAL(1,CheckedPthread::getDestroyCounter(&lzh->completions_to_process.cond));
CPPUNIT_ASSERT_EQUAL(0,CheckedPthread::getInvalidAccessCounter(&lzh->completions_to_process.cond));
}
}
#endif
};
CPPUNIT_TEST_SUITE_REGISTRATION(Zookeeper_close);
| [
"riza.on@gmail.com"
] | riza.on@gmail.com |
eb8fb62d08187a659f7eb3839f7a001b6630771c | dd74734d013e3e5626a220c1d01aa91d8a392e91 | /Codeforces/762A - sudo apache2ctl configtest.cpp | cf983854d043ecd3439b6fb45f6c50059c1422c1 | [] | no_license | NBristy/solved-problem | 501d3caf785c5887b50e18d7b8fd93c88443b4b8 | 9ec9d5ea90d0e166a45f8fb104dbe25833a33239 | refs/heads/master | 2020-04-20T16:39:12.723729 | 2019-02-21T20:29:22 | 2019-02-21T20:29:22 | 168,964,877 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 664 | cpp | #include <bits/stdc++.h>
using namespace std;
vector<long long int> divisor;
void divisors(long long int n)
{
for(long long int i=1;i<=sqrt(n);i++)
{
if(n%i==0)
{
if(i*i==n)
{
divisor.push_back(i);
}
else
{
divisor.push_back(i);
divisor.push_back(n/i);
}
}
}
sort(divisor.begin(),divisor.end());
}
int main()
{
long long int n,k;
cin>>n>>k;
divisors(n);
if(divisor.size()<k)
{
cout<<"-1"<<endl;
}
else
{
cout<<divisor[k-1]<<endl;
}
return 0;
}
| [
"nbristynsu@gmail.com"
] | nbristynsu@gmail.com |
6bb5e182cf3138df3cd1e8c3dfb839391ecdc169 | cccfb7be281ca89f8682c144eac0d5d5559b2deb | /components/viz/common/quads/shared_element_draw_quad.h | 9fcc559bda6590599b6cd6aa806c1992c3218035 | [
"BSD-3-Clause"
] | permissive | SREERAGI18/chromium | 172b23d07568a4e3873983bf49b37adc92453dd0 | fd8a8914ca0183f0add65ae55f04e287543c7d4a | refs/heads/master | 2023-08-27T17:45:48.928019 | 2021-11-11T22:24:28 | 2021-11-11T22:24:28 | 428,659,250 | 1 | 0 | BSD-3-Clause | 2021-11-16T13:08:14 | 2021-11-16T13:08:14 | null | UTF-8 | C++ | false | false | 1,457 | h | // Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_VIZ_COMMON_QUADS_SHARED_ELEMENT_DRAW_QUAD_H_
#define COMPONENTS_VIZ_COMMON_QUADS_SHARED_ELEMENT_DRAW_QUAD_H_
#include "components/viz/common/quads/draw_quad.h"
#include "components/viz/common/shared_element_resource_id.h"
#include "components/viz/common/viz_common_export.h"
namespace viz {
class VIZ_COMMON_EXPORT SharedElementDrawQuad : public DrawQuad {
public:
SharedElementDrawQuad();
SharedElementDrawQuad(const SharedElementDrawQuad& other);
~SharedElementDrawQuad() override;
SharedElementDrawQuad& operator=(const SharedElementDrawQuad& other);
void SetNew(const SharedQuadState* shared_quad_state,
const gfx::Rect& rect,
const gfx::Rect& visible_rect,
const SharedElementResourceId& id);
void SetAll(const SharedQuadState* shared_quad_state,
const gfx::Rect& rect,
const gfx::Rect& visible_rect,
bool needs_blending,
const SharedElementResourceId& id);
SharedElementResourceId resource_id;
static const SharedElementDrawQuad* MaterialCast(const DrawQuad* quad);
private:
void ExtendValue(base::trace_event::TracedValue* value) const override;
};
} // namespace viz
#endif // COMPONENTS_VIZ_COMMON_QUADS_SHARED_ELEMENT_DRAW_QUAD_H_
| [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
e96c98bb17a332a30e2f3de78284f86840e31850 | 9030ce2789a58888904d0c50c21591632eddffd7 | /SDK/ARKSurvivalEvolved_PrimalItemArmor_MegalaniaSaddle_functions.cpp | be8b22f02b829d6976c7f8a236a54589eafa7a71 | [
"MIT"
] | permissive | 2bite/ARK-SDK | 8ce93f504b2e3bd4f8e7ced184980b13f127b7bf | ce1f4906ccf82ed38518558c0163c4f92f5f7b14 | refs/heads/master | 2022-09-19T06:28:20.076298 | 2022-09-03T17:21:00 | 2022-09-03T17:21:00 | 232,411,353 | 14 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 1,170 | cpp | // ARKSurvivalEvolved (332.8) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "ARKSurvivalEvolved_PrimalItemArmor_MegalaniaSaddle_parameters.hpp"
namespace sdk
{
//---------------------------------------------------------------------------
//Functions
//---------------------------------------------------------------------------
// Function PrimalItemArmor_MegalaniaSaddle.PrimalItemArmor_MegalaniaSaddle_C.ExecuteUbergraph_PrimalItemArmor_MegalaniaSaddle
// ()
// Parameters:
// int EntryPoint (Parm, ZeroConstructor, IsPlainOldData)
void UPrimalItemArmor_MegalaniaSaddle_C::ExecuteUbergraph_PrimalItemArmor_MegalaniaSaddle(int EntryPoint)
{
static auto fn = UObject::FindObject<UFunction>("Function PrimalItemArmor_MegalaniaSaddle.PrimalItemArmor_MegalaniaSaddle_C.ExecuteUbergraph_PrimalItemArmor_MegalaniaSaddle");
UPrimalItemArmor_MegalaniaSaddle_C_ExecuteUbergraph_PrimalItemArmor_MegalaniaSaddle_Params params;
params.EntryPoint = EntryPoint;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"sergey.2bite@gmail.com"
] | sergey.2bite@gmail.com |
22c732dc1872bf56cf6393bf636016161423647a | e85c4ff3f00d020773c5b1a72184b366a2a1fd7f | /theory/31_complex_example/graph_traverser.hpp | 3d4771784f86e4deb863e6614df9276e9677deed | [] | no_license | theonlymusya/uni_course_cpp | dfd4dd7ef4580559ae2bc339aa161b2b39cf0dc2 | 793b33f0caacfdcacd87ed124fade45876b93339 | refs/heads/master | 2023-08-19T12:33:51.004859 | 2021-10-27T02:22:18 | 2021-10-27T02:22:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,050 | hpp | #pragma once
#include <memory>
#include <optional>
#include <vector>
#include "graph.hpp"
namespace uni {
class GraphTraverser {
public:
using VertexCallback = void (*)(Graph::Vertex&);
using EdgeCallback = void (*)(Graph::Edge&);
explicit GraphTraverser(const Graph& graph) : graph_(graph) {}
void traverse(const Graph::VertexId& from_vertex_id,
const VertexCallback& vertex_callback,
const EdgeCallback& edge_callback) const;
void traverse_bfs(const Graph::VertexId& from_vertex_id,
const VertexCallback& vertex_callback,
const EdgeCallback& edge_callback) const;
void traverse_dfs(const Graph::VertexId& from_vertex_id,
const VertexCallback& vertex_callback,
const EdgeCallback& edge_callback) const;
std::optional<std::vector<Graph::Vertex>> path_dijkstra(
const Graph::VertexId& from_vertex_id,
const Graph::VertexId& to_vertex_id) const;
private:
const Graph& graph_;
};
} // namespace uni
| [
"friend.lga@gmail.com"
] | friend.lga@gmail.com |
6f98d0e4663ceb0cf1cd0919e3d095184e50d340 | e872d90abeac8ac54d0792631afbdb14b716645f | /source/common/network/address_impl.cc | c8e63e4fb25a1f92a1a8d75b80f5590fe90516b0 | [] | no_license | vincentlao/EnvoyStudy | 4a0c46bced39f18cbdba5611c927a6492afa446f | 4ea8e687d738d36c05742b89d58bde0931676c15 | refs/heads/master | 2020-04-15T05:56:50.538344 | 2018-07-24T11:25:36 | 2018-07-24T11:25:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,874 | cc | #include "common/network/address_impl.h"
#include <arpa/inet.h>
#include <netinet/ip.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <array>
#include <cstdint>
#include <string>
#include "envoy/common/exception.h"
#include "common/common/assert.h"
#include "common/common/fmt.h"
#include "common/common/utility.h"
namespace Envoy {
namespace Network {
namespace Address {
namespace {
// Check if an IP family is supported on this machine.
bool ipFamilySupported(int domain) {
const int fd = ::socket(domain, SOCK_STREAM, 0);
if (fd >= 0) {
RELEASE_ASSERT(::close(fd) == 0, "");
}
return fd != -1;
}
// Validate that IPv4 is supported on this platform, raise an exception for the
// given address if not.
void validateIpv4Supported(const std::string& address) {
static const bool supported = ipFamilySupported(AF_INET);
if (!supported) {
throw EnvoyException(
fmt::format("IPv4 addresses are not supported on this machine: {}", address));
}
}
// Validate that IPv6 is supported on this platform, raise an exception for the
// given address if not.
void validateIpv6Supported(const std::string& address) {
static const bool supported = ipFamilySupported(AF_INET6);
if (!supported) {
throw EnvoyException(
fmt::format("IPv6 addresses are not supported on this machine: {}", address));
}
}
} // namespace
Address::InstanceConstSharedPtr addressFromSockAddr(const sockaddr_storage& ss, socklen_t ss_len,
bool v6only) {
RELEASE_ASSERT(ss_len == 0 || ss_len >= sizeof(sa_family_t), "");
switch (ss.ss_family) {
case AF_INET: {
RELEASE_ASSERT(ss_len == 0 || ss_len == sizeof(sockaddr_in), "");
const struct sockaddr_in* sin = reinterpret_cast<const struct sockaddr_in*>(&ss);
ASSERT(AF_INET == sin->sin_family);
return std::make_shared<Address::Ipv4Instance>(sin);
}
case AF_INET6: {
RELEASE_ASSERT(ss_len == 0 || ss_len == sizeof(sockaddr_in6), "");
const struct sockaddr_in6* sin6 = reinterpret_cast<const struct sockaddr_in6*>(&ss);
ASSERT(AF_INET6 == sin6->sin6_family);
if (!v6only && IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) {
#ifndef s6_addr32
#ifdef __APPLE__
#define s6_addr32 __u6_addr.__u6_addr32
#endif
#endif
struct sockaddr_in sin = {.sin_family = AF_INET,
.sin_port = sin6->sin6_port,
.sin_addr = {.s_addr = sin6->sin6_addr.s6_addr32[3]},
.sin_zero = {}};
return std::make_shared<Address::Ipv4Instance>(&sin);
} else {
return std::make_shared<Address::Ipv6Instance>(*sin6, v6only);
}
}
case AF_UNIX: {
const struct sockaddr_un* sun = reinterpret_cast<const struct sockaddr_un*>(&ss);
ASSERT(AF_UNIX == sun->sun_family);
RELEASE_ASSERT(ss_len == 0 || ss_len >= offsetof(struct sockaddr_un, sun_path) + 1, "");
return std::make_shared<Address::PipeInstance>(sun, ss_len);
}
default:
throw EnvoyException(fmt::format("Unexpected sockaddr family: {}", ss.ss_family));
}
NOT_REACHED;
}
InstanceConstSharedPtr addressFromFd(int fd) {
sockaddr_storage ss;
socklen_t ss_len = sizeof ss;
int rc = ::getsockname(fd, reinterpret_cast<sockaddr*>(&ss), &ss_len);
if (rc != 0) {
throw EnvoyException(
fmt::format("getsockname failed for '{}': ({}) {}", fd, errno, strerror(errno)));
}
int socket_v6only = 0;
if (ss.ss_family == AF_INET6) {
socklen_t size_int = sizeof(socket_v6only);
RELEASE_ASSERT(::getsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &socket_v6only, &size_int) == 0, "");
}
return addressFromSockAddr(ss, ss_len, rc == 0 && socket_v6only);
}
InstanceConstSharedPtr peerAddressFromFd(int fd) {
sockaddr_storage ss;
socklen_t ss_len = sizeof ss;
const int rc = ::getpeername(fd, reinterpret_cast<sockaddr*>(&ss), &ss_len);
if (rc != 0) {
throw EnvoyException(fmt::format("getpeername failed for '{}': {}", fd, strerror(errno)));
}
#ifdef __APPLE__
if (ss_len == sizeof(sockaddr) && ss.ss_family == AF_UNIX) {
#else
if (ss_len == sizeof(sa_family_t) && ss.ss_family == AF_UNIX) {
#endif
// For Unix domain sockets, can't find out the peer name, but it should match our own
// name for the socket (i.e. the path should match, barring any namespace or other
// mechanisms to hide things, of which there are many).
ss_len = sizeof ss;
const int rc = ::getsockname(fd, reinterpret_cast<sockaddr*>(&ss), &ss_len);
if (rc != 0) {
throw EnvoyException(fmt::format("getsockname failed for '{}': {}", fd, strerror(errno)));
}
}
return addressFromSockAddr(ss, ss_len);
}
int InstanceBase::socketFromSocketType(SocketType socketType) const {
#if defined(__APPLE__)
int flags = 0;
#else
int flags = SOCK_NONBLOCK;
#endif
if (socketType == SocketType::Stream) {
flags |= SOCK_STREAM;
} else {
flags |= SOCK_DGRAM;
}
int domain;
if (type() == Type::Ip) {
IpVersion version = ip()->version();
if (version == IpVersion::v6) {
domain = AF_INET6;
} else {
ASSERT(version == IpVersion::v4);
domain = AF_INET;
}
} else {
ASSERT(type() == Type::Pipe);
domain = AF_UNIX;
}
int fd = ::socket(domain, flags, 0);
RELEASE_ASSERT(fd != -1, "");
#ifdef __APPLE__
// Cannot set SOCK_NONBLOCK as a ::socket flag.
RELEASE_ASSERT(fcntl(fd, F_SETFL, O_NONBLOCK) != -1, "");
#endif
return fd;
}
Ipv4Instance::Ipv4Instance(const sockaddr_in* address) : InstanceBase(Type::Ip) {
ip_.ipv4_.address_ = *address;
char str[INET_ADDRSTRLEN];
inet_ntop(AF_INET, &address->sin_addr, str, INET_ADDRSTRLEN);
friendly_name_ = fmt::format("{}:{}", str, ntohs(address->sin_port));
ip_.friendly_address_ = str;
validateIpv4Supported(friendly_name_);
}
Ipv4Instance::Ipv4Instance(const std::string& address) : Ipv4Instance(address, 0) {}
Ipv4Instance::Ipv4Instance(const std::string& address, uint32_t port) : InstanceBase(Type::Ip) {
memset(&ip_.ipv4_.address_, 0, sizeof(ip_.ipv4_.address_));
ip_.ipv4_.address_.sin_family = AF_INET;
ip_.ipv4_.address_.sin_port = htons(port);
int rc = inet_pton(AF_INET, address.c_str(), &ip_.ipv4_.address_.sin_addr);
if (1 != rc) {
throw EnvoyException(fmt::format("invalid ipv4 address '{}'", address));
}
friendly_name_ = fmt::format("{}:{}", address, port);
validateIpv4Supported(friendly_name_);
ip_.friendly_address_ = address;
}
Ipv4Instance::Ipv4Instance(uint32_t port) : InstanceBase(Type::Ip) {
memset(&ip_.ipv4_.address_, 0, sizeof(ip_.ipv4_.address_));
ip_.ipv4_.address_.sin_family = AF_INET;
ip_.ipv4_.address_.sin_port = htons(port);
ip_.ipv4_.address_.sin_addr.s_addr = INADDR_ANY;
friendly_name_ = fmt::format("0.0.0.0:{}", port);
validateIpv4Supported(friendly_name_);
ip_.friendly_address_ = "0.0.0.0";
}
bool Ipv4Instance::operator==(const Instance& rhs) const {
const Ipv4Instance* rhs_casted = dynamic_cast<const Ipv4Instance*>(&rhs);
return (rhs_casted && (ip_.ipv4_.address() == rhs_casted->ip_.ipv4_.address()) &&
(ip_.port() == rhs_casted->ip_.port()));
}
int Ipv4Instance::bind(int fd) const {
return ::bind(fd, reinterpret_cast<const sockaddr*>(&ip_.ipv4_.address_),
sizeof(ip_.ipv4_.address_));
}
int Ipv4Instance::connect(int fd) const {
return ::connect(fd, reinterpret_cast<const sockaddr*>(&ip_.ipv4_.address_),
sizeof(ip_.ipv4_.address_));
}
int Ipv4Instance::socket(SocketType type) const { return socketFromSocketType(type); }
absl::uint128 Ipv6Instance::Ipv6Helper::address() const {
absl::uint128 result{0};
static_assert(sizeof(absl::uint128) == 16, "The size of asbl::uint128 is not 16.");
memcpy(static_cast<void*>(&result), static_cast<const void*>(&address_.sin6_addr.s6_addr),
sizeof(absl::uint128));
return result;
}
uint32_t Ipv6Instance::Ipv6Helper::port() const { return ntohs(address_.sin6_port); }
std::string Ipv6Instance::Ipv6Helper::makeFriendlyAddress() const {
char str[INET6_ADDRSTRLEN];
const char* ptr = inet_ntop(AF_INET6, &address_.sin6_addr, str, INET6_ADDRSTRLEN);
ASSERT(str == ptr);
return ptr;
}
Ipv6Instance::Ipv6Instance(const sockaddr_in6& address, bool v6only) : InstanceBase(Type::Ip) {
ip_.ipv6_.address_ = address;
ip_.friendly_address_ = ip_.ipv6_.makeFriendlyAddress();
ip_.v6only_ = v6only;
friendly_name_ = fmt::format("[{}]:{}", ip_.friendly_address_, ip_.port());
validateIpv6Supported(friendly_name_);
}
Ipv6Instance::Ipv6Instance(const std::string& address) : Ipv6Instance(address, 0) {}
Ipv6Instance::Ipv6Instance(const std::string& address, uint32_t port) : InstanceBase(Type::Ip) {
ip_.ipv6_.address_.sin6_family = AF_INET6;
ip_.ipv6_.address_.sin6_port = htons(port);
if (!address.empty()) {
if (1 != inet_pton(AF_INET6, address.c_str(), &ip_.ipv6_.address_.sin6_addr)) {
throw EnvoyException(fmt::format("invalid ipv6 address '{}'", address));
}
} else {
ip_.ipv6_.address_.sin6_addr = in6addr_any;
}
// Just in case address is in a non-canonical format, format from network address.
ip_.friendly_address_ = ip_.ipv6_.makeFriendlyAddress();
friendly_name_ = fmt::format("[{}]:{}", ip_.friendly_address_, ip_.port());
validateIpv6Supported(friendly_name_);
}
Ipv6Instance::Ipv6Instance(uint32_t port) : Ipv6Instance("", port) {}
bool Ipv6Instance::operator==(const Instance& rhs) const {
const Ipv6Instance* rhs_casted = dynamic_cast<const Ipv6Instance*>(&rhs);
return (rhs_casted && (ip_.ipv6_.address() == rhs_casted->ip_.ipv6_.address()) &&
(ip_.port() == rhs_casted->ip_.port()));
}
int Ipv6Instance::bind(int fd) const {
return ::bind(fd, reinterpret_cast<const sockaddr*>(&ip_.ipv6_.address_),
sizeof(ip_.ipv6_.address_));
}
int Ipv6Instance::connect(int fd) const {
return ::connect(fd, reinterpret_cast<const sockaddr*>(&ip_.ipv6_.address_),
sizeof(ip_.ipv6_.address_));
}
int Ipv6Instance::socket(SocketType type) const {
const int fd = socketFromSocketType(type);
// Setting IPV6_V6ONLY resticts the IPv6 socket to IPv6 connections only.
const int v6only = ip_.v6only_;
RELEASE_ASSERT(::setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &v6only, sizeof(v6only)) != -1, "");
return fd;
}
PipeInstance::PipeInstance(const sockaddr_un* address, socklen_t ss_len)
: InstanceBase(Type::Pipe) {
if (address->sun_path[0] == '\0') {
#if !defined(__linux__)
throw EnvoyException("Abstract AF_UNIX sockets are only supported on linux.");
#endif
RELEASE_ASSERT(ss_len >= offsetof(struct sockaddr_un, sun_path) + 1, "");
abstract_namespace_ = true;
address_length_ = ss_len - offsetof(struct sockaddr_un, sun_path);
}
address_ = *address;
friendly_name_ =
abstract_namespace_
? fmt::format("@{}", absl::string_view(address_.sun_path + 1, address_length_ - 1))
: address_.sun_path;
}
PipeInstance::PipeInstance(const std::string& pipe_path) : InstanceBase(Type::Pipe) {
if (pipe_path.size() >= sizeof(address_.sun_path)) {
throw EnvoyException(
fmt::format("Path \"{}\" exceeds maximum UNIX domain socket path size of {}.", pipe_path,
sizeof(address_.sun_path)));
}
memset(&address_, 0, sizeof(address_));
address_.sun_family = AF_UNIX;
StringUtil::strlcpy(&address_.sun_path[0], pipe_path.c_str(), sizeof(address_.sun_path));
friendly_name_ = address_.sun_path;
if (address_.sun_path[0] == '@') {
#if !defined(__linux__)
throw EnvoyException("Abstract AF_UNIX sockets are only supported on linux.");
#endif
abstract_namespace_ = true;
address_length_ = strlen(address_.sun_path);
address_.sun_path[0] = '\0';
}
}
bool PipeInstance::operator==(const Instance& rhs) const { return asString() == rhs.asString(); }
int PipeInstance::bind(int fd) const {
if (abstract_namespace_) {
return ::bind(fd, reinterpret_cast<const sockaddr*>(&address_),
offsetof(struct sockaddr_un, sun_path) + address_length_);
}
// Try to unlink an existing filesystem object at the requested path. Ignore
// errors -- it's fine if the path doesn't exist, and if it exists but can't
// be unlinked then `::bind()` will generate a reasonable errno.
unlink(address_.sun_path);
return ::bind(fd, reinterpret_cast<const sockaddr*>(&address_), sizeof(address_));
}
int PipeInstance::connect(int fd) const {
if (abstract_namespace_) {
return ::connect(fd, reinterpret_cast<const sockaddr*>(&address_),
offsetof(struct sockaddr_un, sun_path) + address_length_);
}
return ::connect(fd, reinterpret_cast<const sockaddr*>(&address_), sizeof(address_));
}
int PipeInstance::socket(SocketType type) const { return socketFromSocketType(type); }
} // namespace Address
} // namespace Network
} // namespace Envoy
| [
"15303606867@163.com"
] | 15303606867@163.com |
6f0ba17cee31f26cbd3e44720beec7bbff7cee93 | 398c971ecc11761bfe4296e038da7dcdc373cd61 | /code/PrintList.h | 782bc1b26cd1408ca1ab13f88202b33231f17909 | [] | no_license | FuXin-1024/code | df3b17dd8f2d65e7e244c5eb5981a49474a56724 | 08dbeff97c1ffdc97ef56db4dd4a58aec5d35aa1 | refs/heads/master | 2021-01-17T09:12:58.950332 | 2017-09-29T02:26:32 | 2017-09-29T02:26:32 | 95,556,445 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 837 | h | #pragma once
#include<iostream>
#include<stack>
using namespace std;
//从尾到头打印单链表
struct ListNode
{
int _value;
ListNode* _next;
ListNode(const int x)
:_value(x)
, _next(NULL)
{}
};
void PrintTtoH(ListNode* phead)
{
if (phead != NULL)
{
PrintTtoH( phead->_next);
cout << phead->_value << " ";
}
}
void PrintTtoH1(ListNode* phead)
{
if (phead == NULL)
return;
stack<ListNode*> s;
while (phead)
{
s.push(phead);
phead = phead->_next;
}
while (!s.empty())
{
cout << s.top()->_value << " ";
s.pop();
}
}
void PrintTtoHTest()
{
ListNode* phead1 = new ListNode(1);
ListNode* Node1 = new ListNode(3);
phead1->_next = Node1;
ListNode* Node2 = new ListNode(5);
Node1->_next = Node2;
ListNode* Node3 = new ListNode(7);
Node2->_next = Node3;
Node3->_next = NULL;
PrintTtoH1(phead1);
} | [
"1007160080@qq.com"
] | 1007160080@qq.com |
0058eb01210114664c919251d1dd982dafd8bc37 | 4503b4ec29e9a30d26c433bac376f2bddaefd9e5 | /Qt5.7/VC12/Win32/include/Qt3DRender/5.7.0/Qt3DRender/private/qstencilmask_p.h | 42f5f63ebe19580fdd9dbe4ab7864653d77fcf09 | [] | no_license | SwunZH/ecocommlibs | 0a872e0bbecbb843a0584fb787cf0c5e8a2a270b | 4cff09ff1e479f5f519f207262a61ee85f543b3a | refs/heads/master | 2021-01-25T12:02:39.067444 | 2018-02-23T07:04:43 | 2018-02-23T07:04:43 | 123,447,012 | 1 | 0 | null | 2018-03-01T14:37:53 | 2018-03-01T14:37:53 | null | UTF-8 | C++ | false | false | 2,724 | h | /****************************************************************************
**
** Copyright (C) 2016 Klaralvdalens Datakonsult AB (KDAB).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the Qt3D module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL3$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see http://www.qt.io/terms-conditions. For further
** information use the contact form at http://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 3 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 3 requirements
** will be met: https://www.gnu.org/licenses/lgpl.html.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 2.0 or later as published by the Free
** Software Foundation and appearing in the file LICENSE.GPL included in
** the packaging of this file. Please review the following information to
** ensure the GNU General Public License version 2.0 requirements will be
** met: http://www.gnu.org/licenses/gpl-2.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#ifndef QT3DRENDER_QSTENCILMASK_P_H
#define QT3DRENDER_QSTENCILMASK_P_H
//
// W A R N I N G
// -------------
//
// This file is not part of the Qt API. It exists for the convenience
// of other Qt classes. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//
#include <Qt3DRender/private/qrenderstate_p.h>
#include <Qt3DRender/qstencilmask.h>
QT_BEGIN_NAMESPACE
namespace Qt3DRender {
class QStencilMaskPrivate : public QRenderStatePrivate
{
public:
QStencilMaskPrivate()
: QRenderStatePrivate(QRenderStatePrivate::StencilMask)
, m_frontOutputMask(0)
, m_backOutputMask(0)
{}
uint m_frontOutputMask;
uint m_backOutputMask;
};
struct QStencilMaskData
{
uint frontOutputMask;
uint backOutputMask;
};
} // namespace Qt3DRender
QT_END_NAMESPACE
#endif // QT3DRENDER_QSTENCILMASK_P_H
| [
"deokhyun@3e9e098e-e079-49b3-9d2b-ee27db7392fb"
] | deokhyun@3e9e098e-e079-49b3-9d2b-ee27db7392fb |
abc45a709bcb75352ec97f2177b0ac565b6bfb5e | a304743eab41607833aba859052f7611e4e7e39f | /src/message.cpp | 7e94e0140b405ad105b120a821f4919bd4e597af | [] | no_license | hmyit/WhatsThat | 03f7ed70330c02cbfd6bd1fd25a60eaf6e878271 | 92fe03602c0e675ae0f86aac4b1c8cc01e552c6a | refs/heads/master | 2020-05-18T10:16:42.157545 | 2016-07-04T09:55:55 | 2016-07-04T09:55:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,938 | cpp | /*
* Copyright (C) 2015 Vishesh Handa <vhanda@kde.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include "message.h"
using namespace WhatsThat;
class Message::Private {
public:
QString m_text;
QDateTime m_dateTime;
QString m_author;
};
Message::Message()
: d(new Private)
{
}
Message::~Message()
{
delete d;
}
Message::Message(const Message& rhs)
: d(new Private(*rhs.d))
{
}
Message& Message::operator=(const Message& rhs)
{
delete d;
d = new Private(*rhs.d);
return *this;
}
bool Message::operator==(const Message& rhs) const
{
return d->m_text == rhs.d->m_text && d->m_author == rhs.d->m_author && d->m_dateTime == rhs.d->m_dateTime;
}
QString Message::text() const
{
return d->m_text;
}
QString Message::author() const
{
return d->m_author;
}
QDateTime Message::dateTime() const
{
return d->m_dateTime;
}
// static
Message Message::createTextMessage(const QString& text)
{
Message msg;
msg.d->m_text = text;
return msg;
}
Message Message::createTextMessage(const QString& text, const QDateTime& dt, const QString& author)
{
Message msg;
msg.d->m_text = text;
msg.d->m_dateTime = dt;
msg.d->m_author = author;
return msg;
}
| [
"me@vhanda.in"
] | me@vhanda.in |
c7162f2887d8c44e06999f1130f4165ea48b14e9 | a5257ed73a87a75f3b9c7550be8eed49ac9416a8 | /include/feature_rigid.hpp | 1fe6b20fdab24f1da04a2771969bc43cf0280bea | [] | no_license | jkienzle/ia | f4542bc854472a8c82721c1fdc11b8cac51e49f4 | f80de330201544298648b795df66f6cdc454ba53 | refs/heads/develop | 2021-01-22T19:54:48.274040 | 2017-03-19T04:53:40 | 2017-03-19T04:53:40 | 85,260,074 | 0 | 0 | null | 2017-03-17T02:01:16 | 2017-03-17T02:01:16 | null | UTF-8 | C++ | false | false | 20,628 | hpp | #ifndef FEATURE_RIGID_HPP
#define FEATURE_RIGID_HPP
#include <memory>
#include "feature.hpp"
enum class BurnState
{
not_burned,
burning,
has_burned
};
enum class WasDestroyed
{
no,
yes
};
enum class DidTriggerTrap
{
no,
yes
};
enum class DidOpen
{
no,
yes
};
enum class DidClose
{
no,
yes
};
class Item;
class ItemContainer
{
public:
ItemContainer();
~ItemContainer();
void init(const FeatureId feature_id, const int nr_items_to_attempt);
void open(const P& feature_pos, Actor* const actor_opening);
void destroy_single_fragile();
std::vector<Item*> items_;
};
class Rigid: public Feature
{
public:
Rigid(const P& p);
Rigid() = delete;
virtual ~Rigid() {}
virtual FeatureId id() const override = 0;
virtual std::string name(const Article article) const override = 0;
virtual void on_new_turn() override final;
Clr clr() const override final;
virtual Clr clr_bg() const override final;
virtual void hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor = nullptr) override;
int shock_when_adj() const;
void try_put_gore();
TileId gore_tile() const
{
return gore_tile_;
}
char gore_glyph() const
{
return gore_glyph_;
}
void clear_gore();
virtual DidOpen open(Actor* const actor_opening);
virtual DidClose close(Actor* const actor_closing);
virtual void disarm();
void add_light(bool light[map_w][map_h]) const override final;
void mk_bloody()
{
is_bloody_ = true;
}
void set_has_burned()
{
burn_state_ = BurnState::has_burned;
}
BurnState burn_state() const
{
return burn_state_;
}
void corrupt_color();
ItemContainer item_container_;
protected:
virtual void on_new_turn_hook() {}
virtual void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) = 0;
virtual Clr clr_default() const = 0;
virtual Clr clr_bg_default() const
{
return clr_black;
}
void try_start_burning(const bool is_msg_allowed);
virtual WasDestroyed on_finished_burning();
virtual DidTriggerTrap trigger_trap(Actor* const actor);
virtual void add_light_hook(bool light[map_w][map_h]) const
{
(void)light;
}
virtual int base_shock_when_adj() const;
TileId gore_tile_;
char gore_glyph_;
private:
bool is_bloody_;
BurnState burn_state_;
// Corrupted by a Strange Color monster
int nr_turns_color_corrupted_;
};
enum class FloorType
{
cmn,
cave,
stone_path
};
class Floor: public Rigid
{
public:
Floor(const P& p);
Floor() = delete;
~Floor() {}
FeatureId id() const override
{
return FeatureId::floor;
}
TileId tile() const override;
std::string name(const Article article) const override;
FloorType type_;
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
};
class Carpet: public Rigid
{
public:
Carpet(const P& p);
Carpet() = delete;
~Carpet() {}
FeatureId id() const override
{
return FeatureId::carpet;
}
std::string name(const Article article) const override;
WasDestroyed on_finished_burning() override;
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
};
enum class GrassType {cmn, withered};
class Grass: public Rigid
{
public:
Grass(const P& p);
Grass() = delete;
~Grass() {}
FeatureId id() const override
{
return FeatureId::grass;
}
TileId tile() const override;
std::string name(const Article article) const override;
GrassType type_;
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
};
class Bush: public Rigid
{
public:
Bush(const P& p);
Bush() = delete;
~Bush() {}
FeatureId id() const override
{
return FeatureId::bush;
}
std::string name(const Article article) const override;
WasDestroyed on_finished_burning() override;
GrassType type_;
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
};
class Vines: public Rigid
{
public:
Vines(const P& p);
Vines() = delete;
~Vines() {}
FeatureId id() const override
{
return FeatureId::vines;
}
std::string name(const Article article) const override;
WasDestroyed on_finished_burning() override;
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
};
class Chains: public Rigid
{
public:
Chains(const P& p);
Chains() = delete;
~Chains() {}
FeatureId id() const override
{
return FeatureId::chains;
}
std::string name(const Article article) const override;
void bump(Actor& actor_bumping) override;
private:
Clr clr_default() const override;
Clr clr_bg_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
};
class Grating: public Rigid
{
public:
Grating(const P& p);
Grating() = delete;
~Grating() {}
FeatureId id() const override
{
return FeatureId::grating;
}
std::string name(const Article article) const override;
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
};
class Brazier: public Rigid
{
public:
Brazier(const P& p) : Rigid(p) {}
Brazier() = delete;
~Brazier() {}
FeatureId id() const override
{
return FeatureId::brazier;
}
std::string name(const Article article) const override;
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
void add_light_hook(bool light[map_w][map_h]) const override;
};
enum class WallType
{
cmn,
cmn_alt,
cave,
egypt,
cliff,
leng_monestary
};
class Wall: public Rigid
{
public:
Wall(const P& p);
Wall() = delete;
~Wall() {}
FeatureId id() const override
{
return FeatureId::wall;
}
std::string name(const Article article) const override;
char glyph() const override;
TileId front_wall_tile() const;
TileId top_wall_tile() const;
void set_rnd_cmn_wall();
void set_random_is_moss_grown();
WallType type_;
bool is_mossy_;
static bool is_tile_any_wall_front(const TileId tile);
static bool is_tile_any_wall_top(const TileId tile);
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
};
class RubbleLow: public Rigid
{
public:
RubbleLow(const P& p);
RubbleLow() = delete;
~RubbleLow() {}
FeatureId id() const override
{
return FeatureId::rubble_low;
}
std::string name(const Article article) const override;
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
};
class Bones: public Rigid
{
public:
Bones(const P& p);
Bones() = delete;
~Bones() {}
FeatureId id() const override
{
return FeatureId::bones;
}
std::string name(const Article article) const override;
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
};
class RubbleHigh: public Rigid
{
public:
RubbleHigh(const P& p);
RubbleHigh() = delete;
~RubbleHigh() {}
FeatureId id() const override
{
return FeatureId::rubble_high;
}
std::string name(const Article article) const override;
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
};
class GraveStone: public Rigid
{
public:
GraveStone(const P& p);
GraveStone() = delete;
~GraveStone() {}
FeatureId id() const override
{
return FeatureId::gravestone;
}
std::string name(const Article article) const override;
void set_inscription(const std::string& str)
{
inscr_ = str;
}
void bump(Actor& actor_bumping) override;
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
std::string inscr_;
};
class ChurchBench: public Rigid
{
public:
ChurchBench(const P& p);
ChurchBench() = delete;
~ChurchBench() {}
FeatureId id() const override
{
return FeatureId::church_bench;
}
std::string name(const Article article) const override;
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
};
enum class StatueType
{
cmn,
ghoul
};
class Statue: public Rigid
{
public:
Statue(const P& p);
Statue() = delete;
~Statue() {}
FeatureId id() const override
{
return FeatureId::statue;
}
std::string name(const Article article) const override;
TileId tile() const override;
StatueType type_;
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
int base_shock_when_adj() const override;
};
class Pillar: public Rigid
{
public:
Pillar(const P& p);
Pillar() = delete;
~Pillar() {}
FeatureId id() const override
{
return FeatureId::pillar;
}
std::string name(const Article article) const override;
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
};
class Stalagmite: public Rigid
{
public:
Stalagmite(const P& p);
Stalagmite() = delete;
~Stalagmite() {}
FeatureId id() const override
{
return FeatureId::stalagmite;
}
std::string name(const Article article) const override;
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
};
class Stairs: public Rigid
{
public:
Stairs(const P& p);
Stairs() = delete;
~Stairs() {}
FeatureId id() const override
{
return FeatureId::stairs;
}
std::string name(const Article article) const override;
void bump(Actor& actor_bumping) override;
void on_new_turn_hook() override;
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
};
class Bridge : public Rigid
{
public:
Bridge(const P& p) :
Rigid(p),
axis_(Axis::hor) {}
Bridge() = delete;
~Bridge() {}
FeatureId id() const override
{
return FeatureId::bridge;
}
std::string name(const Article article) const override;
TileId tile() const override;
char glyph() const override;
void set_axis(const Axis axis)
{
axis_ = axis;
}
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
Axis axis_;
};
class LiquidShallow: public Rigid
{
public:
LiquidShallow(const P& p);
LiquidShallow() = delete;
~LiquidShallow() {}
FeatureId id() const override
{
return FeatureId::liquid_shallow;
}
std::string name(const Article article) const override;
void bump(Actor& actor_bumping) override;
LiquidType type_;
private:
Clr clr_default() const override;
Clr clr_bg_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
};
class LiquidDeep: public Rigid
{
public:
LiquidDeep(const P& p);
LiquidDeep() = delete;
~LiquidDeep() {}
FeatureId id() const override
{
return FeatureId::liquid_deep;
}
std::string name(const Article article) const override;
void bump(Actor& actor_bumping) override;
LiquidType type_;
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
};
class Chasm: public Rigid
{
public:
Chasm(const P& p);
Chasm() = delete;
~Chasm() {}
FeatureId id() const override
{
return FeatureId::chasm;
}
std::string name(const Article article) const override;
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
};
class Door;
class Lever: public Rigid
{
public:
Lever(const P& p);
Lever() = delete;
~Lever() {}
FeatureId id() const override
{
return FeatureId::lever;
}
std::string name(const Article article) const override;
TileId tile() const override;
void bump(Actor& actor_bumping) override;
void link_door(Door* const door)
{
linked_door_ = door;
}
private:
// When a (metal) door is opened by a lever, the door sets all linked
// levers to the right position (just as a convenience for the player to
// show that the second lever is already "activated")
friend class Door;
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
bool is_left_pos_;
Door* linked_door_;
};
class Altar: public Rigid
{
public:
Altar(const P& p);
Altar() = delete;
~Altar() {}
FeatureId id() const override
{
return FeatureId::altar;
}
std::string name(const Article article) const override;
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
};
class Tree: public Rigid
{
public:
Tree(const P& p);
Tree() = delete;
~Tree() {}
FeatureId id() const override
{
return FeatureId::tree;
}
std::string name(const Article article) const override;
WasDestroyed on_finished_burning() override;
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
};
// NOTE: In some previous versions, it was possible to inspect the tomb and get
// a hint about its trait ("It has an aura of unrest", "There are
// foreboding carved signs", etc). This is currently not possible - you
// open the tomb and any "trap" it has will trigger. Therefore the
// TombTrait type could be removed, and instead an effect is just
// randomized when the tomb is opened. But it should be kept the way it
// is; it could be useful. Maybe some sort of hint will be re-implemented
// (e.g. via the "Detect Traps" spell).
enum class TombTrait
{
ghost,
other_undead, // Zombies, Mummies, ...
stench, // Fumes, Ooze-type monster
cursed,
END
};
enum class TombAppearance
{
common, // Common items
ornate, // Minor treasure
marvelous, // Major treasure
END
};
class Tomb: public Rigid
{
public:
Tomb(const P& pos);
Tomb() = delete;
~Tomb() {}
FeatureId id() const override
{
return FeatureId::tomb;
}
std::string name(const Article article) const override;
TileId tile() const override;
void bump(Actor& actor_bumping) override;
DidOpen open(Actor* const actor_opening) override;
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
DidTriggerTrap trigger_trap(Actor* const actor) override;
void player_loot();
void try_sprain_player();
bool is_open_, is_trait_known_;
int push_lid_one_in_n_;
TombAppearance appearance_;
bool is_random_appearance_;
TombTrait trait_;
};
enum class ChestMatl
{
wood,
iron,
END
};
class Chest: public Rigid
{
public:
Chest(const P& pos);
Chest() = delete;
~Chest() {}
FeatureId id() const override
{
return FeatureId::chest;
}
std::string name(const Article article) const override;
TileId tile() const override;
void bump(Actor& actor_bumping) override;
DidOpen open(Actor* const actor_opening) override;
void hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
void player_loot();
void try_sprain_player();
bool is_open_, is_locked_;
ChestMatl matl_;
};
class Cabinet: public Rigid
{
public:
Cabinet(const P& pos);
Cabinet() = delete;
~Cabinet() {}
FeatureId id() const override
{
return FeatureId::cabinet;
}
std::string name(const Article article) const override;
TileId tile() const override;
void bump(Actor& actor_bumping) override;
DidOpen open(Actor* const actor_opening) override;
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
void player_loot();
bool is_open_;
};
enum class FountainEffect
{
refreshing,
xp,
START_OF_BAD_EFFECTS,
curse,
disease,
poison,
frenzy,
paralyze,
blind,
faint,
END
};
enum class FountainType
{
normal,
blessed,
cursed
};
class Fountain: public Rigid
{
public:
Fountain(const P& pos);
Fountain() = delete;
~Fountain() {}
FeatureId id() const override
{
return FeatureId::fountain;
}
std::string name(const Article article) const override;
void bump(Actor& actor_bumping) override;
FountainType type() const
{
return fountain_type_;
}
bool has_drinks_left() const
{
return has_drinks_left_;
}
void set_type(const FountainType type);
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
FountainEffect fountain_effect_;
FountainType fountain_type_;
bool has_drinks_left_;
};
class Cocoon: public Rigid
{
public:
Cocoon(const P& pos);
Cocoon() = delete;
~Cocoon() {}
FeatureId id() const override
{
return FeatureId::cocoon;
}
std::string name(const Article article) const override;
TileId tile() const override;
void bump(Actor& actor_bumping) override;
DidOpen open(Actor* const actor_opening) override;
private:
Clr clr_default() const override;
void on_hit(const DmgType dmg_type,
const DmgMethod dmg_method,
Actor* const actor) override;
void player_loot();
DidTriggerTrap trigger_trap(Actor* const actor) override;
bool is_trapped_;
bool is_open_;
};
#endif
| [
"m.tornq@gmail.com"
] | m.tornq@gmail.com |
6374b5bb7719e396d52eb33c6f42e1660c12c34a | 9513f7ca6946e10071ae58e79fa68bbe98b2e6ad | /touchgfx/framework/source/platform/hal/ST/mcu/stm32f7xx/STM32F7HAL.cpp | ef90a4f0c73cd70adb5b8ca62399b9865cdb55e6 | [] | no_license | koson/Oscilloscope_STM32F746 | 71468321350b9ff2b8089a8c9e451489d90f541f | 96281e007d7b17e920649ad28f8922f1078312ba | refs/heads/master | 2023-09-01T22:55:38.019285 | 2021-11-22T10:36:42 | 2021-11-22T10:36:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,924 | cpp | /******************************************************************************
*
* @brief This file is part of the TouchGFX 4.7.0 evaluation distribution.
*
* @author Draupner Graphics A/S <http://www.touchgfx.com>
*
******************************************************************************
*
* @section Copyright
*
* Copyright (C) 2014-2016 Draupner Graphics A/S <http://www.touchgfx.com>.
* All rights reserved.
*
* TouchGFX is protected by international copyright laws and the knowledge of
* this source code may not be used to write a similar product. This file may
* only be used in accordance with a license and should not be re-
* distributed in any way without the prior permission of Draupner Graphics.
*
* This is licensed software for evaluation use, any use must strictly comply
* with the evaluation license agreement provided with delivery of the
* TouchGFX software.
*
* The evaluation license agreement can be seen on www.touchgfx.com
*
* @section Disclaimer
*
* DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Draupner Graphics A/S has
* no obligation to support this software. Draupner Graphics A/S is providing
* the software "AS IS", with no express or implied warranties of any kind,
* including, but not limited to, any implied warranties of merchantability
* or fitness for any particular purpose or warranties against infringement
* of any proprietary rights of a third party.
*
* Draupner Graphics A/S can not be held liable for any consequential,
* incidental, or special damages, or any other relief, or for any claim by
* any third party, arising from your use of this software.
*
*****************************************************************************/
#include <touchgfx/hal/OSWrappers.hpp>
#include <platform/hal/ST/mcu/stm32f7xx/STM32F7HAL.hpp>
#include <platform/hal/ST/mcu/stm32f7xx/STM32F7DMA.hpp>
#include <touchgfx/lcd/LCD.hpp>
#include <touchgfx/hal/GPIO.hpp>
#include "stm32f7xx.h"
uint16_t* STM32F7HAL::getTFTFrameBuffer() const
{
return (uint16_t*)LTDC_Layer1->CFBAR;
}
void STM32F7HAL::setTFTFrameBuffer(uint16_t* adr)
{
LTDC_Layer1->CFBAR = (uint32_t)adr;
/* Reload immediate */
LTDC->SRCR = (uint32_t)LTDC_SRCR_IMR;
}
uint16_t STM32F7HAL::getTFTCurrentLine()
{
// This function only requires an implementation if single buffering
// on LTDC display is being used (REFRESH_STRATEGY_OPTIM_SINGLE_BUFFER_TFT_CTRL).
// The CPSR register (bits 15:0) specify current line of TFT controller.
uint16_t curr = (uint16_t)(LTDC->CPSR & 0xffff);
uint16_t backPorchY = (uint16_t)(LTDC->BPCR & 0x7FF) + 1;
// The semantics of the getTFTCurrentLine() function is to return a value
// in the range of 0-totalheight. If we are still in back porch area, return 0.
if (curr < backPorchY)
{
return 0;
}
else
{
return curr - backPorchY;
}
}
void STM32F7HAL::flushFrameBuffer(const touchgfx::Rect& rect)
{
HAL::flushFrameBuffer(rect);
/* To make sure LTDC sees correct data: */
SCB_CleanInvalidateDCache();
}
void STM32F7HAL::configureInterrupts()
{
NVIC_SetPriority(DMA2D_IRQn, 9);
NVIC_SetPriority(LTDC_IRQn, 9);
}
static uint16_t lcd_int_active_line;
static uint16_t lcd_int_porch_line;
/* Enable LCD line interrupt, when entering video (active) area */
void STM32F7HAL::enableLCDControllerInterrupt()
{
lcd_int_active_line = (LTDC->BPCR & 0x7FF) - 1;
lcd_int_porch_line = (LTDC->AWCR & 0x7FF) - 1;
LTDC->LIPCR = lcd_int_active_line;
LTDC->IER = 1;
}
void STM32F7HAL::disableInterrupts()
{
NVIC_DisableIRQ(LTDC_IRQn);
NVIC_DisableIRQ(DMA2D_IRQn);
}
void STM32F7HAL::enableInterrupts()
{
NVIC_EnableIRQ(LTDC_IRQn);
NVIC_EnableIRQ(DMA2D_IRQn);
}
extern "C"
__irq void LTDC_IRQHandler(void)
{
if (LTDC->ISR & 1)
{
LTDC->ICR = 1;
if (LTDC->LIPCR == lcd_int_active_line)
{
//entering active area
LTDC->LIPCR = lcd_int_porch_line;
HAL::getInstance()->vSync();
OSWrappers::signalVSync();
// Swap frame buffers immediately instead of waiting for the task to be scheduled in.
// Note: task will also swap when it wakes up, but that operation is guarded and will not have
// any effect if already swapped.
HAL::getInstance()->swapFrameBuffers();
GPIO::set(GPIO::VSYNC_FREQ);
}
else
{
//exiting active area
LTDC->LIPCR = lcd_int_active_line;
GPIO::clear(GPIO::VSYNC_FREQ);
HAL::getInstance()->frontPorchEntered();
}
}
}
extern "C"
__irq void DMA2D_IRQHandler(void)
{
if (DMA2D->ISR & 2)
{
DMA2D->IFCR = 2;
//invalidate D-Cache after DMA transfer
SCB_CleanInvalidateDCache();
touchgfx::HAL::getInstance()->signalDMAInterrupt();
}
}
| [
"hainguyen.eeit@gmail.com"
] | hainguyen.eeit@gmail.com |
020e0475a48b15081575a83c9192891a4904b892 | 13f3ce6623768a5c5dd6f6da05d928966ea1c772 | /custom.Altis/Dialog/zInv/ZInv.hpp | 19d34a25b3a01c6a38e1584f4dd79fe86707c0ca | [] | no_license | Merimar/WildAltis | 71e5295acc9aa80a0bfca99982d834a12431468e | 6760acba33bbc0e9c550716911af95572f4a2a19 | refs/heads/master | 2023-03-28T06:33:05.744296 | 2021-04-01T17:16:06 | 2021-04-01T17:16:06 | 286,337,512 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,110 | hpp | class ZInv {
idd = 4350;
class controlsBackground {
class Picture_Background: RscPicture {
idc = -1;
text = "Images\Dialog\player_inv.jpg";
x = 0.215941 * safezoneW + safezoneX;
y = 0.113221 * safezoneH + safezoneY;
w = 0.566481 * safezoneW;
h = 0.739284 * safezoneH;
};
};
class controls {
class List_Items: Trans_List {
idc = 4351;
colorBackground[] = {0,0,0,0.5};
x = 0.373697 * safezoneW + safezoneX;
y = 0.303074 * safezoneH + safezoneY;
w = 0.167813 * safezoneW;
h = 0.254074 * safezoneH;
};
class List_Lizenzen: Trans_List {
idc = 4352;
colorBackground[] = {0,0,0,0};
sizeEx = 0.025;
x = 0.217448 * safezoneW + safezoneX;
y = 0.753 * safezoneH + safezoneY;
w = 0.111041 * safezoneW;
h = 0.0966668 * safezoneH;
};
class Combo_Players: Trans_Combo {
idc = 4353;
colorBackground[] = {0,0,0,0.5};
x = 0.60026 * safezoneW + safezoneX;
y = 0.490741 * safezoneH + safezoneY;
w = 0.131875 * safezoneW;
h = 0.0281481 * safezoneH;
};
class Edit_Amount: Trans_Edit {
idc = 4354;
text = "1";
colorBackground[] = {0,0,0,1};
x = 0.600989 * safezoneW + safezoneX;
y = 0.529296 * safezoneH + safezoneY;
w = 0.130833 * safezoneW;
h = 0.0272221 * safezoneH;
};
class Text_Konto: Trans_Text {
idc = 4355;
text = "€100.000";
x = 0.226719 * safezoneW + safezoneX;
y = 0.555 * safezoneH + safezoneY;
w = 0.0979687 * safezoneW;
h = 0.033 * safezoneH;
};
class Text_Cash: Trans_Text {
idc = 4356;
text = "€100.000";
x = 0.226719 * safezoneW + safezoneX;
y = 0.611852 * safezoneH + safezoneY;
w = 0.0979687 * safezoneW;
h = 0.033 * safezoneH;
};
class Text_Gewicht: Trans_Text {
idc = 4357;
text = "0 / 24";
x = 0.226042 * safezoneW + safezoneX;
y = 0.671296 * safezoneH + safezoneY;
w = 0.0979687 * safezoneW;
h = 0.033 * safezoneH;
};
class Btn_Update: Trans_CloseButton {
idc = 4358;
onButtonClick = "[] spawn life_fnc_umgebungschecker;";
x = 0.599479 * safezoneW + safezoneX;
y = 0.436111 * safezoneH + safezoneY;
w = 0.132396 * safezoneW;
h = 0.0327778 * safezoneH;
};
class Btn_FAQ: Trans_CloseButton {
idc = 4359;
onButtonClick = "[] call life_fnc_openFAQ;";
x = 0.226719 * safezoneW + safezoneX;
y = 0.236926 * safezoneH + safezoneY;
w = 0.09125 * safezoneW;
h = 0.0320741 * safezoneH;
};
class Btn_Bugreport: Trans_CloseButton {
idc = 4360;
onButtonClick = "[] call life_fnc_openBugtracker;";
x = 0.226563 * safezoneW + safezoneX;
y = 0.286111 * safezoneH + safezoneY;
w = 0.09125 * safezoneW;
h = 0.0320741 * safezoneH;
};
class Btn_Farmrouten: Trans_CloseButton {
idc = 4361;
onButtonClick = "[] call life_fnc_openFarm;";
x = 0.226041 * safezoneW + safezoneX;
y = 0.336111 * safezoneH + safezoneY;
w = 0.09125 * safezoneW;
h = 0.0320741 * safezoneH;
};
class Btn_Ausweis: Trans_CloseButton {
idc = 4362;
onButtonClick = "[] call life_fnc_showID;";
x = 0.226562 * safezoneW + safezoneX;
y = 0.386111 * safezoneH + safezoneY;
w = 0.09125 * safezoneW;
h = 0.0320741 * safezoneH;
};
class Btn_Affiliate: Trans_CloseButton {
idc = 4363;
onButtonClick = "[] call life_fnc_openAffiliate;";
x = 0.226041 * safezoneW + safezoneX;
y = 0.433334 * safezoneH + safezoneY;
w = 0.09125 * safezoneW;
h = 0.0320741 * safezoneH;
};
class Btn_Cellphone: Trans_CloseButton {
idc = 4364;
onButtonClick = "[] call life_fnc_openCellphone;";
x = 0.350521 * safezoneW + safezoneX;
y = 0.732407 * safezoneH + safezoneY;
w = 0.0886458 * safezoneW;
h = 0.033 * safezoneH;
};
class Btn_Key: Trans_CloseButton {
idc = 4365;
onButtonClick = "[] call life_fnc_openKeychain;";
x = 0.449479 * safezoneW + safezoneX;
y = 0.733333 * safezoneH + safezoneY;
w = 0.0886458 * safezoneW;
h = 0.033 * safezoneH;
};
class Btn_Settings: Trans_CloseButton {
idc = 4366;
onButtonClick = "[] call life_fnc_openSettings;";
x = 0.548438 * safezoneW + safezoneX;
y = 0.733334 * safezoneH + safezoneY;
w = 0.0886458 * safezoneW;
h = 0.033 * safezoneH;
};
class Btn_Gang: Trans_CloseButton {
idc = 4367;
onButtonClick = "[] call life_fnc_openGangDialog;";
x = 0.35052 * safezoneW + safezoneX;
y = 0.80463 * safezoneH + safezoneY;
w = 0.0886458 * safezoneW;
h = 0.033 * safezoneH;
};
class Btn_Skill: Trans_CloseButton {
idc = 4368;
onButtonClick = "[] call life_fnc_openSkills;";
x = 0.448959 * safezoneW + safezoneX;
y = 0.803704 * safezoneH + safezoneY;
w = 0.0886458 * safezoneW;
h = 0.033 * safezoneH;
};
class Btn_Markt: Trans_CloseButton {
idc = 4369;
onButtonClick = "[] call life_fnc_openMarkt;";
x = 0.548437 * safezoneW + safezoneX;
y = 0.803703 * safezoneH + safezoneY;
w = 0.0886458 * safezoneW;
h = 0.033 * safezoneH;
};
class Btn_GiveMoney: Trans_CloseButton {
idc = 4370;
onButtonClick = "[] call life_fnc_giveMoney;";
x = 0.586979 * safezoneW + safezoneX;
y = 0.591667 * safezoneH + safezoneY;
w = 0.0683334 * safezoneW;
h = 0.0337037 * safezoneH;
};
class Btn_GiveItem: Trans_CloseButton {
idc = 4371;
onButtonClick = "[] call life_fnc_giveItem;";
x = 0.67552 * safezoneW + safezoneX;
y = 0.590741 * safezoneH + safezoneY;
w = 0.0683334 * safezoneW;
h = 0.0337037 * safezoneH;
};
class Btn_Use: Trans_CloseButton {
idc = 4372;
onButtonClick = "[] call life_fnc_useItem;";
x = 0.377187 * safezoneW + safezoneX;
y = 0.591926 * safezoneH + safezoneY;
w = 0.0683334 * safezoneW;
h = 0.0337037 * safezoneH;
};
class Btn_Remove: Trans_CloseButton {
idc = 4373;
onButtonClick = "[] call life_fnc_removeItem;";
x = 0.465625 * safezoneW + safezoneX;
y = 0.590741 * safezoneH + safezoneY;
w = 0.0683334 * safezoneW;
h = 0.0337037 * safezoneH;
};
class Btn_Cop1: Trans_Button {
idc = 4374;
x = 0.350208 * safezoneW + safezoneX;
y = 0.768148 * safezoneH + safezoneY;
w = 0.0886458 * safezoneW;
h = 0.033 * safezoneH;
};
class Btn_Cop2: Trans_Button {
idc = 4375;
x = 0.449167 * safezoneW + safezoneX;
y = 0.768741 * safezoneH + safezoneY;
w = 0.0886458 * safezoneW;
h = 0.033 * safezoneH;
};
class Btn_Cop3: Trans_Button {
idc = 4376;
x = 0.548646 * safezoneW + safezoneX;
y = 0.768407 * safezoneH + safezoneY;
w = 0.0886458 * safezoneW;
h = 0.033 * safezoneH;
};
class Btn_Cop4: Trans_Button {
idc = 4377;
x = 0.670156 * safezoneW + safezoneX;
y = 0.72 * safezoneH + safezoneY;
w = 0.0886458 * safezoneW;
h = 0.033 * safezoneH;
};
class Btn_Cop5: Trans_Button {
idc = 4378;
x = 0.670156 * safezoneW + safezoneX;
y = 0.764 * safezoneH + safezoneY;
w = 0.0886458 * safezoneW;
h = 0.033 * safezoneH;
};
class Btn_Cop6: Trans_Button {
idc = 4379;
x = 0.670156 * safezoneW + safezoneX;
y = 0.808 * safezoneH + safezoneY;
w = 0.0886458 * safezoneW;
h = 0.033 * safezoneH;
};
};
}; | [
"maxroesgen@gmail.com"
] | maxroesgen@gmail.com |
a3498bf7e5a10303d77588eb2466b824876c9770 | 28b2fc3ca4571674ae43ac4b79996ed3cbd11b81 | /PapuEngine/ScreenList.h | e377bd4809ff9eeeebabaf656e00603da1701cff | [] | no_license | KeilerX/FundaTF | 45b10062bf5d85f0f499bcfee5c9992c604f26d9 | b3b65926b3a309951f4e2f6dacf8b7be8441e9b3 | refs/heads/main | 2023-01-22T09:56:55.333560 | 2020-11-30T01:53:55 | 2020-11-30T01:53:55 | 317,037,211 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 412 | h | #pragma once
#include <vector>
class Game;
class IGameScreen;
class ScreenList;
class ScreenList
{
public:
ScreenList(Game* game);
~ScreenList();
IGameScreen* moveNext();
IGameScreen* movePrev();
void setScreen(int nextScreen);
void addScreen(IGameScreen* newScreen);
void destroy();
IGameScreen* getCurrent();
protected:
std::vector<IGameScreen*> _screens;
Game* _game;
int _currentIndex = -1;
};
| [
"u201213280@upc.edu.pe"
] | u201213280@upc.edu.pe |
fe7e8f2b7a7aeb00ccf9f789a770b441d44190c7 | 53f7e5d18d228696f0e8db8afe16e0131e1ce3a4 | /cpp/RootishArrayStack.cpp | edcaeee56da8ad461302ee971c46c4dc6aeb0eea | [
"CC-BY-2.5",
"CC-BY-4.0"
] | permissive | spinute/ods | 57a02a19909272e13b44d6786a33cbe0589c4345 | bfbcced58ec71d9e1121e395c53e6c7db2666be0 | refs/heads/ja | 2023-01-23T05:55:41.212713 | 2021-01-26T11:20:48 | 2021-01-26T11:20:48 | 90,636,210 | 365 | 36 | NOASSERTION | 2021-01-26T11:20:49 | 2017-05-08T14:15:16 | TeX | UTF-8 | C++ | false | false | 462 | cpp | /*
* RootishArrayStack.cpp
*
* Created on: 2011-11-23
* Author: morin
*/
#include "RootishArrayStack.h"
namespace ods {
template RootishArrayStack<int>::RootishArrayStack();
template RootishArrayStack<int>::~RootishArrayStack();
template void RootishArrayStack<int>::add(int,int);
template int RootishArrayStack<int>::remove(int);
template void RootishArrayStack<int>::grow();
template void RootishArrayStack<int>::shrink();
} /* namespace ods */
| [
"morin@scs.carleton.ca"
] | morin@scs.carleton.ca |
8b2c6ebc3be80f56885ed99a90f45c5998de94c8 | c67ed12eae84af574406e453106b7d898ff47dc7 | /chap03/Page130_typealias.cpp | 278eb42ec194a75dab9cab540748dc51f2d1f64a | [
"Apache-2.0"
] | permissive | chihyang/CPP_Primer | 8374396b58ea0e1b0f4c4adaf093a7c0116a6901 | 9e268d46e9582d60d1e9c3d8d2a41c1e7b83293b | refs/heads/master | 2022-09-16T08:54:59.465691 | 2022-09-03T17:25:59 | 2022-09-03T17:25:59 | 43,039,810 | 58 | 23 | Apache-2.0 | 2023-01-14T07:06:19 | 2015-09-24T02:25:47 | C++ | UTF-8 | C++ | false | false | 411 | cpp | #include <iostream>
using std::cout;
using std::cin;
using std::endl;
int main()
{
using int_array = int[4];
typedef int int_array[4];
int_array ia[3] = {0};
// ia is an array of 3 elements, every of which is an array 4 ints.
for(int_array *p = ia; p != ia + 3; ++p)
{
for(int *q = *p; q != *p + 4; ++q)
cout << *q << ' ';
cout << endl;
}
return 0;
}
| [
"chihyanghsin@gmail.com"
] | chihyanghsin@gmail.com |
f75711f6147d4c6c1e59bfac69ec4e9811726e81 | af4d1d6d4abe085703e2875445309cd2376353db | /modules/ODE/examples/GLUT/06-ODE-exploration/CDemo3.cpp | 03ba309e3b5795a8a29b08f2aa53ee1d79a1c89f | [
"BSD-3-Clause"
] | permissive | Mithsen/Gallbladder | ebbb8e87b82904897804c25d286434b9e841eb5f | 981cec68ca9e9af8613a6bf5a71048f86c16a070 | refs/heads/master | 2021-07-25T01:57:14.079012 | 2017-11-01T04:28:43 | 2017-11-01T04:28:43 | 109,085,398 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,686 | cpp | //===========================================================================
/*
Software License Agreement (BSD License)
Copyright (c) 2003-2016, CHAI3D
(www.chai3d.org)
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
* Neither the name of CHAI3D nor the names of its contributors may
be used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
\author <http://www.chai3d.org>
\author Francois Conti
\version 3.1.1 $Rev: 1869 $
*/
//===========================================================================
//---------------------------------------------------------------------------
#include "CDemo3.h"
using namespace std;
//---------------------------------------------------------------------------
//===========================================================================
/*!
Constructor of cDemo3.
*/
//===========================================================================
cDemo3::cDemo3(const string a_resourceRoot,
const int a_numDevices,
shared_ptr<cGenericHapticDevice> a_hapticDevice0,
shared_ptr<cGenericHapticDevice> a_hapticDevice1):cGenericDemo(a_resourceRoot, a_numDevices, a_hapticDevice0, a_hapticDevice1)
{
cMaterial matBase;
matBase.setGrayLevel(0.3);
matBase.setStiffness(1500);
double offset = 0.02;
cMatrix3d rot0;
rot0.identity();
rot0.rotateAboutGlobalAxisDeg (cVector3d(0,0,1), 45);
m_ODEBase0 = new cODEGenericBody(m_ODEWorld);
cMesh* base0 = new cMesh();
cCreateBox(base0, 0.005, 0.05, 0.01);
m_ODEBase0->createDynamicBox(0.005, 0.05, 0.01, true);
base0->createAABBCollisionDetector(m_toolRadius);
base0->setMaterial(matBase);
m_ODEBase0->setImageModel(base0);
m_ODEBase0->setLocalPos(0.0+ offset, 0.0 + offset, 0.050);
m_ODEBase0->setLocalRot(rot0);
m_ODEBase1 = new cODEGenericBody(m_ODEWorld);
cMesh* base1 = new cMesh();
cCreateBox(base1, 0.005, 0.05, 0.01);
m_ODEBase1->createDynamicBox(0.005, 0.05, 0.01, true);
base1->createAABBCollisionDetector(m_toolRadius);
base1->setMaterial(matBase);
m_ODEBase1->setImageModel(base1);
m_ODEBase1->setLocalPos(0.0+ offset, 0.0+ offset, 0.020);
m_ODEBase1->setLocalRot(rot0);
m_ODEBase2 = new cODEGenericBody(m_ODEWorld);
cMesh* base2 = new cMesh();
cCreateBox(base2, 0.005, 0.005, 0.125);
m_ODEBase2->createDynamicBox(0.005, 0.005, 0.125, true);
base2->createAABBCollisionDetector(m_toolRadius);
base2->setMaterial(matBase);
m_ODEBase2->setImageModel(base2);
m_ODEBase2->setLocalPos(0.010+ offset,-0.010+ offset, 0.0);
m_ODEBase2->setLocalRot(rot0);
m_ODEBase3 = new cODEGenericBody(m_ODEWorld);
cMesh* base3 = new cMesh();
cCreateBox(base3, 0.005, 0.005, 0.125);
m_ODEBase3->createDynamicBox(0.005, 0.005, 0.125, true);
base3->createAABBCollisionDetector(m_toolRadius);
base3->setMaterial(matBase);
m_ODEBase3->setImageModel(base3);
m_ODEBase3->setLocalPos(-0.01+ offset,0.01+ offset, 0.0);
m_ODEBase3->setLocalRot(rot0);
m_ODEBase4 = new cODEGenericBody(m_ODEWorld);
cMesh* base4 = new cMesh();
cCreateBox(base4, 0.005, 0.05, 0.01);
m_ODEBase4->createDynamicBox(0.005, 0.05, 0.01, true);
base4->createAABBCollisionDetector(m_toolRadius);
base4->setMaterial(matBase);
m_ODEBase4->setImageModel(base4);
m_ODEBase4->setLocalPos(0.0- offset, 0.0 - offset, 0.050);
m_ODEBase4->setLocalRot(rot0);
m_ODEBase5 = new cODEGenericBody(m_ODEWorld);
cMesh* base5 = new cMesh();
cCreateBox(base5, 0.005, 0.05, 0.01);
m_ODEBase5->createDynamicBox(0.005, 0.05, 0.01, true);
base5->createAABBCollisionDetector(m_toolRadius);
base5->setMaterial(matBase);
m_ODEBase5->setImageModel(base5);
m_ODEBase5->setLocalPos(0.0- offset, 0.0 - offset, 0.020);
m_ODEBase5->setLocalRot(rot0);
m_ODEBase6 = new cODEGenericBody(m_ODEWorld);
cMesh* base6 = new cMesh();
cCreateBox(base6, 0.005, 0.005, 0.125);
m_ODEBase6->createDynamicBox(0.005, 0.005, 0.125, true);
base6->createAABBCollisionDetector(m_toolRadius);
base6->setMaterial(matBase);
m_ODEBase6->setImageModel(base6);
m_ODEBase6->setLocalPos(0.010- offset,-0.010 - offset, 0.0);
m_ODEBase6->setLocalRot(rot0);
m_ODEBase7 = new cODEGenericBody(m_ODEWorld);
cMesh* base7 = new cMesh();
cCreateBox(base7, 0.005, 0.005, 0.125);
m_ODEBase7->createDynamicBox(0.005, 0.005, 0.125, true);
base7->createAABBCollisionDetector(m_toolRadius);
base7->setMaterial(matBase);
m_ODEBase7->setImageModel(base7);
m_ODEBase7->setLocalPos(-0.01- offset,0.01 - offset, 0.0);
m_ODEBase7->setLocalRot(rot0);
// create a new ODE object that is automatically added to the ODE world
m_ODEBody0 = new cODEGenericBody(m_ODEWorld);
cMesh* object0 = new cMesh();
cCreateBox(object0, 0.075, 0.017, 0.017);
object0->createAABBCollisionDetector(m_toolRadius);
cMaterial mat;
mat.setRedIndian();
mat.m_specular.set(0.0, 0.0, 0.0);
mat.setStiffness(1000);
mat.setDynamicFriction(0.6);
mat.setStaticFriction(0.6);
object0->setMaterial(mat);
// add mesh to ODE object
m_ODEBody0->setImageModel(object0);
m_ODEBody0->createDynamicBox(0.075, 0.017, 0.017);
m_ODEBody0->setMass(0.04);
// initialize
init();
};
//===========================================================================
/*!
Set stiffness of environment
\param a_stiffness Stiffness value [N/m]
*/
//===========================================================================
void cDemo3::setStiffness(double a_stiffness)
{
// set ground
m_ground->setStiffness(a_stiffness, true);
// set objects
m_ODEBody0->m_imageModel->setStiffness(a_stiffness);
m_ODEBase0->m_imageModel->setStiffness(a_stiffness);
m_ODEBase1->m_imageModel->setStiffness(a_stiffness);
m_ODEBase2->m_imageModel->setStiffness(a_stiffness);
m_ODEBase3->m_imageModel->setStiffness(a_stiffness);
};
//===========================================================================
/*!
Initialize position of objects
*/
//===========================================================================
void cDemo3::init()
{
m_ODEBody0->setLocalPos(cVector3d(0.00, 0.07, 0.04));
}
| [
"mithsendesilva@gmail.com"
] | mithsendesilva@gmail.com |
0c54725f69ec83db63f8879c87916af65b216b5a | 78661c9baf43418e4fd26233b8fa53b34329c958 | /1.4.cpp | 470b2b8e25c7676b76b4249d644b8441b194226e | [] | no_license | memehadi/Algorithms-And-Data-Structures | d3a02418f3320035c974358ec772240e552364d0 | 58db37dc950f700dbed5f1f62fe0c65235f00477 | refs/heads/main | 2023-02-01T16:21:23.623645 | 2020-12-21T17:42:12 | 2020-12-21T17:42:12 | 323,406,524 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 720 | cpp | /*Musab Mehadi
mmehadi@jacobs-university.de
*/
#include <vector>
#include <iostream>
#include<string>
//const int size = 50;
using namespace std;
int main()
{
vector<string> vs; // a vector of ints. Default size is accepted
string s;
while (1)
{
cin>>s;
if(s=="END")
{
break;
}
vs.push_back(s);
/// cout<<"size is "<<vs.size()<<endl;
}
for (int i = 0; i < vs.size(); i++) // uses the overloaded [] operator
// to access data
cout << vs[i] << " ";
cout<<endl;
vector<string>::iterator viter = vs.begin();
while (viter != vs.end())
{
if (viter==(vs.end())-1)
cout << *viter;
else
cout << *viter << ", " ;
viter++;
}
return 0;
}
| [
"mmehadi@jacobs-university.de"
] | mmehadi@jacobs-university.de |
5627f7760a2eb21cba7e5ce35056382532cca649 | f99e4759fc5a40e780b3d319b584b766d502c031 | /PROJ5 - SAf - C++ Game/src/Components/Hud.cpp | 356c552dc112122a85a245467b0443fd1f381861 | [
"MIT"
] | permissive | beschoenen/school | 41f66dcc85190039729eb0ddc1329ac400446a78 | aba375fbb59c65577c70c5301053c5c20293498a | refs/heads/master | 2020-03-07T14:09:52.637641 | 2018-03-31T09:53:54 | 2018-03-31T09:53:54 | 127,520,045 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 2,414 | cpp | #include "Hud.h"
#include "../Engine/Engine.h"
Hud::Hud()
{
health_label = std::shared_ptr<HudLabel>(new HudLabel("Health", 10, 10));
health_bar = std::shared_ptr<HudBar>(new HudBar(10, 35, {57, 181, 74}, 100));;
armor_label = std::shared_ptr<HudLabel>(new HudLabel("Armor", 180, 10));
armor_bar = std::shared_ptr<HudBar>(new HudBar(180, 35, {29, 120, 222}, 100));
level_label = std::shared_ptr<HudLabel>(new HudLabel("Level", 365, 10));
level_number = std::shared_ptr<HudLabel>(new HudLabel("1", 365, 35));
score_label = std::shared_ptr<HudLabel>(new HudLabel("Score", -10, 10, POS_TOP_RIGHT));
score_value = std::shared_ptr<HudLabel>(new HudLabel("0", -10, 35, POS_TOP_RIGHT));
round_label = std::shared_ptr<HudLabel>(new HudLabel("Round", 500, 10));
round_number = std::shared_ptr<HudLabel>(new HudLabel("1 of " + std::to_string(GAME_ROUNDS), 500, 35));
}
void Hud::draw()
{
Engine::instance()->draw(health_label);
Engine::instance()->draw(health_bar);
Engine::instance()->draw(armor_label);
Engine::instance()->draw(armor_bar);
Engine::instance()->draw(score_label);
Engine::instance()->draw(score_value);
Engine::instance()->draw(round_label);
Engine::instance()->draw(round_number);
Engine::instance()->draw(level_label);
Engine::instance()->draw(level_number);
}
void Hud::erase()
{
Engine::instance()->erase(health_label);
Engine::instance()->erase(health_bar);
Engine::instance()->erase(armor_label);
Engine::instance()->erase(armor_bar);
Engine::instance()->erase(score_label);
Engine::instance()->erase(score_value);
Engine::instance()->erase(round_label);
Engine::instance()->erase(round_number);
Engine::instance()->erase(level_label);
Engine::instance()->erase(level_number);
}
void Hud::set_max_health(int max)
{
health_bar->set_max_value(max);
}
void Hud::set_health(int value)
{
health_bar->set_value(value);
}
void Hud::set_max_armor(int max)
{
armor_bar->set_max_value(max);
}
void Hud::set_armor(int value)
{
armor_bar->set_value(value);
}
void Hud::set_score(int score)
{
score_value->set_text(std::to_string(score));
}
void Hud::set_round(int round)
{
round_number->set_text(std::to_string(round) + " of " + std::to_string(GAME_ROUNDS));
}
void Hud::set_level(int level)
{
level_number->set_text(std::to_string(level));
}
| [
"me@kevinrichter.nl"
] | me@kevinrichter.nl |
673835a81c8e1f04a066145cd76795e8506dbff6 | 4c97019dc8c5c1b9935dc07c4c8f3ebe7bff83bb | /core/MSeedReader.h | 1e797df4758ac54756c1bac4f229f0b8202d7d54 | [] | no_license | xsburg/magnetometry-toolkit | 4314c8707913bc208398322694ab53f49c9f9876 | 3ba8b46b88211a857ff778ba725b0c60507d89bf | refs/heads/master | 2021-01-17T16:09:20.391878 | 2016-06-14T10:22:00 | 2016-06-14T10:22:00 | 60,194,551 | 2 | 1 | null | 2016-06-14T10:22:00 | 2016-06-01T16:45:33 | JavaScript | UTF-8 | C++ | false | false | 912 | h | // ***********************************************************************
// <author>Stephan Burguchev</author>
// <copyright company="Stephan Burguchev">
// Copyright (c) Stephan Burguchev 2012-2015. All rights reserved.
// </copyright>
// <summary>
// MSeedReader.h
// </summary>
// ***********************************************************************
#pragma once
#include "MSeedRecord.h"
#include "MSeedWriter.h"
namespace core
{
class MSeedReader
{
public:
SMART_PTR_T(MSeedReader);
MSeedReader(QString fileName);
inline MSeedPackVerbose verbose() const { return _verbose; }
inline void verbose(const MSeedPackVerbose& verbose) { _verbose = verbose; }
QList<AbstractMSeedRecord::SharedPtr_t> readAll(bool *success = nullptr);
private:
QString _fileName;
MSeedPackVerbose _verbose;
};
}
| [
"me@sburg.net"
] | me@sburg.net |
2f01e80aa00f074f4274140c5e691c51885d80a4 | cc5efadbb831bf4bce4c335ec407836641cf3cb6 | /OpenCV-iOS/opencv-svn/modules/imgproc/src/distransform.cpp | bdb2a1b1b899dc33e47e2a945e86107eba01ff52 | [] | no_license | fbmyers/TBScope | 579be8071bdce51421f5a526b9a7b6137d5ec6ba | fd650e297a09edf7a2aa0778787d5b6b38132a74 | refs/heads/master | 2021-01-19T03:19:35.630575 | 2015-11-24T04:48:49 | 2015-11-24T04:48:49 | 16,781,099 | 0 | 2 | null | 2015-11-21T22:23:40 | 2014-02-12T20:39:03 | C++ | UTF-8 | C++ | false | false | 23,045 | cpp | /*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, install,
// copy or use the software.
//
//
// License Agreement
// For Open Source Computer Vision Library
//
// Copyright (C) 2000, Intel Corporation, all rights reserved.
// Copyright (C) 2013, OpenCV Foundation, all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistribution's of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistribution's in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * The name of the copyright holders may not be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
//M*/
#include "precomp.hpp"
namespace cv
{
static const int DIST_SHIFT = 16;
static const int INIT_DIST0 = (INT_MAX >> 2);
static void
initTopBottom( Mat& temp, int border )
{
Size size = temp.size();
for( int i = 0; i < border; i++ )
{
int* ttop = temp.ptr<int>(i);
int* tbottom = temp.ptr<int>(size.height - i - 1);
for( int j = 0; j < size.width; j++ )
{
ttop[j] = INIT_DIST0;
tbottom[j] = INIT_DIST0;
}
}
}
static void
distanceTransform_3x3( const Mat& _src, Mat& _temp, Mat& _dist, const float* metrics )
{
const int BORDER = 1;
int i, j;
const int HV_DIST = CV_FLT_TO_FIX( metrics[0], DIST_SHIFT );
const int DIAG_DIST = CV_FLT_TO_FIX( metrics[1], DIST_SHIFT );
const float scale = 1.f/(1 << DIST_SHIFT);
const uchar* src = _src.data;
int* temp = _temp.ptr<int>();
float* dist = _dist.ptr<float>();
int srcstep = (int)(_src.step/sizeof(src[0]));
int step = (int)(_temp.step/sizeof(temp[0]));
int dststep = (int)(_dist.step/sizeof(dist[0]));
Size size = _src.size();
initTopBottom( _temp, BORDER );
// forward pass
for( i = 0; i < size.height; i++ )
{
const uchar* s = src + i*srcstep;
int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
for( j = 0; j < BORDER; j++ )
tmp[-j-1] = tmp[size.width + j] = INIT_DIST0;
for( j = 0; j < size.width; j++ )
{
if( !s[j] )
tmp[j] = 0;
else
{
int t0 = tmp[j-step-1] + DIAG_DIST;
int t = tmp[j-step] + HV_DIST;
if( t0 > t ) t0 = t;
t = tmp[j-step+1] + DIAG_DIST;
if( t0 > t ) t0 = t;
t = tmp[j-1] + HV_DIST;
if( t0 > t ) t0 = t;
tmp[j] = t0;
}
}
}
// backward pass
for( i = size.height - 1; i >= 0; i-- )
{
float* d = (float*)(dist + i*dststep);
int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
for( j = size.width - 1; j >= 0; j-- )
{
int t0 = tmp[j];
if( t0 > HV_DIST )
{
int t = tmp[j+step+1] + DIAG_DIST;
if( t0 > t ) t0 = t;
t = tmp[j+step] + HV_DIST;
if( t0 > t ) t0 = t;
t = tmp[j+step-1] + DIAG_DIST;
if( t0 > t ) t0 = t;
t = tmp[j+1] + HV_DIST;
if( t0 > t ) t0 = t;
tmp[j] = t0;
}
d[j] = (float)(t0 * scale);
}
}
}
static void
distanceTransform_5x5( const Mat& _src, Mat& _temp, Mat& _dist, const float* metrics )
{
const int BORDER = 2;
int i, j;
const int HV_DIST = CV_FLT_TO_FIX( metrics[0], DIST_SHIFT );
const int DIAG_DIST = CV_FLT_TO_FIX( metrics[1], DIST_SHIFT );
const int LONG_DIST = CV_FLT_TO_FIX( metrics[2], DIST_SHIFT );
const float scale = 1.f/(1 << DIST_SHIFT);
const uchar* src = _src.data;
int* temp = _temp.ptr<int>();
float* dist = _dist.ptr<float>();
int srcstep = (int)(_src.step/sizeof(src[0]));
int step = (int)(_temp.step/sizeof(temp[0]));
int dststep = (int)(_dist.step/sizeof(dist[0]));
Size size = _src.size();
initTopBottom( _temp, BORDER );
// forward pass
for( i = 0; i < size.height; i++ )
{
const uchar* s = src + i*srcstep;
int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
for( j = 0; j < BORDER; j++ )
tmp[-j-1] = tmp[size.width + j] = INIT_DIST0;
for( j = 0; j < size.width; j++ )
{
if( !s[j] )
tmp[j] = 0;
else
{
int t0 = tmp[j-step*2-1] + LONG_DIST;
int t = tmp[j-step*2+1] + LONG_DIST;
if( t0 > t ) t0 = t;
t = tmp[j-step-2] + LONG_DIST;
if( t0 > t ) t0 = t;
t = tmp[j-step-1] + DIAG_DIST;
if( t0 > t ) t0 = t;
t = tmp[j-step] + HV_DIST;
if( t0 > t ) t0 = t;
t = tmp[j-step+1] + DIAG_DIST;
if( t0 > t ) t0 = t;
t = tmp[j-step+2] + LONG_DIST;
if( t0 > t ) t0 = t;
t = tmp[j-1] + HV_DIST;
if( t0 > t ) t0 = t;
tmp[j] = t0;
}
}
}
// backward pass
for( i = size.height - 1; i >= 0; i-- )
{
float* d = (float*)(dist + i*dststep);
int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
for( j = size.width - 1; j >= 0; j-- )
{
int t0 = tmp[j];
if( t0 > HV_DIST )
{
int t = tmp[j+step*2+1] + LONG_DIST;
if( t0 > t ) t0 = t;
t = tmp[j+step*2-1] + LONG_DIST;
if( t0 > t ) t0 = t;
t = tmp[j+step+2] + LONG_DIST;
if( t0 > t ) t0 = t;
t = tmp[j+step+1] + DIAG_DIST;
if( t0 > t ) t0 = t;
t = tmp[j+step] + HV_DIST;
if( t0 > t ) t0 = t;
t = tmp[j+step-1] + DIAG_DIST;
if( t0 > t ) t0 = t;
t = tmp[j+step-2] + LONG_DIST;
if( t0 > t ) t0 = t;
t = tmp[j+1] + HV_DIST;
if( t0 > t ) t0 = t;
tmp[j] = t0;
}
d[j] = (float)(t0 * scale);
}
}
}
static void
distanceTransformEx_5x5( const Mat& _src, Mat& _temp, Mat& _dist, Mat& _labels, const float* metrics )
{
const int BORDER = 2;
int i, j;
const int HV_DIST = CV_FLT_TO_FIX( metrics[0], DIST_SHIFT );
const int DIAG_DIST = CV_FLT_TO_FIX( metrics[1], DIST_SHIFT );
const int LONG_DIST = CV_FLT_TO_FIX( metrics[2], DIST_SHIFT );
const float scale = 1.f/(1 << DIST_SHIFT);
const uchar* src = _src.data;
int* temp = _temp.ptr<int>();
float* dist = _dist.ptr<float>();
int* labels = _labels.ptr<int>();
int srcstep = (int)(_src.step/sizeof(src[0]));
int step = (int)(_temp.step/sizeof(temp[0]));
int dststep = (int)(_dist.step/sizeof(dist[0]));
int lstep = (int)(_labels.step/sizeof(dist[0]));
Size size = _src.size();
initTopBottom( _temp, BORDER );
// forward pass
for( i = 0; i < size.height; i++ )
{
const uchar* s = src + i*srcstep;
int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
int* lls = (int*)(labels + i*lstep);
for( j = 0; j < BORDER; j++ )
tmp[-j-1] = tmp[size.width + j] = INIT_DIST0;
for( j = 0; j < size.width; j++ )
{
if( !s[j] )
{
tmp[j] = 0;
//assert( lls[j] != 0 );
}
else
{
int t0 = INIT_DIST0, t;
int l0 = 0;
t = tmp[j-step*2-1] + LONG_DIST;
if( t0 > t )
{
t0 = t;
l0 = lls[j-lstep*2-1];
}
t = tmp[j-step*2+1] + LONG_DIST;
if( t0 > t )
{
t0 = t;
l0 = lls[j-lstep*2+1];
}
t = tmp[j-step-2] + LONG_DIST;
if( t0 > t )
{
t0 = t;
l0 = lls[j-lstep-2];
}
t = tmp[j-step-1] + DIAG_DIST;
if( t0 > t )
{
t0 = t;
l0 = lls[j-lstep-1];
}
t = tmp[j-step] + HV_DIST;
if( t0 > t )
{
t0 = t;
l0 = lls[j-lstep];
}
t = tmp[j-step+1] + DIAG_DIST;
if( t0 > t )
{
t0 = t;
l0 = lls[j-lstep+1];
}
t = tmp[j-step+2] + LONG_DIST;
if( t0 > t )
{
t0 = t;
l0 = lls[j-lstep+2];
}
t = tmp[j-1] + HV_DIST;
if( t0 > t )
{
t0 = t;
l0 = lls[j-1];
}
tmp[j] = t0;
lls[j] = l0;
}
}
}
// backward pass
for( i = size.height - 1; i >= 0; i-- )
{
float* d = (float*)(dist + i*dststep);
int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
int* lls = (int*)(labels + i*lstep);
for( j = size.width - 1; j >= 0; j-- )
{
int t0 = tmp[j];
int l0 = lls[j];
if( t0 > HV_DIST )
{
int t = tmp[j+step*2+1] + LONG_DIST;
if( t0 > t )
{
t0 = t;
l0 = lls[j+lstep*2+1];
}
t = tmp[j+step*2-1] + LONG_DIST;
if( t0 > t )
{
t0 = t;
l0 = lls[j+lstep*2-1];
}
t = tmp[j+step+2] + LONG_DIST;
if( t0 > t )
{
t0 = t;
l0 = lls[j+lstep+2];
}
t = tmp[j+step+1] + DIAG_DIST;
if( t0 > t )
{
t0 = t;
l0 = lls[j+lstep+1];
}
t = tmp[j+step] + HV_DIST;
if( t0 > t )
{
t0 = t;
l0 = lls[j+lstep];
}
t = tmp[j+step-1] + DIAG_DIST;
if( t0 > t )
{
t0 = t;
l0 = lls[j+lstep-1];
}
t = tmp[j+step-2] + LONG_DIST;
if( t0 > t )
{
t0 = t;
l0 = lls[j+lstep-2];
}
t = tmp[j+1] + HV_DIST;
if( t0 > t )
{
t0 = t;
l0 = lls[j+1];
}
tmp[j] = t0;
lls[j] = l0;
}
d[j] = (float)(t0 * scale);
}
}
}
static void getDistanceTransformMask( int maskType, float *metrics )
{
CV_Assert( metrics != 0 );
switch (maskType)
{
case 30:
metrics[0] = 1.0f;
metrics[1] = 1.0f;
break;
case 31:
metrics[0] = 1.0f;
metrics[1] = 2.0f;
break;
case 32:
metrics[0] = 0.955f;
metrics[1] = 1.3693f;
break;
case 50:
metrics[0] = 1.0f;
metrics[1] = 1.0f;
metrics[2] = 2.0f;
break;
case 51:
metrics[0] = 1.0f;
metrics[1] = 2.0f;
metrics[2] = 3.0f;
break;
case 52:
metrics[0] = 1.0f;
metrics[1] = 1.4f;
metrics[2] = 2.1969f;
break;
default:
CV_Error(CV_StsBadArg, "Uknown metric type");
}
}
struct DTColumnInvoker
{
DTColumnInvoker( const Mat* _src, Mat* _dst, const int* _sat_tab, const float* _sqr_tab)
{
src = _src;
dst = _dst;
sat_tab = _sat_tab + src->rows*2 + 1;
sqr_tab = _sqr_tab;
}
void operator()( const BlockedRange& range ) const
{
int i, i1 = range.begin(), i2 = range.end();
int m = src->rows;
size_t sstep = src->step, dstep = dst->step/sizeof(float);
AutoBuffer<int> _d(m);
int* d = _d;
for( i = i1; i < i2; i++ )
{
const uchar* sptr = src->ptr(m-1) + i;
float* dptr = dst->ptr<float>() + i;
int j, dist = m-1;
for( j = m-1; j >= 0; j--, sptr -= sstep )
{
dist = (dist + 1) & (sptr[0] == 0 ? 0 : -1);
d[j] = dist;
}
dist = m-1;
for( j = 0; j < m; j++, dptr += dstep )
{
dist = dist + 1 - sat_tab[dist - d[j]];
d[j] = dist;
dptr[0] = sqr_tab[dist];
}
}
}
const Mat* src;
Mat* dst;
const int* sat_tab;
const float* sqr_tab;
};
struct DTRowInvoker
{
DTRowInvoker( Mat* _dst, const float* _sqr_tab, const float* _inv_tab )
{
dst = _dst;
sqr_tab = _sqr_tab;
inv_tab = _inv_tab;
}
void operator()( const BlockedRange& range ) const
{
const float inf = 1e15f;
int i, i1 = range.begin(), i2 = range.end();
int n = dst->cols;
AutoBuffer<uchar> _buf((n+2)*2*sizeof(float) + (n+2)*sizeof(int));
float* f = (float*)(uchar*)_buf;
float* z = f + n;
int* v = alignPtr((int*)(z + n + 1), sizeof(int));
for( i = i1; i < i2; i++ )
{
float* d = dst->ptr<float>(i);
int p, q, k;
v[0] = 0;
z[0] = -inf;
z[1] = inf;
f[0] = d[0];
for( q = 1, k = 0; q < n; q++ )
{
float fq = d[q];
f[q] = fq;
for(;;k--)
{
p = v[k];
float s = (fq + sqr_tab[q] - d[p] - sqr_tab[p])*inv_tab[q - p];
if( s > z[k] )
{
k++;
v[k] = q;
z[k] = s;
z[k+1] = inf;
break;
}
}
}
for( q = 0, k = 0; q < n; q++ )
{
while( z[k+1] < q )
k++;
p = v[k];
d[q] = std::sqrt(sqr_tab[std::abs(q - p)] + f[p]);
}
}
}
Mat* dst;
const float* sqr_tab;
const float* inv_tab;
};
static void
trueDistTrans( const Mat& src, Mat& dst )
{
const float inf = 1e15f;
CV_Assert( src.size() == dst.size() );
CV_Assert( src.type() == CV_8UC1 && dst.type() == CV_32FC1 );
int i, m = src.rows, n = src.cols;
cv::AutoBuffer<uchar> _buf(std::max(m*2*sizeof(float) + (m*3+1)*sizeof(int), n*2*sizeof(float)));
// stage 1: compute 1d distance transform of each column
float* sqr_tab = (float*)(uchar*)_buf;
int* sat_tab = cv::alignPtr((int*)(sqr_tab + m*2), sizeof(int));
int shift = m*2;
for( i = 0; i < m; i++ )
sqr_tab[i] = (float)(i*i);
for( i = m; i < m*2; i++ )
sqr_tab[i] = inf;
for( i = 0; i < shift; i++ )
sat_tab[i] = 0;
for( ; i <= m*3; i++ )
sat_tab[i] = i - shift;
cv::parallel_for(cv::BlockedRange(0, n), cv::DTColumnInvoker(&src, &dst, sat_tab, sqr_tab));
// stage 2: compute modified distance transform for each row
float* inv_tab = sqr_tab + n;
inv_tab[0] = sqr_tab[0] = 0.f;
for( i = 1; i < n; i++ )
{
inv_tab[i] = (float)(0.5/i);
sqr_tab[i] = (float)(i*i);
}
cv::parallel_for(cv::BlockedRange(0, m), cv::DTRowInvoker(&dst, sqr_tab, inv_tab));
}
/****************************************************************************************\
Non-inplace and Inplace 8u->8u Distance Transform for CityBlock (a.k.a. L1) metric
(C) 2006 by Jay Stavinzky.
\****************************************************************************************/
//BEGIN ATS ADDITION
// 8-bit grayscale distance transform function
static void
distanceATS_L1_8u( const Mat& src, Mat& dst )
{
int width = src.cols, height = src.rows;
int a;
uchar lut[256];
int x, y;
const uchar *sbase = src.data;
uchar *dbase = dst.data;
int srcstep = (int)src.step;
int dststep = (int)dst.step;
CV_Assert( src.type() == CV_8UC1 && dst.type() == CV_8UC1 );
CV_Assert( src.size() == dst.size() );
////////////////////// forward scan ////////////////////////
for( x = 0; x < 256; x++ )
lut[x] = CV_CAST_8U(x+1);
//init first pixel to max (we're going to be skipping it)
dbase[0] = (uchar)(sbase[0] == 0 ? 0 : 255);
//first row (scan west only, skip first pixel)
for( x = 1; x < width; x++ )
dbase[x] = (uchar)(sbase[x] == 0 ? 0 : lut[dbase[x-1]]);
for( y = 1; y < height; y++ )
{
sbase += srcstep;
dbase += dststep;
//for left edge, scan north only
a = sbase[0] == 0 ? 0 : lut[dbase[-dststep]];
dbase[0] = (uchar)a;
for( x = 1; x < width; x++ )
{
a = sbase[x] == 0 ? 0 : lut[MIN(a, dbase[x - dststep])];
dbase[x] = (uchar)a;
}
}
////////////////////// backward scan ///////////////////////
a = dbase[width-1];
// do last row east pixel scan here (skip bottom right pixel)
for( x = width - 2; x >= 0; x-- )
{
a = lut[a];
dbase[x] = (uchar)(CV_CALC_MIN_8U(a, dbase[x]));
}
// right edge is the only error case
for( y = height - 2; y >= 0; y-- )
{
dbase -= dststep;
// do right edge
a = lut[dbase[width-1+dststep]];
dbase[width-1] = (uchar)(MIN(a, dbase[width-1]));
for( x = width - 2; x >= 0; x-- )
{
int b = dbase[x+dststep];
a = lut[MIN(a, b)];
dbase[x] = (uchar)(MIN(a, dbase[x]));
}
}
}
//END ATS ADDITION
}
// Wrapper function for distance transform group
void cv::distanceTransform( InputArray _src, OutputArray _dst, OutputArray _labels,
int distType, int maskSize, int labelType )
{
Mat src = _src.getMat(), dst = _dst.getMat(), labels;
bool need_labels = _labels.needed();
CV_Assert( src.type() == CV_8U );
if( dst.size == src.size && dst.type() == CV_8U && !need_labels && distType == CV_DIST_L1 )
{
distanceATS_L1_8u(src, dst);
return;
}
_dst.create( src.size(), CV_32F );
dst = _dst.getMat();
if( need_labels )
{
CV_Assert( labelType == DIST_LABEL_PIXEL || labelType == DIST_LABEL_CCOMP );
_labels.create(src.size(), CV_32S);
labels = _labels.getMat();
maskSize = CV_DIST_MASK_5;
}
CV_Assert( src.type() == CV_8UC1 );
float _mask[5] = {0};
if( maskSize != CV_DIST_MASK_3 && maskSize != CV_DIST_MASK_5 && maskSize != CV_DIST_MASK_PRECISE )
CV_Error( CV_StsBadSize, "Mask size should be 3 or 5 or 0 (presize)" );
if( distType == CV_DIST_C || distType == CV_DIST_L1 )
maskSize = !need_labels ? CV_DIST_MASK_3 : CV_DIST_MASK_5;
else if( distType == CV_DIST_L2 && need_labels )
maskSize = CV_DIST_MASK_5;
if( maskSize == CV_DIST_MASK_PRECISE )
{
trueDistTrans( src, dst );
return;
}
CV_Assert( distType == CV_DIST_C || distType == CV_DIST_L1 || distType == CV_DIST_L2 );
getDistanceTransformMask( (distType == CV_DIST_C ? 0 :
distType == CV_DIST_L1 ? 1 : 2) + maskSize*10, _mask );
Size size = src.size();
int border = maskSize == CV_DIST_MASK_3 ? 1 : 2;
Mat temp( size.height + border*2, size.width + border*2, CV_32SC1 );
if( !need_labels )
{
if( maskSize == CV_DIST_MASK_3 )
distanceTransform_3x3(src, temp, dst, _mask);
else
distanceTransform_5x5(src, temp, dst, _mask);
}
else
{
labels.setTo(Scalar::all(0));
if( labelType == CV_DIST_LABEL_CCOMP )
{
Mat zpix = src == 0;
connectedComponents(zpix, labels, 8, CV_32S);
}
else
{
int k = 1;
for( int i = 0; i < src.rows; i++ )
{
const uchar* srcptr = src.ptr(i);
int* labelptr = labels.ptr<int>(i);
for( int j = 0; j < src.cols; j++ )
if( srcptr[j] == 0 )
labelptr[j] = k++;
}
}
distanceTransformEx_5x5( src, temp, dst, labels, _mask );
}
}
void cv::distanceTransform( InputArray _src, OutputArray _dst,
int distanceType, int maskSize )
{
distanceTransform(_src, _dst, noArray(), distanceType, maskSize, DIST_LABEL_PIXEL);
}
CV_IMPL void
cvDistTransform( const void* srcarr, void* dstarr,
int distType, int maskSize,
const float * /*mask*/,
void* labelsarr, int labelType )
{
cv::Mat src = cv::cvarrToMat(srcarr);
const cv::Mat dst = cv::cvarrToMat(dstarr);
const cv::Mat labels = cv::cvarrToMat(labelsarr);
cv::distanceTransform(src, dst, labelsarr ? cv::_OutputArray(labels) : cv::_OutputArray(),
distType, maskSize, labelType);
}
/* End of file. */
| [
"frankiemyers@arunans-mbp.fletch"
] | frankiemyers@arunans-mbp.fletch |
a4924f0ec11f2796769d8f72e8fcbd0dbd3bd6bc | 734262b42ddf3b6f183b1cd3bb0acb3f5b39e410 | /src/PololuDriver.cpp | d4195d37cdaea9d1433922782b9630fb20742ee0 | [] | no_license | hrobry/Ramps | b8035f365f6c772b464c3e04817a7f006eac71a2 | 0e8c809699c53a342fc24b9b91d68759678357bb | refs/heads/master | 2021-06-17T11:29:35.346904 | 2017-05-06T17:38:12 | 2017-05-06T17:38:12 | 109,262,943 | 1 | 0 | null | 2017-11-02T12:38:34 | 2017-11-02T12:38:34 | null | UTF-8 | C++ | false | false | 1,636 | cpp | /*
PololuDriver.ccp - Library voor de DRV8825 Stepper Driver
Gemaakt door Brecht Ooms
*/
#include "PololuDriver.h"
#include "Arduino.h"
//Constructor
PololuStepper::PololuStepper(int _stepPin, int _dirPin, int _enablePin)
{
stepPin = _stepPin;
dirPin = _dirPin;
enablePin = _enablePin;
pinMode(stepPin, OUTPUT);
pinMode(dirPin, OUTPUT);
pinMode(enablePin, OUTPUT);
digitalWrite(enablePin, LOW);
}
//Stel richting handmatig in
void PololuStepper::setDir(short _dir)
{
if (_dir > 0)
{
dir = 1;
digitalWrite(dirPin, LOW);
}
else if (_dir < 0)
{
dir = -1;
digitalWrite(dirPin, HIGH);
}
}
//Step Handmatig (Step off moet volgen na een bepaalde vertraging)
bool PololuStepper::stepOn()
{
if (!stepped)
{
position += dir;
digitalWrite(stepPin, HIGH);
stepped = true;
return true;
}
else
{
return false;
}
}
//Concludeer Stap handmatig (Moet na StepOn komen)
void PololuStepper::stepOff()
{
if (stepped)
{
digitalWrite(stepPin, LOW);
stepped = false;
}
}
//Beweeg een aantal stappen in de gekozen richting (positief of negatief)
//en met de gegeven delay (in microseconden)
void PololuStepper::autoStep(long amount, int _delay)
{
setDir(constrain(amount, -1, 1));
//Het kan gebeuren dat iemand stepOff is vergeten
//en dan klopt de positie niet meer.
if (stepped)
{
stepOff();
}
while (!(amount == 0))
{
stepOn();
delayMicroseconds(_delay);
stepOff();
amount -= dir;
}
}
//Beweeg naar doelpositie met gegegeven delay (in microseconden)
void PololuStepper::moveTo(long targetPos, int _delay)
{
autoStep(targetPos - position, _delay);
}
| [
"brecht.ooms@hotmail.com"
] | brecht.ooms@hotmail.com |
b84d543128a9168bb8f6a360632b92b12696542e | d093e5dbdf4fb08eacbe2ec3cfc070e4c58c0f3e | /Source/Modules/ECS/include/ComplexType.h | cc0e3795889052b9ac659408aac49d6bd19c1c95 | [
"MIT"
] | permissive | RamilGauss/MMO-Framework | 3bd57e800f20b6447b494009eb3d7a49dfeb1402 | fa4ec6427a3a891954f97311af626f8753023ec2 | refs/heads/master | 2023-09-02T17:50:25.742920 | 2023-09-01T09:17:26 | 2023-09-01T09:17:26 | 15,496,543 | 32 | 20 | MIT | 2023-05-11T07:10:07 | 2013-12-28T17:54:28 | C++ | UTF-8 | C++ | false | false | 1,444 | h | /*
Author: Gudakov Ramil Sergeevich a.k.a. Gauss
Гудаков Рамиль Сергеевич
Contacts: [ramil2085@mail.ru, ramil2085@gmail.com]
See for more information LICENSE.md.
*/
#pragma once
#include "TypeDef.h"
#include "Entity.h"
#include <list>
#include <vector>
#include <type_traits>
#include "TypeDef.h"
#include "IComponent.h"
#include "Config.h"
#include "VectorRise.h"
#include "MemoryObjectPool.h"
#include "CallBackRegistrator.h"
#include "RunTimeTypeIndex.h"
#include "ColanderVector.h"
namespace nsECSFramework
{
class DllExport TComplexType
{
public:
TColanderVector<IComponent*> parts;
std::list<unsigned char> mComponentTypeIdentifierList;
bool operator < (const TComplexType& other) const
{
auto pThisParts = this->parts.Begin();
auto pOtherParts = other.parts.Begin();
for (auto& index : mComponentTypeIdentifierList) {
auto pCThis = pThisParts[index];
auto pCOther = pOtherParts[index];
if (pCThis->IsEqual(pCOther)) {
continue;
}
return pCThis->IsLess(pCOther);
}
return false;
}
void Done()
{
for (auto& index : mComponentTypeIdentifierList) {
parts[index] = nullptr;
}
mComponentTypeIdentifierList.clear();
}
};
} | [
"ramil2085@mail.ru"
] | ramil2085@mail.ru |
c69af3667773307645039afe96987792f151614c | 51130bd71e3ae9ddb3ce2c5621d279d235097374 | /1/pokemon (93).cpp | 5b26aba4c41a54cb8d10679c0945f8daa87e2d03 | [] | no_license | DanieleIsoni/algorithms-and-data-structure-projects | f023eeb236878e54a3b562128176eabbfce84d40 | 9cca47a952b9bf008423089eb719170665928d96 | refs/heads/master | 2021-06-12T18:00:44.216741 | 2020-04-09T12:59:19 | 2020-04-09T12:59:19 | 254,372,947 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,497 | cpp | #include <iostream>
#include <fstream>
#include <vector>
#include <stack>
#include <map>
#include <algorithm>
#include <set>
using namespace std;
vector<vector<int>> adjTemp;
vector<vector<int>> adj;
vector<vector<int>> cycles;
int numeroCicli=0;
int N,M;
int Time=0;
void calcolaLung(int from, int to, int * padri){
cycles[numeroCicli].push_back(from);
int count=1;
while(from != to){
count++;
from=padri[from];
cout<<" added "<<from<<endl;
cycles[numeroCicli].push_back(from);
}
cout<<"cliclo n. "<<numeroCicli<<" ha "<<count<<" elementi "<<endl;
numeroCicli++;
}
void dfs_visit(int u, int * color, int * padri){
color[u]=1;
for(int v : adj[u]){
if(color[v]==0){
padri[v]=u;
cout<<"from "<<u<<" to "<<v<<endl;
dfs_visit(v,color,padri);
}
if(color[v]==1 && v != padri[u])
calcolaLung(u,v,padri);
}
color[u]=2;
}
void dfs(){
int color[N];
int d[N];
int f[N];
int padri[N];
for(int i=0; i<N; i++){
color[i]=0;
padri[i]=-1;
}
for(int i=0; i<N; i++){
if(color[i]==0)
dfs_visit(i,color,padri);
}
}
int MCD(int a, int b)
{
do
{
if(a>b)
{
a = (a-b);
}
else if(a<b)
{
b = (b-a);
}
}
while(a!=b);
return a;
}
pair<int,int> coppia(int a, int b)
{
pair<int,int> x;
if(a<b)
{
x.first=a;
x.second=b;
}
else
{
x.first=b;
x.second=a;
}
return x;
}
bool eliminaDuplicati(){
set<pair<int,int> > archi;
bool ret=false;
//vector<int> cicli;
// cicli.resize(cicli.size());
for(vector<int> &c :cycles)
{
if(c.size()>2)
{
int cont=0;
for(int i=0;i<c.size()-1;i++)
{
set<pair<int,int> >::iterator it=archi.find(coppia(c[i],c[i+1]));
if(it!=archi.end())
{
//elimino quelli in comune dal grafo precedente
int a=(*it).first;
int b=(*it).second;
adj[a].erase(std::remove(adj[a].begin(), adj[a].end(), b), adj[a].end());
cont++;
adj[b].erase(std::remove(adj[b].begin(), adj[b].end(), a), adj[b].end());
ret=true;
}
else
{
archi.insert(coppia(c[i],c[i+1]));
}
}
//cout << "cont:" <<cont<<" size: "<<c.size()<< endl;
//se il numero di achi in comune tra almeno 2 cicli è pari
if(cont%2==1)
return true;
}
}
return ret;
}
map<pair<int,int> ,int> piazzaPokemon(int m)
{
map<pair<int,int> ,int> pokemon;
//vector<int> cicli;
// cicli.resize(cicli.size());
for(vector<int> &c :cycles)
{
int questo=0;
if(c.size()>2)
{
//controllo che in nessun arco ci sia già un pokemon
/* map<pair<int,int> ,int>::iterator trovato=pokemon.end();
for(int i=0;i<c.size()-1 && trovato==pokemon.end();i++)
{
map<pair<int,int> ,int>::iterator it=pokemon.find(coppia(c[i],c[i+1]));
if(it!=pokemon.end())
{
trovato=it;//calcolo l'indice dell'arco che ho trovato
}
}
if(trovato==pokemon.end())//allora questo è un ciclo normale
*/ for(int i=0;i<c.size()-1;i++)
{
questo=(1+questo)%m;
pokemon[coppia(c[i],c[i+1])]=questo;
}
/* LE RIGHE QUA SALTANO L'ARCO CON IL POKEMON GIÀ POSIZIONATO
else
{
questo=(*trovato).second;
cout<<"TROVATO -> "<<questo<<endl;
for(int i=0;i<c.size()-1;i++)
{
pair <int,int> test = coppia(c[i],c[i+1]);
cout<<(*trovato).first.first<<" "<<test.first<<" AND "<<(*trovato).first.second<<" "<<test.second<<endl;
if((*trovato).first.first!=test.first || (*trovato).first.second!=test.second)
{//arco normale
questo=(1+questo)%m;
pokemon[test]=questo;
cout<<"questo ->"<<questo<<endl;
}
else{
cout<<"trovato arco in comune"<<endl;
}
//altrimenti non faccio niente e mantenfo il vecchio pokemon
}
}*/
}
}
return pokemon;
}
//bool verifica(int m )
int main(){
ifstream in("input.txt");
// int N,M;
in>>N>>M;
adj.resize(N);
adjTemp.resize(N);
cycles.resize(N);
for(int i=0;i<M;i++){
int from, to;
in>>from>>to;
adj[from].push_back(to);
adj[to].push_back(from);
adjTemp[from].push_back(to);
adjTemp[to].push_back(from);
}
dfs();
bool dispari=eliminaDuplicati();
//dfs();
int MAX=cycles[0].size();
for(int i=0;i<numeroCicli;i++){
cout<<"Il ciclo "<<i<<" ha "<<cycles[i].size()<<" elementi \n";
MAX=MCD(MAX,cycles[i].size());
for(int &b : cycles[i])
cout<<b<<"\t";
cout<<endl<<endl;
}
if(dispari && MAX!=1)
MAX/=2;
map<pair<int,int> ,int> pokemon=piazzaPokemon(MAX);
ofstream out("output.txt");
//cout<<"POKEMON MASSIMI --> "<<MAX<<endl;
out<<MAX<<endl;
for(int v=0;v<N;v++)
for(int &w :adjTemp[v])
{
if(v<w)//altrimenti l'ho già stampato
{
pair<int,int> p;
p.first=v; p.second=w;
if( pokemon.find(p) != pokemon.end())
{
//cout<<"ARCO "<<v<< " "<<w<<" POKEMON "<<pokemon[p]<<endl;
out<<pokemon[p]<<endl;
}
else
//cout<<"ARCO "<<v<< " "<<w<<" POKEMON 0"<<endl;
out<<pokemon[p]<<endl;
}
}
return 0;
}
| [
"massimo@girondi.net"
] | massimo@girondi.net |
d49a0687a8f6529d25617e22deaff811815d2db8 | 9ac42ea56826dfdb8a584dc6dedd2b181dc5cffa | /advanced_topics_in_C++_PORTUGESE/exemplos_introdutorios/ex11_list_vector.cpp | ac7ea5b8baff1b3d12691822780e9eabc8f0272e | [] | no_license | claudiosa/CCS | e8f731bf108d1221ae62017f82d088cb49d5c948 | 08bb0f32aba6a1a6b2ea605552d15f9cbc06d2be | refs/heads/master | 2023-09-01T01:28:14.685489 | 2023-08-27T03:48:57 | 2023-08-27T03:48:57 | 44,081,079 | 41 | 23 | null | 2021-12-06T22:11:57 | 2015-10-12T03:03:43 | TeX | UTF-8 | C++ | false | false | 4,081 | cpp | #include <iostream>
#include <vector>
#include <list>
/*
* Vector é baseado em array.
* - Podem mudar dinamicamente;
* - Inserção no fim é eficiente. Mas e inserir no meio e no fim?!
* - Posições contíguas na memória.
*
* Dicas:
* Quando for necessario inserir no fim e no início
* usa deque que é mais eficiente.
*
* Quando for necessário inserir e remover no meio
* usar list, devido a implementação eficiente de
* inserção e deleção em qualquer lugar na EDA.
*
* Vector é extremamente eficiente com acesso aleatório.
*
* Vector fornece acesso indexado rápido com o operador []
* devido a a alocação em área contígua.
*
*
* - begin
* - end
* - rbegin C++11
* - rend C++11
* - size
* - resize
* - empty
* - shrink_to_fit C++11
* - Access []
* - at
* - front
* - back
* - push_back
* - pop_back
* - insert
* - erase
* - clear
*
* list (adicionais):
* - push_front
* - pop_front
* */
using namespace std;
int main(void){
vector<int> my_vector (3, 10);
cout << "Tamanho do vetor: " << my_vector.size() << endl;
//declarando um iterator para vector do tipo int;
vector<int>::iterator it;
it = my_vector.begin();
//insere um elemento na primeira posição;
it = my_vector.insert( it, 200);
cout << "Tamanho do vetor: " << my_vector.size() << endl;
for( it = my_vector.begin(); it < my_vector.end(); it++)
cout << ' ' << *it;
cout << endl;
for(vector<int>::reverse_iterator it2 = my_vector.rbegin(); it2 < my_vector.rend(); it2++)
cout << ' ' << *it2;
cout << endl;
for(int i = 0; i < (int) my_vector.size(); i++){
cout << ' ' << my_vector[i] ;
}
cout << endl;
for(int i = 0; i < (int) my_vector.size(); i++){
cout << ' ' << my_vector.at(i) ;
}
cout << endl;
cout << "Primeiro elemento: " << my_vector.front() << endl;
cout << "Ultimo elemento: " << my_vector.back() << endl;
cout << "Inserindo novo elemento 1000 no final" << endl;
my_vector.push_back(1000);
for( it = my_vector.begin(); it < my_vector.end(); it++)
cout << ' ' << *it;
cout << endl;
cout << "Tirando último elemento" << endl;
my_vector.pop_back();
for( it = my_vector.begin(); it < my_vector.end(); it++)
cout << ' ' << *it;
cout << endl;
cout << "Usando insert para inserir onde eu quiser | quantos elementos eu quiser..." << endl;
vector<int> teste;
teste.push_back(1);
teste.push_back(2);
teste.push_back(3);
//insere na terceira posição os três elementos que estão em teste.
my_vector.insert(my_vector.begin() + 2, teste.begin(), teste.end());
for( it = my_vector.begin(); it < my_vector.end(); it++)
cout << ' ' << *it;
cout << endl;
cout << "Erase permite apagar um elemento, ou varios..." << endl;
my_vector.erase(my_vector.begin() + 2);
cout << "Depois:" << endl;
for( it = my_vector.begin(); it < my_vector.end(); it++)
cout << ' ' << *it;
cout << endl;
my_vector.erase(my_vector.begin() + 4, my_vector.end());
for( it = my_vector.begin(); it < my_vector.end(); it++)
cout << ' ' << *it;
cout << endl;
cout << "Podemos limpar o vector inteiro usando clear" << endl;
my_vector.clear();
if( my_vector.empty()) cout << "Vector vazio" << endl;
cout << "List possuí uma (eu diria única) diferença:\nPode inserir direto no inicio e eliminar direto do inicio usando push_front e pop_front, nada que um erase não resolva em vector..." << endl;
list<int> mylist;
list<int>::iterator itl;
mylist.push_front(1);//insere no inicio
mylist.push_front(2);
mylist.push_front(3);
mylist.push_front(4);
mylist.push_front(5);
cout << "Diferença fundamental, iterator de list nao pode comparar com < end()" << endl;
for( itl = mylist.begin(); itl != mylist.end(); itl++)
cout << ' ' << *itl;
cout << endl;
while(not mylist.empty()){
cout << mylist.front() << endl;
mylist.pop_front();
}
cout << "Com as duas estruturas podemos facilmente simular uma pilha!!!" << endl;
return 0;
}
| [
"ccs1664@gmail.com"
] | ccs1664@gmail.com |
238c420c4a97553cc83ab525f4d61e66f0818f67 | 07b60660323fab587c2b8a8fb8373c30ee38b199 | /Intermediate/Build/Win64/UE4Editor/Inc/ProjectDelve/ProjectDelve_PlayerController.gen.cpp | 55b5135775a17e1197830ef8051cd0269c4cb709 | [
"Apache-2.0"
] | permissive | Kuasynei/ProjectDelve | a5eef7180fdb3749ee521906e9eb5e1b5b5ba826 | 1a944912146f665440027341f938830fb4d93bd2 | refs/heads/master | 2020-03-20T03:11:39.231454 | 2018-07-27T16:57:28 | 2018-07-27T16:57:28 | 137,138,167 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,475 | cpp | // Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#include "GeneratedCppIncludes.h"
#include "ProjectDelve_PlayerController.h"
#ifdef _MSC_VER
#pragma warning (push)
#pragma warning (disable : 4883)
#endif
PRAGMA_DISABLE_DEPRECATION_WARNINGS
void EmptyLinkFunctionForGeneratedCodeProjectDelve_PlayerController() {}
// Cross Module References
PROJECTDELVE_API UClass* Z_Construct_UClass_AProjectDelve_PlayerController_NoRegister();
PROJECTDELVE_API UClass* Z_Construct_UClass_AProjectDelve_PlayerController();
ENGINE_API UClass* Z_Construct_UClass_APlayerController();
UPackage* Z_Construct_UPackage__Script_ProjectDelve();
PROJECTDELVE_API UFunction* Z_Construct_UFunction_AProjectDelve_PlayerController_XAxisStick();
PROJECTDELVE_API UFunction* Z_Construct_UFunction_AProjectDelve_PlayerController_YAxisStick();
// End Cross Module References
void AProjectDelve_PlayerController::StaticRegisterNativesAProjectDelve_PlayerController()
{
UClass* Class = AProjectDelve_PlayerController::StaticClass();
static const FNameNativePtrPair Funcs[] = {
{ "XAxisStick", &AProjectDelve_PlayerController::execXAxisStick },
{ "YAxisStick", &AProjectDelve_PlayerController::execYAxisStick },
};
FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, ARRAY_COUNT(Funcs));
}
UFunction* Z_Construct_UFunction_AProjectDelve_PlayerController_XAxisStick()
{
struct ProjectDelve_PlayerController_eventXAxisStick_Parms
{
float val;
};
static UFunction* ReturnFunction = nullptr;
if (!ReturnFunction)
{
static const UE4CodeGen_Private::FFloatPropertyParams NewProp_val = { UE4CodeGen_Private::EPropertyClass::Float, "val", RF_Public|RF_Transient|RF_MarkAsNative, 0x0010000000000080, 1, nullptr, STRUCT_OFFSET(ProjectDelve_PlayerController_eventXAxisStick_Parms, val), METADATA_PARAMS(nullptr, 0) };
static const UE4CodeGen_Private::FPropertyParamsBase* const PropPointers[] = {
(const UE4CodeGen_Private::FPropertyParamsBase*)&NewProp_val,
};
#if WITH_METADATA
static const UE4CodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = {
{ "ModuleRelativePath", "ProjectDelve_PlayerController.h" },
};
#endif
static const UE4CodeGen_Private::FFunctionParams FuncParams = { (UObject*(*)())Z_Construct_UClass_AProjectDelve_PlayerController, "XAxisStick", RF_Public|RF_Transient|RF_MarkAsNative, nullptr, (EFunctionFlags)0x00080401, sizeof(ProjectDelve_PlayerController_eventXAxisStick_Parms), PropPointers, ARRAY_COUNT(PropPointers), 0, 0, METADATA_PARAMS(Function_MetaDataParams, ARRAY_COUNT(Function_MetaDataParams)) };
UE4CodeGen_Private::ConstructUFunction(ReturnFunction, FuncParams);
}
return ReturnFunction;
}
UFunction* Z_Construct_UFunction_AProjectDelve_PlayerController_YAxisStick()
{
struct ProjectDelve_PlayerController_eventYAxisStick_Parms
{
float val;
};
static UFunction* ReturnFunction = nullptr;
if (!ReturnFunction)
{
static const UE4CodeGen_Private::FFloatPropertyParams NewProp_val = { UE4CodeGen_Private::EPropertyClass::Float, "val", RF_Public|RF_Transient|RF_MarkAsNative, 0x0010000000000080, 1, nullptr, STRUCT_OFFSET(ProjectDelve_PlayerController_eventYAxisStick_Parms, val), METADATA_PARAMS(nullptr, 0) };
static const UE4CodeGen_Private::FPropertyParamsBase* const PropPointers[] = {
(const UE4CodeGen_Private::FPropertyParamsBase*)&NewProp_val,
};
#if WITH_METADATA
static const UE4CodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = {
{ "ModuleRelativePath", "ProjectDelve_PlayerController.h" },
};
#endif
static const UE4CodeGen_Private::FFunctionParams FuncParams = { (UObject*(*)())Z_Construct_UClass_AProjectDelve_PlayerController, "YAxisStick", RF_Public|RF_Transient|RF_MarkAsNative, nullptr, (EFunctionFlags)0x00080401, sizeof(ProjectDelve_PlayerController_eventYAxisStick_Parms), PropPointers, ARRAY_COUNT(PropPointers), 0, 0, METADATA_PARAMS(Function_MetaDataParams, ARRAY_COUNT(Function_MetaDataParams)) };
UE4CodeGen_Private::ConstructUFunction(ReturnFunction, FuncParams);
}
return ReturnFunction;
}
UClass* Z_Construct_UClass_AProjectDelve_PlayerController_NoRegister()
{
return AProjectDelve_PlayerController::StaticClass();
}
UClass* Z_Construct_UClass_AProjectDelve_PlayerController()
{
static UClass* OuterClass = nullptr;
if (!OuterClass)
{
static UObject* (*const DependentSingletons[])() = {
(UObject* (*)())Z_Construct_UClass_APlayerController,
(UObject* (*)())Z_Construct_UPackage__Script_ProjectDelve,
};
static const FClassFunctionLinkInfo FuncInfo[] = {
{ &Z_Construct_UFunction_AProjectDelve_PlayerController_XAxisStick, "XAxisStick" }, // 2865380716
{ &Z_Construct_UFunction_AProjectDelve_PlayerController_YAxisStick, "YAxisStick" }, // 4096473772
};
#if WITH_METADATA
static const UE4CodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = {
{ "HideCategories", "Collision Rendering Utilities|Transformation" },
{ "IncludePath", "ProjectDelve_PlayerController.h" },
{ "ModuleRelativePath", "ProjectDelve_PlayerController.h" },
};
#endif
static const FCppClassTypeInfoStatic StaticCppClassTypeInfo = {
TCppClassTypeTraits<AProjectDelve_PlayerController>::IsAbstract,
};
static const UE4CodeGen_Private::FClassParams ClassParams = {
&AProjectDelve_PlayerController::StaticClass,
DependentSingletons, ARRAY_COUNT(DependentSingletons),
0x00800284u,
FuncInfo, ARRAY_COUNT(FuncInfo),
nullptr, 0,
"Game",
&StaticCppClassTypeInfo,
nullptr, 0,
METADATA_PARAMS(Class_MetaDataParams, ARRAY_COUNT(Class_MetaDataParams))
};
UE4CodeGen_Private::ConstructUClass(OuterClass, ClassParams);
}
return OuterClass;
}
IMPLEMENT_CLASS(AProjectDelve_PlayerController, 1956684517);
static FCompiledInDefer Z_CompiledInDefer_UClass_AProjectDelve_PlayerController(Z_Construct_UClass_AProjectDelve_PlayerController, &AProjectDelve_PlayerController::StaticClass, TEXT("/Script/ProjectDelve"), TEXT("AProjectDelve_PlayerController"), false, nullptr, nullptr, nullptr);
DEFINE_VTABLE_PTR_HELPER_CTOR(AProjectDelve_PlayerController);
PRAGMA_ENABLE_DEPRECATION_WARNINGS
#ifdef _MSC_VER
#pragma warning (pop)
#endif
| [
"tony.b.doan@gmail.com"
] | tony.b.doan@gmail.com |
10710eb355b22005253bdd7838058b567b361506 | 4d88364d360646f35d8eeb347df56196c7952049 | /SLinux/Test/include/Rapidxml/rapidxml_print.hpp | ae9005efda979d673c420af576439b11786e9648 | [
"MIT"
] | permissive | nnoldman/FFF | fd7ac6084f6114644d1ac47bd50f0ff8a14e983f | 6c5055848e057217f3c7c3ce53ad5b6e6e81c8ec | refs/heads/master | 2021-01-23T22:16:04.133425 | 2017-12-12T09:33:40 | 2017-12-12T09:33:40 | 102,923,602 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 16,278 | hpp | #ifndef RAPIDXML_PRINT_HPP_INCLUDED
#define RAPIDXML_PRINT_HPP_INCLUDED
// Copyright (C) 2006, 2009 Marcin Kalicinski
// Version 1.13
// Revision $DateTime: 2009/05/13 01:46:17 $
//! \file rapidxml_print.hpp This file contains rapidxml printer implementation
#include "rapidxml.hpp"
// Only include streams if not disabled
#ifndef RAPIDXML_NO_STREAMS
#include <ostream>
#include <iterator>
#endif
namespace rapidxml
{
///////////////////////////////////////////////////////////////////////
// Printing flags
const int print_no_indenting = 0x1; //!< Printer flag instructing the printer to suppress indenting of XML. See print() function.
///////////////////////////////////////////////////////////////////////
// Internal
//! \cond internal
namespace internal
{
///////////////////////////////////////////////////////////////////////////
// Internal character operations
// Copy characters from given range to given output iterator
template<class OutIt, class Ch>
inline OutIt copy_chars(const Ch *begin, const Ch *end, OutIt out)
{
while (begin != end)
*out++ = *begin++;
return out;
}
// Copy characters from given range to given output iterator and expand
// characters into references (< > ' " &)
template<class OutIt, class Ch>
inline OutIt copy_and_expand_chars(const Ch *begin, const Ch *end, Ch noexpand, OutIt out)
{
while (begin != end)
{
if (*begin == noexpand)
{
*out++ = *begin; // No expansion, copy character
}
else
{
switch (*begin)
{
case Ch('<'):
*out++ = Ch('&');
*out++ = Ch('l');
*out++ = Ch('t');
*out++ = Ch(';');
break;
case Ch('>'):
*out++ = Ch('&');
*out++ = Ch('g');
*out++ = Ch('t');
*out++ = Ch(';');
break;
case Ch('\''):
*out++ = Ch('&');
*out++ = Ch('a');
*out++ = Ch('p');
*out++ = Ch('o');
*out++ = Ch('s');
*out++ = Ch(';');
break;
case Ch('"'):
*out++ = Ch('&');
*out++ = Ch('q');
*out++ = Ch('u');
*out++ = Ch('o');
*out++ = Ch('t');
*out++ = Ch(';');
break;
case Ch('&'):
*out++ = Ch('&');
*out++ = Ch('a');
*out++ = Ch('m');
*out++ = Ch('p');
*out++ = Ch(';');
break;
default:
*out++ = *begin; // No expansion, copy character
}
}
++begin; // Step to next character
}
return out;
}
// Fill given output iterator with repetitions of the same character
template<class OutIt, class Ch>
inline OutIt fill_chars(OutIt out, int n, Ch ch)
{
for (int i = 0; i < n; ++i)
*out++ = ch;
return out;
}
// Find character
template<class Ch, Ch ch>
inline bool find_char(const Ch *begin, const Ch *end)
{
while (begin != end)
if (*begin++ == ch)
return true;
return false;
}
///////////////////////////////////////////////////////////////////////////
// Internal printing operations
// Print children of the node
// Print node
template<class OutIt, class Ch>
OutIt print_node(OutIt out, const xml_node<Ch> *node, int flags, int indent);
template<class OutIt, class Ch>
inline OutIt print_children(OutIt out, const xml_node<Ch> *node, int flags, int indent)
{
for (xml_node<Ch> *child = node->first_node(); child; child = child->next_sibling())
out = print_node(out, child, flags, indent);
return out;
}
// Print attributes of the node
template<class OutIt, class Ch>
inline OutIt print_attributes(OutIt out, const xml_node<Ch> *node, int flags)
{
for (xml_attribute<Ch> *attribute = node->first_attribute(); attribute; attribute = attribute->next_attribute())
{
if (attribute->name() && attribute->value())
{
// Print attribute name
*out = Ch(' '), ++out;
out = copy_chars(attribute->name(), attribute->name() + attribute->name_size(), out);
*out = Ch('='), ++out;
// Print attribute value using appropriate quote type
if (find_char<Ch, Ch('"')>(attribute->value(), attribute->value() + attribute->value_size()))
{
*out = Ch('\''), ++out;
out = copy_and_expand_chars(attribute->value(), attribute->value() + attribute->value_size(), Ch('"'), out);
*out = Ch('\''), ++out;
}
else
{
*out = Ch('"'), ++out;
out = copy_and_expand_chars(attribute->value(), attribute->value() + attribute->value_size(), Ch('\''), out);
*out = Ch('"'), ++out;
}
}
}
return out;
}
// Print data node
template<class OutIt, class Ch>
inline OutIt print_data_node(OutIt out, const xml_node<Ch> *node, int flags, int indent)
{
assert(node->type() == node_data);
if (!(flags & print_no_indenting))
out = fill_chars(out, indent, Ch('\t'));
out = copy_and_expand_chars(node->value(), node->value() + node->value_size(), Ch(0), out);
return out;
}
// Print data node
template<class OutIt, class Ch>
inline OutIt print_cdata_node(OutIt out, const xml_node<Ch> *node, int flags, int indent)
{
assert(node->type() == node_cdata);
if (!(flags & print_no_indenting))
out = fill_chars(out, indent, Ch('\t'));
*out = Ch('<');
++out;
*out = Ch('!');
++out;
*out = Ch('[');
++out;
*out = Ch('C');
++out;
*out = Ch('D');
++out;
*out = Ch('A');
++out;
*out = Ch('T');
++out;
*out = Ch('A');
++out;
*out = Ch('[');
++out;
out = copy_chars(node->value(), node->value() + node->value_size(), out);
*out = Ch(']');
++out;
*out = Ch(']');
++out;
*out = Ch('>');
++out;
return out;
}
// Print element node
template<class OutIt, class Ch>
inline OutIt print_element_node(OutIt out, const xml_node<Ch> *node, int flags, int indent)
{
assert(node->type() == node_element);
// Print element name and attributes, if any
if (!(flags & print_no_indenting))
out = fill_chars(out, indent, Ch('\t'));
*out = Ch('<'), ++out;
out = copy_chars(node->name(), node->name() + node->name_size(), out);
out = print_attributes(out, node, flags);
// If node is childless
if (node->value_size() == 0 && !node->first_node())
{
// Print childless node tag ending
*out = Ch('/'), ++out;
*out = Ch('>'), ++out;
}
else
{
// Print normal node tag ending
*out = Ch('>'), ++out;
// Test if node contains a single data node only (and no other nodes)
xml_node<Ch> *child = node->first_node();
if (!child)
{
// If node has no children, only print its value without indenting
out = copy_and_expand_chars(node->value(), node->value() + node->value_size(), Ch(0), out);
}
else if (child->next_sibling() == 0 && child->type() == node_data)
{
// If node has a sole data child, only print its value without indenting
out = copy_and_expand_chars(child->value(), child->value() + child->value_size(), Ch(0), out);
}
else
{
// Print all children with full indenting
if (!(flags & print_no_indenting))
*out = Ch('\n'), ++out;
out = print_children(out, node, flags, indent + 1);
if (!(flags & print_no_indenting))
out = fill_chars(out, indent, Ch('\t'));
}
// Print node end
*out = Ch('<'), ++out;
*out = Ch('/'), ++out;
out = copy_chars(node->name(), node->name() + node->name_size(), out);
*out = Ch('>'), ++out;
}
return out;
}
// Print declaration node
template<class OutIt, class Ch>
inline OutIt print_declaration_node(OutIt out, const xml_node<Ch> *node, int flags, int indent)
{
// Print declaration start
if (!(flags & print_no_indenting))
out = fill_chars(out, indent, Ch('\t'));
*out = Ch('<'), ++out;
*out = Ch('?'), ++out;
*out = Ch('x'), ++out;
*out = Ch('m'), ++out;
*out = Ch('l'), ++out;
// Print attributes
out = print_attributes(out, node, flags);
// Print declaration end
*out = Ch('?'), ++out;
*out = Ch('>'), ++out;
return out;
}
// Print comment node
template<class OutIt, class Ch>
inline OutIt print_comment_node(OutIt out, const xml_node<Ch> *node, int flags, int indent)
{
assert(node->type() == node_comment);
if (!(flags & print_no_indenting))
out = fill_chars(out, indent, Ch('\t'));
*out = Ch('<'), ++out;
*out = Ch('!'), ++out;
*out = Ch('-'), ++out;
*out = Ch('-'), ++out;
out = copy_chars(node->value(), node->value() + node->value_size(), out);
*out = Ch('-'), ++out;
*out = Ch('-'), ++out;
*out = Ch('>'), ++out;
return out;
}
// Print doctype node
template<class OutIt, class Ch>
inline OutIt print_doctype_node(OutIt out, const xml_node<Ch> *node, int flags, int indent)
{
assert(node->type() == node_doctype);
if (!(flags & print_no_indenting))
out = fill_chars(out, indent, Ch('\t'));
*out = Ch('<'), ++out;
*out = Ch('!'), ++out;
*out = Ch('D'), ++out;
*out = Ch('O'), ++out;
*out = Ch('C'), ++out;
*out = Ch('T'), ++out;
*out = Ch('Y'), ++out;
*out = Ch('P'), ++out;
*out = Ch('E'), ++out;
*out = Ch(' '), ++out;
out = copy_chars(node->value(), node->value() + node->value_size(), out);
*out = Ch('>'), ++out;
return out;
}
// Print pi node
template<class OutIt, class Ch>
inline OutIt print_pi_node(OutIt out, const xml_node<Ch> *node, int flags, int indent)
{
assert(node->type() == node_pi);
if (!(flags & print_no_indenting))
out = fill_chars(out, indent, Ch('\t'));
*out = Ch('<'), ++out;
*out = Ch('?'), ++out;
out = copy_chars(node->name(), node->name() + node->name_size(), out);
*out = Ch(' '), ++out;
out = copy_chars(node->value(), node->value() + node->value_size(), out);
*out = Ch('?'), ++out;
*out = Ch('>'), ++out;
return out;
}
// Print node
template<class OutIt, class Ch>
inline OutIt print_node(OutIt out, const xml_node<Ch> *node, int flags, int indent)
{
// Print proper node type
switch (node->type())
{
// Document
case node_document:
out = print_children(out, node, flags, indent);
break;
// Element
case node_element:
out = print_element_node(out, node, flags, indent);
break;
// Data
case node_data:
out = print_data_node(out, node, flags, indent);
break;
// CDATA
case node_cdata:
out = print_cdata_node(out, node, flags, indent);
break;
// Declaration
case node_declaration:
out = print_declaration_node(out, node, flags, indent);
break;
// Comment
case node_comment:
out = print_comment_node(out, node, flags, indent);
break;
// Doctype
case node_doctype:
out = print_doctype_node(out, node, flags, indent);
break;
// Pi
case node_pi:
out = print_pi_node(out, node, flags, indent);
break;
// Unknown
default:
assert(0);
break;
}
// If indenting not disabled, add line break after node
if (!(flags & print_no_indenting))
*out = Ch('\n'), ++out;
// Return modified iterator
return out;
}
}
//! \endcond
///////////////////////////////////////////////////////////////////////////
// Printing
//! Prints XML to given output iterator.
//! \param out Output iterator to print to.
//! \param node Node to be printed. Pass xml_document to print entire document.
//! \param flags Flags controlling how XML is printed.
//! \return Output iterator pointing to position immediately after last character of printed text.
template<class OutIt, class Ch>
inline OutIt print(OutIt out, const xml_node<Ch> &node, int flags = 0)
{
return internal::print_node(out, &node, flags, 0);
}
#ifndef RAPIDXML_NO_STREAMS
//! Prints XML to given output stream.
//! \param out Output stream to print to.
//! \param node Node to be printed. Pass xml_document to print entire document.
//! \param flags Flags controlling how XML is printed.
//! \return Output stream.
template<class Ch>
inline std::basic_ostream<Ch> &print(std::basic_ostream<Ch> &out, const xml_node<Ch> &node, int flags = 0)
{
print(std::ostream_iterator<Ch>(out), node, flags);
return out;
}
//! Prints formatted XML to given output stream. Uses default printing flags. Use print() function to customize printing process.
//! \param out Output stream to print to.
//! \param node Node to be printed.
//! \return Output stream.
template<class Ch>
inline std::basic_ostream<Ch> &operator <<(std::basic_ostream<Ch> &out, const xml_node<Ch> &node)
{
return print(out, node);
}
#endif
}
#endif
| [
"1527053436@qq.com"
] | 1527053436@qq.com |
cc86158e72e0a170e5892200f971ed2175094931 | 4d652883183d01b569ea66ba37a1eea6053fb328 | /src/pagecontroller.cpp | 46ce0be839743d3853eb766f8dc9e873ef6064b6 | [] | no_license | cheeseH/varisdb | 29e5069e4be334135638646c7340e49ebcbe8b47 | a05c221678644ca98fdc765bffcebc2f459682e0 | refs/heads/master | 2021-01-10T13:35:50.904895 | 2015-12-12T14:52:57 | 2015-12-12T14:52:57 | 47,689,482 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 848 | cpp | /*
* pagecontroller.cpp
*
* Created on: 2015年12月1日
* Author: cheese
*/
#include "pagecontroller.h"
PageController::PageController():pws_(),maplock_(),fd_(0),pageSize_(0){
}
PageController::~PageController(){
}
PageWrapper* PageController::get(long pos){
maplock_.lock();
auto iter = pws_.find(pos);
if(iter != pws_.end()){
maplock_.unlock();
return *iter;
}
else{
auto it = freelist_.begin();
PageWrapper* wrapper = *it;
freelist_.pop_front();
pws_[pos] = wrapper;
wrapper->initUsed();
maplock_.unlock();
wrapper->init(fd_,pos,pageSize_);
return wrapper;
}
}
void PageController::remove(long pos){
maplock_.lock();
auto it = pws_.find(pos);
if(it == pws_.end()){
maplock_.unlock();
return;
}
PageWrapper* pw = *it;
freelist_.push_back(pw);
pws_.erase(it);
maplock_.unlock();
return;
}
| [
"cheese_humn@yahoo.com"
] | cheese_humn@yahoo.com |
1ae6464218c2b272a496714621c2c0d990d49314 | 7f1733b43ba6958143a92744a5a63aa0a16c7746 | /src/qt/reviewbase_coin/welcomecontentwidget.h | 2853e713b394773232689cd79f3434b036cdc0a5 | [
"MIT"
] | permissive | Reviewbasedeveloper/RVIEW-Coin | 74d3859a3f6ce6143e19de046a44a7b50b198d4c | 9e2403503f6b354c0ba7ae9e76daf56c806b74d4 | refs/heads/master | 2020-07-30T20:44:35.515491 | 2019-09-23T12:44:35 | 2019-09-23T12:44:35 | 210,352,280 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,092 | h | // Copyright (c) 2019 The ReviewBase_Coin developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef WELCOMECONTENTWIDGET_H
#define WELCOMECONTENTWIDGET_H
#include <QWidget>
#include <QDialog>
#include <QPushButton>
class OptionsModel;
namespace Ui {
class WelcomeContentWidget;
}
class WelcomeContentWidget : public QDialog
{
Q_OBJECT
public:
explicit WelcomeContentWidget(QWidget *parent = nullptr);
~WelcomeContentWidget();
int pos = 0;
bool isOk = false;
void setModel(OptionsModel *model);
void checkLanguage();
signals:
void onLanguageSelected();
public slots:
void onNextClicked();
void onBackClicked();
void onSkipClicked();
private:
Ui::WelcomeContentWidget *ui;
QPushButton *icConfirm1;
QPushButton *icConfirm2;
QPushButton *icConfirm3;
QPushButton *icConfirm4;
QPushButton *backButton;
QPushButton *nextButton;
OptionsModel *model;
void initLanguages();
};
#endif // WELCOMECONTENTWIDGET_H
| [
"55260458+Reviewbasedeveloper@users.noreply.github.com"
] | 55260458+Reviewbasedeveloper@users.noreply.github.com |
41d220a96500f8fb5098b34fc98e15ffd29344bd | 23c6e6f35680bee885ee071ee123870c3dbc1e3d | /test/libcxx/containers/insert_iter_iter.pass.cpp | 0db3f7417343f27c94946eccf09771cfab5877c7 | [] | no_license | paradise-fi/divine | 3a354c00f39ad5788e08eb0e33aff9d2f5919369 | d47985e0b5175a7b4ee506fb05198c4dd9eeb7ce | refs/heads/master | 2021-07-09T08:23:44.201902 | 2021-03-21T14:24:02 | 2021-03-21T14:24:02 | 95,647,518 | 15 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,831 | cpp | /* TAGS: c++ fin */
/* CC_OPTS: -std=c++2a */
/* VERIFY_OPTS: -o nofail:malloc */
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// <set>
// class set
// template <class InputIterator>
// void insert(InputIterator first, InputIterator last);
#include <set>
#include <cassert>
#include "test_macros.h"
#include "test_iterators.h"
#include "min_allocator.h"
int main(int, char**)
{
{
typedef std::set<int> M;
typedef int V;
V ar[] =
{
1,
1,
1,
2,
2,
2,
3,
3,
3
};
M m;
m.insert(input_iterator<const V*>(ar),
input_iterator<const V*>(ar + sizeof(ar)/sizeof(ar[0])));
assert(m.size() == 3);
assert(*m.begin() == 1);
assert(*next(m.begin()) == 2);
assert(*next(m.begin(), 2) == 3);
}
#if TEST_STD_VER >= 11
{
typedef std::set<int, std::less<int>, min_allocator<int>> M;
typedef int V;
V ar[] =
{
1,
1,
1,
2,
2,
2,
3,
3,
3
};
M m;
m.insert(input_iterator<const V*>(ar),
input_iterator<const V*>(ar + sizeof(ar)/sizeof(ar[0])));
assert(m.size() == 3);
assert(*m.begin() == 1);
assert(*next(m.begin()) == 2);
assert(*next(m.begin(), 2) == 3);
}
#endif
return 0;
}
| [
"xkorenc1@fi.muni.cz"
] | xkorenc1@fi.muni.cz |
08e84aa295ee18bac94da86974744100449c3d33 | 78b41676a7da73405519570c545e746b82e8c907 | /c/assignment-3/question2.cpp | 5833fbb3f386f4ff37e3a4569715ae5b01f68914 | [] | no_license | ayush2409/creepy-code | 041c7e8222ea616c7703067520a0f0f34e871dea | f7fcbc2e473c5644acc8264df846d230cb0cfc75 | refs/heads/master | 2022-12-14T02:32:15.092726 | 2020-09-08T16:41:12 | 2020-09-08T16:41:12 | 292,063,879 | 2 | 0 | null | 2020-09-01T17:29:39 | 2020-09-01T17:29:38 | null | UTF-8 | C++ | false | false | 1,011 | cpp |
#include<iostream>
using namespace std;
class Complex{
public:
Complex(int r=0 ,int i =0){
real = r;
img = i;
}
void print(){
cout<<real<<" +i"<<img<<"\n";
}
Complex operator+(Complex const &obj){
Complex result ;
result.real = real + obj.real;
result.img = img + obj.img;
return result;
}
void operator<<(Complex const &obj) {
cout<<real<<" +i"<<img<<"\n";
}
void operator >>(Complex const &obj){
cout<<"enter real part \n";
cin>>real;
cout<<"enter img part \n ";
cin>>img;
}
Complex operator * (Complex const &obj){
Complex result;
result.real = ((real*obj.real) -(img * obj.img));
result.img = ((real*obj.img)+(img * obj.real));
return result;
}
private:
int real ,img ;
};
int main(){
Complex c1(10,5), c2(2,4);
Complex c3;
c3 = c1 * c2;
c3 << c3;
}
| [
"gauravtewari111@gmail.com"
] | gauravtewari111@gmail.com |
0702f6adec65404b2397bac42d1ea786cbe0967c | a62342d6359a88b0aee911e549a4973fa38de9ea | /0.6.0.3/External/SDK/BP_Gander_functions.cpp | d27f9e61c2a12fb4f5aeca3a96fa764d4f2daab7 | [] | no_license | zanzo420/Medieval-Dynasty-SDK | d020ad634328ee8ee612ba4bd7e36b36dab740ce | d720e49ae1505e087790b2743506921afb28fc18 | refs/heads/main | 2023-06-20T03:00:17.986041 | 2021-07-15T04:51:34 | 2021-07-15T04:51:34 | 386,165,085 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,139 | cpp | // Name: Medieval Dynasty, Version: 0.6.0.3
#include "../pch.h"
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Functions
//---------------------------------------------------------------------------
// Function BP_Gander.BP_Gander_C.GetInteractAction
// (Public, HasOutParms, HasDefaults, BlueprintCallable, BlueprintEvent)
// Parameters:
// struct FText InteractActionText (Parm, OutParm)
// struct FText InteractSecondActionText (Parm, OutParm)
void ABP_Gander_C::GetInteractAction(struct FText* InteractActionText, struct FText* InteractSecondActionText)
{
static auto fn = UObject::FindObject<UFunction>("Function BP_Gander.BP_Gander_C.GetInteractAction");
ABP_Gander_C_GetInteractAction_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
if (InteractActionText != nullptr)
*InteractActionText = params.InteractActionText;
if (InteractSecondActionText != nullptr)
*InteractSecondActionText = params.InteractSecondActionText;
}
// Function BP_Gander.BP_Gander_C.IsInteractable
// (Public, HasOutParms, BlueprintCallable, BlueprintEvent)
// Parameters:
// class ABP_BaseCharacter_C* BaseCharacter (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
// bool Interactable (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor)
// bool Possibility (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor)
// bool ShowPressUI (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor)
// bool ShowTimerUI (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor)
// bool ShowOnlyName (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor)
// float Time (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
// float Distance (Parm, OutParm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
void ABP_Gander_C::IsInteractable(class ABP_BaseCharacter_C* BaseCharacter, bool* Interactable, bool* Possibility, bool* ShowPressUI, bool* ShowTimerUI, bool* ShowOnlyName, float* Time, float* Distance)
{
static auto fn = UObject::FindObject<UFunction>("Function BP_Gander.BP_Gander_C.IsInteractable");
ABP_Gander_C_IsInteractable_Params params;
params.BaseCharacter = BaseCharacter;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
if (Interactable != nullptr)
*Interactable = params.Interactable;
if (Possibility != nullptr)
*Possibility = params.Possibility;
if (ShowPressUI != nullptr)
*ShowPressUI = params.ShowPressUI;
if (ShowTimerUI != nullptr)
*ShowTimerUI = params.ShowTimerUI;
if (ShowOnlyName != nullptr)
*ShowOnlyName = params.ShowOnlyName;
if (Time != nullptr)
*Time = params.Time;
if (Distance != nullptr)
*Distance = params.Distance;
}
// Function BP_Gander.BP_Gander_C.OnSleep
// (Public, BlueprintCallable, BlueprintEvent)
void ABP_Gander_C::OnSleep()
{
static auto fn = UObject::FindObject<UFunction>("Function BP_Gander.BP_Gander_C.OnSleep");
ABP_Gander_C_OnSleep_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function BP_Gander.BP_Gander_C.OnWakeUp
// (Public, BlueprintCallable, BlueprintEvent)
void ABP_Gander_C::OnWakeUp()
{
static auto fn = UObject::FindObject<UFunction>("Function BP_Gander.BP_Gander_C.OnWakeUp");
ABP_Gander_C_OnWakeUp_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function BP_Gander.BP_Gander_C.DayCycle_RestEnd
// (BlueprintCallable, BlueprintEvent)
void ABP_Gander_C::DayCycle_RestEnd()
{
static auto fn = UObject::FindObject<UFunction>("Function BP_Gander.BP_Gander_C.DayCycle_RestEnd");
ABP_Gander_C_DayCycle_RestEnd_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function BP_Gander.BP_Gander_C.ReceiveBeginPlay
// (Event, Protected, BlueprintEvent)
void ABP_Gander_C::ReceiveBeginPlay()
{
static auto fn = UObject::FindObject<UFunction>("Function BP_Gander.BP_Gander_C.ReceiveBeginPlay");
ABP_Gander_C_ReceiveBeginPlay_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function BP_Gander.BP_Gander_C.DayCycle_RestStart
// (BlueprintCallable, BlueprintEvent)
void ABP_Gander_C::DayCycle_RestStart()
{
static auto fn = UObject::FindObject<UFunction>("Function BP_Gander.BP_Gander_C.DayCycle_RestStart");
ABP_Gander_C_DayCycle_RestStart_Params params;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function BP_Gander.BP_Gander_C.Interact
// (Public, BlueprintCallable, BlueprintEvent)
// Parameters:
// class ABP_BaseCharacter_C* BaseCharacter (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
// struct FHitResult Hit (BlueprintVisible, BlueprintReadOnly, Parm, IsPlainOldData, NoDestructor, ContainsInstancedReference)
// bool Timer (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor)
void ABP_Gander_C::Interact(class ABP_BaseCharacter_C* BaseCharacter, const struct FHitResult& Hit, bool Timer)
{
static auto fn = UObject::FindObject<UFunction>("Function BP_Gander.BP_Gander_C.Interact");
ABP_Gander_C_Interact_Params params;
params.BaseCharacter = BaseCharacter;
params.Hit = Hit;
params.Timer = Timer;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
// Function BP_Gander.BP_Gander_C.ExecuteUbergraph_BP_Gander
// (Final, HasDefaults)
// Parameters:
// int EntryPoint (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
void ABP_Gander_C::ExecuteUbergraph_BP_Gander(int EntryPoint)
{
static auto fn = UObject::FindObject<UFunction>("Function BP_Gander.BP_Gander_C.ExecuteUbergraph_BP_Gander");
ABP_Gander_C_ExecuteUbergraph_BP_Gander_Params params;
params.EntryPoint = EntryPoint;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
void ABP_Gander_C::AfterRead()
{
ABP_HusbandryAI_C::AfterRead();
}
void ABP_Gander_C::BeforeDelete()
{
ABP_HusbandryAI_C::BeforeDelete();
}
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"zp2kshield@gmail.com"
] | zp2kshield@gmail.com |
ddb6be5a8d371f65f60b6759e22558d97e856582 | 44f01f4bc7ee0e551fbf8adba7045ffd2b4880d7 | /Source/PirateRaid/PirateRaid.cpp | d1ec976df39d8f7b20fdfe653c9d856fdab5ad3d | [] | no_license | huuduy1/sit255 | 802c5fa0c57dfbf46d9f35a9b7551c20074847a2 | ac1231eb1124bbbcb1ed6aee155a51a8ed58eacf | refs/heads/master | 2020-07-26T06:42:17.234163 | 2019-09-22T13:56:28 | 2019-09-22T13:56:28 | 208,566,900 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 223 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "PirateRaid.h"
#include "Modules/ModuleManager.h"
IMPLEMENT_PRIMARY_GAME_MODULE( FDefaultGameModuleImpl, PirateRaid, "PirateRaid" );
| [
"nguyenthanhtung0207@gmail.com"
] | nguyenthanhtung0207@gmail.com |
41853fe66f51d36ee5006ade4471eed93d35e73c | e39b13327f1202e56899e28c664cf9295c9ae080 | /Codeforces/B. Drinks/main.cpp | bf07a64d6c9025c435786b3bdebeab488a06ca79 | [] | no_license | Moein-Karami/OlympiadCodes | 08404109b4f0b8109d71d77099cdebc862c0157a | 4c5c5cc1f67464e936ad75aca543629296b224f6 | refs/heads/main | 2023-07-05T03:14:57.495488 | 2021-08-26T06:03:23 | 2021-08-26T06:03:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 316 | cpp | #include <iostream>
#include <iomanip>
using namespace std;
int main()
{
double n,sum=0;
cin>>n;
int s=n;
double a[s];
for(int i=0;i<s;i++)
{
cin>>a[i];
sum+=a[i];
}
cout<<setprecision(12);
cout<<std::fixed;
cout<<sum/n;
return 0;
}
| [
"moein2000n@gmail.com"
] | moein2000n@gmail.com |
95cb7d489e0812b649e119bbd324480d87ec553d | 9da42e04bdaebdf0193a78749a80c4e7bf76a6cc | /third_party/gecko-2/win32/include/nsIDOM3TypeInfo.h | 9b7c307bb4baf8b873af65223e5ed2f972ebe6b4 | [
"Apache-2.0"
] | permissive | bwp/SeleniumWebDriver | 9d49e6069881845e9c23fb5211a7e1b8959e2dcf | 58221fbe59fcbbde9d9a033a95d45d576b422747 | refs/heads/master | 2021-01-22T21:32:50.541163 | 2012-11-09T16:19:48 | 2012-11-09T16:19:48 | 6,602,097 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,587 | h | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM e:/builds/moz2_slave/rel-2.0-xr-w32-bld/build/dom/interfaces/core/nsIDOM3TypeInfo.idl
*/
#ifndef __gen_nsIDOM3TypeInfo_h__
#define __gen_nsIDOM3TypeInfo_h__
#ifndef __gen_domstubs_h__
#include "domstubs.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
/* starting interface: nsIDOM3TypeInfo */
#define NS_IDOM3TYPEINFO_IID_STR "2a1088c7-499a-49a7-9d3b-1970d21532ab"
#define NS_IDOM3TYPEINFO_IID \
{0x2a1088c7, 0x499a, 0x49a7, \
{ 0x9d, 0x3b, 0x19, 0x70, 0xd2, 0x15, 0x32, 0xab }}
class NS_NO_VTABLE NS_SCRIPTABLE nsIDOM3TypeInfo : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOM3TYPEINFO_IID)
/* readonly attribute DOMString typeName; */
NS_SCRIPTABLE NS_IMETHOD GetTypeName(nsAString & aTypeName) = 0;
/* readonly attribute DOMString typeNamespace; */
NS_SCRIPTABLE NS_IMETHOD GetTypeNamespace(nsAString & aTypeNamespace) = 0;
enum { DERIVATION_RESTRICTION = 1U };
enum { DERIVATION_EXTENSION = 2U };
enum { DERIVATION_UNION = 4U };
enum { DERIVATION_LIST = 8U };
/* boolean isDerivedFrom (in DOMString typeNamespaceArg, in DOMString typeNameArg, in unsigned long derivationMethod); */
NS_SCRIPTABLE NS_IMETHOD IsDerivedFrom(const nsAString & typeNamespaceArg, const nsAString & typeNameArg, PRUint32 derivationMethod, PRBool *_retval NS_OUTPARAM) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOM3TypeInfo, NS_IDOM3TYPEINFO_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOM3TYPEINFO \
NS_SCRIPTABLE NS_IMETHOD GetTypeName(nsAString & aTypeName); \
NS_SCRIPTABLE NS_IMETHOD GetTypeNamespace(nsAString & aTypeNamespace); \
NS_SCRIPTABLE NS_IMETHOD IsDerivedFrom(const nsAString & typeNamespaceArg, const nsAString & typeNameArg, PRUint32 derivationMethod, PRBool *_retval NS_OUTPARAM);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOM3TYPEINFO(_to) \
NS_SCRIPTABLE NS_IMETHOD GetTypeName(nsAString & aTypeName) { return _to GetTypeName(aTypeName); } \
NS_SCRIPTABLE NS_IMETHOD GetTypeNamespace(nsAString & aTypeNamespace) { return _to GetTypeNamespace(aTypeNamespace); } \
NS_SCRIPTABLE NS_IMETHOD IsDerivedFrom(const nsAString & typeNamespaceArg, const nsAString & typeNameArg, PRUint32 derivationMethod, PRBool *_retval NS_OUTPARAM) { return _to IsDerivedFrom(typeNamespaceArg, typeNameArg, derivationMethod, _retval); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOM3TYPEINFO(_to) \
NS_SCRIPTABLE NS_IMETHOD GetTypeName(nsAString & aTypeName) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTypeName(aTypeName); } \
NS_SCRIPTABLE NS_IMETHOD GetTypeNamespace(nsAString & aTypeNamespace) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTypeNamespace(aTypeNamespace); } \
NS_SCRIPTABLE NS_IMETHOD IsDerivedFrom(const nsAString & typeNamespaceArg, const nsAString & typeNameArg, PRUint32 derivationMethod, PRBool *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->IsDerivedFrom(typeNamespaceArg, typeNameArg, derivationMethod, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOM3TypeInfo : public nsIDOM3TypeInfo
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOM3TYPEINFO
nsDOM3TypeInfo();
private:
~nsDOM3TypeInfo();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOM3TypeInfo, nsIDOM3TypeInfo)
nsDOM3TypeInfo::nsDOM3TypeInfo()
{
/* member initializers and constructor code */
}
nsDOM3TypeInfo::~nsDOM3TypeInfo()
{
/* destructor code */
}
/* readonly attribute DOMString typeName; */
NS_IMETHODIMP nsDOM3TypeInfo::GetTypeName(nsAString & aTypeName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute DOMString typeNamespace; */
NS_IMETHODIMP nsDOM3TypeInfo::GetTypeNamespace(nsAString & aTypeNamespace)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* boolean isDerivedFrom (in DOMString typeNamespaceArg, in DOMString typeNameArg, in unsigned long derivationMethod); */
NS_IMETHODIMP nsDOM3TypeInfo::IsDerivedFrom(const nsAString & typeNamespaceArg, const nsAString & typeNameArg, PRUint32 derivationMethod, PRBool *_retval NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOM3TypeInfo_h__ */
| [
"haleokekahuna@gmail.com"
] | haleokekahuna@gmail.com |
f8a68cdd46bd331a314b787d90a7c6c91170b083 | 6d7f2381b8f1c5c0e0d96156ae36cac12be3017b | /yukicoder/2354/main.cpp | e4905fc53e7fddfb112862626ee1b62b8f345d08 | [
"Unlicense"
] | permissive | Johniel/contests | 708ccf944d6aeb0ef0404eec47e8ff7819ea00f0 | 15d465b08cac56e394509bcf8f24764e3dc6ca7d | refs/heads/master | 2023-09-04T07:32:49.822786 | 2023-09-02T13:44:28 | 2023-09-02T13:44:50 | 48,701,889 | 0 | 0 | null | 2019-10-25T09:21:20 | 2015-12-28T16:38:38 | C++ | UTF-8 | C++ | false | false | 3,205 | cpp | // github.com/Johniel/contests
// yukicoder/2354/main.cpp
#include <bits/stdc++.h>
#define each(i, c) for (auto& i : c)
#define unless(cond) if (!(cond))
// #define endl "\n"
using namespace std;
template<typename P, typename Q> ostream& operator << (ostream& os, pair<P, Q> p) { os << "(" << p.first << "," << p.second << ")"; return os; }
template<typename P, typename Q> istream& operator >> (istream& is, pair<P, Q>& p) { is >> p.first >> p.second; return is; }
template<typename T> ostream& operator << (ostream& os, vector<T> v) { os << "("; for (auto& i: v) os << i << ","; os << ")"; return os; }
template<typename T> istream& operator >> (istream& is, vector<T>& v) { for (auto& i: v) is >> i; return is; }
template<typename T> ostream& operator << (ostream& os, set<T> s) { os << "#{"; for (auto& i: s) os << i << ","; os << "}"; return os; }
template<typename K, typename V> ostream& operator << (ostream& os, map<K, V> m) { os << "{"; for (auto& i: m) os << i << ","; os << "}"; return os; }
template<typename E, size_t N> istream& operator >> (istream& is, array<E, N>& a) { for (auto& i: a) is >> i; return is; }
template<typename E, size_t N> ostream& operator << (ostream& os, array<E, N>& a) { os << "[" << N << "]{"; for (auto& i: a) os << i << ","; os << "}"; return os; }
template<typename T> inline T setmax(T& a, T b) { return a = std::max(a, b); }
template<typename T> inline T setmin(T& a, T b) { return a = std::min(a, b); }
__attribute__((constructor)) static void ___initio(void) { ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.setf(ios_base::fixed); cout.precision(15); return ; }
using lli = long long int;
using ull = unsigned long long;
using str = string;
template<typename T> using vec = vector<T>;
constexpr array<int, 8> di({0, 1, -1, 0, 1, -1, 1, -1});
constexpr array<int, 8> dj({1, 0, 0, -1, 1, -1, -1, 1});
constexpr lli mod = 1e9 + 7;
// constexpr lli mod = 998244353;
int main(int argc, char *argv[])
{
int n, k;
while (cin >> n >> k) {
vec<pair<int, int>> v(n + 2);
cin >> v;
n += 2;
auto fn = [&] (const lli P) {
const int src = 0;
const int dst = 1;
const int N = 500 + 10;
const lli inf = 1LL << 60;
static lli cost[N];
fill(cost, cost + N, inf);
cost[src] = 0;
priority_queue<pair<lli, int>> q;
for (q.push(make_pair(0, src)); q.size(); ) {
pair<lli, int> p = q.top();
q.pop();
const int curr = p.second;
if (cost[curr] != abs(p.first)) continue;
for (int next = 0; next < n; ++next) {
if (next == curr) continue;
lli d = abs(v[curr].first - v[next].first) + abs(v[curr].second - v[next].second);
d = (d + P - 1) / P - 1;
if (cost[next] > d + cost[curr]) {
cost[next] = d + cost[curr];
q.push(make_pair(-cost[next], next));
}
}
}
return cost[dst] <= k;
};
lli small = 1;
lli large = 1LL << 60;
while (small + 1 < large) {
lli mid = (small + large) / 2;
if (fn(mid)) large = mid;
else small = mid;
}
if (fn(small)) cout << small << endl;
else cout << large << endl;
}
return 0;
}
| [
"johniel.s.m@gmail.com"
] | johniel.s.m@gmail.com |
68dc91c48e67bfa203879f8c767d2cb653d906d8 | 1c0789f6f4629125c87beca9c77a01d5b9da2933 | /physLib/src/object/object.cpp | 8b66761cfab7575187f6c14712acf26eea926ad4 | [] | no_license | whztt07/OgreEditor | 01e2e4ca5e6f11632e4efed3f745318600c246c8 | c3b24e413f906fdfd3de2135f9772ea36a346358 | refs/heads/master | 2020-04-06T06:16:31.959299 | 2013-11-18T07:01:32 | 2013-11-18T07:01:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 190 | cpp | #include "object.h"
btDiscreteDynamicsWorld* Object::mWorld=NULL;
Object::Object()
{
}
void Object::setWorld(btDiscreteDynamicsWorld* world)
{
mWorld = world;
}
Object::~Object()
{
}
| [
"laderud@hotmail.com"
] | laderud@hotmail.com |
0ddf4b8bdddcee51a87d6a8947c4891a4f7029ef | 6679013809005a7d4f7a85ca292a84e5ffbb2a69 | /12.12/HourlyEmployee.cpp | c57da1e4321615cba3b62465f528d6f1fb65c971 | [] | no_license | caoyanchen990919/cao_yanchen | 93ddb28fb44032cc43f2ab15c259e459871546af | 0f3ac3f2eaf0eab7a53416d1b4d03a134eb3863e | refs/heads/master | 2020-04-02T06:36:08.304568 | 2019-04-21T12:12:19 | 2019-04-21T12:12:19 | 154,158,356 | 1 | 0 | null | 2018-10-27T11:35:33 | 2018-10-22T14:27:36 | C++ | UTF-8 | C++ | false | false | 1,105 | cpp | #include <iostream>
#include "HourlyEmployee.h"
using namespace std;
HourlyEmployee::HourlyEmployee( const string &first, const string &last,
const string &ssn, int month, int day, int year,
double hourlyWage, double hoursWorked )
: Employee( first, last, ssn, month, day, year )
{
setWage( hourlyWage );
setHours( hoursWorked );
}
void HourlyEmployee::setWage( double hourlyWage )
{
wage = ( hourlyWage < 0.0 ? 0.0 : hourlyWage );
}
double HourlyEmployee::getWage() const
{
return wage;
}
void HourlyEmployee::setHours( double hoursWorked )
{
hours = ( ( ( hoursWorked >= 0.0 ) &&
( hoursWorked <= hoursPerWeek ) ) ? hoursWorked : 0.0 );
}
double HourlyEmployee::getHours() const
{
return hours;
}
double HourlyEmployee::earnings() const
{
if ( getHours() <= 40 )
return getWage() * getHours();
else
return 40 * getWage() + ( ( getHours() - 40 ) * getWage() * 1.5 );
}
void HourlyEmployee::print() const
{
cout << "hourly employee: ";
Employee::print();
cout << "\nhourly wage: " << getWage() <<
"; hours worked: " << getHours();
}
| [
"729628088@qq.com"
] | 729628088@qq.com |
11ebccff650d018724c909e9c7bbcb8f68b38be3 | d6fb28c628cb484139d8478bec9d392ae7e9d395 | /libraries/network/connection.cpp | 19dfbc456cbb28e5bc06f160025b01c3fed9a66f | [] | no_license | marza-pane/Indoorino | b9d1aaaa933c89d67da757839a297c3fcf599b7a | ae922c545115c1ff9ba56bd7e73c17e586bee1e1 | refs/heads/master | 2021-09-19T14:34:54.470692 | 2021-09-09T00:44:14 | 2021-09-09T00:44:14 | 160,186,148 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 30,774 | cpp | /*
* server/connection.cpp
*
* Created on: Jan 04, 2021
* Author: n00b
*
* Thanks to Javidx9 - OneLoneCoder
*
* http://www.onelonecoder.com
* https://www.youtube.com/channel/UC-yuWVUplUJZvieEligKBkA
*
*/
#include "connection.h"
#if defined (__linux__)
namespace net
{
char * connection::ipstring (void)
{
static char bm[LEN_NETADDRESS];
if (is_connected())
{
boost::system::error_code ec;
boost::asio::ip::tcp::endpoint ep = _socket.remote_endpoint(ec);
if (!ec)
{
std::string s = ep.address().to_string();
strcpy(bm, s.c_str());
}
else strcpy(bm, "#.#.#.#");
}
else
{
strcpy(bm, "?.?.?.?");
}
return (char *)bm;
}
// ________________________________________________________________________
// | |
// | CONNECTION TEMPLATE |
// |______________________________________________________________________|
//
connection::connection(
boost::asio::io_context& context,
boost::asio::ip::tcp::socket socket,
utils::ObjectQueue<packet::netpacket>& incoming):
_asio_context(context),
_socket(std::move(socket)),
_rxqueue(incoming)
{
_pid=rand();
_aes.begin();
_readbuffer.resize(SIZEOF_NET_HEADER);
}
connection::~connection()
{
stop();
debug_net("deleting connection [%u]", _pid);
if (!_txqueue.is_empty())
{
warning_net("connection ended with unsent [%u] packet(s)", _txqueue.count());
while (_txqueue.count())
{
// std::vector<char> p = _txqueue.pop_front();
// if (p.size() == 0)
// std::cout << "(empty)" << std::endl;
// else
// p.clear();
packet::bufpacket * p = _txqueue.pop_front();
if (p)
{
std::cout << p->description() << std::endl;
delete p;
}
else std::cout << "(nullptr)" << std::endl;
}
}
}
/* S T O P */
void connection::stop (void)
{
if (_socket.is_open())
{
alert_net("Un-binding client [%u] on socket %s",this->id(), this->ipstring());
boost::system::error_code ec;
_socket.cancel(ec);
if (ec)
{
std::cout << "SOCKET:" << ec.message() << std::endl;
}
_socket.close(ec);
if (ec)
{
std::cout << "SOCKET:" << ec.message() << std::endl;
}
}
}
/* R E A D H E A D */
void connection::read_header (void)
{
if (!is_connected()) { error_server("WP:reading offline"); return; }
boost::asio::async_read(
_socket, boost::asio::buffer(_readbuffer, SIZEOF_NET_HEADER),
[this](std::error_code errorcode, std::size_t length)
{
if (!errorcode)
{
char b_header[SIZEOF_NET_HEADER] {0};
for (iSize_t i=0; i<SIZEOF_NET_HEADER; i++) b_header[i] = _readbuffer.at(i);
#if defined(DEBUG_TCP)
debug_tcp("network header downloaded!");
utils::dump_hex(b_header, SIZEOF_NET_HEADER);
#endif
if (memcmp(b_header, PREAMBLE, SIZEOF_PREAMBLE) != 0)
{
error_net("Invalid header preamble");
utils::dump_hex(b_header, SIZEOF_NET_HEADER);
stop();
}
else
{
memcpy(&_size, b_header + SIZEOF_PREAMBLE, sizeof(iSize_t));
if (_size == 0 || _size > MAX_SIZE_PACKET)
{
error_net("read_body: invalid size [%u>%u]", _size, MAX_SIZE_PACKET);
_size=0;
return;
}
memcpy(_iv, b_header + SIZEOF_PREAMBLE + sizeof(iSize_t), N_BLOCK);
read_body();
}
}
else
{
error_net("ASIO read:head error");
std::cout << errorcode.message() << std::endl;
_socket.close();
}
});
}
/* R E A D B O D Y */
void connection::read_body (void)
{
char * buffer = (char *)calloc(_size, sizeof(char));
boost::asio::async_read(_socket, boost::asio::buffer(buffer, _size),
[this, buffer](std::error_code errorcode, std::size_t length)
{
if (!errorcode)
{
char data[MAX_SIZE_PACKET] {0};
iSize_t s_cipher = _aes.decrypt(data, _iv, buffer, _size);
free(buffer);
#if defined(DEBUG_TCP)
debug_tcp("PACKET READ");
utils::dump_hex(data, s_cipher);
debug_tcp("** CIPHER DECRYPY KEY **");
utils::dump_hex(_aes.masterkey(), LEN_AES_MASTERKEY);
#endif
packet::netpacket * p=new packet::netpacket(data, true);
if (p->command() == 0)
{
if (utils::is_devname(p->source)) { error_net("dowloaded data returned an invalid packet from <%s>!", p->source); }
else { error_net("dowloaded data returned an invalid packet"); }
/* Probably now encryption key has been set, so we close to connection */
utils::dump_hex(data, s_cipher);
delete p;
stop();
return;
}
/** Packet has been received! **/
this->on_packet(p);
read_header();
}
else
{
error_net("ASIO read:body error");
std::cout << errorcode.message() << std::endl;
_socket.close();
}
});
}
/* S E N D */
bool connection::send (packet::netpacket * p, bool direct)
{
if (p==nullptr || p->command() == 0)
{
if (p->command() == 0) error_net("send: empty packet!");
else error_net("send: nullptr!");
return false;
}
debug_tcp("Appending %s to connection send list", p->description());
packet::bufpacket * entry = new packet::bufpacket(p);
boost::asio::post(_asio_context,
[this, entry, direct]()
{
bool flag = _txqueue.is_empty();
if (direct) { _txqueue.push_front(entry); }
else { _txqueue.push_back(entry); }
if (flag)
{
debug_tcp("Ready to write!");
write_packet();
}
});
/*
boost::asio::post(_asio_context,
[this, packetdata, direct]()
{
bool flag = _txqueue.is_empty();
if (direct) { _txqueue.push_front( std::vector<char>(packetdata) ); }
else { _txqueue.push_back( std::vector<char>(packetdata) ); }
if (flag)
{
debug_tcp("Ready to write!");
write_packet();
}
});*/
return true;
}
/* W R I T E P A C K E T */
void connection::write_packet (void)
{
// static std::vector<uint8_t> buffer;
// std::cout << " * 1" << std::flush;
if (!is_connected()) { error_net("write_packet:reading offline"); return; }
if (_txqueue.is_empty()) { error_net("write_packet:empty queue"); return; }
packet::bufpacket * p = _txqueue.pop_front();
iSize_t s_full = p->full_size();
iSize_t s_pred = _aes.cipherlen(s_full);
if (s_pred > MAX_SIZE_PACKET)
{
warning_net("packet <%s> size [%u] exceed max size [%u]", p->label(), s_pred, MAX_SIZE_PACKET);
return;
}
debug_tcp("write: allocating cipher [%u] clear [%u]", s_pred, s_full);
char iv[N_BLOCK] {0};
std::vector<char> cleardata;
std::vector<char> cipherdata;
std::vector<char> packetdata;
cleardata.resize(s_full);
cipherdata.resize(s_pred);
/** F O R G E **/
p->forge( cleardata.data() );
/** E N C R Y P T **/
iSize_t s_cipher = _aes.encrypt((char *)cipherdata.data(), iv,(char *) cleardata.data(), s_full);
if (s_cipher > s_pred)
{
warning_net("enctryption size function returnd [%u]. Encrypted data size [%u]", s_pred, s_cipher);
cipherdata.resize(s_cipher);
s_cipher = _aes.encrypt((char *)cipherdata.data(), iv,(char *) cleardata.data(), s_full);
}
// else
// {
// s_cipher = s_pre;
// }
debug_tcp("writing: cipher SIZE [%u]", s_cipher);
/** W R I T E **/
s_full = SIZEOF_NET_HEADER + s_cipher; /* recycle */
p->txdata = (char *)calloc(s_full, sizeof(char));
memcpy(p->txdata, PREAMBLE, SIZEOF_PREAMBLE);
memcpy(p->txdata + SIZEOF_PREAMBLE, &s_cipher, sizeof(iSize_t));
memcpy(p->txdata + SIZEOF_PREAMBLE + sizeof(iSize_t), iv, N_BLOCK);
memcpy(p->txdata + SIZEOF_NET_HEADER, cipherdata.data(), s_cipher);
// // #if defined(DEBUG_TCP)
// // debug_tcp("write: dump raw <%s> packet:", p->label());
// // utils::dump_hex((const char *)cleardata.data(), p->full_size());
// // debug_tcp("write: dump encrypted packet:");
// // utils::dump_hex((const char *)packetdata.data(), packetdata.size());
// // debug_tcp("** CIPHER ENCRYPT KEY **");
// // utils::dump_hex(_aes.masterkey(), LEN_AES_MASTERKEY);
// // #endif
boost::asio::async_write(_socket,
boost::asio::const_buffer(p->txdata, s_full),
[this, p](std::error_code errorcode, std::size_t length)
{
// std::cout << "Async write executed with legth = " << length << std::endl;
if (!errorcode)
{
// std::cout << " Wrote! " << std::flush;
if (!_txqueue.is_empty())
{
write_packet();
}
}
else
{
error_net("ASIO write error");
std::cout << errorcode.message() << std::endl;
_socket.close();
}
delete p;
});
}
/* S E N D C H E C K S U M */
void connection::send_checksum (packet::netpacket * p)
{
uint8_t hash[SHA_DIGEST_LENGTH];
p->checksum(hash);
packet::netpacket ack(IBACOM_ACK);
memcpy(ack.p_hash1(), hash, SHA_DIGEST_LENGTH);
strcpy(ack.target, p->source);
strcpy(ack.source, p->target);
this->send(&ack, true);
}
/* P I N G */
void connection::ping (void)
{
// auto now = std::chrono::system_clock::now();
// auto now_ms = std::chrono::time_point_cast<std::chrono::milliseconds>(now);
// auto epoch = now_ms.time_since_epoch();
// auto value = std::chrono::duration_cast<std::chrono::milliseconds>(epoch);
// long d = value.count();
// long f = d - SECONDS_FROM_1970_TO_2010 *;
// uint32_t u = uint32_t(f);
// printf("\n ************* milliseconds from 1970 PING is [%ld]", d);
// printf("\n ************* milliseconds from 2010 is [%ld]", f);
// printf("\n ************* milliseconds for PING is [%d]", u);
}
/* O N P A C K E T */
void connection::on_packet (packet::netpacket * p)
{
debug_net("connection [%u]: on packet <%s>!", _pid, p->label());
/* These are hashless packets */
if (p->command() == IBACOM_ACK)
{
// TODO: scroll/match a hash list
delete p;
return;
}
if (p->command() == IBACOM_CONF_AES)
{
if ( strcmp(p->p_command(), "SET") == 0 )
{
_aes.set_key(p->p_aeskey1());
this->on_client_ready();
}
else
{
warning_net("Unrecognized AES conf command <%s>", p->p_command());
}
delete p;
return;
}
send_checksum(p);
_rxqueue.push_back(p);
}
// ________________________________________________________________________
// | |
// | SERVER CONNECTION |
// |______________________________________________________________________|
//
serverConnection::serverConnection(
std::chrono::milliseconds timeout,
boost::asio::io_context& context,
boost::asio::ip::tcp::socket socket,
utils::ObjectQueue<packet::netpacket>& incoming):connection(
context,
std::move(socket),
incoming)
{
debug_net("New connection [%u]", _pid);
// _timeout_thread = std::thread(
// [this, timeout]
// {
// std::this_thread::sleep_for(timeout);
// stop();
// });
// _timeout_thread.detach();
}
serverConnection::~serverConnection()
{
_namelist.clear();
}
/* C O N N E C T 2 C L I E N T */
void serverConnection::connect2client (void)
{
if (_socket.is_open())
{
read_header();
}
else { error_net("New connection on close socket!"); }
};
/* B R O A D C A S T */
void serverConnection::broadcast (const char * source, packet::ipacket *p)
{
for(const auto& target: _namelist)
{
// std::cout << "Broadcasting netpacket" << p->description() << "to " << target << std::endl;
this->send(new packet::netpacket(p, source, target.c_str()));
}
}
void serverConnection::broadcast (packet::netpacket *p)
{
packet::netpacket s(p);
if (!utils::is_devname(s.source)) { strcpy(s.source, BOARD_NAME); }
for(const auto& target: _namelist)
{
strcpy(s.target, target.c_str());
// std::cout << "Broadcasting netpacket" << s.description() << "to " << target << std::endl;
this->send(&s);
}
}
/* H A S C L I E N T */
bool serverConnection::has_client (const char * boardname)
{
for(const auto& value: _namelist)
{
if (value.compare(0, LEN_NAME, boardname) == 0) { return true; }
}
return false;
}
/* O N P A C K E T */
void serverConnection::on_packet (packet::netpacket * p)
{
if (utils::is_devname(p->source) && !has_client(p->source))
{
_namelist.push_back(std::string(p->source));
info_net("connection [%u]: adding target name <%s>", _pid, p->source);
}
connection::on_packet(p);
}
/* O N C L I E N T R E A D Y */
void serverConnection::on_client_ready (void)
{
iEpoch_t t=utils::epoch_now();
packet::netpacket p(IBACOM_UNIX_EPOCH);
memcpy(p.p_epoch(), &t, sizeof(iEpoch_t));
std::cout << "Updating board RTC with : " << utils::timestring_epoch32(*p.p_epoch()) << std::endl;
broadcast(&p);
uint8_t u8 = 1;
uint32_t u32 = utils::epoch_now();
p.init(IBACOM_REPORT);
strcpy(p.p_name(), "INDOORINO SERVER");
strcpy(p.p_message(), "Welcome to indoorino network!");
memcpy(p.p_epoch(), &u32, sizeof(uint32_t));
memcpy(p.p_level(), &u8, sizeof(uint8_t));
broadcast(&p);
}
// ________________________________________________________________________
// | |
// | CLIENT CONNECTION |
// |______________________________________________________________________|
//
clientConnection::clientConnection(
boost::asio::io_context& context,
boost::asio::ip::tcp::socket socket,
utils::ObjectQueue<packet::netpacket>& incoming,
const std::string& name):
connection(context,std::move(socket),incoming),
_name(name)
{
debug_net("Client [%s:%u] initialized", _name.c_str(), _pid);
}
/* O N P A C K E T */
void clientConnection::on_packet (packet::netpacket * p)
{
connection::on_packet(p);
}
/* C O N N E C T 2 S E R V E R */
void clientConnection::connect2server (const boost::asio::ip::tcp::resolver::results_type& target)
{
boost::asio::async_connect(_socket, target,
[this](std::error_code errorcode, boost::asio::ip::tcp::endpoint endpoint)
{
if (!errorcode)
{
std::cout << "Connected to " << endpoint << std::endl;
read_header();
char key[LEN_AES_MASTERKEY] {0};
_aes.generate(key);
packet::netpacket p(IBACOM_CONF_AES);
memcpy(p.p_aeskey1(), key, LEN_AES_MASTERKEY);
strcpy(p.p_command(), "SET");
strcpy(p.source, _name.c_str());
strcpy(p.target, DEFAULT_TARGET);
send(&p, true);
std::thread th_key(
[this, key] {
while (!_txqueue.is_empty()) {}
_aes.set_key(key);
});
th_key.detach();
}
else
{
std::cout << "ERROR:connection with server " << endpoint << " failed..." << std::endl;
stop();
}
});
}
/* O N C L I E N T R E A D Y */
void clientConnection::on_client_ready (void)
{
// packet::netpacket q(IBACOM_REPORT);
// strcpy(q.p_name(), "INDOORINO SERVER");
// strcpy(q.p_message(), "Welcome to indoorino network!");
// *q.p_epoch() = utils::epoch_now();
// *q.p_level() = 1;
// strcpy(q.source, _name.c_str());
// strcpy(q.target, DEFAULT_TARGET);
}
// ________________________________________________________________________
// | |
// | SERVER TEMPLATE |
// |______________________________________________________________________|
//
serverTemplate::serverTemplate(
utils::ObjectQueue<packet::netpacket>& incoming,
uint16_t port):
_acceptor(_asio_context,
boost::asio::ip::tcp::endpoint(
boost::asio::ip::tcp::v4(), port)),
_rxqueue(incoming)
{
info_server("Initializing server on port [%u]!", port);
_timeout = std::chrono::milliseconds(TIMEOUT_CLIENT);
};
serverTemplate::~serverTemplate()
{
stop();
}
/* B E G I N */
bool serverTemplate::begin (void)
{
try
{
WaitForClient();
_thread_context = std::thread([this]() { _asio_context.run(); });
}
catch (std::exception& errorcode)
{
error_server("ASIO init failed!");
std::cout << errorcode.what() << std::endl;
return false;
}
info_server("Started!");
return true;
}
/* W A I T F O R C L I E N T */
void serverTemplate::WaitForClient (void)
{
// static std::mutex _acceptor_mutex;
_acceptor.async_accept(
[this](std::error_code errorcode, boost::asio::ip::tcp::socket socket)
{
// Triggered by incoming connection request
if (!errorcode)
{
std::cout << "SERVER:New connection at:" << socket.remote_endpoint() << std::endl;
// _acceptor_mutex.lock();
std::shared_ptr<serverConnection> newconn = std::make_shared<serverConnection>(
_timeout,
_asio_context,
std::move(socket),
_rxqueue);
if (on_new_client(newconn))
{
_clientlist.push_back(std::move(newconn));
_clientlist.back()->connect2client();
}
else
{
}
// _acceptor_mutex.unlock();
}
else
{
int ec = errorcode.value();
if (ec == 125)
{
return;
}
if (ec == 9)
{
error_server("Bad file description", errorcode.value());
}
error_server("New connection failed [%d]", errorcode.value());
std::cout << "ACCEPTOR:" << errorcode.message() << std::endl;
}
WaitForClient();
});
}
/* S T O P */
void serverTemplate::stop (void)
{
if (_acceptor.is_open())
{
_acceptor.cancel();
_acceptor.close();
alert_server("Connections acceptor closed!");
}
if (!_asio_context.stopped())
{
_asio_context.stop();
alert_server("ASIO context stopped!");
}
if (_thread_context.joinable())
{
_thread_context.join();
alert_server("IO thread finished!");
}
_clientlist.clear();
}
/* L O O P */
void serverTemplate::loop (void)
{
for (auto& client: _clientlist)
{
if ( !(client && client->is_connected()) )
{
on_lost_client(client);
boost::asio::post(_asio_context, [client]()
{
boost::system::error_code ec;
client->stop();
if (ec)
{
error_net("ASIO:socket can not close!");
}
});
_clientlist.erase(std::remove(_clientlist.begin(), _clientlist.end(), client), _clientlist.end());
loop();
return;
}
}
}
/* B R O A D C A S T */
void serverTemplate::broadcast (packet::ipacket * p)
{
for(const auto& client: _clientlist)
{
client->broadcast(BOARD_NAME, p);
}
}
void serverTemplate::broadcast (packet::netpacket * p)
{
for(const auto& client: _clientlist)
{
client->broadcast(p);
}
}
/* S E N D */
void serverTemplate::send (packet::netpacket * p)
{
uint8_t count = 0;
for (auto& client: _clientlist)
{
if (client->has_client(p->target))
{
debug_io("Found target <%s> in connection list", p->target);//will be debug_tcp
if (client && client->is_connected())
{
debug_io("Target is online");
client->send(p);
count++;
continue;
}
else
{
on_lost_client(client);
client.reset();
_clientlist.erase(std::remove(_clientlist.begin(), _clientlist.end(), client), _clientlist.end());
break;
}
}
}
if (count == 0)
warning_net("Could not find connections for <%s> sending <%s>", p->target, p->label());
}
/* H A S C L I E N T */
bool serverTemplate::has_client (const char * name)
{
for (auto& client : this->_clientlist)
{
if (client->has_client(name)) return true;
}
return false;
}
// void serverTemplate::send (const char * target, packet::ipacket * p)
// {
// this->send(new packet::netpacket(p, BOARD_NAME, target));
// }
} /* namespace net */
#endif /* (__linux__) */
// std::unique_lock<std::mutex> lock (_io_mutex, std::defer_lock);
// std::cout << " 2" << std::flush;
// if ( p==nullptr || p->command()==0)
// {
// error_net("write_packet: nullptr packet found!");
// if (!_txqueue.is_empty())
// {
// write_packet();
// }
// return;
// }
// debug_io("tcp:write: [%u] writing <%s>",_pid, p->label());
// std::cout << " 3" << std::flush;
// char b_iv[N_BLOCK] {0};
// iSize_t s_cipher=0;
// iSize_t size=p->full_size();
// iSize_t csize=_aes.cipherlen(size);
//
// if (csize > MAX_SIZE_PACKET)
// {
// warning_net("packet <%s> size [%u] exceed max size [%u]", p->label(), csize, MAX_SIZE_PACKET);
// delete p;
// if (!_txqueue.is_empty())
// {
// write_packet();
// }
// return;
// }
// debug_tcp("write: allocating cipher [%u] clear [%u]", csize, size);
// std::vector<uint8_t> cleardata;
// std::vector<uint8_t> cipher;
// std::cout << " 4" << std::flush;
// cleardata.resize(size);
// cipher.resize(csize);
// std::cout << " 5" << std::flush;
// p->header((char *) cleardata.data());
// if (p->data_size() > 0)
// {
// memcpy(cleardata.data() + SIZEOF_PACKET_HEADER, p->payload(), p->data_size());
// }
// std::cout << " 6" << std::flush;
// s_cipher = _aes.encrypt((char *)cipher.data(), b_iv,(char *) cleardata.data(), size);
// debug_tcp("writing: cipher SIZE [%u]", s_cipher);
// std::cout << " 7" << std::flush;
// p->data.resize(SIZEOF_NET_HEADER + s_cipher);
// buffer.clear();
// buffer.resize(SIZEOF_NET_HEADER + s_cipher);
// std::cout << " 8" << std::flush;
// memcpy(p->data.data(), PREAMBLE, SIZEOF_PREAMBLE);
// memcpy(p->data.data() + SIZEOF_PREAMBLE, &s_cipher, sizeof(iSize_t));
// memcpy(p->data.data() + SIZEOF_PREAMBLE + sizeof(iSize_t), b_iv, N_BLOCK);
// memcpy(p->data.data() + SIZEOF_NET_HEADER, cipher.data(), s_cipher);
// std::cout << " 9" << std::flush;
// #if defined(DEBUG_TCP)
// debug_tcp("write: dump raw <%s> packet:", p->label());
// utils::dump_hex((const char *)cleardata.data(), p->full_size());
// debug_tcp("write: dump encrypted packet:");
// utils::dump_hex((const char *)p->data.data(), p->data.size());
// debug_tcp("** CIPHER ENCRYPT KEY **");
// utils::dump_hex(_aes.masterkey(), LEN_AES_MASTERKEY);
// #endif
// if (p->command() == IBACOM_RESET)
// {
// error_net("PARSING %s", p->description());
// delete p;
// return;
// }
// std::cout << " 10" << std::flush;
// std::vector<char> p = _txqueue.front();
| [
"n00b@localhost.localdomain"
] | n00b@localhost.localdomain |
b5aa367fb2d39cc1d54cc12226691ee6458e4d64 | b327a374de29f80d9b2b3841db73f3a6a30e5f0d | /out/target/product/generic/obj/STATIC_LIBRARIES/libwebcore_intermediates/WebCore/bindings/V8UIEvent.cpp | 22d43cd4e984df061903b56579d473ef9ad21a79 | [] | no_license | nikoltu/aosp | 6409c386ed6d94c15d985dd5be2c522fefea6267 | f99d40c9d13bda30231fb1ac03258b6b6267c496 | refs/heads/master | 2021-01-22T09:26:24.152070 | 2011-09-27T15:10:30 | 2011-09-27T15:10:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,906 | cpp | /*
This file is part of the WebKit open source project.
This file has been generated by generate-bindings.pl. DO NOT MODIFY!
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
#include "config.h"
#include "RuntimeEnabledFeatures.h"
#include "V8Proxy.h"
#include "V8Binding.h"
#include "V8BindingState.h"
#include "V8DOMWrapper.h"
#include "V8IsolatedContext.h"
#undef LOG
#include "V8DOMWindow.h"
#include "V8Event.h"
#include "V8UIEvent.h"
#include "wtf/GetPtr.h"
#include "wtf/RefCounted.h"
#include "wtf/RefPtr.h"
namespace WebCore {
namespace UIEventInternal {
template <typename T> void V8_USE(T) { }
static v8::Handle<v8::Value> viewAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) {
INC_STATS("DOM.UIEvent.view._get");
UIEvent* imp = V8UIEvent::toNative(info.Holder());
return toV8(imp->view());
}
static v8::Handle<v8::Value> detailAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) {
INC_STATS("DOM.UIEvent.detail._get");
UIEvent* imp = V8UIEvent::toNative(info.Holder());
return v8::Integer::New(imp->detail());
}
static v8::Handle<v8::Value> keyCodeAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) {
INC_STATS("DOM.UIEvent.keyCode._get");
UIEvent* imp = V8UIEvent::toNative(info.Holder());
return v8::Integer::New(imp->keyCode());
}
static v8::Handle<v8::Value> charCodeAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) {
INC_STATS("DOM.UIEvent.charCode._get");
UIEvent* imp = V8UIEvent::toNative(info.Holder());
return v8::Integer::New(imp->charCode());
}
static v8::Handle<v8::Value> layerXAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) {
INC_STATS("DOM.UIEvent.layerX._get");
UIEvent* imp = V8UIEvent::toNative(info.Holder());
return v8::Integer::New(imp->layerX());
}
static v8::Handle<v8::Value> layerYAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) {
INC_STATS("DOM.UIEvent.layerY._get");
UIEvent* imp = V8UIEvent::toNative(info.Holder());
return v8::Integer::New(imp->layerY());
}
static v8::Handle<v8::Value> pageXAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) {
INC_STATS("DOM.UIEvent.pageX._get");
UIEvent* imp = V8UIEvent::toNative(info.Holder());
return v8::Integer::New(imp->pageX());
}
static v8::Handle<v8::Value> pageYAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) {
INC_STATS("DOM.UIEvent.pageY._get");
UIEvent* imp = V8UIEvent::toNative(info.Holder());
return v8::Integer::New(imp->pageY());
}
static v8::Handle<v8::Value> whichAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) {
INC_STATS("DOM.UIEvent.which._get");
UIEvent* imp = V8UIEvent::toNative(info.Holder());
return v8::Integer::New(imp->which());
}
static v8::Handle<v8::Value> initUIEventCallback(const v8::Arguments& args) {
INC_STATS("DOM.UIEvent.initUIEvent");
UIEvent* imp = V8UIEvent::toNative(args.Holder());
V8Parameter<> type = args[0];
bool canBubble = args[1]->BooleanValue();
bool cancelable = args[2]->BooleanValue();
DOMWindow* view = V8DOMWindow::HasInstance(args[3]) ? V8DOMWindow::toNative(v8::Handle<v8::Object>::Cast(args[3])) : 0;
int detail = toInt32(args[4]);
imp->initUIEvent(type, canBubble, cancelable, view, detail);
return v8::Handle<v8::Value>();
}
} // namespace UIEventInternal
static const BatchedAttribute UIEvent_attrs[] = {
{
// Attribute 'view' (Type: 'readonly attribute' ExtAttr: '')
"view",
UIEventInternal::viewAttrGetter,
0,
V8ClassIndex::INVALID_CLASS_INDEX /* no data */,
static_cast<v8::AccessControl>(v8::DEFAULT),
static_cast<v8::PropertyAttribute>(v8::None),
0 /* on instance */
},
{
// Attribute 'detail' (Type: 'readonly attribute' ExtAttr: '')
"detail",
UIEventInternal::detailAttrGetter,
0,
V8ClassIndex::INVALID_CLASS_INDEX /* no data */,
static_cast<v8::AccessControl>(v8::DEFAULT),
static_cast<v8::PropertyAttribute>(v8::None),
0 /* on instance */
},
{
// Attribute 'keyCode' (Type: 'readonly attribute' ExtAttr: '')
"keyCode",
UIEventInternal::keyCodeAttrGetter,
0,
V8ClassIndex::INVALID_CLASS_INDEX /* no data */,
static_cast<v8::AccessControl>(v8::DEFAULT),
static_cast<v8::PropertyAttribute>(v8::None),
0 /* on instance */
},
{
// Attribute 'charCode' (Type: 'readonly attribute' ExtAttr: '')
"charCode",
UIEventInternal::charCodeAttrGetter,
0,
V8ClassIndex::INVALID_CLASS_INDEX /* no data */,
static_cast<v8::AccessControl>(v8::DEFAULT),
static_cast<v8::PropertyAttribute>(v8::None),
0 /* on instance */
},
{
// Attribute 'layerX' (Type: 'readonly attribute' ExtAttr: '')
"layerX",
UIEventInternal::layerXAttrGetter,
0,
V8ClassIndex::INVALID_CLASS_INDEX /* no data */,
static_cast<v8::AccessControl>(v8::DEFAULT),
static_cast<v8::PropertyAttribute>(v8::None),
0 /* on instance */
},
{
// Attribute 'layerY' (Type: 'readonly attribute' ExtAttr: '')
"layerY",
UIEventInternal::layerYAttrGetter,
0,
V8ClassIndex::INVALID_CLASS_INDEX /* no data */,
static_cast<v8::AccessControl>(v8::DEFAULT),
static_cast<v8::PropertyAttribute>(v8::None),
0 /* on instance */
},
{
// Attribute 'pageX' (Type: 'readonly attribute' ExtAttr: '')
"pageX",
UIEventInternal::pageXAttrGetter,
0,
V8ClassIndex::INVALID_CLASS_INDEX /* no data */,
static_cast<v8::AccessControl>(v8::DEFAULT),
static_cast<v8::PropertyAttribute>(v8::None),
0 /* on instance */
},
{
// Attribute 'pageY' (Type: 'readonly attribute' ExtAttr: '')
"pageY",
UIEventInternal::pageYAttrGetter,
0,
V8ClassIndex::INVALID_CLASS_INDEX /* no data */,
static_cast<v8::AccessControl>(v8::DEFAULT),
static_cast<v8::PropertyAttribute>(v8::None),
0 /* on instance */
},
{
// Attribute 'which' (Type: 'readonly attribute' ExtAttr: '')
"which",
UIEventInternal::whichAttrGetter,
0,
V8ClassIndex::INVALID_CLASS_INDEX /* no data */,
static_cast<v8::AccessControl>(v8::DEFAULT),
static_cast<v8::PropertyAttribute>(v8::None),
0 /* on instance */
},
};
static v8::Persistent<v8::FunctionTemplate> ConfigureV8UIEventTemplate(v8::Persistent<v8::FunctionTemplate> desc) {
v8::Local<v8::Signature> default_signature = configureTemplate(desc, "UIEvent",
V8Event::GetTemplate(), V8UIEvent::internalFieldCount,
UIEvent_attrs, sizeof(UIEvent_attrs)/sizeof(*UIEvent_attrs),
NULL, 0);
v8::Local<v8::ObjectTemplate> instance = desc->InstanceTemplate();
v8::Local<v8::ObjectTemplate> proto = desc->PrototypeTemplate();
// Custom Signature 'initUIEvent'
const int initUIEvent_argc = 5;
v8::Handle<v8::FunctionTemplate> initUIEvent_argv[initUIEvent_argc] = { v8::Handle<v8::FunctionTemplate>(), v8::Handle<v8::FunctionTemplate>(), v8::Handle<v8::FunctionTemplate>(), V8DOMWindow::GetRawTemplate(), v8::Handle<v8::FunctionTemplate>() };
v8::Handle<v8::Signature> initUIEvent_signature = v8::Signature::New(desc, initUIEvent_argc, initUIEvent_argv);
proto->Set(v8::String::New("initUIEvent"), v8::FunctionTemplate::New(UIEventInternal::initUIEventCallback, v8::Handle<v8::Value>(), initUIEvent_signature));
// Custom toString template
desc->Set(getToStringName(), getToStringTemplate());
return desc;
}
v8::Persistent<v8::FunctionTemplate> V8UIEvent::GetRawTemplate() {
static v8::Persistent<v8::FunctionTemplate> V8UIEvent_raw_cache_ = createRawTemplate();
return V8UIEvent_raw_cache_;
}
v8::Persistent<v8::FunctionTemplate> V8UIEvent::GetTemplate() {
static v8::Persistent<v8::FunctionTemplate> V8UIEvent_cache_ = ConfigureV8UIEventTemplate(GetRawTemplate());
return V8UIEvent_cache_;
}
UIEvent* V8UIEvent::toNative(v8::Handle<v8::Object> object) {
return reinterpret_cast<UIEvent*>(object->GetPointerFromInternalField(v8DOMWrapperObjectIndex));
}
bool V8UIEvent::HasInstance(v8::Handle<v8::Value> value) {
return GetRawTemplate()->HasInstance(value);
}
v8::Handle<v8::Object> V8UIEvent::wrap(UIEvent* impl) {
v8::Handle<v8::Object> wrapper;
V8Proxy* proxy = 0;
wrapper = getDOMObjectMap().get(impl);
if (!wrapper.IsEmpty())
return wrapper;
wrapper = V8DOMWrapper::instantiateV8Object(proxy, V8ClassIndex::UIEVENT, impl);
if (wrapper.IsEmpty())
return wrapper;
impl->ref();
getDOMObjectMap().set(impl, v8::Persistent<v8::Object>::New(wrapper));
return wrapper;
}
v8::Handle<v8::Value> toV8(PassRefPtr<UIEvent > impl) {
return toV8(impl.get());
}
v8::Handle<v8::Value> toV8(UIEvent* impl) {
if (!impl)
return v8::Null();
return V8UIEvent::wrap(impl);
}
} // namespace WebCore
| [
"fred.faust@gmail.com"
] | fred.faust@gmail.com |
3e31c32ac2b1f598db89ea67286495f7771bd04c | 2751d54af6025d9673edd64b374454dead1a7150 | /teach-programming/clock_diff.cpp | f84bfc44c07271c1921e610499a83ab75f16be1f | [] | no_license | mfakhrusy/cpp-exercise-awesome | 4e4eec4b6fedfbc6f19b259be73a1bc94118a871 | cdcf6212c037b6d65618f9ea085787ec00249767 | refs/heads/master | 2021-08-23T17:41:09.392374 | 2017-12-05T23:16:27 | 2017-12-05T23:16:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 351 | cpp | #include <iostream>
using namespace std;
struct data_waktu{
int jam;
int menit;
int detik;
int total;
};
int main(){
data_waktu A;
data_waktu B;
A.jam = 3;
A.menit = 40;
A.detik = 50;
B.jam = 10;
B.menit = 1;
B.detik = 50;
cout << A.jam << " Jam, " << A.menit << " Menit, " << A.detik << " Detik." << endl;
int a;
return 0;
}
| [
"mfakhrusy@outlook.com"
] | mfakhrusy@outlook.com |
aa4a29dfad380f37b49230dab1b35c1aa70e4b1c | 375fccaa7deeefaa392036e9c7e4c2be1b8cef44 | /source/octoon-hal/OpenGL 33/gl33_framebuffer.cpp | 3a81cf30d668c36d07f8d6a0535ea47cdfa60ebb | [
"MIT"
] | permissive | naeioi/octoon | b98678df257e87da9fb27e56f0f209ff46cc126b | e32152fe4730fa609def41114613dbe067d31276 | refs/heads/master | 2020-07-09T05:33:15.019542 | 2019-08-22T11:34:54 | 2019-08-22T11:34:58 | 203,893,478 | 1 | 0 | MIT | 2019-08-23T00:22:11 | 2019-08-23T00:22:11 | null | UTF-8 | C++ | false | false | 6,426 | cpp | #include "gl33_framebuffer.h"
#include "gl33_texture.h"
#include "gl33_device.h"
namespace octoon
{
namespace hal
{
OctoonImplementSubClass(GL33Framebuffer, GraphicsFramebuffer, "GL33Framebuffer")
OctoonImplementSubClass(GL33FramebufferLayout, GraphicsFramebufferLayout, "GL33FramebufferLayout")
GL33FramebufferLayout::GL33FramebufferLayout() noexcept
{
}
GL33FramebufferLayout::~GL33FramebufferLayout() noexcept
{
this->close();
}
bool
GL33FramebufferLayout::setup(const GraphicsFramebufferLayoutDesc& framebufferDesc) noexcept
{
_framebufferLayoutDesc = framebufferDesc;
return true;
}
void
GL33FramebufferLayout::close() noexcept
{
}
const GraphicsFramebufferLayoutDesc&
GL33FramebufferLayout::getFramebufferLayoutDesc() const noexcept
{
return _framebufferLayoutDesc;
}
void
GL33FramebufferLayout::setDevice(const GraphicsDevicePtr& device) noexcept
{
_device = device;
}
GraphicsDevicePtr
GL33FramebufferLayout::getDevice() noexcept
{
return _device.lock();
}
GL33Framebuffer::GL33Framebuffer() noexcept
: _fbo(GL_NONE)
{
}
GL33Framebuffer::~GL33Framebuffer() noexcept
{
this->close();
}
bool
GL33Framebuffer::setup(const GraphicsFramebufferDesc& framebufferDesc) noexcept
{
assert(GL_NONE == _fbo);
assert(framebufferDesc.getFramebufferLayout());
assert(framebufferDesc.getFramebufferLayout()->isInstanceOf<GL33FramebufferLayout>());
assert(framebufferDesc.getWidth() > 0 && framebufferDesc.getHeight() > 0);
glGenFramebuffers(1, &_fbo);
if (_fbo == GL_NONE)
{
this->getDevice()->downcast<GL33Device>()->message("glCreateFramebuffers() fail.");
return false;
}
glBindFramebuffer(GL_FRAMEBUFFER, _fbo);
GLenum drawCount = 0;
GLenum drawBuffers[GL_COLOR_ATTACHMENT15 - GL_COLOR_ATTACHMENT0];
const auto& textureComponents = framebufferDesc.getFramebufferLayout()->getFramebufferLayoutDesc().getComponents();
const auto& colorAttachments = framebufferDesc.getColorAttachments();
if (colorAttachments.size() > (sizeof(drawBuffers) / sizeof(drawBuffers[0])))
{
this->getDevice()->downcast<GL33Device>()->message("The color attachment in framebuffer is out of range.");
return false;
}
for (std::size_t i = 0; i < textureComponents.size(); i++)
{
auto type = textureComponents[i].getAttachType();
switch (type)
{
case GraphicsImageLayout::General:
break;
case GraphicsImageLayout::ColorAttachmentOptimal:
{
GLint slot = GL_COLOR_ATTACHMENT0 + textureComponents[i].getAttachSlot();
GLint mipLevel = colorAttachments[drawCount].getBindingLevel();
GLint layer = colorAttachments[drawCount].getBindingLayer();
if (!this->bindRenderTexture(colorAttachments[drawCount].getBindingTexture(), slot, mipLevel, layer))
return false;
drawBuffers[drawCount++] = slot;
}
break;
case GraphicsImageLayout::DepthStencilAttachmentOptimal:
case GraphicsImageLayout::DepthStencilReadOnlyOptimal:
{
const auto& depthStencilAttachment = framebufferDesc.getDepthStencilAttachment();
if (!depthStencilAttachment.getBindingTexture())
{
this->getDevice()->downcast<GL33Device>()->message("Need depth or stencil texture.");
return false;
}
auto texture = depthStencilAttachment.getBindingTexture();
auto format = texture->getTextureDesc().getTexFormat();
auto level = depthStencilAttachment.getBindingLevel();
auto layer = depthStencilAttachment.getBindingLayer();
if (GL33Types::isDepthStencilFormat(format))
{
if (!this->bindRenderTexture(texture, GL_DEPTH_STENCIL_ATTACHMENT, level, layer))
return false;
}
else if (GL33Types::isDepthFormat(format))
{
if (!this->bindRenderTexture(texture, GL_DEPTH_ATTACHMENT, level, layer))
return false;
}
else if (GL33Types::isStencilFormat(format))
{
if (!this->bindRenderTexture(texture, GL_STENCIL_ATTACHMENT, level, layer))
return false;
}
else
{
this->getDevice()->downcast<GL33Device>()->message("Invalid texture format");
return false;
}
}
case GraphicsImageLayout::ShaderReadOnlyOptimal:
break;
case GraphicsImageLayout::TransferSrcOptimal:
break;
case GraphicsImageLayout::TransferDstOptimal:
break;
case GraphicsImageLayout::Preinitialized:
break;
case GraphicsImageLayout::PresentSrcKhr:
break;
default:
break;
}
}
glDrawBuffers(drawCount, drawBuffers);
bool error = GL33Check::checkError();
glBindFramebuffer(GL_FRAMEBUFFER, GL_NONE);
_framebufferDesc = framebufferDesc;
return error;
}
void
GL33Framebuffer::close() noexcept
{
if (_fbo != GL_NONE)
{
glDeleteFramebuffers(1, &_fbo);
_fbo = GL_NONE;
}
}
GLuint
GL33Framebuffer::getInstanceID() noexcept
{
return _fbo;
}
bool
GL33Framebuffer::bindRenderTexture(GraphicsTexturePtr renderTexture, GLenum attachment, GLint level, GLint layer) noexcept
{
assert(renderTexture);
auto texture = renderTexture->downcast<GL33Texture>();
auto textureID = texture->getInstanceID();
auto textureTarget = texture->getTarget();
auto& textureDesc = renderTexture->getTextureDesc();
if (textureDesc.getTexDim() == GraphicsTextureDim::Texture2DArray || textureDesc.getTexDim() == GraphicsTextureDim::Texture2DArrayMultisample)
glFramebufferTextureLayer(GL_FRAMEBUFFER, attachment, textureID, level, layer);
else if (textureDesc.getTexDim() == GraphicsTextureDim::Cube)
glFramebufferTexture(GL_FRAMEBUFFER, attachment, textureID, level);
else if (textureDesc.getTexDim() == GraphicsTextureDim::CubeArray)
glFramebufferTexture3D(GL_FRAMEBUFFER, attachment, textureTarget, textureID, level, layer);
else
glFramebufferTexture2D(GL_FRAMEBUFFER, attachment, textureTarget, textureID, level);
return GL33Check::checkError();
}
const std::uint64_t
GL33Framebuffer::handle() const noexcept
{
return this->_fbo;
}
const GraphicsFramebufferDesc&
GL33Framebuffer::getGraphicsFramebufferDesc() const noexcept
{
return _framebufferDesc;
}
void
GL33Framebuffer::setDevice(const GraphicsDevicePtr& device) noexcept
{
_device = device;
}
GraphicsDevicePtr
GL33Framebuffer::getDevice() noexcept
{
return _device.lock();
}
}
} | [
"2221870259@qq.com"
] | 2221870259@qq.com |
8e63fe7811b60da7aff5adf2393f99e8558e3104 | f476897f8cd2aa7d6399b62df4bd01aa9caae2e1 | /freq_in_a_sorted_array.cpp | 819b2fc6b38fe256b65a2c97df76f1b1f76b35f1 | [] | no_license | am282000/dsa_programs_using_cpp | bf83e564e7da8089329ec503f3d7318ebe48f527 | d953a2e181641ef9f0adb585ae68c91cda3b46b7 | refs/heads/main | 2023-05-21T08:11:25.563857 | 2021-06-05T03:48:04 | 2021-06-05T03:48:04 | 374,013,737 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 775 | cpp | //worked for only sorted array
#include<bits/stdc++.h>
using namespace std;
int printFreq(int arr[],int n){
int freq=1,i=1;
while(i<n){
while(i<n && arr[i]==arr[i-1]){ // pichle vala element aage vale k equal h ya nhi
freq++;
i++;
}
cout<<arr[i-1]<<" comes "<<freq<< " times."<<endl;
i++;
freq=1;
}
if(n==1 || arr[n-1]!=arr[n-2]) // for the cases where we enter either only one array or for the last element of the array
cout<<arr[n-1]<<" comes "<<freq<< " times."<<endl; // who have no i+1 to check himself.
}
int main (){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int n=10;
int arr[]={3,3,3,5,6,7,7,7,8,8};
printFreq(arr,n);
return 0;
}
//time complexity = Q(n)
| [
"madaansahaab777@gmail.com"
] | madaansahaab777@gmail.com |
4a47bf7931a4b048539fc16e276b0a07a44ee8cc | 3c39c2667159c2eacba65c9b6f36e6ca9b5b42a3 | /src/MainWindow.cpp | b8af286d711aea463fc266d5ec1254ea2fdf1232 | [] | no_license | Lobelie/Fide | be59b7e2cd2e717063cd95e9b4c0539e6ee33d5b | 203149cd0f41c4f43c4ff44ea518027c31ab8a75 | refs/heads/master | 2021-01-23T13:18:31.592523 | 2014-08-05T22:47:41 | 2014-08-05T22:47:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 663 | cpp | #include "MainWindow.hpp"
#include <QDockWidget>
#include <QTableWidget>
#include <QTextEdit>
#include <string>
#include "FileTreeView.hpp"
MainWindow::MainWindow(QWidget *_parent) :
QMainWindow(_parent)
{
initTreeView();
initTabWidget();
}
MainWindow::~MainWindow() {
}
void MainWindow::initTreeView() {
QDockWidget* dock = new QDockWidget(this);
tree = new FileTreeView(dock);
dock->setWidget(tree);
addDockWidget(Qt::LeftDockWidgetArea, dock);
}
void MainWindow::initTabWidget() {
tab = new QTabWidget(this);
tab->insertTab(0, new QTextEdit(tab), QString::fromStdString("Untitled file"));
setCentralWidget(tab);
}
| [
"phantasmagoria-@hotmail.fr"
] | phantasmagoria-@hotmail.fr |
771157064e3ed63354cee35e9f187da38c77d49a | 86132ed5498a6e44bf1ba8725f44884844d3ec8c | /deps/nanogui/ext/pybind11/tests/test_pickling.cpp | 87c623d39c74eb4177f3cb746f0d8c2a5f6b9de5 | [
"BSD-3-Clause",
"LicenseRef-scancode-generic-cla",
"MIT"
] | permissive | medakk/boundary-first-flattening | 006cf7374fab687a792aa7cd3552ee5f87a44c83 | 805de2c6cf1cb6c65235e331789db8a5313f0e26 | refs/heads/master | 2022-11-16T15:33:58.494044 | 2020-07-09T01:57:53 | 2020-07-09T01:57:53 | 278,237,187 | 1 | 0 | MIT | 2020-07-09T01:56:39 | 2020-07-09T01:56:39 | null | UTF-8 | C++ | false | false | 2,937 | cpp | /*
tests/test_pickling.cpp -- pickle support
Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
*/
#include "pybind11_tests.h"
class Pickleable {
public:
Pickleable(const std::string &value) : m_value(value) { }
const std::string &value() const { return m_value; }
void setExtra1(int extra1) { m_extra1 = extra1; }
void setExtra2(int extra2) { m_extra2 = extra2; }
int extra1() const { return m_extra1; }
int extra2() const { return m_extra2; }
private:
std::string m_value;
int m_extra1 = 0;
int m_extra2 = 0;
};
class PickleableWithDict {
public:
PickleableWithDict(const std::string &value) : value(value) { }
std::string value;
int extra;
};
test_initializer pickling([](py::module &m) {
py::class_<Pickleable>(m, "Pickleable")
.def(py::init<std::string>())
.def("value", &Pickleable::value)
.def("extra1", &Pickleable::extra1)
.def("extra2", &Pickleable::extra2)
.def("setExtra1", &Pickleable::setExtra1)
.def("setExtra2", &Pickleable::setExtra2)
// For details on the methods below, refer to
// http://docs.python.org/3/library/pickle.html#pickling-class-instances
.def("__getstate__", [](const Pickleable &p) {
/* Return a tuple that fully encodes the state of the object */
return py::make_tuple(p.value(), p.extra1(), p.extra2());
})
.def("__setstate__", [](Pickleable &p, py::tuple t) {
if (t.size() != 3)
throw std::runtime_error("Invalid state!");
/* Invoke the constructor (need to use in-place version) */
new (&p) Pickleable(t[0].cast<std::string>());
/* Assign any additional state */
p.setExtra1(t[1].cast<int>());
p.setExtra2(t[2].cast<int>());
});
#if !defined(PYPY_VERSION)
py::class_<PickleableWithDict>(m, "PickleableWithDict", py::dynamic_attr())
.def(py::init<std::string>())
.def_readwrite("value", &PickleableWithDict::value)
.def_readwrite("extra", &PickleableWithDict::extra)
.def("__getstate__", [](py::object self) {
/* Also include __dict__ in state */
return py::make_tuple(self.attr("value"), self.attr("extra"), self.attr("__dict__"));
})
.def("__setstate__", [](py::object self, py::tuple t) {
if (t.size() != 3)
throw std::runtime_error("Invalid state!");
/* Cast and construct */
auto& p = self.cast<PickleableWithDict&>();
new (&p) Pickleable(t[0].cast<std::string>());
/* Assign C++ state */
p.extra = t[1].cast<int>();
/* Assign Python state */
self.attr("__dict__") = t[2];
});
#endif
});
| [
"sawhney_rohan@yahoo.co.in"
] | sawhney_rohan@yahoo.co.in |
c8d3ea0f168aabbbb1a8d50d25cd6c3fb7d1b9be | cc4967160ada91eb730b7352f8b7afaae8324932 | /CurveWidgetDialog.cpp | 44fc77d546f4791661dabb03dac063ec195c2b1d | [] | no_license | Qt-Widgets/Curve-Editor-Widget | 9c95c7e36f6b005e91d33c5fe2f271ba140dbb69 | 59663e3785e3b8d2d7797798c4472306ebe816e2 | refs/heads/master | 2020-04-14T03:02:33.410217 | 2018-12-27T17:51:52 | 2018-12-27T17:54:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 845 | cpp | #include "CurveWidgetDialog.h"
#include "ui_CurveWidgetDialog.h"
#include <QDesktopWidget>
#include <QRect>
CurveWidgetDialog::CurveWidgetDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::CurveWidgetDialog)
{
ui->setupUi(this);
//setWindowFlags(Qt::Tool);
//setModal(true);
Qt::WindowFlags flags = windowFlags();
flags = flags & (~Qt::WindowContextHelpButtonHint);
setWindowFlags(flags);
QDesktopWidget *desktop = QApplication::desktop();
QRect screenSize = desktop->availableGeometry(this);
resize(QSize(screenSize.width() * 0.7f, screenSize.height() * 0.7f));
Curve c;
c.points.push_back(QPointF(0.0f, 0.0f));
c.points.push_back(QPointF(1.0f, 1.0f));
c.points.push_back(QPointF(1.5f, 0.5f));
ui->curveWidget->SetCurve(c);
}
CurveWidgetDialog::~CurveWidgetDialog()
{
delete ui;
}
| [
"consta@unigine.com"
] | consta@unigine.com |
86a5892be158075337f81c6937b357526c2c5194 | 2ca412d8d93190c2eb4c1db37e6226b979799910 | /Aladdin/GameObjects/Enemies/Enemy3/Enemy3.h | 4a88fc29717c73c69bf3d463364580e26e30bf6d | [] | no_license | phanletrunghieu/Aladdin_DirectX | 84ee3436797b4fd7e9e81a90375b2a32c7b08256 | 2b7787d744fd1c319d0d837ef74a24fe52c99a7a | refs/heads/master | 2021-05-08T02:42:06.039434 | 2017-12-25T14:41:00 | 2017-12-25T14:41:00 | 108,123,266 | 16 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 130 | h | #pragma once
#include "../Enemy.h"
class Enemy3 : public Enemy
{
public:
Enemy3();
Enemy3(GameObject * player);
~Enemy3();
}; | [
"hieutrunglephan@gmail.com"
] | hieutrunglephan@gmail.com |
5b5f95ff9c5bad6d7d443048c07a1daf4ee9b247 | 8587e018166f32a0613c75cd869cd291ebc05f0d | /i wanna be the gu.cpp | 5ba813b744e4b6ade0da45c120816f6674dea9e4 | [] | no_license | harshitgrover12/codeforces | 448909eb93dd0ada17b8e266c9699cc38931c429 | e542480c1c3806a355daeff64bd80a607b45c81e | refs/heads/master | 2020-03-27T01:56:40.386215 | 2018-08-22T20:49:41 | 2018-08-22T20:49:41 | 145,755,560 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 430 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin>>n;int d=n*(n+1)/2;
int m;
cin>>m;
int b[m];
for(int i=0;i<m;i++)
{
cin>>b[i];
}
int p;
cin>>p;
int a[p+m];
for(int k=0;k<p;k++)
{
cin>>a[k];
}
for(int l=0;l<m;l++)
{
a[p+l]=b[l];
}
sort(a,a+m+p);int s=a[0];
for(int j=1;j<m+p;j++)
{
if(a[j]!=a[j-1])
{
s=s+a[j];
}
}
if(s==d)
cout<<"I become the guy.";
else
cout<<"Oh, my keyboard!";
}
| [
"harshitgrover12@gmail.com"
] | harshitgrover12@gmail.com |
ca2612f502d89d1e958f12d6bd5ebcd6a9eaae8d | 524c0f8983fef4c282922a19a9437a320ccd0c45 | /aws-cpp-sdk-route53-recovery-readiness/include/aws/route53-recovery-readiness/model/GetRecoveryGroupReadinessSummaryRequest.h | aa8a21d1a096bfc8ad51f47d5da4ca83cf2f70f1 | [
"Apache-2.0",
"MIT",
"JSON"
] | permissive | hardikmdev/aws-sdk-cpp | e79c39ad35433fbf41b3df7a90ac3b7bdb56728b | f34953a3f4cbd327db7c5340fcc140d63ac63e87 | refs/heads/main | 2023-09-06T03:43:07.646588 | 2021-11-16T20:27:23 | 2021-11-16T20:27:23 | 429,030,795 | 0 | 0 | Apache-2.0 | 2021-11-17T12:08:03 | 2021-11-17T12:08:02 | null | UTF-8 | C++ | false | false | 5,277 | h | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/route53-recovery-readiness/Route53RecoveryReadiness_EXPORTS.h>
#include <aws/route53-recovery-readiness/Route53RecoveryReadinessRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Http
{
class URI;
} //namespace Http
namespace Route53RecoveryReadiness
{
namespace Model
{
/**
*/
class AWS_ROUTE53RECOVERYREADINESS_API GetRecoveryGroupReadinessSummaryRequest : public Route53RecoveryReadinessRequest
{
public:
GetRecoveryGroupReadinessSummaryRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() const override { return "GetRecoveryGroupReadinessSummary"; }
Aws::String SerializePayload() const override;
void AddQueryStringParameters(Aws::Http::URI& uri) const override;
/**
* Upper bound on number of records to return.
*/
inline int GetMaxResults() const{ return m_maxResults; }
/**
* Upper bound on number of records to return.
*/
inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
/**
* Upper bound on number of records to return.
*/
inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
/**
* Upper bound on number of records to return.
*/
inline GetRecoveryGroupReadinessSummaryRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
/**
* A token used to resume pagination from the end of a previous request.
*/
inline const Aws::String& GetNextToken() const{ return m_nextToken; }
/**
* A token used to resume pagination from the end of a previous request.
*/
inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
/**
* A token used to resume pagination from the end of a previous request.
*/
inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
/**
* A token used to resume pagination from the end of a previous request.
*/
inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
/**
* A token used to resume pagination from the end of a previous request.
*/
inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
/**
* A token used to resume pagination from the end of a previous request.
*/
inline GetRecoveryGroupReadinessSummaryRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
/**
* A token used to resume pagination from the end of a previous request.
*/
inline GetRecoveryGroupReadinessSummaryRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
/**
* A token used to resume pagination from the end of a previous request.
*/
inline GetRecoveryGroupReadinessSummaryRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
/**
* The name of the RecoveryGroup
*/
inline const Aws::String& GetRecoveryGroupName() const{ return m_recoveryGroupName; }
/**
* The name of the RecoveryGroup
*/
inline bool RecoveryGroupNameHasBeenSet() const { return m_recoveryGroupNameHasBeenSet; }
/**
* The name of the RecoveryGroup
*/
inline void SetRecoveryGroupName(const Aws::String& value) { m_recoveryGroupNameHasBeenSet = true; m_recoveryGroupName = value; }
/**
* The name of the RecoveryGroup
*/
inline void SetRecoveryGroupName(Aws::String&& value) { m_recoveryGroupNameHasBeenSet = true; m_recoveryGroupName = std::move(value); }
/**
* The name of the RecoveryGroup
*/
inline void SetRecoveryGroupName(const char* value) { m_recoveryGroupNameHasBeenSet = true; m_recoveryGroupName.assign(value); }
/**
* The name of the RecoveryGroup
*/
inline GetRecoveryGroupReadinessSummaryRequest& WithRecoveryGroupName(const Aws::String& value) { SetRecoveryGroupName(value); return *this;}
/**
* The name of the RecoveryGroup
*/
inline GetRecoveryGroupReadinessSummaryRequest& WithRecoveryGroupName(Aws::String&& value) { SetRecoveryGroupName(std::move(value)); return *this;}
/**
* The name of the RecoveryGroup
*/
inline GetRecoveryGroupReadinessSummaryRequest& WithRecoveryGroupName(const char* value) { SetRecoveryGroupName(value); return *this;}
private:
int m_maxResults;
bool m_maxResultsHasBeenSet;
Aws::String m_nextToken;
bool m_nextTokenHasBeenSet;
Aws::String m_recoveryGroupName;
bool m_recoveryGroupNameHasBeenSet;
};
} // namespace Model
} // namespace Route53RecoveryReadiness
} // namespace Aws
| [
"aws-sdk-cpp-automation@github.com"
] | aws-sdk-cpp-automation@github.com |
2c3d8edaf6b87686bbe365d57a72d37edcb9d260 | 19ccfd6806c5054679dab3f275822302206b222f | /src/public/materialsystem/imaterialsystemstub.h | 76cbc6b4c8ccdc29edbe1d5ef482fd2ebe4df258 | [
"Apache-2.0"
] | permissive | BenLubar/SwarmDirector2 | 425441d5ac3fd120c998379ddc96072b2c375109 | 78685d03eaa0d35e87c638ffa78f46f3aa8379a6 | refs/heads/master | 2021-01-17T22:14:37.146323 | 2015-07-09T19:18:03 | 2015-07-09T19:18:03 | 20,357,966 | 4 | 1 | Apache-2.0 | 2018-08-30T13:37:22 | 2014-05-31T15:00:51 | C++ | WINDOWS-1252 | C++ | false | false | 847 | h | //========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#ifndef IMATERIALSYSTEMSTUB_H
#define IMATERIALSYSTEMSTUB_H
#ifdef _WIN32
#pragma once
#endif
#include "materialsystem/imaterialsystem.h"
// If you get this interface out of the material system, it'll return an IMaterialSystem
// with everything stubbed. This is used for running the client in text mode.
#define MATERIAL_SYSTEM_STUB_INTERFACE_VERSION "VMaterialSystemStub001"
class IMaterialSystemStub : public IMaterialSystem
{
public:
// If this is called, then the stub will call through to the real material
// system in some functions.
virtual void SetRealMaterialSystem( IMaterialSystem *pSys ) = 0;
};
#endif // IMATERIALSYSTEMSTUB_H
| [
"ben.lubar@gmail.com"
] | ben.lubar@gmail.com |
bf2b0a50b995c7d92ce53c3fef1a8dd09bced859 | 54f849d5c13cd9dc9988243cf73cab0f714f91ad | /DynamicDialog_demo/TestDynDialog_changed/DynDialogEx.h | c17523fe79662a575b66508c4417bd28e6bd2752 | [] | no_license | ruixj/WinDevAppSamples | 50887cfb06d7828e0e188dd8f16122c125103816 | 2cf40ef1a1f9ebd5b9f79d25cc011d19326de78b | refs/heads/master | 2021-01-10T04:29:26.973117 | 2015-10-24T11:54:25 | 2015-10-24T11:54:25 | 44,860,731 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,918 | h | #if !defined(AFX_DYND90LOGEX_H__CF5AF5E8_BD00_11D3_AA7C_0008C7083CA9__INCLUDED_)
#define AFX_DYNDIALOGEX_H__CF5AF5E8_BD00_11D3_AA7C_0008C7083CA9__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// DynDialogEx.h : header file
//
#include "DynDialogItemEx.h"
// Control styles
#define STYLE_EDIT (WS_VISIBLE | WS_CHILD | WS_TABSTOP | SS_LEFT)
#define STYLE_MULTIEDIT (WS_VISIBLE | WS_CHILD | WS_TABSTOP | SS_LEFT | ES_MULTILINE | ES_AUTOVSCROLL | WS_VSCROLL | ES_WANTRETURN)
#define STYLE_STATIC (WS_VISIBLE | WS_CHILD | SS_LEFT)
#define STYLE_STATIC_CENTER (WS_VISIBLE | WS_CHILD | SS_CENTER)
#define STYLE_STATIC_RIGHT (WS_VISIBLE | WS_CHILD | SS_RIGHT)
#define STYLE_RADIO (WS_VISIBLE | WS_CHILD | BS_AUTORADIOBUTTON)
#define STYLE_RADIO_GROUP (STYLE_RADIO| WS_GROUP | WS_TABSTOP)
#define STYLE_BUTTON (WS_VISIBLE | WS_CHILD | WS_TABSTOP | BS_PUSHBUTTON)
#define STYLE_GROUPBOX (WS_VISIBLE | WS_CHILD | BS_GROUPBOX)
#define STYLE_CHECKBOX (WS_VISIBLE | WS_CHILD | WS_TABSTOP | WS_GROUP | BS_AUTOCHECKBOX)
#define STYLE_COMBOBOX_DROPDOWN (WS_VISIBLE | WS_CHILD | WS_TABSTOP | WS_GROUP | WS_VSCROLL | CBS_DROPDOWN | CBS_SORT | CBS_AUTOHSCROLL) // | CBS_DISABLENOSCROLL)
#define STYLE_COMBOBOX_DROPDOWN_NOSORT (WS_VISIBLE | WS_CHILD | WS_TABSTOP | WS_GROUP | WS_VSCROLL | CBS_DROPDOWN | CBS_AUTOHSCROLL) // | CBS_DISABLENOSCROLL)
#define STYLE_COMBOBOX_SIMPLE (WS_VISIBLE | WS_CHILD | WS_TABSTOP | WS_GROUP | WS_VSCROLL | CBS_SIMPLE | CBS_SORT | CBS_AUTOHSCROLL) // | CBS_DISABLENOSCROLL)
#define STYLE_COMBOBOX_SIMPLE_NOSORT (WS_VISIBLE | WS_CHILD | WS_TABSTOP | WS_GROUP | WS_VSCROLL | CBS_SIMPLE | CBS_AUTOHSCROLL) // | CBS_DISABLENOSCROLL)
#define STYLE_COMBOBOX_DROPDOWNLIST (WS_VISIBLE | WS_CHILD | WS_TABSTOP | WS_GROUP | WS_VSCROLL | CBS_DROPDOWNLIST | CBS_SORT | CBS_AUTOHSCROLL) // | CBS_DISABLENOSCROLL)
#define STYLE_COMBOBOX_DROPDOWNLIST_NOSORT (WS_VISIBLE | WS_CHILD | WS_TABSTOP | WS_GROUP | WS_VSCROLL | CBS_DROPDOWNLIST | CBS_AUTOHSCROLL) // | CBS_DISABLENOSCROLL)
#define STYLE_LISTBOX (WS_VISIBLE | WS_CHILD | WS_TABSTOP | LBS_STANDARD)
#define STYLE_DATETIMEPICKER (WS_VISIBLE | WS_CHILD | WS_TABSTOP | DTS_RIGHTALIGN)
#define STYLE_TIMEPICKER (WS_VISIBLE | WS_CHILD | WS_TABSTOP | DTS_RIGHTALIGN | DTS_TIMEFORMAT)
// Default combo-style
#define STYLE_COMBOBOX (STYLE_COMBOBOX_DROPDOWNLIST)
#define STYLE_COMBOBOX_NOSORT (STYLE_COMBOBOX_DROPDOWNLIST_NOSORT)
// Control Extended styles
#define EXSTYLE_EDIT (WS_EX_CLIENTEDGE)
#define EXSTYLE_MULTIEDIT (WS_EX_CLIENTEDGE)
#define EXSTYLE_LISTBOX (WS_EX_CLIENTEDGE)
#define EXSTYLE_STATIC (0)
#define EXSTYLE_RADIO (0)
#define EXSTYLE_BUTTON (0)
#define EXSTYLE_GROUPBOX (0)
#define EXSTYLE_CHECKBOX (0)
#define EXSTYLE_COMBOBOX (0)
#define EXSTYLE_DATETIMEPICKER (0)
#define EXSTYLE_TIMEPICKER (0)
#define ROWSTEPSIZE 12
#define FIRSTROW1 10
#define FIRSTROW2 37
#define FIXEDCOL1 10
#define FIXEDCOL2 120
#define INPUTCOL 150
#define GROWLIMIT 6
#define MAX_COLS_PER_DESCR 25 // Just a number..
/////////////////////////////////////////////////////////////////////////////
// CDynDialogEx dialog
class CDynDialogEx : public CDialog
{
// Construction
public:
CDynDialogEx(CWnd* pParent = NULL); // standard constructor
~CDynDialogEx();
virtual CWnd *GetParent();
// Dialog Data
//{{AFX_DATA(CDynDialogEx)
// NOTE: the ClassWizard will add data members here
//}}AFX_DATA
virtual UINT AddDlgControl(DLGITEMTEMPLATECONTROLS TypeControl,
LPCTSTR lpszCaption,
DWORD dwStyle,
DWORD dwExtendedStyle,
LPRECT pRect = NULL,
void *pData = NULL,
UINT nID = 0);
virtual UINT AddDlgControl(LPCSTR lpszClassName,
LPCTSTR lpszCaption,
DWORD dwStyle,
DWORD dwExtendedStyle,
LPRECT pRect = NULL,
void *pData = NULL,
UINT nID = 0);
virtual UINT AddSubclassedDlgControl(LPCSTR lpszClassName,
LPCTSTR lpszCaption,
DWORD dwStyle,
DWORD dwExtendedStyle,
LPRECT pRect = NULL,
UINT nID = 0);
void SetWindowTitle(LPCSTR lpszCaption);
void SetFont(CFont *pFont);
CFont *GetFont();
void SetFontSize(WORD wSize);
WORD GetFontSize();
void SetUseSystemButtons(BOOL bUse = TRUE);
void SetUseModeless(BOOL bModelessDlg = TRUE);
long GetNumberOfConrols() {return m_arrDlgItemPtr.GetSize();}
//Additional functions by Tom Daffin
void AddStyles(DWORD dwStyles);
void RemoveStyles(DWORD dwStyles);
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CDynDialogEx)
public:
virtual int DoModal();
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
virtual void OnCancel();
virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
virtual void OnOK();
//}}AFX_VIRTUAL
virtual void OnHelp(); // To be overridden..
protected:
CWnd *m_pParentWnd;
CString m_strCaption;
CFont *m_pFont;
WORD m_wFontSize;
long m_nCurRow;
BOOL m_bAddSystemButtons;
BOOL m_bIsFontCreated;
BOOL m_bModelessDlg;
CStatic* myStatic;
DLGTEMPLATE m_DialogTemplate;
CArray<CDynDialogItemEx*, CDynDialogItemEx*> m_arrDlgItemPtr;
// Implementation
protected:
void AddSystemButtons();
void GetDlgRect(LPRECT lpRect);
void SetDlgRect(LPRECT lpRect);
void SetDlgRectangle(LPRECT pRect);
// Generated message map functions
//{{AFX_MSG(CDynDialogEx)
virtual BOOL OnInitDialog();
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
//}}AFX_MSG
afx_msg LRESULT OnHelpMsg(WPARAM wParam, LPARAM lParam);
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_DYNDIALOGEX_H__CF5AF5E8_BD00_11D3_AA7C_0008C7083CA9__INCLUDED_)
| [
"ustb_ruixj@aliyun.com"
] | ustb_ruixj@aliyun.com |
8c9a309f6613adbb7d2d09471fb3310e49c3bc80 | 21897e6a8199c0c1c3c2fff8f4e656e40b411699 | /src/gui/UForm_Partnery_sklad.h | 7a4be6d8d14b3d71d1c63ce89b79908ce0483f8d | [] | no_license | utech/ugurtsklad | dd276ba8685d089e16a2a5f59ddab162461ba06e | 4fec8708aec3277a68d51a6f91223f8a2f507edc | refs/heads/master | 2021-01-13T01:55:00.195880 | 2012-09-16T09:01:43 | 2012-09-16T09:01:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,446 | h | //--------------------utech--------------------utech--------------------utech--------------------
//
// Файл декларації класу вікна реєстрації користувача
//
// Створений програмістами Компанії "Утех" 29.03.2009р.
// У класі використовуються компоненти бібліотеки QT4.x
//
//--------------------utech--------------------utech--------------------utech--------------------
#ifndef UFORM_PARTNERY_SKLAD_H
#define UFORM_PARTNERY_SKLAD_H
#include <QtGui>
#include <QSettings>
#include <QDir>
#include <QtSql>
#include "ui_UForm_Partnery_sklad.h"
#include "USkladTabWidget.h"
#include <UTableWidgetSqlExt>
//--------------------utech--------------------utech--------------------utech--------------------
//--------------------utech--------------------utech--------------------utech--------------------
class UForm_Partnery_sklad : public USkladTabWidget
{
Q_OBJECT
public:
UForm_Partnery_sklad(QWidget *parent = 0);
~UForm_Partnery_sklad();
void populateToolBar(QToolBar * tBar);
public slots:
void pushButton_create_clicked();
void pushButton_delete_clicked();
void dovPartnersChanged();
signals:
void partnersDovChanged();
private:
Ui::UForm_Partnery_sklad ui;
UDataFormView *twExt;
};
//--------------------utech--------------------utech--------------------utech--------------------
#endif
| [
"m_roman_m@i.ua"
] | m_roman_m@i.ua |
df7e4ba3973c1d824f3ab4d8c1312d5d0318fbd1 | 8256582bd16c69e046de369df1a3e5ccced3a8f3 | /tools/rpc_structure/rpc/UnEquipEquipment.cpp | f4de1ede5af2fd4eda75506f217b1487ee8b64bc | [] | no_license | fU9ANg/ab | 584d1ad63a48e8a155bffba47b861c12800a7986 | 89ef1ec559d57f35f000844323f758b9576ba49f | refs/heads/master | 2021-01-01T19:16:17.599944 | 2015-01-16T11:39:18 | 2015-01-16T11:39:18 | 22,644,782 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 172 | cpp |
#include "UnEquipEquipment.h"
namespace rpcfunctions
{
void rpcfunctions::UnEquipEquipment::invoke (int pos)
{
// TODO
return_result (0); //int rs)
}
}
| [
"bb.newlife@gmail.com"
] | bb.newlife@gmail.com |
0719d99db8b93428c38e285bd02be0f44c60d253 | 956e038cc31b11ad5c1912f43552f8a01f575712 | /tools_debug/DebugMess.cpp | 59dbc1e0ff9675d34bde7f3b1327310e1c3a9530 | [] | no_license | Andrew90/nagan170424 | 15b970a9a52a771ebd050a877cf7efe9392faf27 | 30fccb2a2ee8a0b63679c02b38f4c54fd0dc40b0 | refs/heads/master | 2021-01-20T00:50:34.449779 | 2017-04-24T04:28:40 | 2017-04-24T04:28:40 | 89,195,302 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,951 | cpp | //#include "stdafx.h"
#include "DebugMess.h"
#ifdef XDEBUG
#include <stdio.h>
#define d_mess printf
wchar_t name[] = L"Parallel hatch in space";
wchar_t eventName[] = L"Parallel hatch in space event";
CRITICAL_SECTION critical;
struct InitCriticalSectionDebug
{
InitCriticalSectionDebug(){InitializeCriticalSection(&critical);}
~InitCriticalSectionDebug(){EnterCriticalSection(&critical);(&critical);}
} initCriticalSection_Debug;
struct LockDebug
{
LockDebug(){EnterCriticalSection(&critical);}
~LockDebug(){LeaveCriticalSection(&critical);}
};
void DebugMess::Init()
{
hEvent = CreateEvent(NULL, TRUE, FALSE, eventName);
hMapFile = CreateFileMapping(
INVALID_HANDLE_VALUE, // use paging file
NULL, // default security
PAGE_READWRITE, // read/write access
0, // max. object size
sizeof(TMapData), // buffer size
name); // name of mapping object
if (hMapFile == NULL || hMapFile == INVALID_HANDLE_VALUE)
{
d_mess("Could not create file mapping object (%d).\n",
GetLastError());
return;
}
map = (TMapData *) MapViewOfFile(hMapFile, // handle to map object
FILE_MAP_ALL_ACCESS, // read/write permission
0,
0,
sizeof(TMapData));
if (map == NULL)
{
d_mess("Could not map view of file (%d).\n",
GetLastError());
return;
}
if(ERROR_ALREADY_EXISTS != GetLastError())
{
map->head = 0;
map->tail = 0;
}
}
DebugMess::~DebugMess(void)
{
UnmapViewOfFile(map);
CloseHandle(hMapFile);
CloseHandle(hEvent);
}
#pragma warning(disable : 4996)
void DebugMess::print(char *c, ...)
{
if(NULL != map)
{
EnterCriticalSection(&critical);
char *b = map->data[map->head];
++map->head;
LeaveCriticalSection(&critical);
vsprintf(b, c, (char *)&c + sizeof(c));
SetEvent(hEvent);
}
}
//---------------------------------------------------------------------------------------
ViewerDebugMess::ViewerDebugMess() : map(NULL)
{
hEvent = CreateEvent(NULL, TRUE, FALSE, eventName);
hMapFile = CreateFileMapping(
INVALID_HANDLE_VALUE, // use paging file
NULL, // default security
PAGE_READWRITE, // read/write access
0, // max. object size
sizeof(TMapData), // buffer size
name); // name of mapping object
if (hMapFile == NULL)
{
d_mess("Could not open file mapping object (%d).\n",
GetLastError());
return;
}
map = (TMapData *)MapViewOfFile(hMapFile, // handle to mapping object
FILE_MAP_ALL_ACCESS, // read/write permission
0,
0,
sizeof(TMapData));
if (map == NULL)
{
d_mess("Could not map view of file (%d).\n",
GetLastError());
return;
}
if(map->head - map->tail > 511) map->tail = map->head - 511;
SetEvent(hEvent);
}
//----------------------------------------------------------------------------
ViewerDebugMess::~ViewerDebugMess()
{
UnmapViewOfFile(map);
CloseHandle(hMapFile);
CloseHandle(hEvent);
}
//----------------------------------------------------------------------------
char *ViewerDebugMess::get()
{
WaitForSingleObject(hEvent, INFINITE);
if(map && map->tail != map->head)
{
char *b = map->data[map->tail];
++map->tail;
return b;
}
else
{
ResetEvent(hEvent);
}
return NULL;
}
//-----------------------------------------------------------------------------
DebugMess debug;
#endif
| [
"Defect@urandefect.(none)"
] | Defect@urandefect.(none) |
58fd360bd49d0c3ee9f433213b26be6a29df88dc | a1058bb42a52cf44f72825e9cb6e5778c352463c | /lessons/19_sprite_sheets/LSpriteSheet.cpp | aa43f3e9a751b9c824e15becd8ba371d683e2ca6 | [] | no_license | crossbridge-community/crossbridge-example-glsl | 98e78c79413d7253e038beb469c4c3397636fde9 | 6f40d077aeba35b7147af8d22328585a9c1cc7f6 | refs/heads/master | 2016-09-07T11:49:17.356689 | 2014-09-15T14:02:25 | 2014-09-15T14:02:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,039 | cpp | /*This source code copyrighted by Lazy Foo' Productions (2004-2013)
and may not be redistributed without written permission.*/
//Version: 001
#include "LSpriteSheet.h"
LSpriteSheet::LSpriteSheet()
{
//Initialize vertex buffer data
mVertexDataBuffer = NULL;
mIndexBuffers = NULL;
}
LSpriteSheet::~LSpriteSheet()
{
//Clear sprite sheet data
freeSheet();
}
int LSpriteSheet::addClipSprite( LFRect& newClip )
{
//Add clip and return index
mClips.push_back( newClip );
return mClips.size() - 1;
}
LFRect LSpriteSheet::getClip( int index )
{
return mClips[ index ];
}
bool LSpriteSheet::generateDataBuffer()
{
//If there is a texture loaded and clips to make vertex data from
if( getTextureID() != 0 && mClips.size() > 0 )
{
//Allocate vertex buffer data
int totalSprites = mClips.size();
LVertexData2D* vertexData = new LVertexData2D[ totalSprites * 4 ];
mIndexBuffers = new GLuint[ totalSprites ];
//Allocate vertex data buffer name
glGenBuffers( 1, &mVertexDataBuffer );
//Allocate index buffers names
glGenBuffers( totalSprites, mIndexBuffers );
//Go through clips
GLfloat tW = textureWidth();
GLfloat tH = textureHeight();
GLuint spriteIndices[ 4 ] = { 0, 0, 0, 0 };
for( int i = 0; i < totalSprites; ++i )
{
//Initialize indices
spriteIndices[ 0 ] = i * 4 + 0;
spriteIndices[ 1 ] = i * 4 + 1;
spriteIndices[ 2 ] = i * 4 + 2;
spriteIndices[ 3 ] = i * 4 + 3;
//Top left
vertexData[ spriteIndices[ 0 ] ].position.x = -mClips[ i ].w / 2.f;
vertexData[ spriteIndices[ 0 ] ].position.y = -mClips[ i ].h / 2.f;
vertexData[ spriteIndices[ 0 ] ].texCoord.s = (mClips[ i ].x) / tW;
vertexData[ spriteIndices[ 0 ] ].texCoord.t = (mClips[ i ].y) / tH;
//Top right
vertexData[ spriteIndices[ 1 ] ].position.x = mClips[ i ].w / 2.f;
vertexData[ spriteIndices[ 1 ] ].position.y = -mClips[ i ].h / 2.f;
vertexData[ spriteIndices[ 1 ] ].texCoord.s = (mClips[ i ].x + mClips[ i ].w) / tW;
vertexData[ spriteIndices[ 1 ] ].texCoord.t = (mClips[ i ].y) / tH;
//Bottom right
vertexData[ spriteIndices[ 2 ] ].position.x = mClips[ i ].w / 2.f;
vertexData[ spriteIndices[ 2 ] ].position.y = mClips[ i ].h / 2.f;
vertexData[ spriteIndices[ 2 ] ].texCoord.s = (mClips[ i ].x + mClips[ i ].w) / tW;
vertexData[ spriteIndices[ 2 ] ].texCoord.t = (mClips[ i ].y + mClips[ i ].h) / tH;
//Bottom left
vertexData[ spriteIndices[ 3 ] ].position.x = -mClips[ i ].w / 2.f;
vertexData[ spriteIndices[ 3 ] ].position.y = mClips[ i ].h / 2.f;
vertexData[ spriteIndices[ 3 ] ].texCoord.s = (mClips[ i ].x) / tW;
vertexData[ spriteIndices[ 3 ] ].texCoord.t = (mClips[ i ].y + mClips[ i ].h) / tH;
//Bind sprite index buffer data
glBindBuffer( GL_ELEMENT_ARRAY_BUFFER, mIndexBuffers[ i ] );
glBufferData( GL_ELEMENT_ARRAY_BUFFER, 4 * sizeof(GLuint), spriteIndices, GL_STATIC_DRAW );
}
//Bind vertex data
glBindBuffer( GL_ARRAY_BUFFER, mVertexDataBuffer );
glBufferData( GL_ARRAY_BUFFER, totalSprites * 4 * sizeof(LVertexData2D), vertexData, GL_STATIC_DRAW );
//Deallocate vertex data
delete[] vertexData;
}
//Error
else
{
if( getTextureID() == 0 )
{
printf( "No texture to render with!\n" );
}
if( mClips.size() <= 0 )
{
printf( "No clips to generate vertex data from!\n" );
}
return false;
}
return true;
}
void LSpriteSheet::freeSheet()
{
//Clear vertex buffer
if( mVertexDataBuffer != NULL )
{
glDeleteBuffers( 1, &mVertexDataBuffer );
mVertexDataBuffer = NULL;
}
//Clear index buffers
if( mIndexBuffers != NULL )
{
glDeleteBuffers( mClips.size(), mIndexBuffers );
delete[] mIndexBuffers;
mIndexBuffers = NULL;
}
//Clear clips
mClips.clear();
}
void LSpriteSheet::freeTexture()
{
//Get rid of sprite sheet data
freeSheet();
//Free texture
LTexture::freeTexture();
}
void LSpriteSheet::renderSprite( int index )
{
//Sprite sheet data exists
if( mVertexDataBuffer != NULL )
{
//Set texture
glBindTexture( GL_TEXTURE_2D, getTextureID() );
//Enable vertex and texture coordinate arrays
glEnableClientState( GL_VERTEX_ARRAY );
glEnableClientState( GL_TEXTURE_COORD_ARRAY );
//Bind vertex data
glBindBuffer( GL_ARRAY_BUFFER, mVertexDataBuffer );
//Set texture coordinate data
glTexCoordPointer( 2, GL_FLOAT, sizeof(LVertexData2D), (GLvoid*) offsetof( LVertexData2D, texCoord ) );
//Set vertex data
glVertexPointer( 2, GL_FLOAT, sizeof(LVertexData2D), (GLvoid*) offsetof( LVertexData2D, position ) );
//Draw quad using vertex data and index data
glBindBuffer( GL_ELEMENT_ARRAY_BUFFER, mIndexBuffers[ index ] );
glDrawElements( GL_QUADS, 4, GL_UNSIGNED_INT, NULL );
//Disable vertex and texture coordinate arrays
glDisableClientState( GL_TEXTURE_COORD_ARRAY );
glDisableClientState( GL_VERTEX_ARRAY );
}
}
| [
"andras@vpmedia.eu"
] | andras@vpmedia.eu |
e9724625a3f0d5cca929a2853c771bd6e9ba27d1 | ea6d9a14bb7a45ec6aa13a63caae184fa81d2da2 | /tools/clang/lib/Lex/Pragma.cpp | 1f9c811f55c79c83fd320ba79e899e4ed8943d38 | [
"NCSA"
] | permissive | xingjinglu/ParaFinder | 525d37c8948ad6ab305d67201251650fa8634b99 | 0bb4f44280b2a74035bf0df1015597cafb7b3149 | refs/heads/master | 2021-09-03T03:56:42.351027 | 2018-01-05T10:50:33 | 2018-01-05T10:50:33 | 105,554,349 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 43,880 | cpp | //===--- Pragma.cpp - Pragma registration and handling --------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file implements the PragmaHandler/PragmaTable interfaces and implements
// pragma related methods of the Preprocessor class.
//
//===----------------------------------------------------------------------===//
#include "clang/Lex/Pragma.h"
#include "clang/Lex/HeaderSearch.h"
#include "clang/Lex/LiteralSupport.h"
#include "clang/Lex/Preprocessor.h"
#include "clang/Lex/MacroInfo.h"
#include "clang/Lex/LexDiagnostic.h"
#include "clang/Basic/FileManager.h"
#include "clang/Basic/SourceManager.h"
#include "llvm/Support/CrashRecoveryContext.h"
#include "llvm/Support/ErrorHandling.h"
#include <algorithm>
using namespace clang;
// Out-of-line destructor to provide a home for the class.
PragmaHandler::~PragmaHandler() {
}
//===----------------------------------------------------------------------===//
// EmptyPragmaHandler Implementation.
//===----------------------------------------------------------------------===//
EmptyPragmaHandler::EmptyPragmaHandler() {}
void EmptyPragmaHandler::HandlePragma(Preprocessor &PP,
PragmaIntroducerKind Introducer,
Token &FirstToken) {}
//===----------------------------------------------------------------------===//
// PragmaNamespace Implementation.
//===----------------------------------------------------------------------===//
PragmaNamespace::~PragmaNamespace() {
for (llvm::StringMap<PragmaHandler*>::iterator
I = Handlers.begin(), E = Handlers.end(); I != E; ++I)
delete I->second;
}
/// FindHandler - Check to see if there is already a handler for the
/// specified name. If not, return the handler for the null identifier if it
/// exists, otherwise return null. If IgnoreNull is true (the default) then
/// the null handler isn't returned on failure to match.
PragmaHandler *PragmaNamespace::FindHandler(StringRef Name,
bool IgnoreNull) const {
if (PragmaHandler *Handler = Handlers.lookup(Name))
return Handler;
return IgnoreNull ? 0 : Handlers.lookup(StringRef());
}
void PragmaNamespace::AddPragma(PragmaHandler *Handler) {
assert(!Handlers.lookup(Handler->getName()) &&
"A handler with this name is already registered in this namespace");
llvm::StringMapEntry<PragmaHandler *> &Entry =
Handlers.GetOrCreateValue(Handler->getName());
Entry.setValue(Handler);
}
void PragmaNamespace::RemovePragmaHandler(PragmaHandler *Handler) {
assert(Handlers.lookup(Handler->getName()) &&
"Handler not registered in this namespace");
Handlers.erase(Handler->getName());
}
void PragmaNamespace::HandlePragma(Preprocessor &PP,
PragmaIntroducerKind Introducer,
Token &Tok) {
// Read the 'namespace' that the directive is in, e.g. STDC. Do not macro
// expand it, the user can have a STDC #define, that should not affect this.
PP.LexUnexpandedToken(Tok);
// Get the handler for this token. If there is no handler, ignore the pragma.
PragmaHandler *Handler
= FindHandler(Tok.getIdentifierInfo() ? Tok.getIdentifierInfo()->getName()
: StringRef(),
/*IgnoreNull=*/false);
if (Handler == 0) {
PP.Diag(Tok, diag::warn_pragma_ignored);
return;
}
// Otherwise, pass it down.
Handler->HandlePragma(PP, Introducer, Tok);
}
//===----------------------------------------------------------------------===//
// Preprocessor Pragma Directive Handling.
//===----------------------------------------------------------------------===//
/// HandlePragmaDirective - The "\#pragma" directive has been parsed. Lex the
/// rest of the pragma, passing it to the registered pragma handlers.
void Preprocessor::HandlePragmaDirective(unsigned Introducer) {
if (!PragmasEnabled)
return;
++NumPragma;
// Invoke the first level of pragma handlers which reads the namespace id.
Token Tok;
PragmaHandlers->HandlePragma(*this, PragmaIntroducerKind(Introducer), Tok);
// If the pragma handler didn't read the rest of the line, consume it now.
if ((CurTokenLexer && CurTokenLexer->isParsingPreprocessorDirective())
|| (CurPPLexer && CurPPLexer->ParsingPreprocessorDirective))
DiscardUntilEndOfDirective();
}
namespace {
/// \brief Helper class for \see Preprocessor::Handle_Pragma.
class LexingFor_PragmaRAII {
Preprocessor &PP;
bool InMacroArgPreExpansion;
bool Failed;
Token &OutTok;
Token PragmaTok;
public:
LexingFor_PragmaRAII(Preprocessor &PP, bool InMacroArgPreExpansion,
Token &Tok)
: PP(PP), InMacroArgPreExpansion(InMacroArgPreExpansion),
Failed(false), OutTok(Tok) {
if (InMacroArgPreExpansion) {
PragmaTok = OutTok;
PP.EnableBacktrackAtThisPos();
}
}
~LexingFor_PragmaRAII() {
if (InMacroArgPreExpansion) {
if (Failed) {
PP.CommitBacktrackedTokens();
} else {
PP.Backtrack();
OutTok = PragmaTok;
}
}
}
void failed() {
Failed = true;
}
};
}
/// Handle_Pragma - Read a _Pragma directive, slice it up, process it, then
/// return the first token after the directive. The _Pragma token has just
/// been read into 'Tok'.
void Preprocessor::Handle_Pragma(Token &Tok) {
// This works differently if we are pre-expanding a macro argument.
// In that case we don't actually "activate" the pragma now, we only lex it
// until we are sure it is lexically correct and then we backtrack so that
// we activate the pragma whenever we encounter the tokens again in the token
// stream. This ensures that we will activate it in the correct location
// or that we will ignore it if it never enters the token stream, e.g:
//
// #define EMPTY(x)
// #define INACTIVE(x) EMPTY(x)
// INACTIVE(_Pragma("clang diagnostic ignored \"-Wconversion\""))
LexingFor_PragmaRAII _PragmaLexing(*this, InMacroArgPreExpansion, Tok);
// Remember the pragma token location.
SourceLocation PragmaLoc = Tok.getLocation();
// Read the '('.
Lex(Tok);
if (Tok.isNot(tok::l_paren)) {
Diag(PragmaLoc, diag::err__Pragma_malformed);
return _PragmaLexing.failed();
}
// Read the '"..."'.
Lex(Tok);
if (Tok.isNot(tok::string_literal) && Tok.isNot(tok::wide_string_literal)) {
Diag(PragmaLoc, diag::err__Pragma_malformed);
// Skip this token, and the ')', if present.
if (Tok.isNot(tok::r_paren))
Lex(Tok);
if (Tok.is(tok::r_paren))
Lex(Tok);
return _PragmaLexing.failed();
}
if (Tok.hasUDSuffix()) {
Diag(Tok, diag::err_invalid_string_udl);
// Skip this token, and the ')', if present.
Lex(Tok);
if (Tok.is(tok::r_paren))
Lex(Tok);
return _PragmaLexing.failed();
}
// Remember the string.
Token StrTok = Tok;
// Read the ')'.
Lex(Tok);
if (Tok.isNot(tok::r_paren)) {
Diag(PragmaLoc, diag::err__Pragma_malformed);
return _PragmaLexing.failed();
}
if (InMacroArgPreExpansion)
return;
SourceLocation RParenLoc = Tok.getLocation();
std::string StrVal = getSpelling(StrTok);
// The _Pragma is lexically sound. Destringize according to C99 6.10.9.1:
// "The string literal is destringized by deleting the L prefix, if present,
// deleting the leading and trailing double-quotes, replacing each escape
// sequence \" by a double-quote, and replacing each escape sequence \\ by a
// single backslash."
if (StrVal[0] == 'L') // Remove L prefix.
StrVal.erase(StrVal.begin());
assert(StrVal[0] == '"' && StrVal[StrVal.size()-1] == '"' &&
"Invalid string token!");
// Remove the front quote, replacing it with a space, so that the pragma
// contents appear to have a space before them.
StrVal[0] = ' ';
// Replace the terminating quote with a \n.
StrVal[StrVal.size()-1] = '\n';
// Remove escaped quotes and escapes.
for (unsigned i = 0, e = StrVal.size(); i != e-1; ++i) {
if (StrVal[i] == '\\' &&
(StrVal[i+1] == '\\' || StrVal[i+1] == '"')) {
// \\ -> '\' and \" -> '"'.
StrVal.erase(StrVal.begin()+i);
--e;
}
}
// Plop the string (including the newline and trailing null) into a buffer
// where we can lex it.
Token TmpTok;
TmpTok.startToken();
CreateString(StrVal, TmpTok);
SourceLocation TokLoc = TmpTok.getLocation();
// Make and enter a lexer object so that we lex and expand the tokens just
// like any others.
Lexer *TL = Lexer::Create_PragmaLexer(TokLoc, PragmaLoc, RParenLoc,
StrVal.size(), *this);
EnterSourceFileWithLexer(TL, 0);
// With everything set up, lex this as a #pragma directive.
HandlePragmaDirective(PIK__Pragma);
// Finally, return whatever came after the pragma directive.
return Lex(Tok);
}
/// HandleMicrosoft__pragma - Like Handle_Pragma except the pragma text
/// is not enclosed within a string literal.
void Preprocessor::HandleMicrosoft__pragma(Token &Tok) {
// Remember the pragma token location.
SourceLocation PragmaLoc = Tok.getLocation();
// Read the '('.
Lex(Tok);
if (Tok.isNot(tok::l_paren)) {
Diag(PragmaLoc, diag::err__Pragma_malformed);
return;
}
// Get the tokens enclosed within the __pragma(), as well as the final ')'.
SmallVector<Token, 32> PragmaToks;
int NumParens = 0;
Lex(Tok);
while (Tok.isNot(tok::eof)) {
PragmaToks.push_back(Tok);
if (Tok.is(tok::l_paren))
NumParens++;
else if (Tok.is(tok::r_paren) && NumParens-- == 0)
break;
Lex(Tok);
}
if (Tok.is(tok::eof)) {
Diag(PragmaLoc, diag::err_unterminated___pragma);
return;
}
PragmaToks.front().setFlag(Token::LeadingSpace);
// Replace the ')' with an EOD to mark the end of the pragma.
PragmaToks.back().setKind(tok::eod);
Token *TokArray = new Token[PragmaToks.size()];
std::copy(PragmaToks.begin(), PragmaToks.end(), TokArray);
// Push the tokens onto the stack.
EnterTokenStream(TokArray, PragmaToks.size(), true, true);
// With everything set up, lex this as a #pragma directive.
HandlePragmaDirective(PIK___pragma);
// Finally, return whatever came after the pragma directive.
return Lex(Tok);
}
/// HandlePragmaOnce - Handle \#pragma once. OnceTok is the 'once'.
///
void Preprocessor::HandlePragmaOnce(Token &OnceTok) {
if (isInPrimaryFile()) {
Diag(OnceTok, diag::pp_pragma_once_in_main_file);
return;
}
// Get the current file lexer we're looking at. Ignore _Pragma 'files' etc.
// Mark the file as a once-only file now.
HeaderInfo.MarkFileIncludeOnce(getCurrentFileLexer()->getFileEntry());
}
void Preprocessor::HandlePragmaMark() {
assert(CurPPLexer && "No current lexer?");
if (CurLexer)
CurLexer->ReadToEndOfLine();
else
CurPTHLexer->DiscardToEndOfLine();
}
/// HandlePragmaPoison - Handle \#pragma GCC poison. PoisonTok is the 'poison'.
///
void Preprocessor::HandlePragmaPoison(Token &PoisonTok) {
Token Tok;
while (1) {
// Read the next token to poison. While doing this, pretend that we are
// skipping while reading the identifier to poison.
// This avoids errors on code like:
// #pragma GCC poison X
// #pragma GCC poison X
if (CurPPLexer) CurPPLexer->LexingRawMode = true;
LexUnexpandedToken(Tok);
if (CurPPLexer) CurPPLexer->LexingRawMode = false;
// If we reached the end of line, we're done.
if (Tok.is(tok::eod)) return;
// Can only poison identifiers.
if (Tok.isNot(tok::raw_identifier)) {
Diag(Tok, diag::err_pp_invalid_poison);
return;
}
// Look up the identifier info for the token. We disabled identifier lookup
// by saying we're skipping contents, so we need to do this manually.
IdentifierInfo *II = LookUpIdentifierInfo(Tok);
// Already poisoned.
if (II->isPoisoned()) continue;
// If this is a macro identifier, emit a warning.
if (II->hasMacroDefinition())
Diag(Tok, diag::pp_poisoning_existing_macro);
// Finally, poison it!
II->setIsPoisoned();
if (II->isFromAST())
II->setChangedSinceDeserialization();
}
}
/// HandlePragmaSystemHeader - Implement \#pragma GCC system_header. We know
/// that the whole directive has been parsed.
void Preprocessor::HandlePragmaSystemHeader(Token &SysHeaderTok) {
if (isInPrimaryFile()) {
Diag(SysHeaderTok, diag::pp_pragma_sysheader_in_main_file);
return;
}
// Get the current file lexer we're looking at. Ignore _Pragma 'files' etc.
PreprocessorLexer *TheLexer = getCurrentFileLexer();
// Mark the file as a system header.
HeaderInfo.MarkFileSystemHeader(TheLexer->getFileEntry());
PresumedLoc PLoc = SourceMgr.getPresumedLoc(SysHeaderTok.getLocation());
if (PLoc.isInvalid())
return;
unsigned FilenameID = SourceMgr.getLineTableFilenameID(PLoc.getFilename());
// Notify the client, if desired, that we are in a new source file.
if (Callbacks)
Callbacks->FileChanged(SysHeaderTok.getLocation(),
PPCallbacks::SystemHeaderPragma, SrcMgr::C_System);
// Emit a line marker. This will change any source locations from this point
// forward to realize they are in a system header.
// Create a line note with this information.
SourceMgr.AddLineNote(SysHeaderTok.getLocation(), PLoc.getLine(), FilenameID,
false, false, true, false);
}
/// HandlePragmaDependency - Handle \#pragma GCC dependency "foo" blah.
///
void Preprocessor::HandlePragmaDependency(Token &DependencyTok) {
Token FilenameTok;
CurPPLexer->LexIncludeFilename(FilenameTok);
// If the token kind is EOD, the error has already been diagnosed.
if (FilenameTok.is(tok::eod))
return;
// Reserve a buffer to get the spelling.
SmallString<128> FilenameBuffer;
bool Invalid = false;
StringRef Filename = getSpelling(FilenameTok, FilenameBuffer, &Invalid);
if (Invalid)
return;
bool isAngled =
GetIncludeFilenameSpelling(FilenameTok.getLocation(), Filename);
// If GetIncludeFilenameSpelling set the start ptr to null, there was an
// error.
if (Filename.empty())
return;
// Search include directories for this file.
const DirectoryLookup *CurDir;
const FileEntry *File = LookupFile(Filename, isAngled, 0, CurDir, NULL, NULL,
NULL);
if (File == 0) {
if (!SuppressIncludeNotFoundError)
Diag(FilenameTok, diag::err_pp_file_not_found) << Filename;
return;
}
const FileEntry *CurFile = getCurrentFileLexer()->getFileEntry();
// If this file is older than the file it depends on, emit a diagnostic.
if (CurFile && CurFile->getModificationTime() < File->getModificationTime()) {
// Lex tokens at the end of the message and include them in the message.
std::string Message;
Lex(DependencyTok);
while (DependencyTok.isNot(tok::eod)) {
Message += getSpelling(DependencyTok) + " ";
Lex(DependencyTok);
}
// Remove the trailing ' ' if present.
if (!Message.empty())
Message.erase(Message.end()-1);
Diag(FilenameTok, diag::pp_out_of_date_dependency) << Message;
}
}
/// \brief Handle the microsoft \#pragma comment extension.
///
/// The syntax is:
/// \code
/// \#pragma comment(linker, "foo")
/// \endcode
/// 'linker' is one of five identifiers: compiler, exestr, lib, linker, user.
/// "foo" is a string, which is fully macro expanded, and permits string
/// concatenation, embedded escape characters etc. See MSDN for more details.
void Preprocessor::HandlePragmaComment(Token &Tok) {
SourceLocation CommentLoc = Tok.getLocation();
Lex(Tok);
if (Tok.isNot(tok::l_paren)) {
Diag(CommentLoc, diag::err_pragma_comment_malformed);
return;
}
// Read the identifier.
Lex(Tok);
if (Tok.isNot(tok::identifier)) {
Diag(CommentLoc, diag::err_pragma_comment_malformed);
return;
}
// Verify that this is one of the 5 whitelisted options.
// FIXME: warn that 'exestr' is deprecated.
const IdentifierInfo *II = Tok.getIdentifierInfo();
if (!II->isStr("compiler") && !II->isStr("exestr") && !II->isStr("lib") &&
!II->isStr("linker") && !II->isStr("user")) {
Diag(Tok.getLocation(), diag::err_pragma_comment_unknown_kind);
return;
}
// Read the optional string if present.
Lex(Tok);
std::string ArgumentString;
if (Tok.is(tok::comma)) {
Lex(Tok); // eat the comma.
// We need at least one string.
if (Tok.isNot(tok::string_literal)) {
Diag(Tok.getLocation(), diag::err_pragma_comment_malformed);
return;
}
// String concatenation allows multiple strings, which can even come from
// macro expansion.
// "foo " "bar" "Baz"
SmallVector<Token, 4> StrToks;
while (Tok.is(tok::string_literal)) {
if (Tok.hasUDSuffix())
Diag(Tok, diag::err_invalid_string_udl);
StrToks.push_back(Tok);
Lex(Tok);
}
// Concatenate and parse the strings.
StringLiteralParser Literal(&StrToks[0], StrToks.size(), *this);
assert(Literal.isAscii() && "Didn't allow wide strings in");
if (Literal.hadError)
return;
if (Literal.Pascal) {
Diag(StrToks[0].getLocation(), diag::err_pragma_comment_malformed);
return;
}
ArgumentString = Literal.GetString();
}
// FIXME: If the kind is "compiler" warn if the string is present (it is
// ignored).
// FIXME: 'lib' requires a comment string.
// FIXME: 'linker' requires a comment string, and has a specific list of
// things that are allowable.
if (Tok.isNot(tok::r_paren)) {
Diag(Tok.getLocation(), diag::err_pragma_comment_malformed);
return;
}
Lex(Tok); // eat the r_paren.
if (Tok.isNot(tok::eod)) {
Diag(Tok.getLocation(), diag::err_pragma_comment_malformed);
return;
}
// If the pragma is lexically sound, notify any interested PPCallbacks.
if (Callbacks)
Callbacks->PragmaComment(CommentLoc, II, ArgumentString);
}
/// HandlePragmaMessage - Handle the microsoft and gcc \#pragma message
/// extension. The syntax is:
/// \code
/// \#pragma message(string)
/// \endcode
/// OR, in GCC mode:
/// \code
/// \#pragma message string
/// \endcode
/// string is a string, which is fully macro expanded, and permits string
/// concatenation, embedded escape characters, etc... See MSDN for more details.
void Preprocessor::HandlePragmaMessage(Token &Tok) {
SourceLocation MessageLoc = Tok.getLocation();
Lex(Tok);
bool ExpectClosingParen = false;
switch (Tok.getKind()) {
case tok::l_paren:
// We have a MSVC style pragma message.
ExpectClosingParen = true;
// Read the string.
Lex(Tok);
break;
case tok::string_literal:
// We have a GCC style pragma message, and we just read the string.
break;
default:
Diag(MessageLoc, diag::err_pragma_message_malformed);
return;
}
// We need at least one string.
if (Tok.isNot(tok::string_literal)) {
Diag(Tok.getLocation(), diag::err_pragma_message_malformed);
return;
}
// String concatenation allows multiple strings, which can even come from
// macro expansion.
// "foo " "bar" "Baz"
SmallVector<Token, 4> StrToks;
while (Tok.is(tok::string_literal)) {
if (Tok.hasUDSuffix())
Diag(Tok, diag::err_invalid_string_udl);
StrToks.push_back(Tok);
Lex(Tok);
}
// Concatenate and parse the strings.
StringLiteralParser Literal(&StrToks[0], StrToks.size(), *this);
assert(Literal.isAscii() && "Didn't allow wide strings in");
if (Literal.hadError)
return;
if (Literal.Pascal) {
Diag(StrToks[0].getLocation(), diag::err_pragma_message_malformed);
return;
}
StringRef MessageString(Literal.GetString());
if (ExpectClosingParen) {
if (Tok.isNot(tok::r_paren)) {
Diag(Tok.getLocation(), diag::err_pragma_message_malformed);
return;
}
Lex(Tok); // eat the r_paren.
}
if (Tok.isNot(tok::eod)) {
Diag(Tok.getLocation(), diag::err_pragma_message_malformed);
return;
}
// Output the message.
Diag(MessageLoc, diag::warn_pragma_message) << MessageString;
// If the pragma is lexically sound, notify any interested PPCallbacks.
if (Callbacks)
Callbacks->PragmaMessage(MessageLoc, MessageString);
}
/// ParsePragmaPushOrPopMacro - Handle parsing of pragma push_macro/pop_macro.
/// Return the IdentifierInfo* associated with the macro to push or pop.
IdentifierInfo *Preprocessor::ParsePragmaPushOrPopMacro(Token &Tok) {
// Remember the pragma token location.
Token PragmaTok = Tok;
// Read the '('.
Lex(Tok);
if (Tok.isNot(tok::l_paren)) {
Diag(PragmaTok.getLocation(), diag::err_pragma_push_pop_macro_malformed)
<< getSpelling(PragmaTok);
return 0;
}
// Read the macro name string.
Lex(Tok);
if (Tok.isNot(tok::string_literal)) {
Diag(PragmaTok.getLocation(), diag::err_pragma_push_pop_macro_malformed)
<< getSpelling(PragmaTok);
return 0;
}
if (Tok.hasUDSuffix()) {
Diag(Tok, diag::err_invalid_string_udl);
return 0;
}
// Remember the macro string.
std::string StrVal = getSpelling(Tok);
// Read the ')'.
Lex(Tok);
if (Tok.isNot(tok::r_paren)) {
Diag(PragmaTok.getLocation(), diag::err_pragma_push_pop_macro_malformed)
<< getSpelling(PragmaTok);
return 0;
}
assert(StrVal[0] == '"' && StrVal[StrVal.size()-1] == '"' &&
"Invalid string token!");
// Create a Token from the string.
Token MacroTok;
MacroTok.startToken();
MacroTok.setKind(tok::raw_identifier);
CreateString(StringRef(&StrVal[1], StrVal.size() - 2), MacroTok);
// Get the IdentifierInfo of MacroToPushTok.
return LookUpIdentifierInfo(MacroTok);
}
/// \brief Handle \#pragma push_macro.
///
/// The syntax is:
/// \code
/// \#pragma push_macro("macro")
/// \endcode
void Preprocessor::HandlePragmaPushMacro(Token &PushMacroTok) {
// Parse the pragma directive and get the macro IdentifierInfo*.
IdentifierInfo *IdentInfo = ParsePragmaPushOrPopMacro(PushMacroTok);
if (!IdentInfo) return;
// Get the MacroInfo associated with IdentInfo.
MacroInfo *MI = getMacroInfo(IdentInfo);
MacroInfo *MacroCopyToPush = 0;
if (MI) {
// Make a clone of MI.
MacroCopyToPush = CloneMacroInfo(*MI);
// Allow the original MacroInfo to be redefined later.
MI->setIsAllowRedefinitionsWithoutWarning(true);
}
// Push the cloned MacroInfo so we can retrieve it later.
PragmaPushMacroInfo[IdentInfo].push_back(MacroCopyToPush);
}
/// \brief Handle \#pragma pop_macro.
///
/// The syntax is:
/// \code
/// #pragma pop_macro("macro")
/// \endcode
void Preprocessor::HandlePragmaPopMacro(Token &PopMacroTok) {
SourceLocation MessageLoc = PopMacroTok.getLocation();
// Parse the pragma directive and get the macro IdentifierInfo*.
IdentifierInfo *IdentInfo = ParsePragmaPushOrPopMacro(PopMacroTok);
if (!IdentInfo) return;
// Find the vector<MacroInfo*> associated with the macro.
llvm::DenseMap<IdentifierInfo*, std::vector<MacroInfo*> >::iterator iter =
PragmaPushMacroInfo.find(IdentInfo);
if (iter != PragmaPushMacroInfo.end()) {
// Forget the MacroInfo currently associated with IdentInfo.
if (MacroInfo *CurrentMI = getMacroInfo(IdentInfo)) {
if (CurrentMI->isWarnIfUnused())
WarnUnusedMacroLocs.erase(CurrentMI->getDefinitionLoc());
UndefineMacro(IdentInfo, CurrentMI, MessageLoc);
}
// Get the MacroInfo we want to reinstall.
MacroInfo *MacroToReInstall = iter->second.back();
if (MacroToReInstall) {
// Reinstall the previously pushed macro.
setMacroInfo(IdentInfo, MacroToReInstall);
} else if (IdentInfo->hasMacroDefinition()) {
clearMacroInfo(IdentInfo);
}
// Pop PragmaPushMacroInfo stack.
iter->second.pop_back();
if (iter->second.size() == 0)
PragmaPushMacroInfo.erase(iter);
} else {
Diag(MessageLoc, diag::warn_pragma_pop_macro_no_push)
<< IdentInfo->getName();
}
}
void Preprocessor::HandlePragmaIncludeAlias(Token &Tok) {
// We will either get a quoted filename or a bracketed filename, and we
// have to track which we got. The first filename is the source name,
// and the second name is the mapped filename. If the first is quoted,
// the second must be as well (cannot mix and match quotes and brackets).
// Get the open paren
Lex(Tok);
if (Tok.isNot(tok::l_paren)) {
Diag(Tok, diag::warn_pragma_include_alias_expected) << "(";
return;
}
// We expect either a quoted string literal, or a bracketed name
Token SourceFilenameTok;
CurPPLexer->LexIncludeFilename(SourceFilenameTok);
if (SourceFilenameTok.is(tok::eod)) {
// The diagnostic has already been handled
return;
}
StringRef SourceFileName;
SmallString<128> FileNameBuffer;
if (SourceFilenameTok.is(tok::string_literal) ||
SourceFilenameTok.is(tok::angle_string_literal)) {
SourceFileName = getSpelling(SourceFilenameTok, FileNameBuffer);
} else if (SourceFilenameTok.is(tok::less)) {
// This could be a path instead of just a name
FileNameBuffer.push_back('<');
SourceLocation End;
if (ConcatenateIncludeName(FileNameBuffer, End))
return; // Diagnostic already emitted
SourceFileName = FileNameBuffer.str();
} else {
Diag(Tok, diag::warn_pragma_include_alias_expected_filename);
return;
}
FileNameBuffer.clear();
// Now we expect a comma, followed by another include name
Lex(Tok);
if (Tok.isNot(tok::comma)) {
Diag(Tok, diag::warn_pragma_include_alias_expected) << ",";
return;
}
Token ReplaceFilenameTok;
CurPPLexer->LexIncludeFilename(ReplaceFilenameTok);
if (ReplaceFilenameTok.is(tok::eod)) {
// The diagnostic has already been handled
return;
}
StringRef ReplaceFileName;
if (ReplaceFilenameTok.is(tok::string_literal) ||
ReplaceFilenameTok.is(tok::angle_string_literal)) {
ReplaceFileName = getSpelling(ReplaceFilenameTok, FileNameBuffer);
} else if (ReplaceFilenameTok.is(tok::less)) {
// This could be a path instead of just a name
FileNameBuffer.push_back('<');
SourceLocation End;
if (ConcatenateIncludeName(FileNameBuffer, End))
return; // Diagnostic already emitted
ReplaceFileName = FileNameBuffer.str();
} else {
Diag(Tok, diag::warn_pragma_include_alias_expected_filename);
return;
}
// Finally, we expect the closing paren
Lex(Tok);
if (Tok.isNot(tok::r_paren)) {
Diag(Tok, diag::warn_pragma_include_alias_expected) << ")";
return;
}
// Now that we have the source and target filenames, we need to make sure
// they're both of the same type (angled vs non-angled)
StringRef OriginalSource = SourceFileName;
bool SourceIsAngled =
GetIncludeFilenameSpelling(SourceFilenameTok.getLocation(),
SourceFileName);
bool ReplaceIsAngled =
GetIncludeFilenameSpelling(ReplaceFilenameTok.getLocation(),
ReplaceFileName);
if (!SourceFileName.empty() && !ReplaceFileName.empty() &&
(SourceIsAngled != ReplaceIsAngled)) {
unsigned int DiagID;
if (SourceIsAngled)
DiagID = diag::warn_pragma_include_alias_mismatch_angle;
else
DiagID = diag::warn_pragma_include_alias_mismatch_quote;
Diag(SourceFilenameTok.getLocation(), DiagID)
<< SourceFileName
<< ReplaceFileName;
return;
}
// Now we can let the include handler know about this mapping
getHeaderSearchInfo().AddIncludeAlias(OriginalSource, ReplaceFileName);
}
/// AddPragmaHandler - Add the specified pragma handler to the preprocessor.
/// If 'Namespace' is non-null, then it is a token required to exist on the
/// pragma line before the pragma string starts, e.g. "STDC" or "GCC".
void Preprocessor::AddPragmaHandler(StringRef Namespace,
PragmaHandler *Handler) {
PragmaNamespace *InsertNS = PragmaHandlers;
// If this is specified to be in a namespace, step down into it.
if (!Namespace.empty()) {
// If there is already a pragma handler with the name of this namespace,
// we either have an error (directive with the same name as a namespace) or
// we already have the namespace to insert into.
if (PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace)) {
InsertNS = Existing->getIfNamespace();
assert(InsertNS != 0 && "Cannot have a pragma namespace and pragma"
" handler with the same name!");
} else {
// Otherwise, this namespace doesn't exist yet, create and insert the
// handler for it.
InsertNS = new PragmaNamespace(Namespace);
PragmaHandlers->AddPragma(InsertNS);
}
}
// Check to make sure we don't already have a pragma for this identifier.
assert(!InsertNS->FindHandler(Handler->getName()) &&
"Pragma handler already exists for this identifier!");
InsertNS->AddPragma(Handler);
}
/// RemovePragmaHandler - Remove the specific pragma handler from the
/// preprocessor. If \arg Namespace is non-null, then it should be the
/// namespace that \arg Handler was added to. It is an error to remove
/// a handler that has not been registered.
void Preprocessor::RemovePragmaHandler(StringRef Namespace,
PragmaHandler *Handler) {
PragmaNamespace *NS = PragmaHandlers;
// If this is specified to be in a namespace, step down into it.
if (!Namespace.empty()) {
PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace);
assert(Existing && "Namespace containing handler does not exist!");
NS = Existing->getIfNamespace();
assert(NS && "Invalid namespace, registered as a regular pragma handler!");
}
NS->RemovePragmaHandler(Handler);
// If this is a non-default namespace and it is now empty, remove
// it.
if (NS != PragmaHandlers && NS->IsEmpty()) {
PragmaHandlers->RemovePragmaHandler(NS);
delete NS;
}
}
bool Preprocessor::LexOnOffSwitch(tok::OnOffSwitch &Result) {
Token Tok;
LexUnexpandedToken(Tok);
if (Tok.isNot(tok::identifier)) {
Diag(Tok, diag::ext_on_off_switch_syntax);
return true;
}
IdentifierInfo *II = Tok.getIdentifierInfo();
if (II->isStr("ON"))
Result = tok::OOS_ON;
else if (II->isStr("OFF"))
Result = tok::OOS_OFF;
else if (II->isStr("DEFAULT"))
Result = tok::OOS_DEFAULT;
else {
Diag(Tok, diag::ext_on_off_switch_syntax);
return true;
}
// Verify that this is followed by EOD.
LexUnexpandedToken(Tok);
if (Tok.isNot(tok::eod))
Diag(Tok, diag::ext_pragma_syntax_eod);
return false;
}
namespace {
/// PragmaOnceHandler - "\#pragma once" marks the file as atomically included.
struct PragmaOnceHandler : public PragmaHandler {
PragmaOnceHandler() : PragmaHandler("once") {}
virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
Token &OnceTok) {
PP.CheckEndOfDirective("pragma once");
PP.HandlePragmaOnce(OnceTok);
}
};
/// PragmaMarkHandler - "\#pragma mark ..." is ignored by the compiler, and the
/// rest of the line is not lexed.
struct PragmaMarkHandler : public PragmaHandler {
PragmaMarkHandler() : PragmaHandler("mark") {}
virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
Token &MarkTok) {
PP.HandlePragmaMark();
}
};
/// PragmaPoisonHandler - "\#pragma poison x" marks x as not usable.
struct PragmaPoisonHandler : public PragmaHandler {
PragmaPoisonHandler() : PragmaHandler("poison") {}
virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
Token &PoisonTok) {
PP.HandlePragmaPoison(PoisonTok);
}
};
/// PragmaSystemHeaderHandler - "\#pragma system_header" marks the current file
/// as a system header, which silences warnings in it.
struct PragmaSystemHeaderHandler : public PragmaHandler {
PragmaSystemHeaderHandler() : PragmaHandler("system_header") {}
virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
Token &SHToken) {
PP.HandlePragmaSystemHeader(SHToken);
PP.CheckEndOfDirective("pragma");
}
};
struct PragmaDependencyHandler : public PragmaHandler {
PragmaDependencyHandler() : PragmaHandler("dependency") {}
virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
Token &DepToken) {
PP.HandlePragmaDependency(DepToken);
}
};
struct PragmaDebugHandler : public PragmaHandler {
PragmaDebugHandler() : PragmaHandler("__debug") {}
virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
Token &DepToken) {
Token Tok;
PP.LexUnexpandedToken(Tok);
if (Tok.isNot(tok::identifier)) {
PP.Diag(Tok, diag::warn_pragma_diagnostic_invalid);
return;
}
IdentifierInfo *II = Tok.getIdentifierInfo();
if (II->isStr("assert")) {
llvm_unreachable("This is an assertion!");
} else if (II->isStr("crash")) {
LLVM_BUILTIN_TRAP;
} else if (II->isStr("parser_crash")) {
Token Crasher;
Crasher.setKind(tok::annot_pragma_parser_crash);
PP.EnterToken(Crasher);
} else if (II->isStr("llvm_fatal_error")) {
llvm::report_fatal_error("#pragma clang __debug llvm_fatal_error");
} else if (II->isStr("llvm_unreachable")) {
llvm_unreachable("#pragma clang __debug llvm_unreachable");
} else if (II->isStr("overflow_stack")) {
DebugOverflowStack();
} else if (II->isStr("handle_crash")) {
llvm::CrashRecoveryContext *CRC =llvm::CrashRecoveryContext::GetCurrent();
if (CRC)
CRC->HandleCrash();
} else {
PP.Diag(Tok, diag::warn_pragma_debug_unexpected_command)
<< II->getName();
}
}
// Disable MSVC warning about runtime stack overflow.
#ifdef _MSC_VER
#pragma warning(disable : 4717)
#endif
void DebugOverflowStack() {
DebugOverflowStack();
}
#ifdef _MSC_VER
#pragma warning(default : 4717)
#endif
};
/// PragmaDiagnosticHandler - e.g. '\#pragma GCC diagnostic ignored "-Wformat"'
struct PragmaDiagnosticHandler : public PragmaHandler {
private:
const char *Namespace;
public:
explicit PragmaDiagnosticHandler(const char *NS) :
PragmaHandler("diagnostic"), Namespace(NS) {}
virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
Token &DiagToken) {
SourceLocation DiagLoc = DiagToken.getLocation();
Token Tok;
PP.LexUnexpandedToken(Tok);
if (Tok.isNot(tok::identifier)) {
PP.Diag(Tok, diag::warn_pragma_diagnostic_invalid);
return;
}
IdentifierInfo *II = Tok.getIdentifierInfo();
PPCallbacks *Callbacks = PP.getPPCallbacks();
diag::Mapping Map;
if (II->isStr("warning"))
Map = diag::MAP_WARNING;
else if (II->isStr("error"))
Map = diag::MAP_ERROR;
else if (II->isStr("ignored"))
Map = diag::MAP_IGNORE;
else if (II->isStr("fatal"))
Map = diag::MAP_FATAL;
else if (II->isStr("pop")) {
if (!PP.getDiagnostics().popMappings(DiagLoc))
PP.Diag(Tok, diag::warn_pragma_diagnostic_cannot_pop);
else if (Callbacks)
Callbacks->PragmaDiagnosticPop(DiagLoc, Namespace);
return;
} else if (II->isStr("push")) {
PP.getDiagnostics().pushMappings(DiagLoc);
if (Callbacks)
Callbacks->PragmaDiagnosticPush(DiagLoc, Namespace);
return;
} else {
PP.Diag(Tok, diag::warn_pragma_diagnostic_invalid);
return;
}
PP.LexUnexpandedToken(Tok);
// We need at least one string.
if (Tok.isNot(tok::string_literal)) {
PP.Diag(Tok.getLocation(), diag::warn_pragma_diagnostic_invalid_token);
return;
}
// String concatenation allows multiple strings, which can even come from
// macro expansion.
// "foo " "bar" "Baz"
SmallVector<Token, 4> StrToks;
while (Tok.is(tok::string_literal)) {
StrToks.push_back(Tok);
PP.LexUnexpandedToken(Tok);
}
if (Tok.isNot(tok::eod)) {
PP.Diag(Tok.getLocation(), diag::warn_pragma_diagnostic_invalid_token);
return;
}
// Concatenate and parse the strings.
StringLiteralParser Literal(&StrToks[0], StrToks.size(), PP);
assert(Literal.isAscii() && "Didn't allow wide strings in");
if (Literal.hadError)
return;
if (Literal.Pascal) {
PP.Diag(Tok, diag::warn_pragma_diagnostic_invalid);
return;
}
StringRef WarningName(Literal.GetString());
if (WarningName.size() < 3 || WarningName[0] != '-' ||
WarningName[1] != 'W') {
PP.Diag(StrToks[0].getLocation(),
diag::warn_pragma_diagnostic_invalid_option);
return;
}
if (PP.getDiagnostics().setDiagnosticGroupMapping(WarningName.substr(2),
Map, DiagLoc))
PP.Diag(StrToks[0].getLocation(),
diag::warn_pragma_diagnostic_unknown_warning) << WarningName;
else if (Callbacks)
Callbacks->PragmaDiagnostic(DiagLoc, Namespace, Map, WarningName);
}
};
/// PragmaCommentHandler - "\#pragma comment ...".
struct PragmaCommentHandler : public PragmaHandler {
PragmaCommentHandler() : PragmaHandler("comment") {}
virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
Token &CommentTok) {
PP.HandlePragmaComment(CommentTok);
}
};
/// PragmaIncludeAliasHandler - "\#pragma include_alias("...")".
struct PragmaIncludeAliasHandler : public PragmaHandler {
PragmaIncludeAliasHandler() : PragmaHandler("include_alias") {}
virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
Token &IncludeAliasTok) {
PP.HandlePragmaIncludeAlias(IncludeAliasTok);
}
};
/// PragmaMessageHandler - "\#pragma message("...")".
struct PragmaMessageHandler : public PragmaHandler {
PragmaMessageHandler() : PragmaHandler("message") {}
virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
Token &CommentTok) {
PP.HandlePragmaMessage(CommentTok);
}
};
/// PragmaPushMacroHandler - "\#pragma push_macro" saves the value of the
/// macro on the top of the stack.
struct PragmaPushMacroHandler : public PragmaHandler {
PragmaPushMacroHandler() : PragmaHandler("push_macro") {}
virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
Token &PushMacroTok) {
PP.HandlePragmaPushMacro(PushMacroTok);
}
};
/// PragmaPopMacroHandler - "\#pragma pop_macro" sets the value of the
/// macro to the value on the top of the stack.
struct PragmaPopMacroHandler : public PragmaHandler {
PragmaPopMacroHandler() : PragmaHandler("pop_macro") {}
virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
Token &PopMacroTok) {
PP.HandlePragmaPopMacro(PopMacroTok);
}
};
// Pragma STDC implementations.
/// PragmaSTDC_FENV_ACCESSHandler - "\#pragma STDC FENV_ACCESS ...".
struct PragmaSTDC_FENV_ACCESSHandler : public PragmaHandler {
PragmaSTDC_FENV_ACCESSHandler() : PragmaHandler("FENV_ACCESS") {}
virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
Token &Tok) {
tok::OnOffSwitch OOS;
if (PP.LexOnOffSwitch(OOS))
return;
if (OOS == tok::OOS_ON)
PP.Diag(Tok, diag::warn_stdc_fenv_access_not_supported);
}
};
/// PragmaSTDC_CX_LIMITED_RANGEHandler - "\#pragma STDC CX_LIMITED_RANGE ...".
struct PragmaSTDC_CX_LIMITED_RANGEHandler : public PragmaHandler {
PragmaSTDC_CX_LIMITED_RANGEHandler()
: PragmaHandler("CX_LIMITED_RANGE") {}
virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
Token &Tok) {
tok::OnOffSwitch OOS;
PP.LexOnOffSwitch(OOS);
}
};
/// PragmaSTDC_UnknownHandler - "\#pragma STDC ...".
struct PragmaSTDC_UnknownHandler : public PragmaHandler {
PragmaSTDC_UnknownHandler() {}
virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
Token &UnknownTok) {
// C99 6.10.6p2, unknown forms are not allowed.
PP.Diag(UnknownTok, diag::ext_stdc_pragma_ignored);
}
};
/// PragmaARCCFCodeAuditedHandler -
/// \#pragma clang arc_cf_code_audited begin/end
struct PragmaARCCFCodeAuditedHandler : public PragmaHandler {
PragmaARCCFCodeAuditedHandler() : PragmaHandler("arc_cf_code_audited") {}
virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
Token &NameTok) {
SourceLocation Loc = NameTok.getLocation();
bool IsBegin;
Token Tok;
// Lex the 'begin' or 'end'.
PP.LexUnexpandedToken(Tok);
const IdentifierInfo *BeginEnd = Tok.getIdentifierInfo();
if (BeginEnd && BeginEnd->isStr("begin")) {
IsBegin = true;
} else if (BeginEnd && BeginEnd->isStr("end")) {
IsBegin = false;
} else {
PP.Diag(Tok.getLocation(), diag::err_pp_arc_cf_code_audited_syntax);
return;
}
// Verify that this is followed by EOD.
PP.LexUnexpandedToken(Tok);
if (Tok.isNot(tok::eod))
PP.Diag(Tok, diag::ext_pp_extra_tokens_at_eol) << "pragma";
// The start location of the active audit.
SourceLocation BeginLoc = PP.getPragmaARCCFCodeAuditedLoc();
// The start location we want after processing this.
SourceLocation NewLoc;
if (IsBegin) {
// Complain about attempts to re-enter an audit.
if (BeginLoc.isValid()) {
PP.Diag(Loc, diag::err_pp_double_begin_of_arc_cf_code_audited);
PP.Diag(BeginLoc, diag::note_pragma_entered_here);
}
NewLoc = Loc;
} else {
// Complain about attempts to leave an audit that doesn't exist.
if (!BeginLoc.isValid()) {
PP.Diag(Loc, diag::err_pp_unmatched_end_of_arc_cf_code_audited);
return;
}
NewLoc = SourceLocation();
}
PP.setPragmaARCCFCodeAuditedLoc(NewLoc);
}
};
} // end anonymous namespace
/// RegisterBuiltinPragmas - Install the standard preprocessor pragmas:
/// \#pragma GCC poison/system_header/dependency and \#pragma once.
void Preprocessor::RegisterBuiltinPragmas() {
AddPragmaHandler(new PragmaOnceHandler());
AddPragmaHandler(new PragmaMarkHandler());
AddPragmaHandler(new PragmaPushMacroHandler());
AddPragmaHandler(new PragmaPopMacroHandler());
AddPragmaHandler(new PragmaMessageHandler());
// #pragma GCC ...
AddPragmaHandler("GCC", new PragmaPoisonHandler());
AddPragmaHandler("GCC", new PragmaSystemHeaderHandler());
AddPragmaHandler("GCC", new PragmaDependencyHandler());
AddPragmaHandler("GCC", new PragmaDiagnosticHandler("GCC"));
// #pragma clang ...
AddPragmaHandler("clang", new PragmaPoisonHandler());
AddPragmaHandler("clang", new PragmaSystemHeaderHandler());
AddPragmaHandler("clang", new PragmaDebugHandler());
AddPragmaHandler("clang", new PragmaDependencyHandler());
AddPragmaHandler("clang", new PragmaDiagnosticHandler("clang"));
AddPragmaHandler("clang", new PragmaARCCFCodeAuditedHandler());
AddPragmaHandler("STDC", new PragmaSTDC_FENV_ACCESSHandler());
AddPragmaHandler("STDC", new PragmaSTDC_CX_LIMITED_RANGEHandler());
AddPragmaHandler("STDC", new PragmaSTDC_UnknownHandler());
// MS extensions.
if (LangOpts.MicrosoftExt) {
AddPragmaHandler(new PragmaCommentHandler());
AddPragmaHandler(new PragmaIncludeAliasHandler());
}
}
| [
"xingjinglu@gmail.com"
] | xingjinglu@gmail.com |
7bf88783cec8f48b9db60c6e2e629516abf0f9ca | 786de89be635eb21295070a6a3452f3a7fe6712c | /O2OTranslator/tags/V00-30-04/src/O2OMetaData.cpp | 473b245af723e268a4e22d132904c1377a030e14 | [] | no_license | connectthefuture/psdmrepo | 85267cfe8d54564f99e17035efe931077c8f7a37 | f32870a987a7493e7bf0f0a5c1712a5a030ef199 | refs/heads/master | 2021-01-13T03:26:35.494026 | 2015-09-03T22:22:11 | 2015-09-03T22:22:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,127 | cpp | //--------------------------------------------------------------------------
// File and Version Information:
// $Id$
//
// Description:
// Class O2OMetaData...
//
// Author List:
// Andrei Salnikov
//
//------------------------------------------------------------------------
//-----------------------
// This Class's Header --
//-----------------------
#include "O2OTranslator/O2OMetaData.h"
//-----------------
// C/C++ Headers --
//-----------------
//-------------------------------
// Collaborating Class Headers --
//-------------------------------
//-----------------------------------------------------------------------
// Local Macros, Typedefs, Structures, Unions and Forward Declarations --
//-----------------------------------------------------------------------
// ----------------------------------------
// -- Public Function Member Definitions --
// ----------------------------------------
namespace O2OTranslator {
//----------------
// Constructors --
//----------------
O2OMetaData::O2OMetaData ( unsigned long runNumber,
const std::string& runType,
const std::string& instrument,
const std::string& experiment,
const std::string& calibDir,
const std::vector<std::string>& extraMetaData )
: m_runNumber(runNumber)
, m_runType(runType)
, m_instrument(instrument)
, m_experiment(experiment)
, m_calibDir(calibDir)
, m_extraMetaData()
{
typedef std::vector<std::string>::const_iterator MDIter ;
for ( MDIter it = extraMetaData.begin() ; it != extraMetaData.end() ; ++ it ) {
const std::string& nameValue = *it ;
std::string::size_type c = nameValue.find(':') ;
std::string name = c == std::string::npos ? nameValue : std::string(nameValue,0,c) ;
std::string value = c == std::string::npos ? std::string() : std::string(nameValue,c+1) ;
m_extraMetaData.insert( cont_type::value_type(name,value) ) ;
}
}
//--------------
// Destructor --
//--------------
O2OMetaData::~O2OMetaData ()
{
}
} // namespace O2OTranslator
| [
"davidsch@SLAC.STANFORD.EDU@b967ad99-d558-0410-b138-e0f6c56caec7"
] | davidsch@SLAC.STANFORD.EDU@b967ad99-d558-0410-b138-e0f6c56caec7 |
f7ee3405817dd95f704cd125bf473e4cf7eca777 | d5e7dc9a40ccbd2b229bd853681642de7c731379 | /homework/hw7/TTrie.h | 3179c92f979dc0fbb04b74cc55a516dbebe568ab | [] | no_license | afialon/Intermediate-Programming-CS220-SPR-2021- | 86f36dde08a83036886d264e4aa1f389320e593e | bf8cd76a8e5b39fdce8e5d47111ea4d297728768 | refs/heads/main | 2023-05-11T23:34:00.971741 | 2021-06-02T07:49:33 | 2021-06-02T07:49:33 | 337,611,747 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,525 | h | #ifndef TTRIE_H
#define TTRIE_H
#include <iostream>
#include <vector>
#include <string>
#include <sstream>
#include <map>
template<typename DataType>
class TTrie {
public:
/**
* Default Constructor.
*/
TTrie(): isTerminal(false), sequence() { edgeMap = std::map<DataType, TTrie*>();};
TTrie(const DataType sequenceData): isTerminal(false), sequence(sequenceData) { edgeMap = std::map<DataType, TTrie<DataType>*>(); }
TTrie(const DataType sequenceData, const bool boolean): isTerminal(boolean), sequence(sequenceData) { edgeMap = std::map<DataType, TTrie<DataType>*>(); }
/**
* Copy Constructor.
* \param rhs A const reference to the input to copy.
*/
TTrie(const TTrie& rhs);
/**
* Destructor.
*/
~TTrie();
/**
* Assignment operator.
*/
TTrie<DataType>& operator=(const TTrie<DataType> &rhs);
/**
* Overloaded addition/assignment operator to input a new vector into the TTrie.
* \param sequence is the vector to insert into the trie
* \return a reference to the TTrie object
*/
TTrie<DataType>& operator+=(const std::vector<DataType>& sequence);
/**
* Overloaded carat operator to check whether a given sequence exists in the object.
* \param sequence is the sequence to find
* \return true if the sequence is a member of the trie, false otherwise
*/
bool operator^(const std::vector<DataType> &sequence) const;
/**
* Overloaded equality operator to check whether two TTrie objects are equal.
* \param rhs A const reference to the TTrie object to compare.
* \return true if the other object represents exactly the same set of sequences,
* false otherwise
*/
bool operator==(const TTrie<DataType>& rhs) const;
/**
* \brief Overloaded output stream operator<< to print the sequences
* in the TTrie one per line, with values separated by '-'
* (hyphen) characters, in lexicographical order (note that if
* you use a map to represent links to children, a recursive
* traversal should allow you to generate the sequences in
* sorted order very easily)
* \param os A reference to the output stream object
* \param tt A constant reference to the input TTrie object
* \return A reference to the output stream object
*/
template <typename U>
friend std::ostream& operator<<(std::ostream& os, const TTrie<U>& tt);
/**
* \return the number of children
*/
unsigned numChildren() const;
/**
* \return true if there are any children, false otherwise
*/
bool hasChild() const;
/**
* Check whether a child linked by a specific value exists.
* \param value a value
* \return true if there is a link to a child labeled with the value,
* false otherwise
*/
bool hasChild(const DataType &value) const;
/**
* Get pointer to child node reachable via link labeled with
* the specified value.
* \param value a value
* \return pointer to child node, or nullptr if there is no such child
*/
const TTrie<DataType>* getChild(const DataType &value) const;
/**
* \return true if this node is an endpoint, false otherwise
*/
bool isEndpoint() const;
DataType getSequence() const;
template <typename U>
friend void output_trie(std::vector<U>& s, std::vector<std::vector<U>>& v, const TTrie<U>& tt);
private:
// TODO: fields
bool isTerminal;
DataType sequence;
std::map<DataType, TTrie*> edgeMap;
// TODO: helper functions
};
#include "TTrie.inc"
#endif // TTRIE_H
| [
"afialon1@ugradx.cs.jhu.edu"
] | afialon1@ugradx.cs.jhu.edu |
cdbfa9226eb006498428967b054ed59e9ae89ac8 | b12870a95546b7c3161dfe0faebc97c918202c97 | /Cutting_P/Padrao_Traspasse.cpp | 25482995223d8d13926848f400a2281dedb07ae5 | [] | no_license | kennedy94/Cutting_P | 8f73263822115abc1ad936b978c315a857eb5c3c | 54cf8d23326e2de2d375979a8b259caf693fdc9e | refs/heads/master | 2020-03-26T17:02:01.476098 | 2018-12-03T19:57:25 | 2018-12-03T19:57:25 | 145,138,252 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 118 | cpp | #include "Padrao_Traspasse.h"
Padrao_Traspasse::Padrao_Traspasse()
{
}
Padrao_Traspasse::~Padrao_Traspasse()
{
}
| [
"kennedyanderson94@outlook.com"
] | kennedyanderson94@outlook.com |
0ec0b706c7cde1b308ddb3d956309b91bc18955f | dc395522f5223e418b0f8a9fa29761e717b4744f | /toetoken/include/toetoken.hpp | 9e82320d6e5396f6e86069095a317b0e0f75e8eb | [] | no_license | mhooboat/toe_contracts | 51cfb3966f8cfca9ac0ee169c8609cf962710985 | 3d28d087bd9f576864861e58e0ebe3f3bc366392 | refs/heads/master | 2023-04-26T10:45:12.085563 | 2021-05-02T09:09:45 | 2021-05-02T09:09:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,412 | hpp | #pragma once
#include <eosio/asset.hpp>
#include <eosio/eosio.hpp>
#include <string>
namespace eosiosystem {
class system_contract;
}
using eosio::contract;
using eosio::name;
using eosio::multi_index;
using eosio::asset;
using eosio::check;
using eosio::same_payer;
using eosio::symbol;
using eosio::require_recipient;
using eosio::action_wrapper;
using eosio::symbol_code;
using eosio::datastream;
using std::string;
CONTRACT toetoken : public contract {
public:
using contract::contract;
const long long supply_initial_amount;
toetoken(name receiver, name code, datastream<const char*> ds) :
contract(receiver, code, ds),
supply_initial_amount(1'000'000'000) {}
/**
* Allows `issuer` account to create a token in supply of `maximum_supply`. If validation is successful a new entry in statstable for token symbol scope gets created.
*
* @param issuer - the account that creates the token,
* @param maximum_supply - the maximum supply set for the token created.
*
* @pre Token symbol has to be valid,
* @pre Token symbol must not be already created,
* @pre maximum_supply has to be smaller than the maximum supply allowed by the system: 2^62 - 1.
* @pre Maximum supply must be positive;
*/
ACTION create(const name& issuer, const asset& maximum_supply);
/**
* This action issues to `to` account a `quantity` of tokens.
*
* @param to - the account to issue tokens to, it must be the same as the issuer,
* @param quantity - the amount of tokens to be issued,
* @memo - the memo string that accompanies the token issue transaction.
*/
ACTION issue(const name& to, const asset& quantity, const string& memo);
/**
* The opposite for create action, if all validations succeed,
* it debits the statstable.supply amount.
*
* @param quantity - the quantity of tokens to retire,
* @param memo - the memo string to accompany the transaction.
*/
ACTION retire(const asset& quantity, const string& memo);
/**
* Allows `from` account to transfer to `to` account the `quantity` tokens.
* One account is debited and the other is credited with quantity tokens.
*
* @param from - the account to transfer from,
* @param to - the account to be transferred to,
* @param quantity - the quantity of tokens to be transferred,
* @param memo - the memo string to accompany the transaction.
*/
ACTION transfer(const name& from, const name& to,
const asset& quantity, const string& memo);
/**
* Allows `ram_payer` to create an account `owner` with zero balance for
* token `symbol` at the expense of `ram_payer`.
*
* @param owner - the account to be created,
* @param symbol - the token to be payed with by `ram_payer`,
* @param ram_payer - the account that supports the cost of this action.
*
* More information can be read [here](https://github.com/EOSIO/eosio.contracts/issues/62)
* and [here](https://github.com/EOSIO/eosio.contracts/issues/61).
*/
ACTION open(const name& owner, const symbol& symbol, const name& ram_payer);
/**
* This action is the opposite for open, it closes the account `owner`
* for token `symbol`.
*
* @param owner - the owner account to execute the close action for,
* @param symbol - the symbol of the token to execute the close action for.
*
* @pre The pair of owner plus symbol has to exist otherwise no action is executed,
* @pre If the pair of owner plus symbol exists, the balance has to be zero.
*/
ACTION close(const name& owner, const symbol& symbol);
/**
* @brief - set inflation_rate_percent by the issuer.
* @details - set inflation_rate_percent by the issuer. Rate is voted by the community.
*
* @param issuer - issuer
* @param year - year e.g. 2020
* @param inflate_rate_percent - inflation rate (in percentage) i.e. 1% = 0.01
*
* @pre check the issuer is the one saved in the table.
* @pre check the year is of 4 digits
* @pre check inflate_rate_percent is non-zero
*/
ACTION setinflation(const name& issuer,
uint64_t year,
float inflate_rate_percent);
/**
* @brief - inflate tokens in the circulating supply
* @details - inflate tokens in the circulating supply by the inflate_percentage
*
* @param issuer - issuer
* @param year - year to be inflated
*/
ACTION inflate(const name& issuer,
uint64_t year );
/**
* @brief - delete token_symbol
* @details - delete diff. token created by mistake
*
* @param sym_code - e.g. "EOS", "TOE"
* @param memo - reason for deleting the token symbol
*
*/
// ACTION deltokenstat(const symbol_code& sym_code, const string& memo);
/**
* @brief - burn tokens in the circulating supply
* @details - burn tokens in the circulating supply
*
* @param issuer - issuer
*
*/
// ACTION burn(const name& issuer);
static asset get_supply(const name& token_contract_account, const symbol_code& sym_code) {
stats_index statstable(token_contract_account, sym_code.raw());
const auto& st = statstable.get(sym_code.raw()); // get that row which contains the symbol as it is declared as primary_index
return st.supply; // now, return member i.e. 'supply' of struct 'st'
}
static asset get_balance(const name& token_contract_account, const name& owner, const symbol_code& sym_code) {
accounts_index accountstable(token_contract_account, owner.value);
const auto& ac = accountstable.get(sym_code.raw()); // get that row which contains the symbol as it is declared as primary_index
return ac.balance; // now, return member i.e. 'supply' of struct 'ac'
}
// get year length eg. for '2020' = 4
static uint64_t get_year_length(uint64_t i) {
uint64_t l=0;
for(;i;i/=10) l++;
return l==0 ? 1 : l;
}
using create_action = action_wrapper<"create"_n, &toetoken::create>;
using issuer_action = action_wrapper<"issue"_n, &toetoken::issue>;
using retire_action = action_wrapper<"retire"_n, &toetoken::retire>;
using transfer_action = action_wrapper<"transfer"_n, &toetoken::transfer>;
using open_action = action_wrapper<"open"_n, &toetoken::open>;
using close_action = action_wrapper<"close"_n, &toetoken::close>;
using inflate_action = action_wrapper<"inflate"_n, &toetoken::inflate>;
private:
// ------------------------------------------------------------------
TABLE account
{
asset balance;
uint64_t primary_key() const { return balance.symbol.code().raw(); }
};
using accounts_index = eosio::multi_index< "accounts"_n, account >;
// ------------------------------------------------------------------
TABLE currency_stats
{
asset supply;
asset max_supply;
name issuer;
uint64_t primary_key() const { return supply.symbol.code().raw(); }
};
using stats_index = eosio::multi_index< "stat"_n, currency_stats >;
// ------------------------------------------------------------------
TABLE rate
{
uint64_t year;
float inflation_rate_percent;
auto primary_key() const { return year; }
};
using rates_index = eosio::multi_index< "rates"_n, rate >;
// ------------------------------------------------------------------
void sub_balance(const name& owner, const asset& value);
void add_balance(const name& owner, const asset& value, const name& ram_payer);
};
| [
"dalvath3700@gmail.com"
] | dalvath3700@gmail.com |
025fa0961263e62c23bfe8c9c798044d42698e9e | cecf6991e6007ee4bc32a82e438c9120b3826dad | /Math/Source/fresnel/specialfunctions.h | 034170b441f048b2858b5f469736082848205d42 | [] | no_license | thinking2535/Rso | 172a3499400331439a530cab78934fa4c4433771 | 35d556463118825a1d5d36f49d46f18a05806169 | refs/heads/main | 2022-11-30T12:43:50.917063 | 2022-11-23T10:47:59 | 2022-11-23T10:47:59 | 31,525,549 | 11 | 0 | null | null | null | null | WINDOWS-1250 | C++ | false | false | 60,299 | h | /*************************************************************************
ALGLIB 3.10.0 (source code generated 2015-08-19)
Copyright (c) Sergey Bochkanov (ALGLIB project).
>>> SOURCE LICENSE >>>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation (www.fsf.org); either version 2 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
A copy of the GNU General Public License is available at
http://www.fsf.org/licensing/licenses
>>> END OF LICENSE >>>
*************************************************************************/
#ifndef _specialfunctions_pkg_h
#define _specialfunctions_pkg_h
#include "ap.h"
#include "alglibinternal.h"
/////////////////////////////////////////////////////////////////////////
//
// THIS SECTION CONTAINS COMPUTATIONAL CORE DECLARATIONS (DATATYPES)
//
/////////////////////////////////////////////////////////////////////////
namespace alglib_impl
{
}
/////////////////////////////////////////////////////////////////////////
//
// THIS SECTION CONTAINS C++ INTERFACE
//
/////////////////////////////////////////////////////////////////////////
namespace alglib
{
/*************************************************************************
Gamma function
Input parameters:
X - argument
Domain:
0 < X < 171.6
-170 < X < 0, X is not an integer.
Relative error:
arithmetic domain # trials peak rms
IEEE -170,-33 20000 2.3e-15 3.3e-16
IEEE -33, 33 20000 9.4e-16 2.2e-16
IEEE 33, 171.6 20000 2.3e-15 3.2e-16
Cephes Math Library Release 2.8: June, 2000
Original copyright 1984, 1987, 1989, 1992, 2000 by Stephen L. Moshier
Translated to AlgoPascal by Bochkanov Sergey (2005, 2006, 2007).
*************************************************************************/
double gammafunction(const double x);
/*************************************************************************
Natural logarithm of gamma function
Input parameters:
X - argument
Result:
logarithm of the absolute value of the Gamma(X).
Output parameters:
SgnGam - sign(Gamma(X))
Domain:
0 < X < 2.55e305
-2.55e305 < X < 0, X is not an integer.
ACCURACY:
arithmetic domain # trials peak rms
IEEE 0, 3 28000 5.4e-16 1.1e-16
IEEE 2.718, 2.556e305 40000 3.5e-16 8.3e-17
The error criterion was relative when the function magnitude
was greater than one but absolute when it was less than one.
The following test used the relative error criterion, though
at certain points the relative error could be much higher than
indicated.
IEEE -200, -4 10000 4.8e-16 1.3e-16
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1989, 1992, 2000 by Stephen L. Moshier
Translated to AlgoPascal by Bochkanov Sergey (2005, 2006, 2007).
*************************************************************************/
double lngamma(const double x, double &sgngam);
/*************************************************************************
Error function
The integral is
x
-
2 | | 2
erf(x) = -------- | exp( - t ) dt.
sqrt(pi) | |
-
0
For 0 <= |x| < 1, erf(x) = x * P4(x**2)/Q5(x**2); otherwise
erf(x) = 1 - erfc(x).
ACCURACY:
Relative error:
arithmetic domain # trials peak rms
IEEE 0,1 30000 3.7e-16 1.0e-16
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1988, 1992, 2000 by Stephen L. Moshier
*************************************************************************/
double errorfunction(const double x);
/*************************************************************************
Complementary error function
1 - erf(x) =
inf.
-
2 | | 2
erfc(x) = -------- | exp( - t ) dt
sqrt(pi) | |
-
x
For small x, erfc(x) = 1 - erf(x); otherwise rational
approximations are computed.
ACCURACY:
Relative error:
arithmetic domain # trials peak rms
IEEE 0,26.6417 30000 5.7e-14 1.5e-14
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1988, 1992, 2000 by Stephen L. Moshier
*************************************************************************/
double errorfunctionc(const double x);
/*************************************************************************
Normal distribution function
Returns the area under the Gaussian probability density
function, integrated from minus infinity to x:
x
-
1 | | 2
ndtr(x) = --------- | exp( - t /2 ) dt
sqrt(2pi) | |
-
-inf.
= ( 1 + erf(z) ) / 2
= erfc(z) / 2
where z = x/sqrt(2). Computation is via the functions
erf and erfc.
ACCURACY:
Relative error:
arithmetic domain # trials peak rms
IEEE -13,0 30000 3.4e-14 6.7e-15
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1988, 1992, 2000 by Stephen L. Moshier
*************************************************************************/
double normaldistribution(const double x);
/*************************************************************************
Inverse of the error function
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1988, 1992, 2000 by Stephen L. Moshier
*************************************************************************/
double inverf(const double e);
/*************************************************************************
Inverse of Normal distribution function
Returns the argument, x, for which the area under the
Gaussian probability density function (integrated from
minus infinity to x) is equal to y.
For small arguments 0 < y < exp(-2), the program computes
z = sqrt( -2.0 * log(y) ); then the approximation is
x = z - log(z)/z - (1/z) P(1/z) / Q(1/z).
There are two rational functions P/Q, one for 0 < y < exp(-32)
and the other for y up to exp(-2). For larger arguments,
w = y - 0.5, and x/sqrt(2pi) = w + w**3 R(w**2)/S(w**2)).
ACCURACY:
Relative error:
arithmetic domain # trials peak rms
IEEE 0.125, 1 20000 7.2e-16 1.3e-16
IEEE 3e-308, 0.135 50000 4.6e-16 9.8e-17
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1988, 1992, 2000 by Stephen L. Moshier
*************************************************************************/
double invnormaldistribution(const double y0);
/*************************************************************************
Incomplete gamma integral
The function is defined by
x
-
1 | | -t a-1
igam(a,x) = ----- | e t dt.
- | |
| (a) -
0
In this implementation both arguments must be positive.
The integral is evaluated by either a power series or
continued fraction expansion, depending on the relative
values of a and x.
ACCURACY:
Relative error:
arithmetic domain # trials peak rms
IEEE 0,30 200000 3.6e-14 2.9e-15
IEEE 0,100 300000 9.9e-14 1.5e-14
Cephes Math Library Release 2.8: June, 2000
Copyright 1985, 1987, 2000 by Stephen L. Moshier
*************************************************************************/
double incompletegamma(const double a, const double x);
/*************************************************************************
Complemented incomplete gamma integral
The function is defined by
igamc(a,x) = 1 - igam(a,x)
inf.
-
1 | | -t a-1
= ----- | e t dt.
- | |
| (a) -
x
In this implementation both arguments must be positive.
The integral is evaluated by either a power series or
continued fraction expansion, depending on the relative
values of a and x.
ACCURACY:
Tested at random a, x.
a x Relative error:
arithmetic domain domain # trials peak rms
IEEE 0.5,100 0,100 200000 1.9e-14 1.7e-15
IEEE 0.01,0.5 0,100 200000 1.4e-13 1.6e-15
Cephes Math Library Release 2.8: June, 2000
Copyright 1985, 1987, 2000 by Stephen L. Moshier
*************************************************************************/
double incompletegammac(const double a, const double x);
/*************************************************************************
Inverse of complemented imcomplete gamma integral
Given p, the function finds x such that
igamc( a, x ) = p.
Starting with the approximate value
3
x = a t
where
t = 1 - d - ndtri(p) sqrt(d)
and
d = 1/9a,
the routine performs up to 10 Newton iterations to find the
root of igamc(a,x) - p = 0.
ACCURACY:
Tested at random a, p in the intervals indicated.
a p Relative error:
arithmetic domain domain # trials peak rms
IEEE 0.5,100 0,0.5 100000 1.0e-14 1.7e-15
IEEE 0.01,0.5 0,0.5 100000 9.0e-14 3.4e-15
IEEE 0.5,10000 0,0.5 20000 2.3e-13 3.8e-14
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1995, 2000 by Stephen L. Moshier
*************************************************************************/
double invincompletegammac(const double a, const double y0);
/*************************************************************************
Airy function
Solution of the differential equation
y"(x) = xy.
The function returns the two independent solutions Ai, Bi
and their first derivatives Ai'(x), Bi'(x).
Evaluation is by power series summation for small x,
by rational minimax approximations for large x.
ACCURACY:
Error criterion is absolute when function <= 1, relative
when function > 1, except * denotes relative error criterion.
For large negative x, the absolute error increases as x^1.5.
For large positive x, the relative error increases as x^1.5.
Arithmetic domain function # trials peak rms
IEEE -10, 0 Ai 10000 1.6e-15 2.7e-16
IEEE 0, 10 Ai 10000 2.3e-14* 1.8e-15*
IEEE -10, 0 Ai' 10000 4.6e-15 7.6e-16
IEEE 0, 10 Ai' 10000 1.8e-14* 1.5e-15*
IEEE -10, 10 Bi 30000 4.2e-15 5.3e-16
IEEE -10, 10 Bi' 30000 4.9e-15 7.3e-16
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1989, 2000 by Stephen L. Moshier
*************************************************************************/
void airy(const double x, double &ai, double &aip, double &bi, double &bip);
/*************************************************************************
Bessel function of order zero
Returns Bessel function of order zero of the argument.
The domain is divided into the intervals [0, 5] and
(5, infinity). In the first interval the following rational
approximation is used:
2 2
(w - r ) (w - r ) P (w) / Q (w)
1 2 3 8
2
where w = x and the two r's are zeros of the function.
In the second interval, the Hankel asymptotic expansion
is employed with two rational functions of degree 6/6
and 7/7.
ACCURACY:
Absolute error:
arithmetic domain # trials peak rms
IEEE 0, 30 60000 4.2e-16 1.1e-16
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1989, 2000 by Stephen L. Moshier
*************************************************************************/
double besselj0(const double x);
/*************************************************************************
Bessel function of order one
Returns Bessel function of order one of the argument.
The domain is divided into the intervals [0, 8] and
(8, infinity). In the first interval a 24 term Chebyshev
expansion is used. In the second, the asymptotic
trigonometric representation is employed using two
rational functions of degree 5/5.
ACCURACY:
Absolute error:
arithmetic domain # trials peak rms
IEEE 0, 30 30000 2.6e-16 1.1e-16
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1989, 2000 by Stephen L. Moshier
*************************************************************************/
double besselj1(const double x);
/*************************************************************************
Bessel function of integer order
Returns Bessel function of order n, where n is a
(possibly negative) integer.
The ratio of jn(x) to j0(x) is computed by backward
recurrence. First the ratio jn/jn-1 is found by a
continued fraction expansion. Then the recurrence
relating successive orders is applied until j0 or j1 is
reached.
If n = 0 or 1 the routine for j0 or j1 is called
directly.
ACCURACY:
Absolute error:
arithmetic range # trials peak rms
IEEE 0, 30 5000 4.4e-16 7.9e-17
Not suitable for large n or x. Use jv() (fractional order) instead.
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 2000 by Stephen L. Moshier
*************************************************************************/
double besseljn(const ae_int_t n, const double x);
/*************************************************************************
Bessel function of the second kind, order zero
Returns Bessel function of the second kind, of order
zero, of the argument.
The domain is divided into the intervals [0, 5] and
(5, infinity). In the first interval a rational approximation
R(x) is employed to compute
y0(x) = R(x) + 2 * log(x) * j0(x) / PI.
Thus a call to j0() is required.
In the second interval, the Hankel asymptotic expansion
is employed with two rational functions of degree 6/6
and 7/7.
ACCURACY:
Absolute error, when y0(x) < 1; else relative error:
arithmetic domain # trials peak rms
IEEE 0, 30 30000 1.3e-15 1.6e-16
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1989, 2000 by Stephen L. Moshier
*************************************************************************/
double bessely0(const double x);
/*************************************************************************
Bessel function of second kind of order one
Returns Bessel function of the second kind of order one
of the argument.
The domain is divided into the intervals [0, 8] and
(8, infinity). In the first interval a 25 term Chebyshev
expansion is used, and a call to j1() is required.
In the second, the asymptotic trigonometric representation
is employed using two rational functions of degree 5/5.
ACCURACY:
Absolute error:
arithmetic domain # trials peak rms
IEEE 0, 30 30000 1.0e-15 1.3e-16
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1989, 2000 by Stephen L. Moshier
*************************************************************************/
double bessely1(const double x);
/*************************************************************************
Bessel function of second kind of integer order
Returns Bessel function of order n, where n is a
(possibly negative) integer.
The function is evaluated by forward recurrence on
n, starting with values computed by the routines
y0() and y1().
If n = 0 or 1 the routine for y0 or y1 is called
directly.
ACCURACY:
Absolute error, except relative
when y > 1:
arithmetic domain # trials peak rms
IEEE 0, 30 30000 3.4e-15 4.3e-16
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 2000 by Stephen L. Moshier
*************************************************************************/
double besselyn(const ae_int_t n, const double x);
/*************************************************************************
Modified Bessel function of order zero
Returns modified Bessel function of order zero of the
argument.
The function is defined as i0(x) = j0( ix ).
The range is partitioned into the two intervals [0,8] and
(8, infinity). Chebyshev polynomial expansions are employed
in each interval.
ACCURACY:
Relative error:
arithmetic domain # trials peak rms
IEEE 0,30 30000 5.8e-16 1.4e-16
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 2000 by Stephen L. Moshier
*************************************************************************/
double besseli0(const double x);
/*************************************************************************
Modified Bessel function of order one
Returns modified Bessel function of order one of the
argument.
The function is defined as i1(x) = -i j1( ix ).
The range is partitioned into the two intervals [0,8] and
(8, infinity). Chebyshev polynomial expansions are employed
in each interval.
ACCURACY:
Relative error:
arithmetic domain # trials peak rms
IEEE 0, 30 30000 1.9e-15 2.1e-16
Cephes Math Library Release 2.8: June, 2000
Copyright 1985, 1987, 2000 by Stephen L. Moshier
*************************************************************************/
double besseli1(const double x);
/*************************************************************************
Modified Bessel function, second kind, order zero
Returns modified Bessel function of the second kind
of order zero of the argument.
The range is partitioned into the two intervals [0,8] and
(8, infinity). Chebyshev polynomial expansions are employed
in each interval.
ACCURACY:
Tested at 2000 random points between 0 and 8. Peak absolute
error (relative when K0 > 1) was 1.46e-14; rms, 4.26e-15.
Relative error:
arithmetic domain # trials peak rms
IEEE 0, 30 30000 1.2e-15 1.6e-16
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 2000 by Stephen L. Moshier
*************************************************************************/
double besselk0(const double x);
/*************************************************************************
Modified Bessel function, second kind, order one
Computes the modified Bessel function of the second kind
of order one of the argument.
The range is partitioned into the two intervals [0,2] and
(2, infinity). Chebyshev polynomial expansions are employed
in each interval.
ACCURACY:
Relative error:
arithmetic domain # trials peak rms
IEEE 0, 30 30000 1.2e-15 1.6e-16
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 2000 by Stephen L. Moshier
*************************************************************************/
double besselk1(const double x);
/*************************************************************************
Modified Bessel function, second kind, integer order
Returns modified Bessel function of the second kind
of order n of the argument.
The range is partitioned into the two intervals [0,9.55] and
(9.55, infinity). An ascending power series is used in the
low range, and an asymptotic expansion in the high range.
ACCURACY:
Relative error:
arithmetic domain # trials peak rms
IEEE 0,30 90000 1.8e-8 3.0e-10
Error is high only near the crossover point x = 9.55
between the two expansions used.
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1988, 2000 by Stephen L. Moshier
*************************************************************************/
double besselkn(const ae_int_t nn, const double x);
/*************************************************************************
Beta function
- -
| (a) | (b)
beta( a, b ) = -----------.
-
| (a+b)
For large arguments the logarithm of the function is
evaluated using lgam(), then exponentiated.
ACCURACY:
Relative error:
arithmetic domain # trials peak rms
IEEE 0,30 30000 8.1e-14 1.1e-14
Cephes Math Library Release 2.0: April, 1987
Copyright 1984, 1987 by Stephen L. Moshier
*************************************************************************/
double beta(const double a, const double b);
/*************************************************************************
Incomplete beta integral
Returns incomplete beta integral of the arguments, evaluated
from zero to x. The function is defined as
x
- -
| (a+b) | | a-1 b-1
----------- | t (1-t) dt.
- - | |
| (a) | (b) -
0
The domain of definition is 0 <= x <= 1. In this
implementation a and b are restricted to positive values.
The integral from x to 1 may be obtained by the symmetry
relation
1 - incbet( a, b, x ) = incbet( b, a, 1-x ).
The integral is evaluated by a continued fraction expansion
or, when b*x is small, by a power series.
ACCURACY:
Tested at uniformly distributed random points (a,b,x) with a and b
in "domain" and x between 0 and 1.
Relative error
arithmetic domain # trials peak rms
IEEE 0,5 10000 6.9e-15 4.5e-16
IEEE 0,85 250000 2.2e-13 1.7e-14
IEEE 0,1000 30000 5.3e-12 6.3e-13
IEEE 0,10000 250000 9.3e-11 7.1e-12
IEEE 0,100000 10000 8.7e-10 4.8e-11
Outputs smaller than the IEEE gradual underflow threshold
were excluded from these statistics.
Cephes Math Library, Release 2.8: June, 2000
Copyright 1984, 1995, 2000 by Stephen L. Moshier
*************************************************************************/
double incompletebeta(const double a, const double b, const double x);
/*************************************************************************
Inverse of imcomplete beta integral
Given y, the function finds x such that
incbet( a, b, x ) = y .
The routine performs interval halving or Newton iterations to find the
root of incbet(a,b,x) - y = 0.
ACCURACY:
Relative error:
x a,b
arithmetic domain domain # trials peak rms
IEEE 0,1 .5,10000 50000 5.8e-12 1.3e-13
IEEE 0,1 .25,100 100000 1.8e-13 3.9e-15
IEEE 0,1 0,5 50000 1.1e-12 5.5e-15
With a and b constrained to half-integer or integer values:
IEEE 0,1 .5,10000 50000 5.8e-12 1.1e-13
IEEE 0,1 .5,100 100000 1.7e-14 7.9e-16
With a = .5, b constrained to half-integer or integer values:
IEEE 0,1 .5,10000 10000 8.3e-11 1.0e-11
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1996, 2000 by Stephen L. Moshier
*************************************************************************/
double invincompletebeta(const double a, const double b, const double y);
/*************************************************************************
Binomial distribution
Returns the sum of the terms 0 through k of the Binomial
probability density:
k
-- ( n ) j n-j
> ( ) p (1-p)
-- ( j )
j=0
The terms are not summed directly; instead the incomplete
beta integral is employed, according to the formula
y = bdtr( k, n, p ) = incbet( n-k, k+1, 1-p ).
The arguments must be positive, with p ranging from 0 to 1.
ACCURACY:
Tested at random points (a,b,p), with p between 0 and 1.
a,b Relative error:
arithmetic domain # trials peak rms
For p between 0.001 and 1:
IEEE 0,100 100000 4.3e-15 2.6e-16
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1995, 2000 by Stephen L. Moshier
*************************************************************************/
double binomialdistribution(const ae_int_t k, const ae_int_t n, const double p);
/*************************************************************************
Complemented binomial distribution
Returns the sum of the terms k+1 through n of the Binomial
probability density:
n
-- ( n ) j n-j
> ( ) p (1-p)
-- ( j )
j=k+1
The terms are not summed directly; instead the incomplete
beta integral is employed, according to the formula
y = bdtrc( k, n, p ) = incbet( k+1, n-k, p ).
The arguments must be positive, with p ranging from 0 to 1.
ACCURACY:
Tested at random points (a,b,p).
a,b Relative error:
arithmetic domain # trials peak rms
For p between 0.001 and 1:
IEEE 0,100 100000 6.7e-15 8.2e-16
For p between 0 and .001:
IEEE 0,100 100000 1.5e-13 2.7e-15
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1995, 2000 by Stephen L. Moshier
*************************************************************************/
double binomialcdistribution(const ae_int_t k, const ae_int_t n, const double p);
/*************************************************************************
Inverse binomial distribution
Finds the event probability p such that the sum of the
terms 0 through k of the Binomial probability density
is equal to the given cumulative probability y.
This is accomplished using the inverse beta integral
function and the relation
1 - p = incbi( n-k, k+1, y ).
ACCURACY:
Tested at random points (a,b,p).
a,b Relative error:
arithmetic domain # trials peak rms
For p between 0.001 and 1:
IEEE 0,100 100000 2.3e-14 6.4e-16
IEEE 0,10000 100000 6.6e-12 1.2e-13
For p between 10^-6 and 0.001:
IEEE 0,100 100000 2.0e-12 1.3e-14
IEEE 0,10000 100000 1.5e-12 3.2e-14
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1995, 2000 by Stephen L. Moshier
*************************************************************************/
double invbinomialdistribution(const ae_int_t k, const ae_int_t n, const double y);
/*************************************************************************
Calculation of the value of the Chebyshev polynomials of the
first and second kinds.
Parameters:
r - polynomial kind, either 1 or 2.
n - degree, n>=0
x - argument, -1 <= x <= 1
Result:
the value of the Chebyshev polynomial at x
*************************************************************************/
double chebyshevcalculate(const ae_int_t r, const ae_int_t n, const double x);
/*************************************************************************
Summation of Chebyshev polynomials using Clenshaw’s recurrence formula.
This routine calculates
c[0]*T0(x) + c[1]*T1(x) + ... + c[N]*TN(x)
or
c[0]*U0(x) + c[1]*U1(x) + ... + c[N]*UN(x)
depending on the R.
Parameters:
r - polynomial kind, either 1 or 2.
n - degree, n>=0
x - argument
Result:
the value of the Chebyshev polynomial at x
*************************************************************************/
double chebyshevsum(const real_1d_array &c, const ae_int_t r, const ae_int_t n, const double x);
/*************************************************************************
Representation of Tn as C[0] + C[1]*X + ... + C[N]*X^N
Input parameters:
N - polynomial degree, n>=0
Output parameters:
C - coefficients
*************************************************************************/
void chebyshevcoefficients(const ae_int_t n, real_1d_array &c);
/*************************************************************************
Conversion of a series of Chebyshev polynomials to a power series.
Represents A[0]*T0(x) + A[1]*T1(x) + ... + A[N]*Tn(x) as
B[0] + B[1]*X + ... + B[N]*X^N.
Input parameters:
A - Chebyshev series coefficients
N - degree, N>=0
Output parameters
B - power series coefficients
*************************************************************************/
void fromchebyshev(const real_1d_array &a, const ae_int_t n, real_1d_array &b);
/*************************************************************************
Chi-square distribution
Returns the area under the left hand tail (from 0 to x)
of the Chi square probability density function with
v degrees of freedom.
x
-
1 | | v/2-1 -t/2
P( x | v ) = ----------- | t e dt
v/2 - | |
2 | (v/2) -
0
where x is the Chi-square variable.
The incomplete gamma integral is used, according to the
formula
y = chdtr( v, x ) = igam( v/2.0, x/2.0 ).
The arguments must both be positive.
ACCURACY:
See incomplete gamma function
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 2000 by Stephen L. Moshier
*************************************************************************/
double chisquaredistribution(const double v, const double x);
/*************************************************************************
Complemented Chi-square distribution
Returns the area under the right hand tail (from x to
infinity) of the Chi square probability density function
with v degrees of freedom:
inf.
-
1 | | v/2-1 -t/2
P( x | v ) = ----------- | t e dt
v/2 - | |
2 | (v/2) -
x
where x is the Chi-square variable.
The incomplete gamma integral is used, according to the
formula
y = chdtr( v, x ) = igamc( v/2.0, x/2.0 ).
The arguments must both be positive.
ACCURACY:
See incomplete gamma function
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 2000 by Stephen L. Moshier
*************************************************************************/
double chisquarecdistribution(const double v, const double x);
/*************************************************************************
Inverse of complemented Chi-square distribution
Finds the Chi-square argument x such that the integral
from x to infinity of the Chi-square density is equal
to the given cumulative probability y.
This is accomplished using the inverse gamma integral
function and the relation
x/2 = igami( df/2, y );
ACCURACY:
See inverse incomplete gamma function
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 2000 by Stephen L. Moshier
*************************************************************************/
double invchisquaredistribution(const double v, const double y);
/*************************************************************************
Dawson's Integral
Approximates the integral
x
-
2 | | 2
dawsn(x) = exp( -x ) | exp( t ) dt
| |
-
0
Three different rational approximations are employed, for
the intervals 0 to 3.25; 3.25 to 6.25; and 6.25 up.
ACCURACY:
Relative error:
arithmetic domain # trials peak rms
IEEE 0,10 10000 6.9e-16 1.0e-16
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1989, 2000 by Stephen L. Moshier
*************************************************************************/
double dawsonintegral(const double x);
/*************************************************************************
Complete elliptic integral of the first kind
Approximates the integral
pi/2
-
| |
| dt
K(m) = | ------------------
| 2
| | sqrt( 1 - m sin t )
-
0
using the approximation
P(x) - log x Q(x).
ACCURACY:
Relative error:
arithmetic domain # trials peak rms
IEEE 0,1 30000 2.5e-16 6.8e-17
Cephes Math Library, Release 2.8: June, 2000
Copyright 1984, 1987, 2000 by Stephen L. Moshier
*************************************************************************/
double ellipticintegralk(const double m);
/*************************************************************************
Complete elliptic integral of the first kind
Approximates the integral
pi/2
-
| |
| dt
K(m) = | ------------------
| 2
| | sqrt( 1 - m sin t )
-
0
where m = 1 - m1, using the approximation
P(x) - log x Q(x).
The argument m1 is used rather than m so that the logarithmic
singularity at m = 1 will be shifted to the origin; this
preserves maximum accuracy.
K(0) = pi/2.
ACCURACY:
Relative error:
arithmetic domain # trials peak rms
IEEE 0,1 30000 2.5e-16 6.8e-17
Cephes Math Library, Release 2.8: June, 2000
Copyright 1984, 1987, 2000 by Stephen L. Moshier
*************************************************************************/
double ellipticintegralkhighprecision(const double m1);
/*************************************************************************
Incomplete elliptic integral of the first kind F(phi|m)
Approximates the integral
phi
-
| |
| dt
F(phi_\m) = | ------------------
| 2
| | sqrt( 1 - m sin t )
-
0
of amplitude phi and modulus m, using the arithmetic -
geometric mean algorithm.
ACCURACY:
Tested at random points with m in [0, 1] and phi as indicated.
Relative error:
arithmetic domain # trials peak rms
IEEE -10,10 200000 7.4e-16 1.0e-16
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 2000 by Stephen L. Moshier
*************************************************************************/
double incompleteellipticintegralk(const double phi, const double m);
/*************************************************************************
Complete elliptic integral of the second kind
Approximates the integral
pi/2
-
| | 2
E(m) = | sqrt( 1 - m sin t ) dt
| |
-
0
using the approximation
P(x) - x log x Q(x).
ACCURACY:
Relative error:
arithmetic domain # trials peak rms
IEEE 0, 1 10000 2.1e-16 7.3e-17
Cephes Math Library, Release 2.8: June, 2000
Copyright 1984, 1987, 1989, 2000 by Stephen L. Moshier
*************************************************************************/
double ellipticintegrale(const double m);
/*************************************************************************
Incomplete elliptic integral of the second kind
Approximates the integral
phi
-
| |
| 2
E(phi_\m) = | sqrt( 1 - m sin t ) dt
|
| |
-
0
of amplitude phi and modulus m, using the arithmetic -
geometric mean algorithm.
ACCURACY:
Tested at random arguments with phi in [-10, 10] and m in
[0, 1].
Relative error:
arithmetic domain # trials peak rms
IEEE -10,10 150000 3.3e-15 1.4e-16
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1993, 2000 by Stephen L. Moshier
*************************************************************************/
double incompleteellipticintegrale(const double phi, const double m);
/*************************************************************************
Exponential integral Ei(x)
x
- t
| | e
Ei(x) = -|- --- dt .
| | t
-
-inf
Not defined for x <= 0.
See also expn.c.
ACCURACY:
Relative error:
arithmetic domain # trials peak rms
IEEE 0,100 50000 8.6e-16 1.3e-16
Cephes Math Library Release 2.8: May, 1999
Copyright 1999 by Stephen L. Moshier
*************************************************************************/
double exponentialintegralei(const double x);
/*************************************************************************
Exponential integral En(x)
Evaluates the exponential integral
inf.
-
| | -xt
| e
E (x) = | ---- dt.
n | n
| | t
-
1
Both n and x must be nonnegative.
The routine employs either a power series, a continued
fraction, or an asymptotic formula depending on the
relative values of n and x.
ACCURACY:
Relative error:
arithmetic domain # trials peak rms
IEEE 0, 30 10000 1.7e-15 3.6e-16
Cephes Math Library Release 2.8: June, 2000
Copyright 1985, 2000 by Stephen L. Moshier
*************************************************************************/
double exponentialintegralen(const double x, const ae_int_t n);
/*************************************************************************
F distribution
Returns the area from zero to x under the F density
function (also known as Snedcor's density or the
variance ratio density). This is the density
of x = (u1/df1)/(u2/df2), where u1 and u2 are random
variables having Chi square distributions with df1
and df2 degrees of freedom, respectively.
The incomplete beta integral is used, according to the
formula
P(x) = incbet( df1/2, df2/2, (df1*x/(df2 + df1*x) ).
The arguments a and b are greater than zero, and x is
nonnegative.
ACCURACY:
Tested at random points (a,b,x).
x a,b Relative error:
arithmetic domain domain # trials peak rms
IEEE 0,1 0,100 100000 9.8e-15 1.7e-15
IEEE 1,5 0,100 100000 6.5e-15 3.5e-16
IEEE 0,1 1,10000 100000 2.2e-11 3.3e-12
IEEE 1,5 1,10000 100000 1.1e-11 1.7e-13
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1995, 2000 by Stephen L. Moshier
*************************************************************************/
double fdistribution(const ae_int_t a, const ae_int_t b, const double x);
/*************************************************************************
Complemented F distribution
Returns the area from x to infinity under the F density
function (also known as Snedcor's density or the
variance ratio density).
inf.
-
1 | | a-1 b-1
1-P(x) = ------ | t (1-t) dt
B(a,b) | |
-
x
The incomplete beta integral is used, according to the
formula
P(x) = incbet( df2/2, df1/2, (df2/(df2 + df1*x) ).
ACCURACY:
Tested at random points (a,b,x) in the indicated intervals.
x a,b Relative error:
arithmetic domain domain # trials peak rms
IEEE 0,1 1,100 100000 3.7e-14 5.9e-16
IEEE 1,5 1,100 100000 8.0e-15 1.6e-15
IEEE 0,1 1,10000 100000 1.8e-11 3.5e-13
IEEE 1,5 1,10000 100000 2.0e-11 3.0e-12
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1995, 2000 by Stephen L. Moshier
*************************************************************************/
double fcdistribution(const ae_int_t a, const ae_int_t b, const double x);
/*************************************************************************
Inverse of complemented F distribution
Finds the F density argument x such that the integral
from x to infinity of the F density is equal to the
given probability p.
This is accomplished using the inverse beta integral
function and the relations
z = incbi( df2/2, df1/2, p )
x = df2 (1-z) / (df1 z).
Note: the following relations hold for the inverse of
the uncomplemented F distribution:
z = incbi( df1/2, df2/2, p )
x = df2 z / (df1 (1-z)).
ACCURACY:
Tested at random points (a,b,p).
a,b Relative error:
arithmetic domain # trials peak rms
For p between .001 and 1:
IEEE 1,100 100000 8.3e-15 4.7e-16
IEEE 1,10000 100000 2.1e-11 1.4e-13
For p between 10^-6 and 10^-3:
IEEE 1,100 50000 1.3e-12 8.4e-15
IEEE 1,10000 50000 3.0e-12 4.8e-14
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1995, 2000 by Stephen L. Moshier
*************************************************************************/
double invfdistribution(const ae_int_t a, const ae_int_t b, const double y);
/*************************************************************************
Fresnel integral
Evaluates the Fresnel integrals
x
-
| |
C(x) = | cos(pi/2 t**2) dt,
| |
-
0
x
-
| |
S(x) = | sin(pi/2 t**2) dt.
| |
-
0
The integrals are evaluated by a power series for x < 1.
For x >= 1 auxiliary functions f(x) and g(x) are employed
such that
C(x) = 0.5 + f(x) sin( pi/2 x**2 ) - g(x) cos( pi/2 x**2 )
S(x) = 0.5 - f(x) cos( pi/2 x**2 ) - g(x) sin( pi/2 x**2 )
ACCURACY:
Relative error.
Arithmetic function domain # trials peak rms
IEEE S(x) 0, 10 10000 2.0e-15 3.2e-16
IEEE C(x) 0, 10 10000 1.8e-15 3.3e-16
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1989, 2000 by Stephen L. Moshier
*************************************************************************/
void fresnelintegral(const double x, double &c, double &s);
/*************************************************************************
Calculation of the value of the Hermite polynomial.
Parameters:
n - degree, n>=0
x - argument
Result:
the value of the Hermite polynomial Hn at x
*************************************************************************/
double hermitecalculate(const ae_int_t n, const double x);
/*************************************************************************
Summation of Hermite polynomials using Clenshaw’s recurrence formula.
This routine calculates
c[0]*H0(x) + c[1]*H1(x) + ... + c[N]*HN(x)
Parameters:
n - degree, n>=0
x - argument
Result:
the value of the Hermite polynomial at x
*************************************************************************/
double hermitesum(const real_1d_array &c, const ae_int_t n, const double x);
/*************************************************************************
Representation of Hn as C[0] + C[1]*X + ... + C[N]*X^N
Input parameters:
N - polynomial degree, n>=0
Output parameters:
C - coefficients
*************************************************************************/
void hermitecoefficients(const ae_int_t n, real_1d_array &c);
/*************************************************************************
Jacobian Elliptic Functions
Evaluates the Jacobian elliptic functions sn(u|m), cn(u|m),
and dn(u|m) of parameter m between 0 and 1, and real
argument u.
These functions are periodic, with quarter-period on the
real axis equal to the complete elliptic integral
ellpk(1.0-m).
Relation to incomplete elliptic integral:
If u = ellik(phi,m), then sn(u|m) = sin(phi),
and cn(u|m) = cos(phi). Phi is called the amplitude of u.
Computation is by means of the arithmetic-geometric mean
algorithm, except when m is within 1e-9 of 0 or 1. In the
latter case with m close to 1, the approximation applies
only for phi < pi/2.
ACCURACY:
Tested at random points with u between 0 and 10, m between
0 and 1.
Absolute error (* = relative error):
arithmetic function # trials peak rms
IEEE phi 10000 9.2e-16* 1.4e-16*
IEEE sn 50000 4.1e-15 4.6e-16
IEEE cn 40000 3.6e-15 4.4e-16
IEEE dn 10000 1.3e-12 1.8e-14
Peak error observed in consistency check using addition
theorem for sn(u+v) was 4e-16 (absolute). Also tested by
the above relation to the incomplete elliptic integral.
Accuracy deteriorates when u is large.
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 2000 by Stephen L. Moshier
*************************************************************************/
void jacobianellipticfunctions(const double u, const double m, double &sn, double &cn, double &dn, double &ph);
/*************************************************************************
Calculation of the value of the Laguerre polynomial.
Parameters:
n - degree, n>=0
x - argument
Result:
the value of the Laguerre polynomial Ln at x
*************************************************************************/
double laguerrecalculate(const ae_int_t n, const double x);
/*************************************************************************
Summation of Laguerre polynomials using Clenshaw’s recurrence formula.
This routine calculates c[0]*L0(x) + c[1]*L1(x) + ... + c[N]*LN(x)
Parameters:
n - degree, n>=0
x - argument
Result:
the value of the Laguerre polynomial at x
*************************************************************************/
double laguerresum(const real_1d_array &c, const ae_int_t n, const double x);
/*************************************************************************
Representation of Ln as C[0] + C[1]*X + ... + C[N]*X^N
Input parameters:
N - polynomial degree, n>=0
Output parameters:
C - coefficients
*************************************************************************/
void laguerrecoefficients(const ae_int_t n, real_1d_array &c);
/*************************************************************************
Calculation of the value of the Legendre polynomial Pn.
Parameters:
n - degree, n>=0
x - argument
Result:
the value of the Legendre polynomial Pn at x
*************************************************************************/
double legendrecalculate(const ae_int_t n, const double x);
/*************************************************************************
Summation of Legendre polynomials using Clenshaw’s recurrence formula.
This routine calculates
c[0]*P0(x) + c[1]*P1(x) + ... + c[N]*PN(x)
Parameters:
n - degree, n>=0
x - argument
Result:
the value of the Legendre polynomial at x
*************************************************************************/
double legendresum(const real_1d_array &c, const ae_int_t n, const double x);
/*************************************************************************
Representation of Pn as C[0] + C[1]*X + ... + C[N]*X^N
Input parameters:
N - polynomial degree, n>=0
Output parameters:
C - coefficients
*************************************************************************/
void legendrecoefficients(const ae_int_t n, real_1d_array &c);
/*************************************************************************
Poisson distribution
Returns the sum of the first k+1 terms of the Poisson
distribution:
k j
-- -m m
> e --
-- j!
j=0
The terms are not summed directly; instead the incomplete
gamma integral is employed, according to the relation
y = pdtr( k, m ) = igamc( k+1, m ).
The arguments must both be positive.
ACCURACY:
See incomplete gamma function
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1995, 2000 by Stephen L. Moshier
*************************************************************************/
double poissondistribution(const ae_int_t k, const double m);
/*************************************************************************
Complemented Poisson distribution
Returns the sum of the terms k+1 to infinity of the Poisson
distribution:
inf. j
-- -m m
> e --
-- j!
j=k+1
The terms are not summed directly; instead the incomplete
gamma integral is employed, according to the formula
y = pdtrc( k, m ) = igam( k+1, m ).
The arguments must both be positive.
ACCURACY:
See incomplete gamma function
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1995, 2000 by Stephen L. Moshier
*************************************************************************/
double poissoncdistribution(const ae_int_t k, const double m);
/*************************************************************************
Inverse Poisson distribution
Finds the Poisson variable x such that the integral
from 0 to x of the Poisson density is equal to the
given probability y.
This is accomplished using the inverse gamma integral
function and the relation
m = igami( k+1, y ).
ACCURACY:
See inverse incomplete gamma function
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1995, 2000 by Stephen L. Moshier
*************************************************************************/
double invpoissondistribution(const ae_int_t k, const double y);
/*************************************************************************
Psi (digamma) function
d -
psi(x) = -- ln | (x)
dx
is the logarithmic derivative of the gamma function.
For integer x,
n-1
-
psi(n) = -EUL + > 1/k.
-
k=1
This formula is used for 0 < n <= 10. If x is negative, it
is transformed to a positive argument by the reflection
formula psi(1-x) = psi(x) + pi cot(pi x).
For general positive x, the argument is made greater than 10
using the recurrence psi(x+1) = psi(x) + 1/x.
Then the following asymptotic expansion is applied:
inf. B
- 2k
psi(x) = log(x) - 1/2x - > -------
- 2k
k=1 2k x
where the B2k are Bernoulli numbers.
ACCURACY:
Relative error (except absolute when |psi| < 1):
arithmetic domain # trials peak rms
IEEE 0,30 30000 1.3e-15 1.4e-16
IEEE -30,0 40000 1.5e-15 2.2e-16
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1992, 2000 by Stephen L. Moshier
*************************************************************************/
double psi(const double x);
/*************************************************************************
Student's t distribution
Computes the integral from minus infinity to t of the Student
t distribution with integer k > 0 degrees of freedom:
t
-
| |
- | 2 -(k+1)/2
| ( (k+1)/2 ) | ( x )
---------------------- | ( 1 + --- ) dx
- | ( k )
sqrt( k pi ) | ( k/2 ) |
| |
-
-inf.
Relation to incomplete beta integral:
1 - stdtr(k,t) = 0.5 * incbet( k/2, 1/2, z )
where
z = k/(k + t**2).
For t < -2, this is the method of computation. For higher t,
a direct method is derived from integration by parts.
Since the function is symmetric about t=0, the area under the
right tail of the density is found by calling the function
with -t instead of t.
ACCURACY:
Tested at random 1 <= k <= 25. The "domain" refers to t.
Relative error:
arithmetic domain # trials peak rms
IEEE -100,-2 50000 5.9e-15 1.4e-15
IEEE -2,100 500000 2.7e-15 4.9e-17
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1995, 2000 by Stephen L. Moshier
*************************************************************************/
double studenttdistribution(const ae_int_t k, const double t);
/*************************************************************************
Functional inverse of Student's t distribution
Given probability p, finds the argument t such that stdtr(k,t)
is equal to p.
ACCURACY:
Tested at random 1 <= k <= 100. The "domain" refers to p:
Relative error:
arithmetic domain # trials peak rms
IEEE .001,.999 25000 5.7e-15 8.0e-16
IEEE 10^-6,.001 25000 2.0e-12 2.9e-14
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 1995, 2000 by Stephen L. Moshier
*************************************************************************/
double invstudenttdistribution(const ae_int_t k, const double p);
/*************************************************************************
Sine and cosine integrals
Evaluates the integrals
x
-
| cos t - 1
Ci(x) = eul + ln x + | --------- dt,
| t
-
0
x
-
| sin t
Si(x) = | ----- dt
| t
-
0
where eul = 0.57721566490153286061 is Euler's constant.
The integrals are approximated by rational functions.
For x > 8 auxiliary functions f(x) and g(x) are employed
such that
Ci(x) = f(x) sin(x) - g(x) cos(x)
Si(x) = pi/2 - f(x) cos(x) - g(x) sin(x)
ACCURACY:
Test interval = [0,50].
Absolute error, except relative when > 1:
arithmetic function # trials peak rms
IEEE Si 30000 4.4e-16 7.3e-17
IEEE Ci 30000 6.9e-16 5.1e-17
Cephes Math Library Release 2.1: January, 1989
Copyright 1984, 1987, 1989 by Stephen L. Moshier
*************************************************************************/
void sinecosineintegrals(const double x, double &si, double &ci);
/*************************************************************************
Hyperbolic sine and cosine integrals
Approximates the integrals
x
-
| | cosh t - 1
Chi(x) = eul + ln x + | ----------- dt,
| | t
-
0
x
-
| | sinh t
Shi(x) = | ------ dt
| | t
-
0
where eul = 0.57721566490153286061 is Euler's constant.
The integrals are evaluated by power series for x < 8
and by Chebyshev expansions for x between 8 and 88.
For large x, both functions approach exp(x)/2x.
Arguments greater than 88 in magnitude return MAXNUM.
ACCURACY:
Test interval 0 to 88.
Relative error:
arithmetic function # trials peak rms
IEEE Shi 30000 6.9e-16 1.6e-16
Absolute error, except relative when |Chi| > 1:
IEEE Chi 30000 8.4e-16 1.4e-16
Cephes Math Library Release 2.8: June, 2000
Copyright 1984, 1987, 2000 by Stephen L. Moshier
*************************************************************************/
void hyperbolicsinecosineintegrals(const double x, double &shi, double &chi);
}
/////////////////////////////////////////////////////////////////////////
//
// THIS SECTION CONTAINS COMPUTATIONAL CORE DECLARATIONS (FUNCTIONS)
//
/////////////////////////////////////////////////////////////////////////
namespace alglib_impl
{
double gammafunction(double x, ae_state *_state);
double lngamma(double x, double* sgngam, ae_state *_state);
double errorfunction(double x, ae_state *_state);
double errorfunctionc(double x, ae_state *_state);
double normaldistribution(double x, ae_state *_state);
double inverf(double e, ae_state *_state);
double invnormaldistribution(double y0, ae_state *_state);
double incompletegamma(double a, double x, ae_state *_state);
double incompletegammac(double a, double x, ae_state *_state);
double invincompletegammac(double a, double y0, ae_state *_state);
void airy(double x,
double* ai,
double* aip,
double* bi,
double* bip,
ae_state *_state);
double besselj0(double x, ae_state *_state);
double besselj1(double x, ae_state *_state);
double besseljn(ae_int_t n, double x, ae_state *_state);
double bessely0(double x, ae_state *_state);
double bessely1(double x, ae_state *_state);
double besselyn(ae_int_t n, double x, ae_state *_state);
double besseli0(double x, ae_state *_state);
double besseli1(double x, ae_state *_state);
double besselk0(double x, ae_state *_state);
double besselk1(double x, ae_state *_state);
double besselkn(ae_int_t nn, double x, ae_state *_state);
double beta(double a, double b, ae_state *_state);
double incompletebeta(double a, double b, double x, ae_state *_state);
double invincompletebeta(double a, double b, double y, ae_state *_state);
double binomialdistribution(ae_int_t k,
ae_int_t n,
double p,
ae_state *_state);
double binomialcdistribution(ae_int_t k,
ae_int_t n,
double p,
ae_state *_state);
double invbinomialdistribution(ae_int_t k,
ae_int_t n,
double y,
ae_state *_state);
double chebyshevcalculate(ae_int_t r,
ae_int_t n,
double x,
ae_state *_state);
double chebyshevsum(/* Real */ ae_vector* c,
ae_int_t r,
ae_int_t n,
double x,
ae_state *_state);
void chebyshevcoefficients(ae_int_t n,
/* Real */ ae_vector* c,
ae_state *_state);
void fromchebyshev(/* Real */ ae_vector* a,
ae_int_t n,
/* Real */ ae_vector* b,
ae_state *_state);
double chisquaredistribution(double v, double x, ae_state *_state);
double chisquarecdistribution(double v, double x, ae_state *_state);
double invchisquaredistribution(double v, double y, ae_state *_state);
double dawsonintegral(double x, ae_state *_state);
double ellipticintegralk(double m, ae_state *_state);
double ellipticintegralkhighprecision(double m1, ae_state *_state);
double incompleteellipticintegralk(double phi, double m, ae_state *_state);
double ellipticintegrale(double m, ae_state *_state);
double incompleteellipticintegrale(double phi, double m, ae_state *_state);
double exponentialintegralei(double x, ae_state *_state);
double exponentialintegralen(double x, ae_int_t n, ae_state *_state);
double fdistribution(ae_int_t a, ae_int_t b, double x, ae_state *_state);
double fcdistribution(ae_int_t a, ae_int_t b, double x, ae_state *_state);
double invfdistribution(ae_int_t a,
ae_int_t b,
double y,
ae_state *_state);
void fresnelintegral(double x, double* c, double* s, ae_state *_state);
double hermitecalculate(ae_int_t n, double x, ae_state *_state);
double hermitesum(/* Real */ ae_vector* c,
ae_int_t n,
double x,
ae_state *_state);
void hermitecoefficients(ae_int_t n,
/* Real */ ae_vector* c,
ae_state *_state);
void jacobianellipticfunctions(double u,
double m,
double* sn,
double* cn,
double* dn,
double* ph,
ae_state *_state);
double laguerrecalculate(ae_int_t n, double x, ae_state *_state);
double laguerresum(/* Real */ ae_vector* c,
ae_int_t n,
double x,
ae_state *_state);
void laguerrecoefficients(ae_int_t n,
/* Real */ ae_vector* c,
ae_state *_state);
double legendrecalculate(ae_int_t n, double x, ae_state *_state);
double legendresum(/* Real */ ae_vector* c,
ae_int_t n,
double x,
ae_state *_state);
void legendrecoefficients(ae_int_t n,
/* Real */ ae_vector* c,
ae_state *_state);
double poissondistribution(ae_int_t k, double m, ae_state *_state);
double poissoncdistribution(ae_int_t k, double m, ae_state *_state);
double invpoissondistribution(ae_int_t k, double y, ae_state *_state);
double psi(double x, ae_state *_state);
double studenttdistribution(ae_int_t k, double t, ae_state *_state);
double invstudenttdistribution(ae_int_t k, double p, ae_state *_state);
void sinecosineintegrals(double x,
double* si,
double* ci,
ae_state *_state);
void hyperbolicsinecosineintegrals(double x,
double* shi,
double* chi,
ae_state *_state);
}
#endif
| [
"thinking2535@gmail.com"
] | thinking2535@gmail.com |
8a513eef6decb13b8b66c97efe5b51816ca79bda | 0d506fd7fb335cd8b7f6e578951e8a75e8cf1626 | /ch13/exer13_19.cpp | 6d93a179c5aee3f895117fdb7c41bb01259193ae | [] | no_license | imshenzhuo/CppPrimer | 613b7a0a20076db599ad1f0f2187a954f7d79b84 | 87c74c0a36223e86571c2aedd9da428c06b04f4d | refs/heads/master | 2020-07-22T15:02:20.808936 | 2020-02-29T16:08:40 | 2020-02-29T16:08:40 | 207,240,474 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,044 | cpp | /*************************************************************************
> File Name: exer13_18.cpp
> Author: shenzhuo
> Mail: im.shenzhuo@gmail.com
> Created Time: 2019年09月11日 星期三 15时15分54秒
************************************************************************/
#include<iostream>
#include<string>
#include<vector>
using namespace std;
class Employee{
public:
Employee(){
id = ++generateId;
}
Employee(string name): name(name){
id = ++generateId;
}
Employee(const Employee&) = delete;
Employee& operator=(Employee &) = delete;
void print() {
cout << "employee's name is " << name << " id is " << id << endl;
}
private:
static int generateId;
string name;
int id;
};
int Employee::generateId = 0;
int main(){
vector<Employee> evec;
string s("Jack Ma");
Employee e1(s);
// evec.push_back(e1);
Employee e2("Pony");
// evec.push_back(e2);
// Employee e3 = e1;
// copy init
// copy constructor
// evec.push_back(e3);
for(auto &e : evec){
e.print();
}
}
| [
"im.shenzhuo@gmail.com"
] | im.shenzhuo@gmail.com |
28f21308841bdd74a363c0c828cd4f3e662a347a | 386fad5de6b1a6a9e5557947bd1aeffda8821656 | /TIOJ/1040.cpp | e9a672c9155ee4dd6773426982fc1ea947c71162 | [] | no_license | xxyyzz/Competitive-Programming_Solutions | 6c1f06232ab63f85d913bdd27a90eff892bfe18d | cca393f4330e784eb0f9edb44df290adc105ce3b | refs/heads/master | 2021-06-02T13:33:48.530485 | 2016-09-25T14:15:37 | 2016-09-25T14:15:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 613 | cpp | #include <iostream>
using namespace std;
int main(){
int t, son, mom, c;
scanf("%d", &t);
while( t-- )
{
c=0;
scanf("%d%d", &son, &mom);
printf("%d/%d = ", son, mom);
while(1)
{
printf("%d", son/mom);
if( son%mom==0 )
break;
else
{
son%=mom;
printf("+1/");
swap(son, mom);
if( son%mom!=0 ){ putchar('{'); c++; }
}
}
while( c-- )
putchar('}');
putchar('\n');
}
return 0;
} | [
"lnishan.cs01@g2.nctu.edu.tw"
] | lnishan.cs01@g2.nctu.edu.tw |
55a5e57729ca9a1212535f9cd26d1bf74cf540c4 | d134ae730638c9f26155017cf83b27399f69e4a5 | /src/solvers/elliptic/SEMFEMSolver.cpp | cb571c5942a7b683e87a1c951f7f256e1e325498 | [
"BSD-3-Clause"
] | permissive | Nek5000/nekRS | 24e485ba046030fd06755acae44d63ecc1188333 | 4f87e0e2ec0492e2a3edf27791252d6886814d00 | refs/heads/master | 2023-08-26T21:41:41.026390 | 2023-05-30T07:36:13 | 2023-05-30T07:36:13 | 200,469,913 | 220 | 72 | NOASSERTION | 2023-09-08T17:18:24 | 2019-08-04T08:45:08 | C++ | UTF-8 | C++ | false | false | 7,653 | cpp | #include "nrssys.hpp"
#include "platform.hpp"
#include "elliptic.h"
#include "SEMFEMSolver.hpp"
static occa::kernel gatherKernel;
static occa::kernel scatterKernel;
SEMFEMSolver_t::SEMFEMSolver_t(elliptic_t* elliptic_)
{
MPI_Barrier(platform->comm.mpiComm);
double tStart = MPI_Wtime();
if(platform->comm.mpiRank == 0)
printf("setup SEMFEM solver ... \n"); fflush(stdout);
elliptic = elliptic_;
const int verbose = (platform->options.compareArgs("VERBOSE","TRUE")) ? 1: 0;
const int useFP32 = elliptic->options.compareArgs("COARSE SOLVER PRECISION", "FP32");
const bool useDevice = elliptic->options.compareArgs("COARSE SOLVER LOCATION", "DEVICE");
if(!gatherKernel.isInitialized()) gatherKernel = platform->kernels.get("gather");
if(!scatterKernel.isInitialized()) scatterKernel = platform->kernels.get("scatter");
mesh_t* mesh = elliptic->mesh;
double* mask = (double*) malloc(mesh->Np*mesh->Nelements*sizeof(double));
for(int i = 0; i < mesh->Np*mesh->Nelements; ++i) mask[i] = 1.0;
if(elliptic->Nmasked > 0){
dlong* maskIds = (dlong*) calloc(elliptic->Nmasked, sizeof(dlong));
elliptic->o_maskIds.copyTo(maskIds, elliptic->Nmasked * sizeof(dlong));
for (dlong i = 0; i < elliptic->Nmasked; i++) mask[maskIds[i]] = 0.;
free(maskIds);
}
// here we assume lambda0 is constant (in space and time)
// use first entry of o_lambda as representative value
pfloat lambda0;
elliptic->o_lambda0.copyTo(&lambda0, sizeof(pfloat));
auto hypreIJ = new hypreWrapper::IJ_t();
matrix_t* matrix = build(
mesh->Nq,
mesh->Nelements,
mesh->o_x,
mesh->o_y,
mesh->o_z,
mask,
lambda0,
*hypreIJ,
platform->comm.mpiComm,
mesh->globalIds
);
free(mask);
const dlong numRows = matrix->rowEnd - matrix->rowStart + 1;
numRowsSEMFEM = numRows;
o_dofMap = platform->device.malloc(numRows * sizeof(long long), matrix->dofMap);
o_SEMFEMBuffer1 = platform->device.malloc(numRows * sizeof(pfloat));
o_SEMFEMBuffer2 = platform->device.malloc(numRows * sizeof(pfloat));
if(!useDevice){
SEMFEMBuffer1_h_d = (pfloat*) calloc(numRows, sizeof(pfloat));
SEMFEMBuffer2_h_d = (pfloat*) calloc(numRows, sizeof(pfloat));
}
if(elliptic->options.compareArgs("COARSE SOLVER", "BOOMERAMG")){
double settings[hypreWrapper::NPARAM+1];
settings[0] = 1; /* custom settings */
settings[1] = 8; /* coarsening */
settings[2] = 6; /* interpolation */
settings[3] = 1; /* number of cycles */
settings[4] = 18; /* smoother for crs level */
settings[5] = 3; /* number of coarse sweeps */
settings[6] = 18; /* smoother */
settings[7] = 1; /* number of sweeps */
settings[8] = 0.25; /* strong threshold */
settings[9] = 0.05; /* non galerkin tol */
settings[10] = 0; /* aggressive coarsening levels */
settings[11] = 1; /* chebyRelaxOrder */
if(elliptic->options.compareArgs("MULTIGRID SEMFEM", "TRUE")) {
settings[4] = 16;
settings[6] = 16;
}
platform->options.getArgs("BOOMERAMG COARSEN TYPE", settings[1]);
platform->options.getArgs("BOOMERAMG INTERPOLATION TYPE", settings[2]);
platform->options.getArgs("BOOMERAMG COARSE SMOOTHER TYPE", settings[4]);
platform->options.getArgs("BOOMERAMG SMOOTHER TYPE", settings[6]);
platform->options.getArgs("BOOMERAMG SMOOTHER SWEEPS", settings[7]);
platform->options.getArgs("BOOMERAMG ITERATIONS", settings[3]);
platform->options.getArgs("BOOMERAMG STRONG THRESHOLD", settings[8]);
platform->options.getArgs("BOOMERAMG NONGALERKIN TOLERANCE" , settings[9]);
platform->options.getArgs("BOOMERAMG AGGRESSIVE COARSENING LEVELS" , settings[10]);
platform->options.getArgs("BOOMERAMG CHEBYSHEV RELAX ORDER" , settings[11]);
if(platform->device.mode() != "Serial" && useDevice) {
boomerAMG = new hypreWrapperDevice::boomerAMG_t(
numRows,
matrix->nnz,
matrix->Ai,
matrix->Aj,
matrix->Av,
(int) elliptic->allNeumann,
platform->comm.mpiComm,
platform->device.occaDevice(),
useFP32,
settings,
verbose);
} else {
boomerAMG = new hypreWrapper::boomerAMG_t(
numRows,
matrix->nnz,
matrix->Ai,
matrix->Aj,
matrix->Av,
(int) elliptic->allNeumann,
platform->comm.mpiComm,
1, /* Nthreads */
useFP32,
settings,
verbose
);
}
}
else if(elliptic->options.compareArgs("COARSE SOLVER", "AMGX")){
nrsCheck(platform->device.mode() != "CUDA", platform->comm.mpiComm, EXIT_FAILURE,
"%s\n", "AmgX only supports CUDA!");
std::string configFile;
elliptic->options.getArgs("AMGX CONFIG FILE", configFile);
char *cfg = NULL;
if(configFile.size()) cfg = (char*) configFile.c_str();
AMGX = new AMGX_t(
numRows,
matrix->nnz,
matrix->Ai,
matrix->Aj,
matrix->Av,
(int) elliptic->allNeumann,
platform->comm.mpiComm,
platform->device.id(),
useFP32,
std::stoi(getenv("NEKRS_GPU_MPI")),
cfg);
}
else {
std::string amgSolver;
elliptic->options.getArgs("COARSE SOLVER", amgSolver);
nrsAbort(platform->comm.mpiComm, EXIT_FAILURE,
"COARSE SOLVER %s is not supported!\n", amgSolver.c_str());
}
free(matrix);
if(platform->comm.mpiRank == 0) printf("done (%gs)\n", MPI_Wtime() - tStart); fflush(stdout);
}
SEMFEMSolver_t::~SEMFEMSolver_t()
{
const auto useDevice = elliptic->options.compareArgs("COARSE SOLVER LOCATION", "DEVICE");
if(boomerAMG) {
if(useDevice)
delete (hypreWrapperDevice::boomerAMG_t*) this->boomerAMG;
else
delete (hypreWrapper::boomerAMG_t*) this->boomerAMG;
}
if(AMGX) delete AMGX;
o_dofMap.free();
o_SEMFEMBuffer1.free();
o_SEMFEMBuffer2.free();
}
void SEMFEMSolver_t::run(occa::memory& o_r, occa::memory& o_z)
{
mesh_t* mesh = elliptic->mesh;
const bool useDevice = elliptic->options.compareArgs("COARSE SOLVER LOCATION", "DEVICE");
occa::memory& o_bufr = o_SEMFEMBuffer1;
occa::memory& o_bufz = o_SEMFEMBuffer2;
// E->T
gatherKernel(
numRowsSEMFEM,
o_dofMap,
o_r,
o_bufr
);
platform->linAlg->pfill(elliptic->Nfields * elliptic->fieldOffset, 0.0, o_z);
if(elliptic->options.compareArgs("COARSE SOLVER", "BOOMERAMG")){
if(!useDevice)
{
o_bufr.copyTo(SEMFEMBuffer1_h_d, numRowsSEMFEM * sizeof(pfloat));
auto boomerAMG = (hypreWrapper::boomerAMG_t*) this->boomerAMG;
boomerAMG->solve(SEMFEMBuffer1_h_d, SEMFEMBuffer2_h_d);
o_bufz.copyFrom(SEMFEMBuffer2_h_d, numRowsSEMFEM * sizeof(pfloat));
} else {
auto boomerAMG = (hypreWrapperDevice::boomerAMG_t*) this->boomerAMG;
boomerAMG->solve(o_bufr, o_bufz);
}
} else if(elliptic->options.compareArgs("COARSE SOLVER", "AMGX") && useDevice){
AMGX->solve(o_bufr.ptr(), o_bufz.ptr());
} else {
nrsAbort(platform->comm.mpiComm, EXIT_FAILURE,
"%s\n", "Trying to call an unknown SEMFEM solver!");
}
// T->E
scatterKernel(
numRowsSEMFEM,
o_dofMap,
o_bufz,
o_z
);
oogs::startFinish(o_z, 1, 0, ogsPfloat, ogsAdd, elliptic->oogs);
}
| [
"stgeke@gmail.com"
] | stgeke@gmail.com |
67664dc63077d66d99e601a99672b4111247ad05 | d98c67c58c32b4da081406ec77de03605a5a6476 | /Arrays.h | d8fd287ccab1a0fd15ba5286f86545808075b5df | [] | no_license | aaaastark/CPP-Programming-Fundamental | b2dd6675a945497473e79f24f384216aa39dfa82 | 2d97394ea4bc1f707619c19bc3b9ebce97253e4e | refs/heads/master | 2023-01-12T12:32:33.518610 | 2020-11-15T08:02:25 | 2020-11-15T08:02:25 | 312,674,683 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,674 | h | #include <iostream>
#include <string>
using namespace std;
void objects_1();
void objects_2();
void objects_3(int array[]);
void objects_4();
void arrays(){
/////////////////////////////// START /////////////////////////////////////////
cout<<"\t\t\t\tNumber\n";
objects_1();
/////////////////////////////// END /////////////////////////////////////////
cout<<endl<<endl;
/////////////////////////////// START /////////////////////////////////////////
cout<<"\t\t\t\tName\n";
objects_2();
/////////////////////////////// END /////////////////////////////////////////
cout<<endl<<endl;
/////////////////////////////// START /////////////////////////////////////////
cout<<"\t\t\t\tArray Integer\n";
int array[5]={10,20,30,40,50};
objects_3(array);
/////////////////////////////// END /////////////////////////////////////////
cout<<endl<<endl;
/////////////////////////////// START /////////////////////////////////////////
cout<<"\t\t\t\tArray String\n";
objects_4();
/////////////////////////////// END /////////////////////////////////////////
}
void objects_1(){
int number[10]={1,2,3,4,5,6,7,8,9,10};
for(int i=0;i<10;i++){
cout<<i<<" : number = "<<number[i]<<endl;
}
}
void objects_2(){
string name[3]={"Muhammad","Allah","Rakha"};
for(int i=0;i<3;i++){
cout<<i<<" : name = "<<name[i]<<endl;
}
}
void objects_3(int array[]){
for(int i=0;i<5;i++){
cout<<i<<" : array integer = "<<array[i]<<endl;
}
}
void objects_4(){
string array[3];
string name;
for(int i=0;i<=2;i++){
cout<<"Enter a name : ";
cin>>name;
array[i]=name;
}
for(int i=0;i<=2;i++){
cout<<i<<" : array string = "<<array[i]<<endl;
}
}
| [
"hassan@name.com"
] | hassan@name.com |
d2cfa947fd9fed9c7fdc3dba2846f80e32fcce1d | a37df219b4a30e684db85b00dd76d4c36140f3c2 | /1.7.1/rox/rox.cpp | 40febebd3045eee129d7f5b4e54ef23d056bd8f8 | [] | no_license | BlackMoon/bm-net | 0f79278f8709cd5d0738a6c3a27369726b0bb793 | eb6414bc412a8cfc5c24622977e7fa7203618269 | refs/heads/master | 2020-12-25T20:20:44.843483 | 2011-11-29T10:33:17 | 2011-11-29T10:33:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 44,009 | cpp | // rox.cpp
#pragma comment(lib, "../ext/release/ext")
#include "../dx/obj.h"
#include "../ext/ext.h"
#define WIN32_LEAN_AND_MEAN
#define STOCK_CONST 4
struct mperiod
{
char mon[4];
float pmin, pmax, smin, smax;
ULONG destp, dests;
USHORT date, month, year;
inline void fillDate()
{
if (strcmp(mon, "Jan") == 0) month = 1;
else if (strcmp(mon, "Feb") == 0) month = 2;
else if (strcmp(mon, "Mar") == 0) month = 3;
else if (strcmp(mon, "Apr") == 0) month = 4;
else if (strcmp(mon, "May") == 0) month = 5;
else if (strcmp(mon, "Jun") == 0) month = 6;
else if (strcmp(mon, "Jul") == 0) month = 7;
else if (strcmp(mon, "Aug") == 0) month = 8;
else if (strcmp(mon, "Sep") == 0) month = 9;
else if (strcmp(mon, "Oct") == 0) month = 10;
else if (strcmp(mon, "Nov") == 0) month = 11;
else if (strcmp(mon, "Dec") == 0) month = 12;
}
};
struct param
{
char filename[MAX_PATH], shortname[16];
float min, max;
inline param()
{
min = 0.0f;
max = 1.0f;
}
inline void makeShort()
{
memset(shortname, 0, 16);
getName(shortname, filename);
}
};
struct wline
{
UINT x, y;
float z0, z1;
};
struct dens
{
float oil, watr, gas, kper;
};
typedef vector<float> floatvector;
typedef vector<floatvector> floatmatrix;
bool dporo = 0;
char din[MAX_PATH], dout[MAX_PATH], symb;
float zmin, zmax;
SPACE space;
bool paramConvert(param* ppm)
{
printf("[%s]\n", ppm->shortname);
char header[16],
file[MAX_PATH];
memset(file, 0, MAX_PATH);
strcpy(file, din);
strcat(file, ppm->shortname);
FILE *istream = fopen(file, "r"),
*ostream;
if (!istream) return 0;
float fvalue0;
floatvector fvector;
floatmatrix fmatrix;
int i, j, k;
fscanf(istream, "%s\n", header);
if (strcmp(header, "COOR") == 0)
{
// read xmin
UINT x, y;
// first line
fscanf(istream, "%u %u %f", &space.xMin, &space.yMax, &fvalue0);
zmin = zmax = -fvalue0;
fscanf(istream, "%u %u %f", &x, &y, &fvalue0);
if (-fvalue0 < zmin) zmin = -fvalue0;
if (-fvalue0 > zmax) zmax = -fvalue0;
for (i = 1; i < space.square() - 1; i++)
{
fscanf(istream, "%u %u %f", &x, &y, &fvalue0);
if (-fvalue0 < zmin) zmin = -fvalue0;
if (-fvalue0 > zmax) zmax = -fvalue0;
fscanf(istream, "%u %u %f", &x, &y, &fvalue0);
if (-fvalue0 < zmin) zmin = -fvalue0;
if (-fvalue0 > zmax) zmax = -fvalue0;
}
// last line
fscanf(istream, "%u %u %f", &space.xMax, &space.yMin, &fvalue0);
space.xStep = space.xLen() / space.nX + 1;
space.yStep = space.yLen() / space.nY + 1;
if (-fvalue0 < zmin) zmin = -fvalue0;
if (-fvalue0 > zmax) zmax = -fvalue0;
fscanf(istream, "%u %u %f", &x, &y, &fvalue0);
if (-fvalue0 < zmin) zmin = -fvalue0;
if (-fvalue0 > zmax) zmax = -fvalue0;
printf("\tSTEP %u %u\n", space.xStep, space.yStep);
printf("\tX %u %u\n", space.xMin, space.xMax);
printf("\tY %u %u\n", space.yMin, space.yMax);
printf("\tZ %.2f %.2f\n", zmin, zmax);
strcpy(file, dout);
strcat(file, "grid.txt");
ostream = fopen(file, "w");
if (!ostream) return 0;
fprintf(ostream, "SIZE %u %u %u\n", space.nX, space.nY, space.nZ);
fprintf(ostream, "STEP %u %u\n", space.xStep, space.yStep);
fprintf(ostream, "X %u %u\n", space.xMin, space.xMax);
fprintf(ostream, "Y %u %u\n", space.yMin, space.yMax);
fprintf(ostream, "Z %.2f %.2f\n", zmin, zmax);
fclose(ostream);
}
else if (strcmp(header, "ZCORN") == 0)
{
strcpy(file, dout);
strcat(file, ppm->shortname);
ostream = fopen(file, "w");
if (!ostream) return 0;
fprintf(ostream, "%.3f %.3f\n", zmin, zmax);
float fvalue1;
for (i = 0; i < space.nZ; i++)
{
printf("\tlayer%u", i + 1);
// roof
for (j = 0; j < ((space.nY - 1) << 1); j++)
{
for (k = 0; k < space.nX - 1; k++)
{
fscanf(istream, "%f %f", &fvalue0, &fvalue1);
fvector.push_back(-fvalue0);
}
fvector.push_back(-fvalue1); // last value
fmatrix.push_back(fvector);
fvector.clear();
}
for (--j; j > 0; j -= 2)
{
fvector = fmatrix[j];
for (k = 0; k < space.nX; k++)
{
fvalue0 = fvector[k];
fprintf(ostream, "%.3f ", fvalue0);
}
fprintf(ostream, "\n");
}
// last row
fvector = fmatrix[0];
for (k = 0; k < space.nX; k++)
{
fvalue0 = fvector[k];
fprintf(ostream, "%.3f ", fvalue0);
}
fprintf(ostream, "\n");
fmatrix.clear();
fvector.clear();
// sole
for (j = 0; j < ((space.nY - 1) << 1); j++)
{
for (k = 0; k < space.nX - 1; k++)
{
fscanf(istream, "%f %f", &fvalue0, &fvalue1);
fvector.push_back(-fvalue0);
}
fvector.push_back(-fvalue1); // last value
fmatrix.push_back(fvector);
fvector.clear();
}
for (--j; j > 0; j -= 2)
{
fvector = fmatrix[j];
for (k = 0; k < space.nX; k++)
{
fvalue0 = fvector[k];
fprintf(ostream, "%.3f ", fvalue0);
}
fprintf(ostream, "\n");
}
// last row
fvector = fmatrix[0];
for (k = 0; k < space.nX; k++)
{
fvalue0 = fvector[k];
fprintf(ostream, "%.3f ", fvalue0);
}
fprintf(ostream, "\n");
fmatrix.clear();
fvector.clear();
printf("\t\tok\n");
}
fclose(ostream);
}
else if (strcmp(header, "K_X") == 0)
{
if (symb != 'a')
{
printf("convert X_Permeability (y/n/a)?");
cin >> symb;
}
if ((symb == 0x61) || (symb == 0x79))
{
strcpy(file, dout);
strcat(file, ppm->shortname);
ostream = fopen(file, "w");
if (!ostream) return 0;
fprintf(ostream, "%.3f %.3f\n", ppm->min, ppm->max);
fscanf(istream, "VARI\n");
for (i = 0; i < space.nZ; i++)
{
printf("\tlayer%u", i + 1);
for (j = 0; j < space.nY - 1; j++)
{
for (k = 0; k < space.nX - 1; k++)
{
fscanf(istream, "%f", &fvalue0);
fvector.push_back(fvalue0);
}
fvector.push_back(fvalue0); // last value
fmatrix.push_back(fvector);
fvector.clear();
}
for (--j; j >= 0; j--)
{
fvector = fmatrix[j];
for (k = 0; k < space.nX; k++)
{
fvalue0 = fvector[k];
if (fvalue0 < ppm->min) fvalue0 = ppm->min;
if (fvalue0 > ppm->max) fvalue0 = ppm->max;
fprintf(ostream, "%.3f ", fvalue0);
}
fprintf(ostream, "\n");
}
// last row
fvector = fmatrix[0];
for (k = 0; k < space.nX; k++)
{
fvalue0 = fvector[k];
if (fvalue0 < ppm->min) fvalue0 = ppm->min;
if (fvalue0 > ppm->max) fvalue0 = ppm->max;
fprintf(ostream, "%.3f ", fvalue0);
}
fprintf(ostream, "\n");
fmatrix.clear();
fvector.clear();
printf("\t\tok\n");
}
fclose(ostream);
}
}
else if (strcmp(header, "K_Z") == 0)
{
if (symb != 'a')
{
printf("convert Z_Permeability (y/n/a)?");
cin >> symb;
}
if ((symb == 0x61) || (symb == 0x79))
{
strcpy(file, dout);
strcat(file, ppm->shortname);
ostream = fopen(file, "w");
if (!ostream) return 0;
fprintf(ostream, "%.3f %.3f\n", ppm->min, ppm->max);
fscanf(istream, "VARI\n");
for (i = 0; i < space.nZ; i++)
{
printf("\tlayer%u", i + 1);
for (j = 0; j < space.nY - 1; j++)
{
for (k = 0; k < space.nX - 1; k++)
{
fscanf(istream, "%f", &fvalue0);
fvector.push_back(fvalue0);
}
fvector.push_back(fvalue0); // last value
fmatrix.push_back(fvector);
fvector.clear();
}
for (--j; j >= 0; j--)
{
fvector = fmatrix[j];
for (k = 0; k < space.nX; k++)
{
fvalue0 = fvector[k];
if (fvalue0 < ppm->min) fvalue0 = ppm->min;
if (fvalue0 > ppm->max) fvalue0 = ppm->max;
fprintf(ostream, "%.3f ", fvalue0);
}
fprintf(ostream, "\n");
}
// last row
fvector = fmatrix[0];
for (k = 0; k < space.nX; k++)
{
fvalue0 = fvector[k];
if (fvalue0 < ppm->min) fvalue0 = ppm->min;
if (fvalue0 > ppm->max) fvalue0 = ppm->max;
fprintf(ostream, "%.3f ", fvalue0);
}
fprintf(ostream, "\n");
fmatrix.clear();
fvector.clear();
printf("\t\tok\n");
}
fclose(ostream);
}
}
else if (strcmp(header, "PORO") == 0)
{
if (symb != 'a')
{
printf("convert Porosity (y/n/a)?");
cin >> symb;
}
if ((symb == 0x61) || (symb == 0x79))
{
strcpy(file, dout);
strcat(file, ppm->shortname);
ostream = fopen(file, "w");
if (!ostream) return 0;
fprintf(ostream, "%.3f %.3f\n", ppm->min, ppm->max);
fscanf(istream,"VARI\n");
for (i = 0; i < space.nZ; i++)
{
printf("\tlayer%u", i + 1);
for (j = 0; j < space.nY - 1; j++)
{
for (k = 0; k < space.nX - 1; k++)
{
fscanf(istream, "%f", &fvalue0);
fvector.push_back(fvalue0);
}
fvector.push_back(fvalue0); // last value
fmatrix.push_back(fvector);
fvector.clear();
}
for (--j; j >= 0; j--)
{
fvector = fmatrix[j];
for (k = 0; k < space.nX; k++)
{
fvalue0 = fvector[k];
if (fvalue0 < ppm->min) fvalue0 = ppm->min;
if (fvalue0 > ppm->max) fvalue0 = ppm->max;
fprintf(ostream, "%.3f ", fvalue0);
}
fprintf(ostream, "\n");
}
// last row
fvector = fmatrix[0];
for (k = 0; k < space.nX; k++)
{
fvalue0 = fvector[k];
if (fvalue0 < ppm->min) fvalue0 = ppm->min;
if (fvalue0 > ppm->max) fvalue0 = ppm->max;
fprintf(ostream, "%.3f ", fvalue0);
}
fprintf(ostream, "\n");
fmatrix.clear();
fvector.clear();
printf("\t\tok\n");
}
fclose(ostream);
}
}
else if (strcmp(header, "NTOG") == 0)
{
if (symb != 'a')
{
printf("convert NTG (y/n/a)?");
cin >> symb;
}
if ((symb == 0x61) || (symb == 0x79))
{
strcpy(file, dout);
strcat(file, ppm->shortname);
ostream = fopen(file, "w");
if (!ostream) return 0;
fprintf(ostream, "%.3f %.3f\n", ppm->min, ppm->max);
fscanf(istream, "VARI\n");
for (i = 0; i < space.nZ; i++)
{
printf("\tlayer%u", i + 1);
for (j = 0; j < space.nY - 1; j++)
{
for (k = 0; k < space.nX - 1; k++)
{
fscanf(istream, "%f", &fvalue0);
fvector.push_back(fvalue0);
}
fvector.push_back(fvalue0); // last value
fmatrix.push_back(fvector);
fvector.clear();
}
for (--j; j >= 0; j--)
{
fvector = fmatrix[j];
for (k = 0; k < space.nX; k++)
{
fvalue0 = fvector[k];
if (fvalue0 < ppm->min) fvalue0 = ppm->min;
if (fvalue0 > ppm->max) fvalue0 = ppm->max;
fprintf(ostream, "%.3f ", fvalue0);
}
fprintf(ostream, "\n");
}
// last row
fvector = fmatrix[0];
for (k = 0; k < space.nX; k++)
{
fvalue0 = fvector[k];
if (fvalue0 < ppm->min) fvalue0 = ppm->min;
if (fvalue0 > ppm->max) fvalue0 = ppm->max;
fprintf(ostream, "%.3f ", fvalue0);
}
fprintf(ostream, "\n");
fmatrix.clear();
fvector.clear();
printf("\t\tok\n");
}
fclose(ostream);
}
}
else if (strcmp(header, "SWAT") == 0)
{
if (symb != 'a')
{
printf("convert SWAT (y/n/a)?");
cin >> symb;
}
if ((symb == 0x61) || (symb == 0x79))
{
strcpy(file, dout);
strcat(file, ppm->shortname);
ostream = fopen(file, "w");
if (!ostream) return 0;
fprintf(ostream, " \n"); // place for min & max
fscanf(istream, "VARI\n");
for (i = 0; i < space.nZ; i++)
{
printf("\tlayer%u", i + 1);
for (j = 0; j < space.nY - 1; j++)
{
for (k = 0; k < space.nX - 1; k++)
{
fscanf(istream, "%f", &fvalue0);
fvector.push_back(1 - fvalue0);
}
fvector.push_back(1 - fvalue0); // last value
fmatrix.push_back(fvector);
fvector.clear();
}
for (--j; j >= 0; j--)
{
fvector = fmatrix[j];
for (k = 0; k < space.nX; k++)
{
fvalue0 = fvector[k];
if (fvalue0 < ppm->min) ppm->min = fvalue0;
if (fvalue0 > ppm->max) ppm->max = fvalue0;
fprintf(ostream, "%.3f ", fvalue0);
}
fprintf(ostream, "\n");
}
// last row
fvector = fmatrix[0];
for (k = 0; k < space.nX; k++)
{
fvalue0 = fvector[k];
if (fvalue0 < ppm->min) ppm->min = fvalue0;
if (fvalue0 > ppm->max) ppm->max = fvalue0;
fprintf(ostream, "%.3f ", fvalue0);
}
fprintf(ostream, "\n");
fmatrix.clear();
fvector.clear();
printf("\t\tok\n");
}
fseek(ostream, 0, SEEK_SET);
fprintf(ostream, "%.3f %.3f", ppm->min, ppm->max);
fclose(ostream);
}
}
fclose(istream);
printf("\n");
return 1;
}
bool outConvert(const char* filename, const HANDLE hfile)
{
bool bres = 1;
HANDLE hmap = CreateFileMapping(hfile, 0, PAGE_READONLY, 0, 0, "fileMapping");
LONG rest, size = GetFileSize(hfile, 0);
void* pbase = MapViewOfFile(hmap, FILE_MAP_READ, 0, 0, 0);
char buf[USHRT_MAX];
char* pdest;
float fvalue, pmin, pmax, smin, smax;
mperiod mp;
vector<mperiod> mperiods0;
int i = 0;
for (i; i < size / USHRT_MAX; i++)
{
memset(buf, 0, USHRT_MAX);
memcpy(buf, (LPTSTR)pbase + i * USHRT_MAX, USHRT_MAX);
if (pdest = strstr(buf, "Map of PRES"))
{
memset(&mp, 0, 36);
mp.destp = (long)(pdest - buf) + i * USHRT_MAX;
if (sscanf(pdest, "Map of PRES at %u %s %u\n", &mp.date, mp.mon, &mp.year) == 0)
sscanf(pdest, "Map of PRESSURE at %u %s %u\n", &mp.date, mp.mon, &mp.year);
mp.fillDate();
pdest -= 375;
sscanf(pdest, "Pressure %f %f %f barsa\n", &mp.pmin, &mp.pmax, &fvalue);
pdest += 51;
sscanf(pdest, "Soil %f %f %f frac\n", &mp.smin, &mp.smax, &fvalue);
}
if (pdest = strstr(buf, "Map of soil"))
{
mp.dests = (long)(pdest - buf) + i * USHRT_MAX;
mperiods0.push_back(mp);
}
}
rest = size - i * USHRT_MAX;
memset(buf, 0, USHRT_MAX);
memcpy(buf, (LPTSTR)pbase + i * USHRT_MAX, rest);
if (!(pdest = strstr(buf, "Run finished successfully")))
mperiods0.erase(&mperiods0.back());
UnmapViewOfFile(pbase);
CloseHandle(hmap);
CloseHandle(hfile);
size = (long)mperiods0.size();
if (size != 0)
{
mp = mperiods0[0];
pmin = mp.pmin;
pmax = mp.pmax;
smin = mp.smin;
smax = mp.smax;
printf("\t[1]\t %u %s %u\n", mp.date, mp.mon, mp.year);
for (i = 1; i < size; i++)
{
mp = mperiods0[i];
if (pmin > mp.pmin) pmin = mp.pmin;
if (pmax < mp.pmax) pmax = mp.pmax;
if (smin > mp.smin) smin = mp.smin;
if (smax < mp.smax) smax = mp.smax;
printf("\t[%u]\t %u %s %u\n", i + 1, mp.date, mp.mon, mp.year);
}
int index = 0;
vector<int> indices;
printf("\nchoose dates (0 - end):\n");
do
{
printf("\t");
scanf("%d", &index);
if ((index < 0) || (index > (int)mperiods0.size()))
{
printf("error\n");
continue;
}
indices.push_back(index);
}
while (index != 0);
indices.erase(&indices.back());
// sort
sort(indices.begin(), indices.end());
vector<mperiod> mperiods1;
if (indices.size() == 0) mperiods1.swap(mperiods0);
else
{
index = indices[0];
mp = mperiods0[--index];
mperiods1.push_back(mp);
pmin = mp.pmin;
pmax = mp.pmax;
smin = mp.smin;
smax = mp.smax;
for (i = 1; i < (int)indices.size(); i++)
{
index = indices[i];
mp = mperiods0[--index];
mperiods1.push_back(mp);
if (pmin > mp.pmin) pmin = mp.pmin;
if (pmax < mp.pmax) pmax = mp.pmax;
if (smin > mp.smin) smin = mp.smin;
if (smax < mp.smax) smax = mp.smax;
}
}
indices.clear();
mperiods0.clear();
char* pfile = new char[MAX_PATH];
FILE *istream = fopen(filename, "r"),
*pstream, *rstream, *sstream; // actn;
// input stream
if (!istream) return 0;
memset(pfile, 0, MAX_PATH);
strcpy(pfile, dout);
strcat(pfile, "p.txt");
// pres stream
pstream = fopen(pfile, "w");
if (!pstream) return 0;
fprintf(pstream, "%.3f %.3f\n", pmin, pmax);
memset(pfile, 0, MAX_PATH);
strcpy(pfile, dout);
strcat(pfile, "actn.bin");
// actn stream
size = (space.nX - 1) * (space.nY - 1) * space.nZ;
bool* pbarr = new bool[size]; // active cells
memset(pbarr, 0, size);
rstream = fopen(pfile, "wb");
if (!rstream) return 0;
memset(pfile, 0, MAX_PATH);
strcpy(pfile, dout);
strcat(pfile, "soil.txt");
// soil stream
sstream = fopen(pfile, "w");
if (!sstream) return 0;
fprintf(sstream, "%.3f %.3f\n", smin, smax);
floatvector fvector;
floatmatrix fmatrix;
int ix, jy, kz, n, mpsize, value;
mp = mperiods1[0]; // first reading inactive cells
i = n = 0;
mpsize = (int)mperiods1.size();
if (dporo) // double poro
{
FILE *sstreamD;
memset(pfile, 0, MAX_PATH);
strcpy(pfile, dout);
strcat(pfile, "soild.txt");
// dporo soil stream
sstreamD = fopen(pfile, "w");
delete pfile;
if (!sstreamD) return 0;
fprintf(sstreamD, "%.3f %.3f\n", smin, smax);
// Map of PRESSURE
printf("\nMap of PRESSURE at %u %s %u:\n", mp.date, mp.mon, mp.year);
fprintf(pstream, "%.3f %.3f\n", mp.pmin, mp.pmax);
fseek(istream, mp.destp + 138, SEEK_SET);
for (kz = 0; kz < space.nZ; kz++)
{
printf("\tlayer%u", kz + 1);
fscanf(istream, "\nLayer iz=%u\nix= :", &value);
// read data
if (fscanf(istream, "All values are %f", &fvalue) > 0)
{
for (jy = 0; jy < space.nY - 1; jy++)
{
for (ix = 0; ix < space.nX - 1; ix++)
{
fvector.push_back(fvalue);
}
fvector.push_back(fvalue);
fmatrix.push_back(fvector);
fvector.clear();
}
}
else
{
for (ix = 0; ix < space.nX - 1; ix++)
fscanf(istream, "%u", &value);
for (jy = 0; jy < space.nY - 1; jy++)
{
fscanf(istream, "\nRow iy=%u:", &value);
for (ix = 0; ix < space.nX - 1; ix++)
{
fscanf(istream, "%f", &fvalue);
fvector.push_back(fvalue);
}
// last value
fvector.push_back(fvalue);
fmatrix.push_back(fvector);
fvector.clear();
}
}
// save data
for (--jy; jy >= 0; jy--)
{
fvector = fmatrix[jy];
for (ix = 0; ix < space.nX - 1; ix++)
{
fvalue = fvector[ix];
// inactive cells
if (fvalue >= mp.pmin - 1e-2)
{
pbarr[i] = 1;
n++;
}
i++;
fprintf(pstream, "%.3f\t", fvalue);
}
fprintf(pstream, "%.3f\t", fvalue);
fprintf(pstream, "\n");
}
// last row
fvector = fmatrix[0];
for (ix = 0; ix < space.nX; ix++)
{
fvalue = fvector[ix];
fprintf(pstream, "%.3f\t", fvalue);
}
fprintf(pstream, "\n");
fmatrix.clear();
fvector.clear();
printf("\t\tok\n");
}
fwrite(pbarr, 1, size, rstream);
SAFE_DELETE_ARRAY(pbarr);
fclose(rstream);
// Map of soil
printf("\nMap of soil at %u %s %u:\n", mp.date, mp.mon, mp.year);
fprintf(sstream, "%.3f %.3f\n", mp.smin, mp.smax);
fseek(istream, mp.dests + 134, SEEK_SET);
for (kz = 0; kz < space.nZ; kz++)
{
fscanf(istream, "\nLayer iz=%u\nix= :", &value);
// read data
if (fscanf(istream, "All values are %f", &fvalue) > 0)
{
for (jy = 0; jy < space.nY - 1; jy++)
{
for (ix = 0; ix < space.nX - 1; ix++)
{
fvector.push_back(fvalue);
}
fvector.push_back(fvalue);
fmatrix.push_back(fvector);
fvector.clear();
}
}
else
{
for (ix = 0; ix < space.nX - 1; ix++)
fscanf(istream, "%u", &value);
for (jy = 0; jy < space.nY - 1; jy++)
{
fscanf(istream, "\nRow iy=%u:", &value);
for (ix = 0; ix < space.nX - 1; ix++)
{
fscanf(istream, "%f", &fvalue);
fvector.push_back(fvalue);
}
// last value
fvector.push_back(fvalue);
fmatrix.push_back(fvector);
fvector.clear();
}
}
// save data
for (--jy; jy >= 0; jy--)
{
fvector = fmatrix[jy];
for (ix = 0; ix < space.nX; ix++)
{
fvalue = fvector[ix];
fprintf(sstream, "%.3f\t", fvalue);
}
fprintf(sstream, "\n");
}
// last row
fvector = fmatrix[0];
for (ix = 0; ix < space.nX; ix++)
{
fvalue = fvector[ix];
fprintf(sstream, "%.3f\t", fvalue);
}
fprintf(sstream, "\n");
fmatrix.clear();
fvector.clear();
}
// dporo soil layers
fprintf(sstreamD, "%.3f %.3f\n", mp.smin, mp.smax);
for (kz = 0; kz < space.nZ; kz++)
{
printf("\tlayer%u", kz + 1);
fscanf(istream, "\nLayer iz=%u\nix= :", &value);
// read data
if (fscanf(istream, "All values are %f", &fvalue) > 0)
{
for (jy = 0; jy < space.nY - 1; jy++)
{
for (ix = 0; ix < space.nX - 1; ix++)
{
fvector.push_back(fvalue);
}
fvector.push_back(fvalue);
fmatrix.push_back(fvector);
fvector.clear();
}
}
else
{
for (ix = 0; ix < space.nX - 1; ix++)
fscanf(istream, "%u", &value);
for (jy = 0; jy < space.nY - 1; jy++)
{
fscanf(istream, "\nRow iy=%u:", &value);
for (ix = 0; ix < space.nX - 1; ix++)
{
fscanf(istream, "%f", &fvalue);
fvector.push_back(fvalue);
}
// last value
fvector.push_back(fvalue);
fmatrix.push_back(fvector);
fvector.clear();
}
}
// save data
for (--jy; jy >= 0; jy--)
{
fvector = fmatrix[jy];
for (ix = 0; ix < space.nX; ix++)
{
fvalue = fvector[ix];
fprintf(sstreamD, "%.3f\t", fvalue);
}
fprintf(sstreamD, "\n");
}
// last row
fvector = fmatrix[0];
for (ix = 0; ix < space.nX; ix++)
{
fvalue = fvector[ix];
fprintf(sstreamD, "%.3f\t", fvalue);
}
fprintf(sstreamD, "\n");
fmatrix.clear();
fvector.clear();
printf("\t\tok\n");
}
// second period
for (i = 1; i < mpsize; i++)
{
mp = mperiods1[i];
// Map of PRESSURE
printf("\nMap of PRESSURE at %u %s %u:\n", mp.date, mp.mon, mp.year);
fprintf(pstream, "%.3f %.3f\n", mp.pmin, mp.pmax);
fseek(istream, mp.destp + 138, SEEK_SET);
for (kz = 0; kz < space.nZ; kz++)
{
printf("\tlayer%u", kz + 1);
fscanf(istream, "\nLayer iz=%u\nix= :", &value);
// read data
for (ix = 0; ix < space.nX - 1; ix++)
fscanf(istream, "%u", &value);
for (jy = 0; jy < space.nY - 1; jy++)
{
fscanf(istream, "\nRow iy=%u:", &value);
for (ix = 0; ix < space.nX - 1; ix++)
{
fscanf(istream, "%f", &fvalue);
fvector.push_back(fvalue);
}
// last value
fvector.push_back(fvalue);
fmatrix.push_back(fvector);
fvector.clear();
}
// save data
for (--jy; jy >= 0; jy--)
{
fvector = fmatrix[jy];
for (ix = 0; ix < space.nX; ix++)
{
fvalue = fvector[ix];
fprintf(pstream, "%.3f\t", fvalue);
}
fprintf(pstream, "\n");
}
// last row
fvector = fmatrix[0];
for (ix = 0; ix < space.nX; ix++)
{
fvalue = fvector[ix];
fprintf(pstream, "%.3f\t", fvalue);
}
fprintf(pstream, "\n");
fmatrix.clear();
fvector.clear();
printf("\t\tok\n");
}
// Map of soil
printf("\nMap of soil at %u %s %u:\n", mp.date, mp.mon, mp.year);
fprintf(sstream, "%.3f %.3f\n", mp.smin, mp.smax);
fseek(istream, mp.dests + 134, SEEK_SET);
for (kz = 0; kz < space.nZ; kz++)
{
fscanf(istream, "\nLayer iz=%u\nix= :", &value);
// read data
for (ix = 0; ix < space.nX - 1; ix++)
fscanf(istream, "%u", &value);
for (jy = 0; jy < space.nY - 1; jy++)
{
fscanf(istream, "\nRow iy=%u:", &value);
for (ix = 0; ix < space.nX - 1; ix++)
{
fscanf(istream, "%f", &fvalue);
fvector.push_back(fvalue);
}
fvector.push_back(fvalue);
fmatrix.push_back(fvector);
fvector.clear();
}
// save data
for (--jy; jy >= 0; jy--)
{
fvector = fmatrix[jy];
for (ix = 0; ix < space.nX; ix++)
{
fvalue = fvector[ix];
fprintf(sstream, "%.3f\t", fvalue);
}
fprintf(sstream, "\n");
}
// last row
fvector = fmatrix[0];
for (ix = 0; ix < space.nX; ix++)
{
fvalue = fvector[ix];
fprintf(sstream, "%.3f\t", fvalue);
}
fprintf(sstream, "\n");
fmatrix.clear();
fvector.clear();
}
// dporo soil layers
fprintf(sstreamD, "%.3f %.3f\n", mp.smin, mp.smax);
for (kz = 0; kz < space.nZ; kz++)
{
printf("\tlayer%u", kz + 1);
fscanf(istream, "\nLayer iz=%u\nix= :", &value);
// read data
for (ix = 0; ix < space.nX - 1; ix++)
fscanf(istream, "%u", &value);
for (jy = 0; jy < space.nY - 1; jy++)
{
fscanf(istream, "\nRow iy=%u:", &value);
for (ix = 0; ix < space.nX - 1; ix++)
{
fscanf(istream, "%f", &fvalue);
fvector.push_back(fvalue);
}
fvector.push_back(fvalue);
fmatrix.push_back(fvector);
fvector.clear();
}
// save data
for (--jy; jy >= 0; jy--)
{
fvector = fmatrix[jy];
for (ix = 0; ix < space.nX; ix++)
{
fvalue = fvector[ix];
fprintf(sstreamD, "%.3f\t", fvalue);
}
fprintf(sstreamD, "\n");
}
// last row
fvector = fmatrix[0];
for (ix = 0; ix < space.nX; ix++)
{
fvalue = fvector[ix];
fprintf(sstreamD, "%.3f\t", fvalue);
}
fprintf(sstreamD, "\n");
fmatrix.clear();
fvector.clear();
printf("\t\tok\n");
}
}
fclose(sstreamD);
}
else
{ // Map of PRESSURE
printf("\nMap of PRESSURE at %u %s %u:\n", mp.date, mp.mon, mp.year);
fprintf(pstream, "%.3f %.3f\n", mp.pmin, mp.pmax);
fseek(istream, mp.destp + 138, SEEK_SET);
for (kz = 0; kz < space.nZ; kz++)
{
printf("\tlayer%u", kz + 1);
fscanf(istream, "\nLayer iz=%u\nix= :", &value);
// read data
if (fscanf(istream, "All values are %f", &fvalue) > 0)
{
for (jy = 0; jy < space.nY - 1; jy++)
{
for (ix = 0; ix < space.nX - 1; ix++)
{
fvector.push_back(fvalue);
}
fvector.push_back(fvalue);
fmatrix.push_back(fvector);
fvector.clear();
}
}
else
{
for (ix = 0; ix < space.nX - 1; ix++)
fscanf(istream, "%u", &value);
for (jy = 0; jy < space.nY - 1; jy++)
{
fscanf(istream, "\nRow iy=%u:", &value);
for (ix = 0; ix < space.nX - 1; ix++)
{
fscanf(istream, "%f", &fvalue);
fvector.push_back(fvalue);
}
// last value
fvector.push_back(fvalue);
fmatrix.push_back(fvector);
fvector.clear();
}
}
// save data
for (--jy; jy >= 0; jy--)
{
fvector = fmatrix[jy];
for (ix = 0; ix < space.nX - 1; ix++)
{
fvalue = fvector[ix];
// inactive cells
if (fvalue >= mp.pmin - 1e-2)
{
pbarr[i] = 1;
n++;
}
i++;
fprintf(pstream, "%.3f\t", fvalue);
}
fprintf(pstream, "%.3f\t", fvalue);
fprintf(pstream, "\n");
}
// last row
fvector = fmatrix[0];
for (ix = 0; ix < space.nX; ix++)
{
fvalue = fvector[ix];
fprintf(pstream, "%.3f\t", fvalue);
}
fprintf(pstream, "\n");
fmatrix.clear();
fvector.clear();
printf("\t\tok\n");
}
fwrite(pbarr, 1, size, rstream);
delete [] pbarr;
fclose(rstream);
// Map of soil
printf("\nMap of soil at %u %s %u:\n", mp.date, mp.mon, mp.year);
fprintf(sstream, "%.3f %.3f\n", mp.smin, mp.smax);
fseek(istream, mp.dests + 134, SEEK_SET);
for (kz = 0; kz < space.nZ; kz++)
{
printf("\tlayer%u", kz + 1);
fscanf(istream, "\nLayer iz=%u\nix= :", &value);
//
if (fscanf(istream, "All values are %f", &fvalue) > 0)
{
for (jy = 0; jy < space.nY - 1; jy++)
{
for (ix = 0; ix < space.nX - 1; ix++)
{
fvector.push_back(fvalue);
}
fvector.push_back(fvalue);
fmatrix.push_back(fvector);
fvector.clear();
}
}
else
{
for (ix = 0; ix < space.nX - 1; ix++)
fscanf(istream, "%u", &value);
for (jy = 0; jy < space.nY - 1; jy++)
{
fscanf(istream, "\nRow iy=%u:", &value);
for (ix = 0; ix < space.nX - 1; ix++)
{
fscanf(istream, "%f", &fvalue);
fvector.push_back(fvalue);
}
// last value
fvector.push_back(fvalue);
fmatrix.push_back(fvector);
fvector.clear();
}
}
// save data
for (--jy; jy >= 0; jy--)
{
fvector = fmatrix[jy];
for (ix = 0; ix < space.nX; ix++)
{
fvalue = fvector[ix];
fprintf(sstream, "%.3f\t", fvalue);
}
fprintf(sstream, "\n");
}
// last row
fvector = fmatrix[0];
for (ix = 0; ix < space.nX; ix++)
{
fvalue = fvector[ix];
fprintf(sstream, "%.3f\t", fvalue);
}
fprintf(sstream, "\n");
fmatrix.clear();
fvector.clear();
printf("\t\tok\n");
}
// second period
for (i = 1; i < mpsize; i++)
{
mp = mperiods1[i];
// Map of PRESSURE
printf("\nMap of PRESSURE at %u %s %u:\n", mp.date, mp.mon, mp.year);
fprintf(pstream, "%.3f %.3f\n", mp.pmin, mp.pmax);
fseek(istream, mp.destp + 138, SEEK_SET);
for (kz = 0; kz < space.nZ; kz++)
{
printf("\tlayer%u", kz + 1);
fscanf(istream, "\nLayer iz=%u\nix= :", &value);
// read data
for (ix = 0; ix < space.nX - 1; ix++)
fscanf(istream, "%u", &value);
for (jy = 0; jy < space.nY - 1; jy++)
{
fscanf(istream, "\nRow iy=%u:", &value);
for (ix = 0; ix < space.nX - 1; ix++)
{
fscanf(istream, "%f", &fvalue);
fvector.push_back(fvalue);
}
// last value
fvector.push_back(fvalue);
fmatrix.push_back(fvector);
fvector.clear();
}
// save data
for (--jy; jy >= 0; jy--)
{
fvector = fmatrix[jy];
for (ix = 0; ix < space.nX; ix++)
{
fvalue = fvector[ix];
fprintf(pstream, "%.3f\t", fvalue);
}
fprintf(pstream, "\n");
}
// last row
fvector = fmatrix[0];
for (ix = 0; ix < space.nX; ix++)
{
fvalue = fvector[ix];
fprintf(pstream, "%.3f\t", fvalue);
}
fprintf(pstream, "\n");
fmatrix.clear();
fvector.clear();
printf("\t\tok\n");
}
// Map of soil
printf("\nMap of soil at %u %s %u:\n", mp.date, mp.mon, mp.year);
fprintf(sstream, "%.3f %.3f\n", mp.smin, mp.smax);
fseek(istream, mp.dests + 134, SEEK_SET);
for (kz = 0; kz < space.nZ; kz++)
{
printf("\tlayer%u", kz + 1);
fscanf(istream, "\nLayer iz=%u\nix= :", &value);
for (ix = 0; ix < space.nX - 1; ix++)
fscanf(istream, "%u", &value);
for (jy = 0; jy < space.nY - 1; jy++)
{
fscanf(istream, "\nRow iy=%u:", &value);
for (ix = 0; ix < space.nX - 1; ix++)
{
fscanf(istream, "%f", &fvalue);
fvector.push_back(fvalue);
}
fvector.push_back(fvalue);
fmatrix.push_back(fvector);
fvector.clear();
}
// save data
for (--jy; jy >= 0; jy--)
{
fvector = fmatrix[jy];
for (ix = 0; ix < space.nX; ix++)
{
fvalue = fvector[ix];
fprintf(sstream, "%.3f\t", fvalue);
}
fprintf(sstream, "\n");
}
// last row
fvector = fmatrix[0];
for (ix = 0; ix < space.nX; ix++)
{
fvalue = fvector[ix];
fprintf(sstream, "%.3f\t", fvalue);
}
fprintf(sstream, "\n");
fmatrix.clear();
fvector.clear();
printf("\t\tok\n");
}
}
}
fclose(istream);
fclose(pstream);
fclose(sstream);
printf("\nnumber of active cells\t%u", n);
printf("\nnumber of periods\t%u\n\n", mpsize);
}
return bres;
}
bool wellConvert(const char* filename)
{
printf("[%s]\n", "trackwell.txt");
char name[9],
file[MAX_PATH];
memset(file, 0, MAX_PATH);
size_t len = strlen(filename);
strcpy(file, din);
strncat(file, filename, --len);
FILE *istream = fopen(file, "r"),
*ostream;
if (!istream) return 0;
strcpy(file, dout);
strcat(file, "\\well.txt");
ostream = fopen(file, "w");
if (!ostream) return 0;
bool bvalid;
size_t i;
wline _wline;
vector <wline> wlines;
while (fscanf(istream, "%s\n", name) == 1)
{
bvalid = 0;
while (fscanf(istream, "%u %u %f %f\n", &_wline.x, &_wline.y, &_wline.z0, &_wline.z1) == 4)
{
if (BOUNDS(space).ptBelong(_wline.x, _wline.y))
{
bvalid = 1;
wlines.push_back(_wline);
}
}
fscanf(istream, "/\n");
if (bvalid)
{
printf("\twell %s\n", name);
fprintf(ostream, " %s\n", name);
for (i = 0; i < wlines.size(); i++)
{
fprintf(ostream, "%u %u %.2f\n", wlines[i].x, wlines[i].y, -wlines[i].z0);
}
wlines.clear();
fprintf(ostream, "/\n");
}
}
fclose(ostream);
fclose(istream);
printf("\n");
return 1;
}
bool stockConvert(vector<param> *pvec, dens* pdens)
{
printf("[%s]\n", "stock");
bool bres = 1,
bm = 0, bn = 0, bs = 0, bz = 0; // can close streams
FILE *streamM, *streamN, *streamS, *streamZ;
try
{
char file[MAX_PATH];
int i;
param pm;
for (i = 0; i < STOCK_CONST; i++)
{
pm = pvec->at(i);
memset(file, 0, MAX_PATH);
strcpy(file, dout);
strcat(file, pm.shortname);
if (strcmp(pm.shortname, "M.txt") == 0)
{
streamM = fopen(file, "r");
if (!streamM) throw 0;
bm = 1;
}
if (strcmp(pm.shortname, "NTOG.txt") == 0)
{
streamN = fopen(file, "r");
if (!streamN) throw 0;
bn = 1;
}
if (strcmp(pm.shortname, "SWAT.txt") == 0)
{
streamS = fopen(file, "r");
if (!streamS) throw 0;
bs = 1;
}
if (strcmp(pm.shortname, "ZCORN.txt") == 0)
{
streamZ = fopen(file, "r");
if (!streamZ) throw 0;
bz = 1;
}
}
memset(file, 0, MAX_PATH);
strcpy(file, dout);
strcat(file, "stock.txt");
FILE *ostream = fopen(file, "w");
if (!ostream) throw 0;
fprintf(ostream, " \n"); // place for min & max
float fvalue, fmin = 10.0f, fmax = 0.0f,
fvalueM, fvalueN, fvalueS, fvalueZ;
floatvector fvector, fvectorh;
floatmatrix fmatrix, fmatrixh;
fscanf(streamM, "%f %f", &fvalueS, &fvalueS);
fscanf(streamN, "%f %f", &fvalueN, &fvalueN);
fscanf(streamS, "%f %f", &fvalueS, &fvalueS);
fscanf(streamZ, "%f %f", &fvalueZ, &fvalueZ);
int j, k;
for (i = 0; i < space.nZ; i++)
{
printf("\tlayer%u", i + 1);
// m, ntog, s, roof
for (j = 0; j < space.nY; j++)
{
for (k = 0; k < space.nX; k++)
{
fscanf(streamM, "%f", &fvalueM);
fscanf(streamN, "%f", &fvalueN);
fscanf(streamS, "%f", &fvalueS);
fscanf(streamZ, "%f", &fvalueZ);
fvalue = fvalueM * fvalueN * fvalueS;
fvector.push_back(fvalue);
fvectorh.push_back(fvalueZ);
}
fmatrix.push_back(fvector);
fmatrixh.push_back(fvectorh);
fvector.clear();
fvectorh.clear();
}
// sole
for (j = 0; j < space.nY; j++)
{
fvectorh = fmatrixh[j];
for (k = 0; k < space.nX; k++)
{
fscanf(streamZ, "%f", &fvalueZ);
float f0 = fmatrix[j][k], f1 = fvectorh[k];
fvalue = fmatrix[j][k] * (fvectorh[k] - fvalueZ);
fmatrix[j][k] = fvalue;
}
fvectorh.clear();
}
fmatrixh.clear();
// save
for (j = 0; j < space.nY; j++)
{
fvector = fmatrix[j];
for (k = 0; k < space.nX; k++)
{
fvalue = fvector[k] * pdens->kper * pdens->oil / 1000.0f;
if (fvalue < fmin) fmin = fvalue;
if (fvalue > fmax) fmax = fvalue;
fprintf(ostream, "%.3f ", fvalue);
}
fprintf(ostream, "\n");
fvector.clear();
}
fmatrix.clear();
printf("\t\tok\n");
}
fseek(ostream, 0, SEEK_SET);
fprintf(ostream, "%.3f %.3f", fmin, fmax);
fclose(ostream);
}
catch (int)
{
bres = 0;
}
// close streams
if (bm) fclose(streamM);
if (bn) fclose(streamN);
if (bs) fclose(streamS);
if (bz) fclose(streamZ);
printf("\n");
return bres;
}
bool roxConvert(const char* filename)
{
char file[MAX_PATH];
WIN32_FIND_DATA find;
memset(file, 0, MAX_PATH);
strcpy(file, din);
strcat(file, "\\*.out");
HANDLE hfile0 = FindFirstFile(file, &find);
if (hfile0 == INVALID_HANDLE_VALUE)
{
printf("error: %s files not found\n", file);
return 0;
}
FindClose(hfile0);
memset(file, 0, MAX_PATH);
strcpy(file, din);
strcat(file, find.cFileName);
hfile0 = CreateFile(file, GENERIC_READ, 0, 0, OPEN_EXISTING, 0, 0);
char buf[USHRT_MAX];
memset(buf, 0, USHRT_MAX);
ULONG nbytes;
ReadFile(hfile0, buf, USHRT_MAX, &nbytes, 0);
//
HANDLE hfile1 = CreateFile(filename, GENERIC_READ, 0, 0, OPEN_EXISTING, 0, 0);
if (hfile1 == INVALID_HANDLE_VALUE)
{
printf("error: %s opening failed\n", filename);
return 0;
}
LONG size = GetFileSize(hfile1, 0);
char* pbuf = new char[size];
memset(pbuf, 0, size);
ReadFile(hfile1, pbuf, size, &nbytes, 0);
CloseHandle(hfile1);
// dim
memset(&space, 0, sizeof(space));
char* pdest0 = 0;
if (pdest0 = strstr(pbuf, "DPORO")) dporo = 1;
if (pdest0 = strstr(pbuf, "SIZE"))
{
sscanf(pdest0, "SIZE %u %u %u", &space.nX, &space.nY, &space.nZ);
space.nX++;
space.nY++;
if (dporo) space.nZ /= 2;
printf("SIZE %u %u %u\n\n", space.nX, space.nY, space.nZ);
}
if (!outConvert(file, hfile0)) return 0;
// density & kper
dens _dens;
if (pdest0 = strstr(pbuf, "FLUID BLACKOIL"))
{ // water
if (pdest0 = strstr(pdest0, "WATR"))
{
float watr;
sscanf(pdest0, "WATR\n %f %f", &watr, &_dens.watr);
}
// oil
if (pdest0 = strstr(pdest0, "BASIC")) sscanf(pdest0, "BASIC\n %f", &_dens.oil);
// gas, kper
if (pdest0 = strstr(pdest0, "OPVT"))
{
float p, visc;
sscanf(pdest0, "OPVT\n %f %f %f %f", &p, &_dens.kper, &visc, &_dens.gas);
}
}
// params
if (pdest0 = strstr(pbuf, "include"))
{
char *pdest1 = 0;
char line[MAX_PATH];
size_t len;
param pm;
vector<param> params;
do
{
memset(line, 0, MAX_PATH);
memset(pm.filename, 0, MAX_PATH);
sscanf(pdest0, "include '%s", line);
len = strlen(line);
strncpy(pm.filename, line, --len);
pm.makeShort();
if (strlen(pm.shortname) > 0)
{
if (strcmp(pm.shortname, "K.txt") == 0)
{
pdest1 = strstr(buf, "Permx");
sscanf(pdest1, "Permx %f %f", &pm.min, &pm.max);
}
else if (strcmp(pm.shortname, "KZ.txt") == 0)
{
pdest1 = strstr(buf, "Permz");
sscanf(pdest1, "Permz %f %f", &pm.min, &pm.max);
}
else if (strcmp(pm.shortname, "M.txt") == 0)
{
pdest1 = strstr(buf, "Porosity");
sscanf(pdest1, "Porosity %f %f", &pm.min, &pm.max);
params.push_back(pm);
}
else if (strcmp(pm.shortname, "NTOG.txt") == 0)
{
pdest1 = strstr(buf, "NTG");
sscanf(pdest1, "NTG %f %f", &pm.min, &pm.max);
params.push_back(pm);
}
else if (strcmp(pm.shortname, "SWAT.txt") == 0)
{
pm.min = 1.0f;
pm.max = 0.0f;
params.push_back(pm);
}
else if (strcmp(pm.shortname, "ZCORN.txt") == 0)
{
params.push_back(pm);
}
paramConvert(&pm);
}
pdest0++;
pdest0 = strstr(pdest0, "include");
}
while (pdest0);
// stock
if (params.size() == STOCK_CONST) stockConvert(¶ms, &_dens);
params.clear();
}
// wells
if (pdest0 = strstr(pbuf, "TFIL"))
{
sscanf(pdest0, "TFIL\n'%s", file);
wellConvert(file);
}
SAFE_DELETE_ARRAY(pbuf);
return 1;
}
int main(int argc, char* argv[])
{
if (argc == 1)
{
printf("usage: rox [filename]\n");
return 0;
}
// head
printf("\n");
printf("\t\t\t--------------------\n");
printf("\t\t\tRoxar Data Convertor\n");
printf("\t\t\t--------------------\n");
printf("\n");
char dat[MAX_PATH];
memset(dat, 0, MAX_PATH);
memset(din, 0, MAX_PATH);
getDir(din, argv[1]);
if (strlen(din) == 0)
{
getDir(din, argv[0]);
strcpy(dat, din);
strcat(dat, argv[1]);
}
else strcpy(dat, argv[1]);
memset(dout, 0, MAX_PATH);
strcpy(dout, din);
strcat(dout, "out");
CreateDirectory(dout, 0);
strcat(dout, "\\");
printf("%s\n\n", dat);
if (!roxConvert(dat)) return 1;
printf("Press any key to continue\n");
getch();
return 0;
} | [
"rrv.kazan@gmail.com@b6168ec3-97fc-df6f-cbe5-288b4f99fbbd"
] | rrv.kazan@gmail.com@b6168ec3-97fc-df6f-cbe5-288b4f99fbbd |
04a34cf21ba0e14b11fbb82fb3fe2dde7f32d164 | 126b36f3decb5a58db27470a738ca7d5ded0608b | /10.01 Test if a binary tree is balanced/Balanced_binary_tree.cc | a24e03832d31b72423277051b6f53749c593c02e | [] | no_license | Nuos/Elements-of-Programming-Interview | 7aa500a0931017d217c8152bce64cafa205b80bf | 29404d04fb5af408c413dc370cd4de8e70da49e1 | refs/heads/master | 2020-05-29T11:06:05.166377 | 2016-03-04T20:13:34 | 2016-03-04T20:13:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,474 | cc | // Copyright (c) 2015 Elements of Programming Interviews. All rights reserved.
#include <algorithm>
#include <cassert>
#include <iostream>
#include <memory>
#include <utility>
#include "./Binary_tree_prototype.h"
using std::boolalpha;
using std::cout;
using std::endl;
using std::make_unique;
using std::max;
using std::pair;
using std::tie;
using std::unique_ptr;
struct BalancedStatusWithHeight;
BalancedStatusWithHeight CheckBalanced(const unique_ptr<BinaryTreeNode<int>>&);
// @include
struct BalancedStatusWithHeight {
bool balanced;
int height;
};
bool IsBalanced(const unique_ptr<BinaryTreeNode<int>>& tree) {
return CheckBalanced(tree).balanced;
}
// First value of the return value indicates if tree is balanced, and if
// balanced the second value of the return value is the height of tree.
BalancedStatusWithHeight CheckBalanced(
const unique_ptr<BinaryTreeNode<int>>& tree) {
if (tree == nullptr) {
return {true, -1}; // Base case.
}
auto left_result = CheckBalanced(tree->left);
if (!left_result.balanced) {
return {false, 0}; // Left subtree is not balanced.
}
auto right_result = CheckBalanced(tree->right);
if (!right_result.balanced) {
return {false, 0}; // Right subtree is not balanced.
}
bool is_balanced = abs(left_result.height - right_result.height) <= 1;
int height = max(left_result.height, right_result.height) + 1;
return {is_balanced, height};
}
// @exclude
int main(int argc, char* argv[]) {
// balanced binary tree test
// 3
// 2 5
// 1 4 6
unique_ptr<BinaryTreeNode<int>> tree =
make_unique<BinaryTreeNode<int>>(BinaryTreeNode<int>());
tree->left = make_unique<BinaryTreeNode<int>>(BinaryTreeNode<int>());
tree->left->left = make_unique<BinaryTreeNode<int>>(BinaryTreeNode<int>());
tree->right = make_unique<BinaryTreeNode<int>>(BinaryTreeNode<int>());
tree->right->left = make_unique<BinaryTreeNode<int>>(BinaryTreeNode<int>());
tree->right->right = make_unique<BinaryTreeNode<int>>(BinaryTreeNode<int>());
assert(IsBalanced(tree) == true);
cout << boolalpha << IsBalanced(tree) << endl;
// Non-balanced binary tree test.
tree = make_unique<BinaryTreeNode<int>>(BinaryTreeNode<int>());
tree->left = make_unique<BinaryTreeNode<int>>(BinaryTreeNode<int>());
tree->left->left = make_unique<BinaryTreeNode<int>>(BinaryTreeNode<int>());
assert(IsBalanced(tree) == false);
cout << boolalpha << IsBalanced(tree) << endl;
return 0;
}
| [
"altunshukurlu@Altuns-MacBook-Pro.local"
] | altunshukurlu@Altuns-MacBook-Pro.local |
9b19a5f04be438bc62290d371a69b1022d3009ea | 5456502f97627278cbd6e16d002d50f1de3da7bb | /chrome/browser/chromeos/policy/cloud_external_data_manager_base_test_util.h | 19c624c8b41761acaaba5be17a713e26623fecf7 | [
"BSD-3-Clause"
] | permissive | TrellixVulnTeam/Chromium_7C66 | 72d108a413909eb3bd36c73a6c2f98de1573b6e5 | c8649ab2a0f5a747369ed50351209a42f59672ee | refs/heads/master | 2023-03-16T12:51:40.231959 | 2017-12-20T10:38:26 | 2017-12-20T10:38:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,813 | h | // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_CHROMEOS_POLICY_CLOUD_EXTERNAL_DATA_MANAGER_BASE_TEST_UTIL_H_
#define CHROME_BROWSER_CHROMEOS_POLICY_CLOUD_EXTERNAL_DATA_MANAGER_BASE_TEST_UTIL_H_
#include <memory>
#include <string>
#include "base/callback_forward.h"
namespace base {
class DictionaryValue;
}
namespace policy {
class CloudPolicyCore;
namespace test {
// Passes |data| to |destination| and invokes |done_callback| to indicate that
// the |data| has been retrieved.
void ExternalDataFetchCallback(std::unique_ptr<std::string>* destination,
const base::Closure& done_callback,
std::unique_ptr<std::string> data);
// Constructs a value that points a policy referencing external data at |url|
// and sets the expected hash of the external data to that of |data|.
std::unique_ptr<base::DictionaryValue> ConstructExternalDataReference(
const std::string& url,
const std::string& data);
// TODO(bartfab): Makes an arbitrary |policy| in |core| reference external data
// as specified in |metadata|. This is only done because there are no policies
// that reference external data yet. Once the first such policy is added, it
// will be sufficient to set its value to |metadata| and this method should be
// removed.
void SetExternalDataReference(CloudPolicyCore* core,
const std::string& policy,
std::unique_ptr<base::DictionaryValue> metadata);
} // namespace test
} // namespace policy
#endif // CHROME_BROWSER_CHROMEOS_POLICY_CLOUD_EXTERNAL_DATA_MANAGER_BASE_TEST_UTIL_H_
| [
"lixiaodonglove7@aliyun.com"
] | lixiaodonglove7@aliyun.com |
9c8494e69de3cd425ce8655c8c7eff0987619b5e | 400eaeb047d77b75751b3135905c0a6557107c7e | /tutorial06_keyboard_and_mouse/SControls.cpp | 52be128fd9091133bc69742deffab8bd277407b3 | [] | no_license | Jules-NC/3D-Car-Simulation | 16a6a02254c97ef450d807109be86735f8e8b6a7 | dc6c0293b76ddceceb344b9ae746e9bbca54702b | refs/heads/master | 2022-01-12T18:29:30.796553 | 2019-06-25T15:39:08 | 2019-06-25T15:39:08 | 169,235,229 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,051 | cpp | #include <iostream>
#include "SControls.h"
#include <glm/glm.hpp> // |glm
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
bool SControls::init(int width, int height)
{
this->WIDTH = width;
this->HEIGHT = height;
if (!glfwInit())
{
return false;
}
glfwWindowHint(GLFW_SAMPLES, 4);
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_COMPAT_PROFILE);
//glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
this->WINDOW = glfwCreateWindow(width, height, "Tutorial 6650 - Keyboard and Mouse", NULL, NULL);
if (WINDOW == NULL) {
fprintf(stderr, "Failed to open GLFW window. If you have an Intel GPU, they are not 3.3 compatible. Try the 2.1 version of the tutorials.\n");
glfwTerminate();
return false;
}
glfwMakeContextCurrent(WINDOW);
glfwSetInputMode(WINDOW, GLFW_STICKY_KEYS, GL_TRUE);
return true;
}
GLFWwindow * SControls::getWindows()
{
return this->WINDOW;
}
void SControls::computeMatrices()
{
}
| [
"lambyor@gmail.com"
] | lambyor@gmail.com |
65e94be9c51ce90b53b459b22b973811093d37cc | 30b64babe04e3bae414f0ce61e038c76fa7ece9c | /hw7.cpp | d401886017a825acda2aa488ba54e06c814d2454 | [] | no_license | Brakenfaces/C201 | 4706b5faa87d4462b437519497996e73154e166e | d6f266e6efb09585d84e6b5b58623a727ff60aab | refs/heads/master | 2021-01-16T21:45:07.203089 | 2015-02-23T04:40:03 | 2015-02-23T04:40:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,939 | cpp | /**********************************************************************
PROGRAMMER : Kyle Stoltzfus
CLASS : C201 5:30 - 7:20
DATE : 11/12/2012
HOMEWORK : Homework 7
COMPILER : Visual C++ .NET
SOURCE FILE: Assign7.cpp
ACTION: Reads words from stdin and displays them in 3 columns.
A word is defined in the overloaded >> operator in the
String class as any sequence of characters that are delimited
by white spaces. Reading from stdin input need to manual enter end of
file marker, ctrl-Z then enter.
NOTES : The program does not handle correctly words longer than
MAX_LENGTH, a constant defined in the String class definition.
If such words are encountered, they are truncated.
Only as many as MAX_WORD_COUNT words can be stored in the
array holding the words.
=====================================================================*/
#include <iostream>
#include <iomanip>
#include <ctype.h>
#include "string2.cpp"
using namespace std;
void WriteWords (String Word[],
int Count[],
int TotalWordCount,
int DistinctWordCount);
void StoreWord (String NewWord,
String Word[],
int Count[],
int &TotalWordCount,
int &DistinctWordCount,
int MaxWordCount);
/*************************** main ***********************************/
void main()
{
const int MAX_WORD_COUNT = 130;
String NewWord,
Word[MAX_WORD_COUNT + 1] = {"", ""}; // ALWAYS allow 1 extra slot!
int Count[MAX_WORD_COUNT + 1] ={0}, // Initialize array to zeros
DistinctWordCount = 0,
TotalWordCount = 0;
cin >> NewWord; // Get the first word
while ( NewWord.Length() != 0 ) // While NewWord is not null string
{
StoreWord (NewWord, Word, Count, TotalWordCount,
DistinctWordCount, MAX_WORD_COUNT);
cin >> NewWord; // Get the next word
}
WriteWords(Word, Count, TotalWordCount, DistinctWordCount);
}
/*************************** StoreWord ********************************
DESCRIPTION Adds a variable of String class called NewWord (holding up to MAX_WORD_LENGTH
characters) to the end of the array Word.
PARAMETERS NewWord The variable of String class to be added
Word An array of variables of String class
DistinctWordCount The number of different words in the array
TotalWordCount The total number of word in the file
MaxWordCount The max number of words that can be stored
in the array Word. If DistinctWordCount ==
MaxWordCount, the function is exited.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -*/
void StoreWord (String NewWord,
String Word[],
int Count[],
int &TotalWordCount,
int &DistinctWordCount,
int MaxWordCount)
{
int i, k = 0;
while ( Word[k] < NewWord && k < DistinctWordCount )
++k;
// Assert: k is NewWord's correct position in the ordered array Word
if ( NewWord == Word[k] ) // NewWord is already there
{
++Count[k];
++TotalWordCount;
}
else if ( DistinctWordCount < MaxWordCount ) // Room for a new word
{
++DistinctWordCount; // If this line reached, found new word
++TotalWordCount;
for ( i = DistinctWordCount-1; i > k; --i ) // Make room for
{ // NewWord
Word[i] = Word[i-1];
Count[i] = Count[i-1];
}
Word[k] = NewWord; // Store NewWord in array
Count[k] = 1;
}
}
/*************************** WriteWords ********************************
DESCRIPTION Writes the variables of String class in the array Word to standard output.
The words are left justified. After WORDS_PER_ROW words have
been written a new line is started.
PARAMETERS Word An array of variables of String class
WordCount The number of words in the array
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -*/
void WriteWords (String Word[],
int Count[],
int TotalWordCount,
int DistinctWordCount)
{
const char *Header1 = " Word Count | ",
*Header2 = " | ",
*Separator = " | ";
const int WORD_FW = 17,
COUNT_FW = 4,
WORDS_PER_ROW = 3;
int C;
cout << "\n\n";
if ( TotalWordCount == 0 )
return;
for ( C = 1; C <= WORDS_PER_ROW; ++C )
cout << Header1;
cout << endl;
for ( C = 1; C <= WORDS_PER_ROW; ++C )
cout << Header2;
cout << endl;
int N = 0;
while ( N < DistinctWordCount )
{
for ( C = 1; C <= WORDS_PER_ROW && N < DistinctWordCount; ++C )
{
cout << setiosflags(ios::left) << setw(WORD_FW) << Word[N];
cout << setiosflags(ios::right) << setw(COUNT_FW)<< Count[N];
cout << Separator;
cout << resetiosflags(ios::right);
++N;
}
cout << endl;
}
cout << "\nTotal Word Count : " << TotalWordCount << endl;
cout << "\nDistinct Word Count : " << DistinctWordCount << endl;
}
/*Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
C:\Users\Kyle\Documents\Visual Studio 2010\C201 Finished and Test Data>hw7 < wor
ds.1
Word Count | Word Count | Word Count |
| | |
This 1 | fun! 1 | is 1 |
Total Word Count : 3
Distinct Word Count : 3
C:\Users\Kyle\Documents\Visual Studio 2010\C201 Finished and Test Data>hw7 < wor
ds.2
Word Count | Word Count | Word Count |
| | |
(219) 1 | - 1 | 10000000000000005 1 |
123456789123456 1 | 237 1 | 4496. 1 |
My 1 | Two 1 | are 1 |
as 1 | fol- 1 | is 1 |
large 1 | lows, 1 | number 1 |
numbers 1 |
Total Word Count : 16
Distinct Word Count : 16
C:\Users\Kyle\Documents\Visual Studio 2010\C201 Finished and Test Data>hw7 < wor
ds.3
C:\Users\Kyle\Documents\Visual Studio 2010\C201 Finished and Test Data>hw7 < wor
ds.4
Word Count | Word Count | Word Count |
| | |
All 1 | As 1 | Dick 1 |
Dick, 1 | Did 1 | Jane 1 |
Jane, 1 | Spot 1 | Spot's 1 |
Spot? 1 | a 5 | account 1 |
after. 1 | ago, 1 | altered 1 |
and 1 | away 1 | brokerage 1 |
but 1 | computer 1 | end. 1 |
engineer 1 | ever 2 | executive 1 |
expect, 1 | few 1 | firm. 1 |
for 2 | happened 1 | happily 1 |
happy 1 | he 1 | his 1 |
is 2 | large 1 | lived 1 |
major 1 | might 1 | never 1 |
of 1 | passed 1 | personality. 1 |
pleasant 1 | senior 1 | success 1 |
the 1 | they 1 | to 2 |
top 1 | vendor. 1 | was 1 |
what 1 | wonder 1 | years 1 |
you 2 |
Total Word Count : 64
Distinct Word Count : 55
C:\Users\Kyle\Documents\Visual Studio 2010\C201 Finished and Test Data>hw7 < wor
ds.5
Word Count | Word Count | Word Count |
| | |
!!wishy-washy!! 1 | hy- 1 | pen 1 |
Total Word Count : 3
Distinct Word Count : 3
C:\Users\Kyle\Documents\Visual Studio 2010\C201 Finished and Test Data>*/ | [
"computerwhiz33@gmail.com"
] | computerwhiz33@gmail.com |
549f976a6fca36c52825fe7655c747796bd2f253 | 554e5c61ed8c14cc40af034f567f4d652913384e | /IB Academy/grid-illumination/problem.cpp | 5822e7fe019d9019a4c8b0f85a130678118a3d28 | [] | no_license | sraman915/Comptetive-Programming | 1a1e098a720fa6394f08b62f173e1ef6b801d5c3 | 0c1e739a2c76ecfe20b43aba333365894833e7cf | refs/heads/master | 2022-07-22T20:52:38.341265 | 2020-05-14T14:34:50 | 2020-05-14T14:34:50 | 263,874,572 | 6 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,401 | cpp | #include<bits/stdc++.h>
using namespace std;
#define int long long
#define sp ios_base::sync_with_stdio(false),cin.tie(NULL),cout.tie(NULL)
#define cps CLOCKS_PER_SEC
#define mod (long long)1000000007
#define f first
#define s second
#define debug1(x) cerr<<x<<"\n"
#define debug2(x,y) cerr<<x<<" "<<y<<"\n"
#define debug3(x,y,z) cerr<<x<<" "<<y<<" "<<z<<"\n"
#define nl cerr<<"\n";
#define pq priority_queue
#define inf 0x3f3f3f3f
#define test cerr<<"abcd\n";
#define pi pair<int,int>
#define pii pair<int,pi>
#define pb push_back
#define mxn 500005
mt19937 rang(chrono::high_resolution_clock::now().time_since_epoch().count());
random_device rd;
uniform_real_distribution<double> r1(1.0,20.0);
uniform_int_distribution<int> r2(1,1000);
normal_distribution<double> r3(1.0,20.0);
exponential_distribution<double> r4(5);
int rng(int lim) {
uniform_int_distribution<int> uid(0,lim-1);
return uid(rang);
}
int32_t main(){
sp;
srand(chrono::high_resolution_clock::now().time_since_epoch().count());
freopen("input3.txt","w",stdout);
int t=10;
cout<<t<<"\n";
for(int ii=1; ii<=t; ++ii){
int n=5000000+rng(100000000);
cout<<n<<"\n";
int nn=20000;
cout<<nn<<" "<<2<<" ";
for(int i=0; i<nn; ++i){
int x=rng(n);
int y=rng(n);
cout<<x<<" "<<y<<" ";
}
cout<<"\n";
int q=20000;
cout<<q<<" "<<2<<" ";
for(int i=0; i<q; ++i){
int x=rng(n);
int y=rng(n);
cout<<x<<" "<<y<<" ";
}
cout<<"\n";
}
return 0;}
| [
"sraman915@gmail.com"
] | sraman915@gmail.com |
256d9fb2482e696c699d36449f7b53e1cc34f7dd | 98ba4eca2871f8178c74d327b8c992526859c826 | /printer/dicom/dicom_set.cc | d134b00744876e7fbe0165133f8f725524977dbd | [
"BSD-3-Clause"
] | permissive | chrisvana/printer | 0a34de6cb24e53f9c78494306ca380d35493b127 | 13435848fc9429541e8607b7bb65220798d5db5e | refs/heads/master | 2021-05-02T10:33:08.842890 | 2018-01-28T05:12:44 | 2018-01-28T05:12:44 | 35,244,428 | 6 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 10,709 | cc | // Copyright 2015
// Author: Christopher Van Arsdale
#include <memory>
#include <string>
#include <vector>
#include "common/base/callback.h"
#include "common/base/flags.h"
#include "common/log/log.h"
#include "common/thread/counter.h"
#include "common/thread/threadpool.h"
#include "common/util/stl.h"
#include "printer/base/geometry.h"
#include "printer/base/point_octree.h"
#include "printer/dicom/dicom_file.h"
#include "printer/dicom/dicom_set.h"
#include "printer/objects/point_octree_object.h"
DEFINE_string(dicom_set_point_mode, "INTERPOLATE",
"Mode to use when reconstructing voxel values. See "
"PointList::FromString for values.");
using std::string;
using std::vector;
using std::unique_ptr;
namespace printer {
namespace {
bool GetCoordinateSystem(const vector<DicomFileInfo*>& infos,
Point* x, Point* y, Point* z,
double* horizontal_res,
double* vertical_res) {
const DicomFileInfo* primary = infos[0];
DicomFrameInfo frame;
if (!primary->GetFrameInfo(0, &frame)) {
LOG(ERROR) << "Cannot get frame 0 info.";
return false;
}
// Coordinate system (somewhat arbitrarily chosen, but hopefully corresponds
// well to our images).
Point z_dir = *z = frame.z_dir();
*x = frame.x_dir();
*y = frame.y_dir();
// Horizontal resolution is based on the pixel spacing, which we have to have.
*horizontal_res = std::min(frame.x_res(), frame.y_res());
// Vertical resolution is based on the slice spacing, and we fall back on
// looking at the total number of slices in the voxel space.
if (!primary->GetSliceThickness(vertical_res)) {
// Vertical resolution is based on the slice spacing. We compute the z
// range of our slices, and then determine the average slice distance.
double min_z = std::numeric_limits<double>::max();
double max_z = std::numeric_limits<double>::min();
int total_slices = 0;
for (const DicomFileInfo* info : infos) {
total_slices += info->num_frames();
for (int i = 0; i < info->num_frames(); ++i) {
DicomFrameInfo frame;
if (!info->GetFrameInfo(i, &frame)) {
LOG(ERROR) << "Unable to load frame: " << i;
return false;
}
min_z = std::min(min_z, z_dir * frame.top_left());
min_z = std::min(min_z, z_dir * frame.top_right());
min_z = std::min(min_z, z_dir * frame.bottom_right());
min_z = std::min(min_z, z_dir * frame.bottom_left());
max_z = std::max(max_z, z_dir * frame.top_left());
max_z = std::max(max_z, z_dir * frame.top_right());
max_z = std::max(max_z, z_dir * frame.bottom_right());
max_z = std::max(max_z, z_dir * frame.bottom_left());
}
}
*vertical_res = (max_z - min_z) / total_slices;
}
return true;
}
Point TranslatePoint(const Point& x,
const Point& y,
const Point& z,
const Point& input) {
// Thankfully xyz are orthogonal:
return Point(x * input, y * input, z * input);
}
Box GetRange(const vector<DicomFileInfo*>& infos,
const Point& x,
const Point& y,
const Point& z) {
Box range;
for (int i = 0; i < infos.size(); ++i) {
for (int j = 0; j < infos[i]->num_frames(); ++j) {
DicomFrameInfo frame;
CHECK(infos[i]->GetFrameInfo(j, &frame));
Box test = Box(TranslatePoint(x, y, z, frame.top_left()),
TranslatePoint(x, y, z, frame.bottom_right()));
test.UnionWith(Box(TranslatePoint(x, y, z, frame.top_right()),
TranslatePoint(x, y, z, frame.bottom_left())));
if (i == 0 && j == 0) {
range = test;
} else {
range.UnionWith(test);
}
}
}
return range;
}
} // anonymous namespace
DicomPrintObject_Input::DicomPrintObject_Input()
: pool_(NULL),
point_mode_(PointOctreeObject::FromString(FLAGS_dicom_set_point_mode)) {
}
DicomPrintObject::PrintInfo::PrintInfo() {
}
DicomPrintObject::PrintInfo::~PrintInfo() {
}
// static
DicomPrintObject::PrintInfo* DicomPrintObject::LoadFromFiles(
const vector<string>& filenames) {
DicomPrintObject::Input input;
DicomPrintObject printer(input);
return printer.Execute(filenames);
}
// static
DicomPrintObject::PrintInfo* DicomPrintObject::LoadFromFilesParallel(
const vector<string>& filenames) {
thread::ThreadPool pool;
pool.StartWorkers();
DicomPrintObject::Input input;
input.set_pool(&pool);
DicomPrintObject printer(input);
return printer.Execute(filenames);
}
DicomPrintObject::DicomPrintObject(const Input& input)
: input_(input) {
}
DicomPrintObject::~DicomPrintObject() {}
DicomPrintObject::PrintInfo* DicomPrintObject::Execute(
const vector<string>& filenames) {
if (filenames.empty()) {
LOG(ERROR) << "No filenames specified.";
return NULL;
}
LOG(INFO) << "Loading " << filenames.size() << " DICOM files.";
vector<DicomFileInfo*> infos;
ElementDeleter del(&infos); // deletes when we go out of scope.
if (!FillFiles(filenames, &infos)) {
return NULL;
}
// Decide on xyz direction:
Point x_dir, y_dir, z_dir;
double horizontal_resolution, vertical_resolution;
if (!GetCoordinateSystem(infos, &x_dir, &y_dir, &z_dir,
&horizontal_resolution, &vertical_resolution)) {
return NULL;
}
VLOG(1) << "X-dir: " << x_dir.DebugString();
VLOG(1) << "Y-dir: " << y_dir.DebugString();
VLOG(1) << "Z-dir: " << z_dir.DebugString();
VLOG(1) << "horizontal_resolution: " << horizontal_resolution;
VLOG(1) << "vertical_resolution: " << vertical_resolution;
// Find some offset that puts everything into a positive print region (find
// extreme xyz from original points).
Box range = GetRange(infos, x_dir, y_dir, z_dir);
VLOG(1) << "Original range: " << range.DebugString();
Point origin = range.bottom();
range = range - origin;
// Build octree map so we can easily look up values in a region.
LOG(INFO) << "Building voxel map.";
VLOG(1) << "Shifted range: " << range.DebugString();
// TODO: parallelize and merge trees.
unique_ptr<PointOctree> octree(BuildOctree(infos, x_dir, y_dir, z_dir,
origin, range));
if (octree == NULL) {
return NULL;
}
VLOG(1) << "Size of points: " << octree->size();
unique_ptr<PrintInfo> output(new PrintInfo);
output->horizontal_res = horizontal_resolution/2;
output->vertical_res = vertical_resolution/2;
output->print_object.reset(new PointOctreeObject(
horizontal_resolution,
vertical_resolution,
input_.point_mode(),
octree.release()));
return output.release();
}
bool DicomPrintObject::FillFiles(const std::vector<std::string>& files,
std::vector<DicomFileInfo*>* infos) {
infos->resize(files.size(), NULL);
if (input_.pool() == NULL) {
for (int i = 0; i < files.size(); ++i) {
FillFile(files[i], &(*infos)[i], NULL);
if ((*infos)[i] == NULL) {
return false;
}
}
return true;
}
// Parallel version.
thread::BlockingCounter counter(files.size());
for (int i = 0; i < files.size(); ++i) {
input_.pool()->Add(NewCallback(
this, &DicomPrintObject::FillFile,
files[i], &(*infos)[i],
NewCallback(&counter, &thread::BlockingCounter::Decrement)));
}
counter.Wait();
for (const DicomFileInfo* info : *infos) {
if (info == NULL) {
return false;
}
}
return true;
}
void DicomPrintObject::FillFile(string file,
DicomFileInfo** output,
Closure* done) {
AutoClosureRunner finished(done);
VLOG(1) << "Opening file: " << file;
unique_ptr<DicomFileInfo> info(DicomFileInfo::FromFile(file));
if (info.get() == NULL) {
return;
}
if (!info->CheckFrames()) {
LOG(ERROR) << "Unable to load some frame for file: " << file;
return;
}
*output = info.release();
}
PointOctree* DicomPrintObject::BuildOctree(
const vector<DicomFileInfo*>& infos,
const Point& x_dir,
const Point& y_dir,
const Point& z_dir,
const Point& origin,
const Box& range) {
unique_ptr<PointOctree> octree(new PointOctree(range));
VLOG(1) << "Building output octrees.";
if (input_.pool() == NULL) {
for (DicomFileInfo* info : infos) {
for (int i = 0; i < info->num_frames(); ++i){
BuildSingleOctree(info,
BuildOctreeParams(x_dir, y_dir, z_dir, origin,
octree->range()),
i, &octree, NULL);
if (octree == NULL) {
return NULL;
}
}
}
return octree.release();
}
// Parallel version.
int total_slices = 0;
for (const DicomFileInfo* info : infos) {
total_slices += info->num_frames();
}
thread::BlockingCounter counter(total_slices);
vector<unique_ptr<PointOctree>> octrees(total_slices);
int next = 0;
for (DicomFileInfo* info : infos) {
for (int i = 0; i < info->num_frames(); ++i) {
unique_ptr<PointOctree>* out = &octrees[next++];
input_.pool()->Add(NewCallback(
this, &DicomPrintObject::BuildSingleOctree,
info,
BuildOctreeParams(x_dir, y_dir, z_dir, origin,
octree->range()),
i, out,
NewCallback(&counter, &thread::BlockingCounter::Decrement)));
}
}
counter.Wait();
// Merge and return
VLOG(1) << "Merging output octrees.";
for (int i = 0; i < octrees.size(); ++i) {
CHECK(octree->Merge(octrees[i].release()));
}
return octree.release();
}
void DicomPrintObject::BuildSingleOctree(DicomFileInfo* info,
BuildOctreeParams params,
int frame_id,
unique_ptr<PointOctree>* output,
Closure* done) {
AutoClosureRunner finished(done);
unique_ptr<PointOctree> octree(output->release());
if (octree == NULL) {
octree.reset(new PointOctree(params.range));
}
unique_ptr<DicomPixelData> pixels(info->NewPixelDataForFrame(frame_id));
if (pixels.get() == NULL) {
LOG(ERROR) << "Unable to load pixel data, frame: " << frame_id;
return;
}
float val;
while (pixels->Next(&val)) {
Point p = TranslatePoint(params.x_dir,
params.y_dir,
params.z_dir, pixels->point()) - params.origin;
octree->SetPoint(p, val);
}
output->reset(octree.release());
}
} // namespace printer
| [
"chris.vana@gmail.com"
] | chris.vana@gmail.com |
64bd1ff8a8c6a22286a4c4ebd5ff692b5e78fada | 40f18b701768b78f881fe53a9e6267678eb9e2c1 | /LanQiao/ALGO/ALGO-118.cpp | bf62cb55ca489e0db04a27a2c014effa5e2e95d7 | [] | no_license | jiafanxue/Algorithm | 9732178808b46bd0e921920ada32308d6e25bdb0 | 649a88884238a80e268dc8080de1e8f4c912470c | refs/heads/master | 2021-01-13T03:27:34.824824 | 2017-05-15T12:21:46 | 2017-05-15T12:21:46 | 77,546,152 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 283 | cpp | #include <iostream>
using namespace std;
int main(int argc, char const *argv[])
{
int num;
cin >> num;
for(int i = 1; i < num; ++i) {
int sum = i;
for(int j = i + 1; j < num; ++j) {
sum += j;
if(sum == num) {
cout << i << " " << j << endl;
}
}
}
return 0;
} | [
"Tutuxsfly@126.com"
] | Tutuxsfly@126.com |
8602f33b930574871d11c79c5255b308de7f449e | c45b2f541377672c090b3c915f70b8c0ef2e9125 | /ARMInspectorGUI/ui_inspectionFrm.h | 308a654996c70352a349670d2738bca76b8b12c7 | [] | no_license | ask1612/ARMInspector | 1c9d0efdf51d57398aa56810479092a5a844f283 | d1fd851464cfbacf8f1cb9012bc168d85dbb9009 | refs/heads/master | 2023-07-11T00:10:53.651583 | 2021-08-06T12:20:51 | 2021-08-06T12:20:51 | 354,582,534 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 5,419 | h | /********************************************************************************
** Form generated from reading UI file 'inspectionFrm.ui'
**
** Created by: Qt User Interface Compiler version 5.15.2
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_INSPECTIONFRM_H
#define UI_INSPECTIONFRM_H
#include <QtCore/QVariant>
#include <QtWidgets/QApplication>
#include <QtWidgets/QDialog>
#include <QtWidgets/QGridLayout>
#include <QtWidgets/QHeaderView>
#include <QtWidgets/QPushButton>
#include <QtWidgets/QTableView>
QT_BEGIN_NAMESPACE
class Ui_inspectionFrm
{
public:
QGridLayout *gridLayout;
QTableView *tableView;
QPushButton *pushButton_Add;
QPushButton *pushButton_Edit;
QPushButton *pushButton_Remove;
void setupUi(QDialog *inspectionFrm)
{
if (inspectionFrm->objectName().isEmpty())
inspectionFrm->setObjectName(QString::fromUtf8("inspectionFrm"));
inspectionFrm->resize(400, 300);
inspectionFrm->setStyleSheet(QString::fromUtf8("QPushButton {\n"
"color: white;\n"
"background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #88d, stop: 0.1 #99e, stop: 0.49 #77c, stop: 0.5 #66b, stop: 1 #77c);\n"
"border-width: 1px;\n"
"border-color: #339;\n"
"border-style: solid;\n"
"border-radius: 7;\n"
"padding: 3px;\n"
"font-size: 10px;\n"
"padding-left: 5px;\n"
"padding-right: 5px;\n"
"min-width: 100px;\n"
"max-width: 100px;\n"
"min-height: 13px;\n"
"max-height: 13px;\n"
"}\n"
"QHeaderView {\n"
" background-color: #fff;\n"
" font-size:11px;\n"
"}\n"
"QHeaderView::section:horizontal {\n"
" color: #fff;\n"
" border-style: solid;\n"
" background-color: qlineargradient( x1: 0, y1: 0, x2: 0, y2: 1,\n"
" stop: 0 #4287ff, stop: 1 #356ccc);\n"
" }\n"
"QTableView {\n"
" border: 1px solid #3873d9;\n"
" border-top-color: #4287ff;\n"
" border-radius: 4px;\n"
" background-color: #fff;\n"
" background-image: url(:/img/other/background.png);\n"
" gridline-color: #777;\n"
" selec"
"tion-background-color: rgb(235,110,36);\n"
" color:#333;\n"
" font-size:11px;\n"
" }\n"
"\n"
"QScrollBar:vertical {\n"
" background: #e4e4e4;\n"
" border-top-right-radius: 4px;\n"
" border-bottom-right-radius: 4px;\n"
" width: 12px;\n"
" margin: 0px;\n"
" }\n"
" QScrollBar::handle:vertical {\n"
" background-color: qlineargradient( x1: 0, y1: 0, x2: 1, y2: 0,\n"
" stop: 0 #4287ff, stop: 1 #356ccc);\n"
" border-radius: 4px;\n"
" min-height: 20px;\n"
" margin: 0px 2px 0px 2px;\n"
" }\n"
" QScrollBar::add-line:vertical {\n"
" background: none;\n"
" height: 0px;\n"
" subcontrol-position: right;\n"
" subcontrol-origin: margin;\n"
" }\n"
" QScrollBar::sub-line:vertical {\n"
" background: none;\n"
" height: 0px;\n"
" subcontrol-position: left;\n"
" subcontrol-origin: margin;\n"
" }\n"
"\n"
"QMessageBox QPushButton {\n"
"color: white;\n"
"background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #88d"
", stop: 0.1 #99e, stop: 0.49 #77c, stop: 0.5 #66b, stop: 1 #77c);\n"
"border-width: 1px;\n"
"border-color: #339;\n"
"border-style: solid;\n"
"border-radius: 7;\n"
"padding: 3px;\n"
"font-size: 10px;\n"
"padding-left: 5px;\n"
"padding-right: 5px;\n"
"min-width: 50px;\n"
"max-width: 50px;\n"
"min-height: 13px;\n"
"max-height: 13px;\n"
"}\n"
""));
gridLayout = new QGridLayout(inspectionFrm);
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
tableView = new QTableView(inspectionFrm);
tableView->setObjectName(QString::fromUtf8("tableView"));
gridLayout->addWidget(tableView, 0, 0, 1, 3);
pushButton_Add = new QPushButton(inspectionFrm);
pushButton_Add->setObjectName(QString::fromUtf8("pushButton_Add"));
gridLayout->addWidget(pushButton_Add, 1, 0, 1, 1);
pushButton_Edit = new QPushButton(inspectionFrm);
pushButton_Edit->setObjectName(QString::fromUtf8("pushButton_Edit"));
gridLayout->addWidget(pushButton_Edit, 1, 1, 1, 1);
pushButton_Remove = new QPushButton(inspectionFrm);
pushButton_Remove->setObjectName(QString::fromUtf8("pushButton_Remove"));
gridLayout->addWidget(pushButton_Remove, 1, 2, 1, 1);
retranslateUi(inspectionFrm);
QMetaObject::connectSlotsByName(inspectionFrm);
} // setupUi
void retranslateUi(QDialog *inspectionFrm)
{
inspectionFrm->setWindowTitle(QCoreApplication::translate("inspectionFrm", "inspectionFrm", nullptr));
pushButton_Add->setText(QCoreApplication::translate("inspectionFrm", "\320\224\320\276\320\261\320\260\320\262\320\270\321\202\321\214 ", nullptr));
pushButton_Edit->setText(QCoreApplication::translate("inspectionFrm", "\320\240\320\265\320\264\320\260\320\272\321\202\320\270\321\200\320\276\320\262\320\260\321\202\321\214 ", nullptr));
pushButton_Remove->setText(QCoreApplication::translate("inspectionFrm", "\320\243\320\264\320\260\320\273\320\270\321\202\321\214", nullptr));
} // retranslateUi
};
namespace Ui {
class inspectionFrm: public Ui_inspectionFrm {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_INSPECTIONFRM_H
| [
"kazun@kazun-Inspiron-5537"
] | kazun@kazun-Inspiron-5537 |
7bdab0494b47aae000499b47d2150874fa801272 | fdb1b46ea89976c3ae04f52c854da87acabe5bbf | /Heart of the Cards/Temp/StagingArea/Data/il2cppOutput/UnityEngine.UI.cpp | 55268f45fd2f89d205f6d1a3db5e80f08fc9177e | [] | no_license | jlewis19/HeartOfTheCards | 63fe20015648b74b333e4e14a6e3d5462312b3a1 | 3782a4cf84a300d9ad7ebaae113211d74c91bf17 | refs/heads/master | 2023-04-08T23:57:26.278082 | 2021-04-24T03:57:15 | 2021-04-24T03:57:15 | 358,038,940 | 0 | 0 | null | 2021-04-24T03:57:15 | 2021-04-14T20:50:36 | C# | UTF-8 | C++ | false | false | 2,251,053 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
struct VirtActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R>
struct VirtFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1, typename T2>
struct VirtActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1>
struct VirtFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1>
struct VirtActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct VirtFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename T1>
struct InterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
struct InterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R>
struct InterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct InterfaceFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Collections.Generic.Dictionary`2/Entry<System.Int32,UnityEngine.EventSystems.PointerEventData>[]
struct EntryU5BU5D_t9FA9BC8E37D9A65FEA7CDE9E9D8BF84F6BE76AC0;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,UnityEngine.EventSystems.PointerEventData>
struct KeyCollection_tDD03143C92B9ED1B27C4D6DED3D403861DA658D0;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>
struct ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,UnityEngine.EventSystems.PointerEventData>
struct ValueCollection_tB55394F384417AC8A8E53492B82E4C216B7FC23B;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Object>
struct Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884;
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.EventSystems.PointerEventData>
struct Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750;
// System.Collections.Generic.Dictionary`2<UnityEngine.UI.ICanvasElement,System.Int32>
struct Dictionary_2_tFC741FE83E41AFDB837F12174457B5D49FB89D81;
// System.Collections.Generic.Dictionary`2<UnityEngine.UI.IClipper,System.Int32>
struct Dictionary_2_tC1202FF46679C1EBCE143C681E460447571A72D8;
// System.Collections.Generic.HashSet`1<UnityEngine.UI.IClippable>
struct HashSet_1_t342660F836636D5AEACE4C134C048A1B9F549EDC;
// System.Collections.Generic.HashSet`1<UnityEngine.UI.MaskableGraphic>
struct HashSet_1_tAF46C0FA5DE4DF8DBF79849CC6D9ECAC4E17DC5B;
// System.Collections.Generic.IComparer`1<UnityEngine.RaycastHit>
struct IComparer_1_t6BBE8419EFFF8F18B6B35A2369442F8DC92A1412;
// System.Collections.Generic.IEnumerable`1<System.Object>
struct IEnumerable_1_t2F75FCBEC68AFE08982DA43985F9D04056E2BE73;
// System.Collections.Generic.IEnumerable`1<UnityEngine.UI.Dropdown/OptionData>
struct IEnumerable_1_t6426A3338F21B0558B996270D881AECB388912EF;
// System.Collections.Generic.IEqualityComparer`1<System.Int32>
struct IEqualityComparer_1_t7B82AA0F8B96BAAA21E36DDF7A1FE4348BDDBE95;
// System.Collections.Generic.IList`1<UnityEngine.Transform>
struct IList_1_t2CE05980F8B9CC1149914C41DDAB66D7ABFC902A;
// System.Collections.Generic.List`1<System.Int32>
struct List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226;
// System.Collections.Generic.List`1<System.Object>
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D;
// System.Collections.Generic.List`1<System.String>
struct List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3;
// System.Collections.Generic.List`1<UnityEngine.Canvas>
struct List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14;
// System.Collections.Generic.List`1<UnityEngine.CanvasGroup>
struct List_1_t053DAB6E2110E276A0339D73497193F464BC1F82;
// System.Collections.Generic.List`1<UnityEngine.Color32>
struct List_1_t749ADA5233D9B421293A000DCB83608A24C3D5D5;
// System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule>
struct List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176;
// System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseRaycaster>
struct List_1_tE44A303DE85018C722D021A9716A97568780A0E1;
// System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>
struct List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B;
// System.Collections.Generic.List`1<UnityEngine.EventSystems.EventTrigger/Entry>
struct List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2;
// System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>
struct List_1_tE1B02DF614CD9F94F541033562E5F649C88F18A2;
// System.Collections.Generic.List`1<UnityEngine.EventSystems.PointerInputModule/ButtonState>
struct List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137;
// System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>
struct List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098;
// System.Collections.Generic.List`1<UnityEngine.GameObject>
struct List_1_t3D4152882C54B77C712688E910390D5C8E030463;
// System.Collections.Generic.List`1<UnityEngine.Sprite>
struct List_1_tF23BA9E080B0770882049C6DC281D5C589990D67;
// System.Collections.Generic.List`1<UnityEngine.Transform>
struct List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE;
// System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/DropdownItem>
struct List_1_t836CD930F5F0862929A362435417DA9BCD4186F8;
// System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/OptionData>
struct List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83;
// System.Collections.Generic.List`1<UnityEngine.UI.Graphic>
struct List_1_t705F73CF6A6B35959C68A5EDDA0E8C8B3137797F;
// System.Collections.Generic.List`1<UnityEngine.UI.ICanvasElement>
struct List_1_t0998F898063587B085A1FEFF73806FCB149A93AE;
// System.Collections.Generic.List`1<UnityEngine.UI.IClipper>
struct List_1_t963F1C52D303E088C23BA96CEB8D6E020DC61A3A;
// System.Collections.Generic.List`1<UnityEngine.UI.Image>
struct List_1_tB46CB6C7789F514A8BE08EB5A4F3D9D26AE5E4DA;
// System.Collections.Generic.List`1<UnityEngine.UI.RectMask2D>
struct List_1_tFE915F05C1A0D10E751CEC3F24F229A6C57E375C;
// System.Collections.Generic.List`1<UnityEngine.Vector2>
struct List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB;
// System.Collections.Generic.List`1<UnityEngine.Vector3>
struct List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5;
// System.Collections.Generic.List`1<UnityEngine.Vector4>
struct List_1_tFF4005B40E5BA433006DA11C56DB086B1E2FC955;
// System.Collections.Generic.Stack`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>>
struct Stack_1_tF50226FFA575B9B0BD73826121A0F7932D871B32;
// System.Collections.IDictionary
struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7;
// System.Collections.IEnumerator
struct IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A;
// System.Comparison`1<System.Object>
struct Comparison_1_tD9DBDF7B2E4774B4D35E113A76D75828A24641F4;
// System.Comparison`1<UnityEngine.EventSystems.RaycastResult>
struct Comparison_1_t80059259E2DC99461F7DF9B43BA93054613AE703;
// System.Comparison`1<UnityEngine.UI.ICanvasElement>
struct Comparison_1_tE7E69DEDE3A7782BEEADFF223EE57D6F7F626AEC;
// System.DelegateData
struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE;
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196;
// System.Exception
struct Exception_t;
// System.IAsyncResult
struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598;
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
// System.IntPtr[]
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
// System.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010;
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
// System.Reflection.Binder
struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759;
// System.Reflection.MemberFilter
struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770;
// System.String
struct String_t;
// System.String[]
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
// System.Text.StringBuilder
struct StringBuilder_t;
// System.Type
struct Type_t;
// System.Type[]
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
// System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF;
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
// UnityEngine.Behaviour
struct Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8;
// UnityEngine.Camera
struct Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34;
// UnityEngine.Camera/CameraCallback
struct CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0;
// UnityEngine.Canvas
struct Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591;
// UnityEngine.Canvas/WillRenderCanvases
struct WillRenderCanvases_tBD5AD090B5938021DEAA679A5AEEA790F60A8BEE;
// UnityEngine.CanvasGroup
struct CanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90;
// UnityEngine.CanvasRenderer
struct CanvasRenderer_tB4D9C9FE77FD5C9C4546FC022D6E956960BC2B72;
// UnityEngine.Canvas[]
struct CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129;
// UnityEngine.Collider
struct Collider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF;
// UnityEngine.Collider2D
struct Collider2D_tD64BE58E48B95D89D349FEAB54D0FE2EEBF83379;
// UnityEngine.Component
struct Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621;
// UnityEngine.Coroutine
struct Coroutine_tAE7DB2FC70A0AE6477F896F852057CB0754F06EC;
// UnityEngine.Display
struct Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57;
// UnityEngine.Display/DisplaysUpdatedDelegate
struct DisplaysUpdatedDelegate_t2FAF995B47D691BD7C5BBC17D533DD8B19BE9A90;
// UnityEngine.Display[]
struct DisplayU5BU5D_tB2AB0FDB3B2E9FD784D5100C18EB0ED489A2CCC9;
// UnityEngine.Event
struct Event_t187FF6A6B357447B83EC2064823EE0AEC5263210;
// UnityEngine.EventSystems.AbstractEventData
struct AbstractEventData_t636F385820C291DAE25897BCEB4FBCADDA3B75F6;
// UnityEngine.EventSystems.AxisEventData
struct AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442;
// UnityEngine.EventSystems.BaseEventData
struct BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5;
// UnityEngine.EventSystems.BaseInput
struct BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82;
// UnityEngine.EventSystems.BaseInputModule
struct BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939;
// UnityEngine.EventSystems.BaseInputModule[]
struct BaseInputModuleU5BU5D_t96C73D6EB068D1ED6D0BB05720B83EACFB44E115;
// UnityEngine.EventSystems.BaseInput[]
struct BaseInputU5BU5D_t8D390CDD3C58D992EDA010E5AF94B42F4C73E6E3;
// UnityEngine.EventSystems.BaseRaycaster
struct BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966;
// UnityEngine.EventSystems.BaseRaycaster[]
struct BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6;
// UnityEngine.EventSystems.EventSystem
struct EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77;
// UnityEngine.EventSystems.EventSystem[]
struct EventSystemU5BU5D_t08BD6FCD5A30D5603671D67AF878DBA41AFE9604;
// UnityEngine.EventSystems.EventTrigger
struct EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298;
// UnityEngine.EventSystems.EventTrigger/Entry
struct Entry_t58989269D924DCD15F196DDEDAB84B85ED4D734E;
// UnityEngine.EventSystems.EventTrigger/Entry[]
struct EntryU5BU5D_tB5DBEB01F3998CD9581F39203F8CAD8798FC418C;
// UnityEngine.EventSystems.EventTrigger/TriggerEvent
struct TriggerEvent_tF73252408C49CDE2F1A05AA75FE09086C53A9793;
// UnityEngine.EventSystems.ExecuteEvents/<>c
struct U3CU3Ec_t91DA84DB86FD18E664B2FBDACCB1B7A5E2A0849C;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<System.Object>
struct EventFunction_1_t0D76F16B2B9E513C3DFCE66CDCAC1768F5B6488C;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IBeginDragHandler>
struct EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ICancelHandler>
struct EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDeselectHandler>
struct EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDragHandler>
struct EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDropHandler>
struct EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IEndDragHandler>
struct EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IInitializePotentialDragHandler>
struct EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IMoveHandler>
struct EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerClickHandler>
struct EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerDownHandler>
struct EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerEnterHandler>
struct EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerExitHandler>
struct EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerUpHandler>
struct EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IScrollHandler>
struct EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ISelectHandler>
struct EventFunction_1_t7521247C87411935E8A2CA38683533083459473F;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ISubmitHandler>
struct EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B;
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IUpdateSelectedHandler>
struct EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173;
// UnityEngine.EventSystems.IBeginDragHandler
struct IBeginDragHandler_t5CBE3EF4B4A6303FA5E9AC40295295BBAD687BF4;
// UnityEngine.EventSystems.ICancelHandler
struct ICancelHandler_t868799EEEF8164176835C988494360950CFB75B3;
// UnityEngine.EventSystems.IDeselectHandler
struct IDeselectHandler_t7A98A4E16B7F39F827584A16F120FD4FC001997D;
// UnityEngine.EventSystems.IDragHandler
struct IDragHandler_t196F681B5B4A5BFCDEA2A93CA0A75D504908D25B;
// UnityEngine.EventSystems.IDropHandler
struct IDropHandler_t617E86EDCC6B18A39D69DFF444D5358072B524C3;
// UnityEngine.EventSystems.IEndDragHandler
struct IEndDragHandler_tA6045DEE83CD2C06AC9409CBE183B10E3C0B9070;
// UnityEngine.EventSystems.IEventSystemHandler[]
struct IEventSystemHandlerU5BU5D_tAEDE6FF8079C3638A0CD2AD1D9430AE3EC7A0AEB;
// UnityEngine.EventSystems.IInitializePotentialDragHandler
struct IInitializePotentialDragHandler_t56667A600E5BC5B8786753312DB9EDFE13455B45;
// UnityEngine.EventSystems.IMoveHandler
struct IMoveHandler_tD51D5B6A4C5B3A233263107AF0020BE185647D41;
// UnityEngine.EventSystems.IPointerClickHandler
struct IPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13;
// UnityEngine.EventSystems.IPointerDownHandler
struct IPointerDownHandler_tD9DAB9987B51AF8D4029CC24F52D17485684F4BF;
// UnityEngine.EventSystems.IPointerEnterHandler
struct IPointerEnterHandler_tD4E3109B19B18A39FE89A2386C453D3F5019026B;
// UnityEngine.EventSystems.IPointerExitHandler
struct IPointerExitHandler_t5D65A773A15D990BC231F7C9FE221AB4417327FF;
// UnityEngine.EventSystems.IPointerUpHandler
struct IPointerUpHandler_tAF005E3FEF3EA2D9DDA99FAA488955AA8B392102;
// UnityEngine.EventSystems.IScrollHandler
struct IScrollHandler_t3BB7CCD821B37EBB5EA18D30D65D4075FB43198B;
// UnityEngine.EventSystems.ISelectHandler
struct ISelectHandler_t05E0943DEF2BC53023C2E4BF4C815E0EDE82C0F4;
// UnityEngine.EventSystems.ISubmitHandler
struct ISubmitHandler_tCFAD2814817B87B883DB9E7F84EE0196C9E531C5;
// UnityEngine.EventSystems.IUpdateSelectedHandler
struct IUpdateSelectedHandler_t460F9A1B3655B6DD49656995D451206631B4F4D0;
// UnityEngine.EventSystems.Physics2DRaycaster
struct Physics2DRaycaster_t5D190F0825AA5F9E76892B852D6A5437D9981972;
// UnityEngine.EventSystems.PhysicsRaycaster
struct PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C;
// UnityEngine.EventSystems.PhysicsRaycaster/RaycastHitComparer
struct RaycastHitComparer_t5465A53942AAC60F5716D514946F4AB6C263CFA2;
// UnityEngine.EventSystems.PointerEventData
struct PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63;
// UnityEngine.EventSystems.PointerInputModule
struct PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C;
// UnityEngine.EventSystems.PointerInputModule/ButtonState
struct ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D;
// UnityEngine.EventSystems.PointerInputModule/ButtonState[]
struct ButtonStateU5BU5D_t8F3BFDF0C2EF7E4D21E69ABBE6845C21C194E268;
// UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData
struct MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988;
// UnityEngine.EventSystems.PointerInputModule/MouseState
struct MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7;
// UnityEngine.EventSystems.RaycastResult[]
struct RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65;
// UnityEngine.EventSystems.StandaloneInputModule
struct StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5;
// UnityEngine.EventSystems.TouchInputModule
struct TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945;
// UnityEngine.EventSystems.UIBehaviour
struct UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70;
// UnityEngine.Events.InvokableCallList
struct InvokableCallList_t18AA4F473C7B295216B7D4B9723B4F3DFCCC9A3F;
// UnityEngine.Events.PersistentCallGroup
struct PersistentCallGroup_t6E5DF2EBDA42794B5FE0C6DAA97DF65F0BFF571F;
// UnityEngine.Events.UnityAction
struct UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4;
// UnityEngine.Events.UnityAction`1<System.Boolean>
struct UnityAction_1_tB994D127B02789CE2010397AEF756615E5F84FDC;
// UnityEngine.Events.UnityAction`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>>
struct UnityAction_1_t3B6DA5D18F5A6D34776438B5CD187C01229E969A;
// UnityEngine.Events.UnityAction`1<System.Object>
struct UnityAction_1_t330F97880F37E23D6D0C6618DD77F28AC9EF8FA9;
// UnityEngine.Events.UnityAction`1<System.Single>
struct UnityAction_1_t0064196FB7635B812E65BA9FD08D39F68C75DCD9;
// UnityEngine.Events.UnityAction`1<UnityEngine.Color>
struct UnityAction_1_t8523D5D21ADA168AED3BD9CFFCED8FF87199DE9D;
// UnityEngine.Events.UnityEvent
struct UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F;
// UnityEngine.Events.UnityEvent`1<System.Boolean>
struct UnityEvent_1_tE1EF042798523847EEBB2A12FA37C4003C1B1299;
// UnityEngine.Events.UnityEvent`1<System.Int32>
struct UnityEvent_1_t6DD758393B13FC2A58BE44E647D9EBEA4F27D914;
// UnityEngine.Events.UnityEvent`1<System.Object>
struct UnityEvent_1_t9E897A46A46C78F7104A831E63BB081546EFFF0D;
// UnityEngine.Events.UnityEvent`1<System.Single>
struct UnityEvent_1_t655F4ECDA62E804A34CC8737AC30B836ABD3D2DA;
// UnityEngine.Events.UnityEvent`1<UnityEngine.Color>
struct UnityEvent_1_tFB475F569CC8852B004B3F2DE7536E67324C2AF8;
// UnityEngine.Events.UnityEvent`1<UnityEngine.EventSystems.BaseEventData>
struct UnityEvent_1_t55DE148B605149DF84E469388B37672EE507573E;
// UnityEngine.GameObject
struct GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F;
// UnityEngine.GameObject[]
struct GameObjectU5BU5D_tBF9D474747511CF34A040A1697E34C74C19BB520;
// UnityEngine.Material
struct Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598;
// UnityEngine.Mesh
struct Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C;
// UnityEngine.MonoBehaviour
struct MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429;
// UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0;
// UnityEngine.RaycastHit2D[]
struct RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165;
// UnityEngine.RaycastHit[]
struct RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57;
// UnityEngine.RectTransform
struct RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20;
// UnityEngine.RectTransform/ReapplyDrivenProperties
struct ReapplyDrivenProperties_t431F4FBD9C59AE097FE33C4354CC6251B01B527D;
// UnityEngine.Renderer
struct Renderer_t0556D67DD582620D1F495627EDE30D03284151F4;
// UnityEngine.Sprite
struct Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198;
// UnityEngine.SpriteRenderer
struct SpriteRenderer_tCD51E875611195DBB91123B68434881D3441BC6F;
// UnityEngine.Sprite[]
struct SpriteU5BU5D_tF94AD07E062BC08ECD019A21E7A7B861654905F7;
// UnityEngine.TextGenerator
struct TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8;
// UnityEngine.Texture2D
struct Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C;
// UnityEngine.TouchScreenKeyboard
struct TouchScreenKeyboard_t2A69F85698E9780470181532D3F2BC903623FD90;
// UnityEngine.Transform
struct Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA;
// UnityEngine.Transform[]
struct TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804;
// UnityEngine.UI.AnimationTriggers
struct AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5;
// UnityEngine.UI.AspectRatioFitter
struct AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6;
// UnityEngine.UI.BaseMeshEffect
struct BaseMeshEffect_t72759F31F9D204D7EFB6B45097873809D4524BA5;
// UnityEngine.UI.BaseVertexEffect
struct BaseVertexEffect_t1EF95AB1FC33A027710E7DC86D19F700156C4F6A;
// UnityEngine.UI.Button
struct Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B;
// UnityEngine.UI.Button/<OnFinishSubmit>d__9
struct U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54;
// UnityEngine.UI.Button/ButtonClickedEvent
struct ButtonClickedEvent_t975D9C903BC4880557ADD7D3ACFB01CB2B3D6DDB;
// UnityEngine.UI.CanvasScaler
struct CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564;
// UnityEngine.UI.CanvasUpdateRegistry
struct CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9;
// UnityEngine.UI.ClipperRegistry
struct ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F;
// UnityEngine.UI.Collections.IndexedSet`1<System.Object>
struct IndexedSet_1_tBC520330ED014FACA69A5A730B4C03ABD49AB4C3;
// UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.ICanvasElement>
struct IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61;
// UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.IClipper>
struct IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A;
// UnityEngine.UI.ContentSizeFitter
struct ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8;
// UnityEngine.UI.CoroutineTween.ColorTween/ColorTweenCallback
struct ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0;
// UnityEngine.UI.CoroutineTween.FloatTween/FloatTweenCallback
struct FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502;
// UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>
struct TweenRunner_1_t56CEB168ADE3739A1BDDBF258FDC759DF8927172;
// UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>
struct TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF;
// UnityEngine.UI.DefaultControls/DefaultRuntimeFactory
struct DefaultRuntimeFactory_t220869A7714E77F38D078944261214EF14D509F2;
// UnityEngine.UI.DefaultControls/IFactoryControls
struct IFactoryControls_tF346B725AD1BC6274693FDFCFD4665E01E2FC571;
// UnityEngine.UI.Dropdown
struct Dropdown_tF6331401084B1213CAB10587A6EC81461501930F;
// UnityEngine.UI.Dropdown/<>c__DisplayClass62_0
struct U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A;
// UnityEngine.UI.Dropdown/<DelayedDestroyDropdownList>d__74
struct U3CDelayedDestroyDropdownListU3Ed__74_tE1C8F40CDF9DE52D3A9F431CB712B752DE9F6D69;
// UnityEngine.UI.Dropdown/DropdownEvent
struct DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306;
// UnityEngine.UI.Dropdown/DropdownItem
struct DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46;
// UnityEngine.UI.Dropdown/DropdownItem[]
struct DropdownItemU5BU5D_t42132E9435E07E2056C716E4139A76E0CC00E843;
// UnityEngine.UI.Dropdown/OptionData
struct OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831;
// UnityEngine.UI.Dropdown/OptionDataList
struct OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D;
// UnityEngine.UI.Dropdown/OptionData[]
struct OptionDataU5BU5D_t7594674D67B75BA053EC688A05603EC89B1F36A8;
// UnityEngine.UI.FontData
struct FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494;
// UnityEngine.UI.Graphic
struct Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8;
// UnityEngine.UI.GraphicRaycaster
struct GraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83;
// UnityEngine.UI.ICanvasElement
struct ICanvasElement_t26FA36346B5CB52C9144DF0076E33E8C367471D2;
// UnityEngine.UI.IClipper
struct IClipper_t548E5A5A4671DF46008ECF051372EFAEB16C867F;
// UnityEngine.UI.Image
struct Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E;
// UnityEngine.UI.InputField
struct InputField_t533609195B110760BCFF00B746C87D81969CB005;
// UnityEngine.UI.InputField/OnChangeEvent
struct OnChangeEvent_t6C3C7DD6AEA262BB97AD53B0E669EC7EC19BCC1A;
// UnityEngine.UI.InputField/OnValidateInput
struct OnValidateInput_t3E857B491A319A5B22F6AD3D02CFD22C1BBFD8D0;
// UnityEngine.UI.InputField/SubmitEvent
struct SubmitEvent_tE1EC12ACD7DE7D57B9ECBBACA05493E226E53E4A;
// UnityEngine.UI.Mask
struct Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB;
// UnityEngine.UI.MaskableGraphic/CullStateChangedEvent
struct CullStateChangedEvent_t6BC3E87DBC04B585798460D55F56B86C23B62FE4;
// UnityEngine.UI.ObjectPool`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>>
struct ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC;
// UnityEngine.UI.ObjectPool`1<System.Object>
struct ObjectPool_1_t5BE4172BA33477BCA8E88EF395C26D7558DEB7E9;
// UnityEngine.UI.RectMask2D
struct RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B;
// UnityEngine.UI.RectMask2D[]
struct RectMask2DU5BU5D_t561412965D8881DE3CB36C5AF730E91188345A21;
// UnityEngine.UI.RectangularVertexClipper
struct RectangularVertexClipper_t6C47856C4F775A5799A49A100196C2BB14C5DD91;
// UnityEngine.UI.ReflectionMethodsCache
struct ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A;
// UnityEngine.UI.ReflectionMethodsCache/GetRayIntersectionAllCallback
struct GetRayIntersectionAllCallback_t68C2581CCF05E868297EBD3F3361274954845095;
// UnityEngine.UI.ReflectionMethodsCache/GetRayIntersectionAllNonAllocCallback
struct GetRayIntersectionAllNonAllocCallback_tAD7508D45DB6679B6394983579AD18D967CC2AD4;
// UnityEngine.UI.ReflectionMethodsCache/GetRaycastNonAllocCallback
struct GetRaycastNonAllocCallback_tC13D9767CFF00EAB26E9FCC4BDD505F0721A2B4D;
// UnityEngine.UI.ReflectionMethodsCache/Raycast2DCallback
struct Raycast2DCallback_tE99ABF9ABC3A380677949E8C05A3E477889B82BE;
// UnityEngine.UI.ReflectionMethodsCache/Raycast3DCallback
struct Raycast3DCallback_t83483916473C9710AEDB316A65CBE62C58935C5F;
// UnityEngine.UI.ReflectionMethodsCache/RaycastAllCallback
struct RaycastAllCallback_t751407A44270E02FAA43D0846A58EE6A8C4AE1CE;
// UnityEngine.UI.ScrollRect
struct ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51;
// UnityEngine.UI.ScrollRect/ScrollRectEvent
struct ScrollRectEvent_t8995F69D65BA823FB862144B12E6D3504236FEEB;
// UnityEngine.UI.Scrollbar
struct Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389;
// UnityEngine.UI.Scrollbar/ScrollEvent
struct ScrollEvent_t07B0FA266C69E36437A0083D5058B2952D151FF7;
// UnityEngine.UI.Selectable
struct Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A;
// UnityEngine.UI.Selectable[]
struct SelectableU5BU5D_t98F7C5A863B20CD5DBE49CE288038BA954C83F02;
// UnityEngine.UI.Slider
struct Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09;
// UnityEngine.UI.Slider/SliderEvent
struct SliderEvent_t64A824F56F80FC8E2F233F0A0FB0821702DF416C;
// UnityEngine.UI.Text
struct Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030;
// UnityEngine.UI.Toggle
struct Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106;
// UnityEngine.UI.Toggle/ToggleEvent
struct ToggleEvent_t50D925F8E220FB47DA738411CEF9C57FF7E1DC43;
// UnityEngine.UI.ToggleGroup
struct ToggleGroup_t11E2B254D3C968C7D0DA11C606CC06D7D7F0D786;
// UnityEngine.UI.VertexHelper
struct VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F;
// UnityEngine.UIVertex[]
struct UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A;
// UnityEngine.Vector2[]
struct Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6;
// UnityEngine.Vector3[]
struct Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28;
// UnityEngine.WaitForSecondsRealtime
struct WaitForSecondsRealtime_t0CF361107C4A9E25E0D4CF2F37732CE785235739;
IL2CPP_EXTERN_C RuntimeClass* AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ButtonClickedEvent_t975D9C903BC4880557ADD7D3ACFB01CB2B3D6DDB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Comparison_1_t80059259E2DC99461F7DF9B43BA93054613AE703_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Comparison_1_tE7E69DEDE3A7782BEEADFF223EE57D6F7F626AEC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DefaultRuntimeFactory_t220869A7714E77F38D078944261214EF14D509F2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dropdown_tF6331401084B1213CAB10587A6EC81461501930F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t7521247C87411935E8A2CA38683533083459473F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IBeginDragHandler_t5CBE3EF4B4A6303FA5E9AC40295295BBAD687BF4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICancelHandler_t868799EEEF8164176835C988494360950CFB75B3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICanvasElement_t26FA36346B5CB52C9144DF0076E33E8C367471D2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IClipper_t548E5A5A4671DF46008ECF051372EFAEB16C867F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t21607AC8487026EFE9C161F3D741B37145799D41_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDeselectHandler_t7A98A4E16B7F39F827584A16F120FD4FC001997D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDragHandler_t196F681B5B4A5BFCDEA2A93CA0A75D504908D25B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDropHandler_t617E86EDCC6B18A39D69DFF444D5358072B524C3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEndDragHandler_tA6045DEE83CD2C06AC9409CBE183B10E3C0B9070_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IFactoryControls_tF346B725AD1BC6274693FDFCFD4665E01E2FC571_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IInitializePotentialDragHandler_t56667A600E5BC5B8786753312DB9EDFE13455B45_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IMoveHandler_tD51D5B6A4C5B3A233263107AF0020BE185647D41_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IPointerDownHandler_tD9DAB9987B51AF8D4029CC24F52D17485684F4BF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IPointerEnterHandler_tD4E3109B19B18A39FE89A2386C453D3F5019026B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IPointerExitHandler_t5D65A773A15D990BC231F7C9FE221AB4417327FF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IPointerUpHandler_tAF005E3FEF3EA2D9DDA99FAA488955AA8B392102_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IScrollHandler_t3BB7CCD821B37EBB5EA18D30D65D4075FB43198B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ISelectHandler_t05E0943DEF2BC53023C2E4BF4C815E0EDE82C0F4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ISubmitHandler_tCFAD2814817B87B883DB9E7F84EE0196C9E531C5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IUpdateSelectedHandler_t460F9A1B3655B6DD49656995D451206631B4F4D0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LayoutRebuilder_t8D3501B43B1DE666140E2931FFA732B5B09EA5BD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ListPool_1_tC8893BDDEA491654D06C2BC46017B9267D683021_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t3D4152882C54B77C712688E910390D5C8E030463_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t836CD930F5F0862929A362435417DA9BCD4186F8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tE44A303DE85018C722D021A9716A97568780A0E1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RaycastHitComparer_t5465A53942AAC60F5716D514946F4AB6C263CFA2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RectTransformUtility_t9B90669A72B05A33DD88BEBB817BC9CDBB614BBA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TriggerEvent_tF73252408C49CDE2F1A05AA75FE09086C53A9793_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CDelayedDestroyDropdownListU3Ed__74_tE1C8F40CDF9DE52D3A9F431CB712B752DE9F6D69_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t91DA84DB86FD18E664B2FBDACCB1B7A5E2A0849C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UnityAction_1_t0064196FB7635B812E65BA9FD08D39F68C75DCD9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UnityAction_1_t3B6DA5D18F5A6D34776438B5CD187C01229E969A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UnityAction_1_tB994D127B02789CE2010397AEF756615E5F84FDC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WillRenderCanvases_tBD5AD090B5938021DEAA679A5AEEA790F60A8BEE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral010E6E29C1AD8B2F96ACE95AC05261B4DD7464BF;
IL2CPP_EXTERN_C String_t* _stringLiteral021205C69E7E9853CA18CEC944EBD38DE0CF1ED3;
IL2CPP_EXTERN_C String_t* _stringLiteral02869C465F7A1307EFAFE70D034A1B7E195D20C8;
IL2CPP_EXTERN_C String_t* _stringLiteral02D0D18716CB3B951810309E5A5A906EFF9A88A2;
IL2CPP_EXTERN_C String_t* _stringLiteral09E594A52BE3A0E6E14D1A2606F909F43C8B96D0;
IL2CPP_EXTERN_C String_t* _stringLiteral0D7BD1E1A6D6CC41541CAED056D3FA640CF2173A;
IL2CPP_EXTERN_C String_t* _stringLiteral143485F6AB09A04EFA8592FAF451842930E013D3;
IL2CPP_EXTERN_C String_t* _stringLiteral1A6434BFF89BE97BECFB2E7B808BB4F9E9F3F8ED;
IL2CPP_EXTERN_C String_t* _stringLiteral2552DAA6D8E7210E423D5962E63BE9B909D92A30;
IL2CPP_EXTERN_C String_t* _stringLiteral2841B878355F39CF0C546606D1CF252D22A1DAD5;
IL2CPP_EXTERN_C String_t* _stringLiteral284E12472DB8D8A36F74982258C91605C9D47A2B;
IL2CPP_EXTERN_C String_t* _stringLiteral28578FAF0062012EBA720DFDE2523B539E900054;
IL2CPP_EXTERN_C String_t* _stringLiteral2AEE32C4064725FCC569475A6985841039579F2F;
IL2CPP_EXTERN_C String_t* _stringLiteral2CA317AB11597AD5389641AFD61F772E8AD833A5;
IL2CPP_EXTERN_C String_t* _stringLiteral2DACF65959849884A011F36F76A04EEBEA94C5EA;
IL2CPP_EXTERN_C String_t* _stringLiteral2E96AA908138601585C050B5A80C0D0F5A4B18CA;
IL2CPP_EXTERN_C String_t* _stringLiteral2F0DBE96EDB83FAE28D899C9197D4DA6E4EABC5B;
IL2CPP_EXTERN_C String_t* _stringLiteral2F4BD749ECF708FF53A15E9E7904176BD92AD347;
IL2CPP_EXTERN_C String_t* _stringLiteral3005AF5906F0D0E9834355CBD9CF24C4332FFA1D;
IL2CPP_EXTERN_C String_t* _stringLiteral30E23F5B45079EDF760E25405EF8980EBB8B47EF;
IL2CPP_EXTERN_C String_t* _stringLiteral3A4758C3CC8DAC2D76026D0733816741F9B21D43;
IL2CPP_EXTERN_C String_t* _stringLiteral3EC1AE061C27325C7ECB543ADF91235E22CBC9ED;
IL2CPP_EXTERN_C String_t* _stringLiteral4031A8B2594541E21BA9E8BEA517EEEE3F1F7835;
IL2CPP_EXTERN_C String_t* _stringLiteral411E9525B9036979E55C8D646CD3061E1A7F05BF;
IL2CPP_EXTERN_C String_t* _stringLiteral44AACA94704A8DFDF396F166B996163D7D00F479;
IL2CPP_EXTERN_C String_t* _stringLiteral45E118D0563EA8581F830F46E85B60AE714FAAE4;
IL2CPP_EXTERN_C String_t* _stringLiteral46F2235B24C7F49AC8F229D2E70105DEF3C9484F;
IL2CPP_EXTERN_C String_t* _stringLiteral47FEFC2A679A931B5B0109A5DD4B8A8F0AB83F67;
IL2CPP_EXTERN_C String_t* _stringLiteral4824754A1208E36BE5BD9D7741EF31DE24A446E9;
IL2CPP_EXTERN_C String_t* _stringLiteral49E2F6FB28F86D062992BC1F71EB61C7BC53B964;
IL2CPP_EXTERN_C String_t* _stringLiteral4B937CC841D82F8936CEF1EFB88708AB5B0F1EE5;
IL2CPP_EXTERN_C String_t* _stringLiteral4F57A1CE99E68A7B05C42D0A7EA0070EAFABD31C;
IL2CPP_EXTERN_C String_t* _stringLiteral4F9BE057F0EA5D2BA72FD2C810E8D7B9AA98B469;
IL2CPP_EXTERN_C String_t* _stringLiteral50E19FDA0D5B4B74A4A1A1D584E56578693A4EA4;
IL2CPP_EXTERN_C String_t* _stringLiteral564F9BE925CC7F60130686E7C28A11036FFBEBBA;
IL2CPP_EXTERN_C String_t* _stringLiteral5A1ED5E4E065D820146BA039740194DED01DC8FD;
IL2CPP_EXTERN_C String_t* _stringLiteral5B8FC322C1D72815FAD8B0094956D17A4863C6EB;
IL2CPP_EXTERN_C String_t* _stringLiteral6410AFC3D8EAF1300CE14A4A75B1AE311B46BB3D;
IL2CPP_EXTERN_C String_t* _stringLiteral64DD60FE1A049FE6DB3EB1369DEC2E42BF428E21;
IL2CPP_EXTERN_C String_t* _stringLiteral6A3437AA2F331BB1885E8875A4E59267B93A0042;
IL2CPP_EXTERN_C String_t* _stringLiteral722FEB9F2551722C44B4FF5999B3F955FBE8CE01;
IL2CPP_EXTERN_C String_t* _stringLiteral74341E3C271DF3C784E595B804B1F90BE0F80429;
IL2CPP_EXTERN_C String_t* _stringLiteral762BA2D999A92E95CB6EC9A42B04D758AC576491;
IL2CPP_EXTERN_C String_t* _stringLiteral77DFD2135F4DB726C47299BB55BE26F7F4525A46;
IL2CPP_EXTERN_C String_t* _stringLiteral794145F030FF721599A0353A9B2E59E9A92B9BF1;
IL2CPP_EXTERN_C String_t* _stringLiteral7ADB6736CF2C9AE017B128F98738FFBAE0E58655;
IL2CPP_EXTERN_C String_t* _stringLiteral7ED53365DD1C43099B49726626A637D3E0BD800E;
IL2CPP_EXTERN_C String_t* _stringLiteral82434DCEAD715602381B1E58A901E55BFE52DDE7;
IL2CPP_EXTERN_C String_t* _stringLiteral86FCAF1AF93C617D1364DC367624A8FEB943281A;
IL2CPP_EXTERN_C String_t* _stringLiteral96D7E9F2E4825831074F9250E51D3BA8B94AF597;
IL2CPP_EXTERN_C String_t* _stringLiteral9A976FC228B6B33656174EBD6DECCA02C9068378;
IL2CPP_EXTERN_C String_t* _stringLiteral9F963877002FE8B751675B18E72CE57B05DB38A5;
IL2CPP_EXTERN_C String_t* _stringLiteralA53DA7D7D636A66DEDDF02BF5FB029B23420855D;
IL2CPP_EXTERN_C String_t* _stringLiteralA612F48B98C756C1FEAA6FC55AECCAF6E4329460;
IL2CPP_EXTERN_C String_t* _stringLiteralAA5DB7D82232EE34651EB5ADEA59B01C839EB843;
IL2CPP_EXTERN_C String_t* _stringLiteralAD737CBF90EFA86DCA21CC004A5DCE55F06D4646;
IL2CPP_EXTERN_C String_t* _stringLiteralAFB34D479A439057F4F8B32689E246CCA223FB77;
IL2CPP_EXTERN_C String_t* _stringLiteralB304892FE8DC52FEF071BBB2749D11A7C44478BC;
IL2CPP_EXTERN_C String_t* _stringLiteralB3F69F1983924ED9EB2751F7152C86B163972C18;
IL2CPP_EXTERN_C String_t* _stringLiteralBBC3ECFBA5F94B95E90E1DB38E22C69A38723019;
IL2CPP_EXTERN_C String_t* _stringLiteralBDE4849D61262D79AEE48F2D9E10F7257C63A7CA;
IL2CPP_EXTERN_C String_t* _stringLiteralC0392B2B1C472815BA8D1A1E3B20F4A279BF6C50;
IL2CPP_EXTERN_C String_t* _stringLiteralC3328C39B0E29F78E9FF45DB674248B1D245887D;
IL2CPP_EXTERN_C String_t* _stringLiteralCAD12779BCC9AD20C6B50FEC90E3818C9473FEF6;
IL2CPP_EXTERN_C String_t* _stringLiteralCD289AA6ADCBDEB8448BBE98E9F19873F2B45B16;
IL2CPP_EXTERN_C String_t* _stringLiteralCECA32E904728D1645727CB2B9CDEAA153807D77;
IL2CPP_EXTERN_C String_t* _stringLiteralCECEF0F472756FE198ACC69BD5DFC1933414FBEA;
IL2CPP_EXTERN_C String_t* _stringLiteralD183B328807554B505B1663986ABE7300574A46F;
IL2CPP_EXTERN_C String_t* _stringLiteralD5E14B063514CB6630E55F0AEB0AD3B37897EFCA;
IL2CPP_EXTERN_C String_t* _stringLiteralD5FBD98C76A709F16314AF71D2B65C99359F9B0D;
IL2CPP_EXTERN_C String_t* _stringLiteralD6A06A0B45F8310E2889D44E54EAE01DFA2767A7;
IL2CPP_EXTERN_C String_t* _stringLiteralD9F0B728F8B41C0FBCF325CDFF95574BEF3D0305;
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
IL2CPP_EXTERN_C String_t* _stringLiteralDA4A5529E49998E18123CD19ED2CDF7D0F9FCC86;
IL2CPP_EXTERN_C String_t* _stringLiteralDA71B1E606965A288B8200FEA58E98EE18C9B14E;
IL2CPP_EXTERN_C String_t* _stringLiteralE13A74B55744F7132E82D2E2F858E909AA015BD6;
IL2CPP_EXTERN_C String_t* _stringLiteralE27F38C29D9E829679BBE04626F26354087DA51E;
IL2CPP_EXTERN_C String_t* _stringLiteralE91EE57CA5E869F09C37997152F0455B45223508;
IL2CPP_EXTERN_C String_t* _stringLiteralE977CAF15E7FB7C956766F120C920C4681ABA4A4;
IL2CPP_EXTERN_C String_t* _stringLiteralEA81BA6C8195F7C4BA52AB477DAA6FB3F054E78C;
IL2CPP_EXTERN_C String_t* _stringLiteralEBDA6601B7D5DC69F1D7C38173816D204DA06B9A;
IL2CPP_EXTERN_C String_t* _stringLiteralEC9482C230F7C1C7344A86ED0825D6F622A35F6E;
IL2CPP_EXTERN_C String_t* _stringLiteralEC9F7D96DE56795EBE514797581798242F817D49;
IL2CPP_EXTERN_C String_t* _stringLiteralECDDA59AEA5EE67D7D854C969CCF7F4F4B4A4C54;
IL2CPP_EXTERN_C String_t* _stringLiteralED212FA164B940B935EC0A25B32878A0917C7268;
IL2CPP_EXTERN_C String_t* _stringLiteralF12C9C9C288DFB90FCEBA6E6D47A236F536DED95;
IL2CPP_EXTERN_C String_t* _stringLiteralF211CC2AA8CA0E451A49A1F44483A3C0A24BCFCA;
IL2CPP_EXTERN_C String_t* _stringLiteralF35202D0911AF00D4E18E90B7CC54B66CD6BF389;
IL2CPP_EXTERN_C String_t* _stringLiteralF4F4473DF8CB59F0A369AEBEE3D1509ADC0151C6;
IL2CPP_EXTERN_C String_t* _stringLiteralF65F17E852927D59CCF5ED29D413A07B7FF6977A;
IL2CPP_EXTERN_C String_t* _stringLiteralFB64202B49F93523AA4F932B4BC04BD68BF1DC9F;
IL2CPP_EXTERN_C String_t* _stringLiteralFC2D12B944ACEBE30DD287A5A171FEECA740C24D;
IL2CPP_EXTERN_C String_t* _stringLiteralFDFE8E79983EAB6E42EC6A84923F9D664B0E9543;
IL2CPP_EXTERN_C String_t* _stringLiteralFE5D4890220D7DE3BF590AAA7D90B77F91BF18C6;
IL2CPP_EXTERN_C String_t* _stringLiteralFEACA56F70C915BCC63DA18ADA9707F8BC2618CE;
IL2CPP_EXTERN_C String_t* _stringLiteralFF690B28AEC4D9B83774DB8CF0DF55185F949A97;
IL2CPP_EXTERN_C const RuntimeMethod* Array_Sort_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_mEF1012F8E1A6C51EA8DF47DEAF751056596FEB96_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CanvasUpdateRegistry_PerformUpdate_m6C0C51EBC871BFD67FEE7403B0A4D8FC99AAE93E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CanvasUpdateRegistry_SortLayoutList_mB2F2B63B28CC722E5AA645835963DD3678FC08BA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Comparison_1__ctor_m10B32226B56D355E5503821149C904BCF9F17DAC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Comparison_1__ctor_mBCDF46BEA3D67AC2D1A438AC8D3480AE34293374_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponentInChildren_TisToggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106_mF1F1602C88EB98A9831EEC9AFCFD142E3EE781AC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisCamera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34_mB090F51A34716700C0F4F1B08F9330C6F503DB9E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_mAD461B8F1BB5C616749FAA2B63155D710C3CD21C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisEventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_m72CF57F3AD96E6CADECF5DDE79D3592A4D5E09A7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisGraphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8_mFA58F3A4B73E992545A39ABAD4D36D0BBFAEBBAE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_mEF939F54B6B56187EC11E16F51DCB12EB62C2103_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponentsInParent_TisBaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966_mA53CA3BE4D53DA7CB02AD9E8D078821E2DD8F3EB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponents_TisBaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939_mECBA4532FE12C928961128EA2CA791C03D4820E7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponents_TisBaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82_m6F23E3795BE7E17A40BCA0064E9BFA4892670874_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponents_TisBaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966_mC5D7B6F2AF3B637F8CF0F1DEF4E96FEADB5C6814_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m8C409976338EF0B48015E59311498B190F037C11_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Clear_mC60D1240FB21DE148D59B55633563976EB2643EC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetEnumerator_m7A5852A777771426770D52346C391F7E0DB03D84_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m4AA48AC7DC8C51BE0539C872EFA9CB1BCC326033_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mF1A602D73FE0DC792D8339AA812B5E0249EFD6FC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m72C2CB980BBBB40743CF9EFFA41F2B002CD842E4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Values_mEBB0D41DF0AB96EC3596B5F32CD06C6AE46F1C1C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dropdown_GetOrAddComponent_TisCanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90_mC688692DBB92788BACDED774AD6D005B6EC5F838_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dropdown_GetOrAddComponent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_m64A328B1FAA7DE95B776B343E70B913984E4BE3C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dropdown_GetOrAddComponent_TisGraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83_m9B1D258B962FAF4A5D69605ED9910224F26E7294_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dropdown_Hide_m396A627BAA21433514959C71BD8B13A31B7B99A8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dropdown_SetAlpha_mEFF1F7A014A6A66AEFFA937DA3EE8591B7F2336D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m4DE2E93425402C7818C5064E6C5E4029C952FEBB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m6E693B0789FE88C72E3CF1BB6B724A2CC9AF56D3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m9FBC1E9E4E9692134864389F3F259B5F913479D8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mCBA8FA361574286702638F5C0A05EE33A5F5A333_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m2C40592C57A063116984E2AD5FD2553A1D5C8090_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m6F5E214054911C62D43EC8EBD8F7074009887C93_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EventFunction_1__ctor_m18B8DFD4D5DF50CA371B85A92A3F046A146593DE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EventFunction_1__ctor_m30B6E6749F2449F7852C7FF7A67CA6C6D4AFFD08_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EventFunction_1__ctor_m3F50D0030FB2223DA3D47E0421818923D0D41932_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EventFunction_1__ctor_m49C054B972DF862CE16C45653EA83C81F925DA74_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EventFunction_1__ctor_m4BC3155388ED9FF927E205C83B670BDA98C72A5A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EventFunction_1__ctor_m5281F4464037C9AF749C2A1919996899A6BA3B5E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EventFunction_1__ctor_m69B3E21354A94EE0919766B0321D303CECA1805C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EventFunction_1__ctor_m6FA291143C1BF5B88A1D2C10C544E0969B71A8F7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EventFunction_1__ctor_m77A9FC421BDD9D44985C87EF84ACBCF13B12D82E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EventFunction_1__ctor_m7C9972B79205176E3C7A236B1D9A9C2466CDD2BE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EventFunction_1__ctor_mB4A3B970F27316B13C218A49BD275F08D1E86839_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EventFunction_1__ctor_mBAFFA18A69E64D5C9068384BF21C45113F637F27_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EventFunction_1__ctor_mC08F78F3D7554EF5CD324CF27F62ECF0385C9D49_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EventFunction_1__ctor_mCB3347FCC983F5C6B949627182607D985560D788_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EventFunction_1__ctor_mED551E6AA06C64C21357489D75BAAB42E1CD6257_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EventFunction_1__ctor_mF1D69EE07782C6E23EE270A9E061267772CCDC93_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EventFunction_1__ctor_mF4D4AD6CB742214096B85593D5DA21ED876829CB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EventSystem_RaycastComparer_mECA916E0B66A65018A1E7544E51C6D77BC52F1CA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_ExecuteHierarchy_TisIDropHandler_t617E86EDCC6B18A39D69DFF444D5358072B524C3_m42750090DC2A40178705596286003B1346E093AE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_ExecuteHierarchy_TisIPointerDownHandler_tD9DAB9987B51AF8D4029CC24F52D17485684F4BF_m7109FC139AAD566492E6FABD873264235C450706_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_ExecuteHierarchy_TisIPointerExitHandler_t5D65A773A15D990BC231F7C9FE221AB4417327FF_mE5F3CB5276F1AB80CC2D0DD03F13BDC8998E71AB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_ExecuteHierarchy_TisIScrollHandler_t3BB7CCD821B37EBB5EA18D30D65D4075FB43198B_m063662829D9B670BB6A7AC7E1E3B2E15B7B5A853_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIBeginDragHandler_t5CBE3EF4B4A6303FA5E9AC40295295BBAD687BF4_m8BACBBD07692DE23BC8EBD4C6B99D7A9C994B44F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisICancelHandler_t868799EEEF8164176835C988494360950CFB75B3_m9AE2C1FA291D2A1AB4A4A6967944CBF342A229A5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIDeselectHandler_t7A98A4E16B7F39F827584A16F120FD4FC001997D_mF1C0F17C5C072DFC5BED07B25EA0190CF9A53603_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIDragHandler_t196F681B5B4A5BFCDEA2A93CA0A75D504908D25B_m1A1D375E476A26C2BDAF7D9599E0B1327436FFB9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIEndDragHandler_tA6045DEE83CD2C06AC9409CBE183B10E3C0B9070_m31C9832573004F91088F89FD7BB28BFA2777FBF4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIInitializePotentialDragHandler_t56667A600E5BC5B8786753312DB9EDFE13455B45_m570C983BF282A5005C2BCA9BDFCDFF0805102D40_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIMoveHandler_tD51D5B6A4C5B3A233263107AF0020BE185647D41_m7E0B60BCAA055F013451EDB41D328355DFC204A8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13_mA58C71DF6780888ADDA65BE907FBDC323D066ADB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIPointerEnterHandler_tD4E3109B19B18A39FE89A2386C453D3F5019026B_m37CC44F6AF7FA4A3448507B54778B986B83C1A88_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIPointerExitHandler_t5D65A773A15D990BC231F7C9FE221AB4417327FF_m8444DB648260AACF886B84ADCB4F43871EFA8B4E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIPointerUpHandler_tAF005E3FEF3EA2D9DDA99FAA488955AA8B392102_mE7822304A5DF78074F7FE7B2255BCC9F70471C99_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisISelectHandler_t05E0943DEF2BC53023C2E4BF4C815E0EDE82C0F4_m92C6BEB40DB31218269EA1F37D122227306823BC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisISubmitHandler_tCFAD2814817B87B883DB9E7F84EE0196C9E531C5_m323E82337667B995B90E6606FBA640AE22F34202_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIUpdateSelectedHandler_t460F9A1B3655B6DD49656995D451206631B4F4D0_mB329B68CB3C37B08F026C3535849785664C3444F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_m00514A1B45480BC9D55FA88B66914ED163B6A6CC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_m00C0AAED23C33309955E60AB6319863A3052AE61_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_m046FB8ED863B38BD15281E9EED004E9686B87184_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_m177896660F17B1D4CC55DD2AEB8A2C783B582DC7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_m1C2C7DA0379E8A119C415FAFF3B613C9D5278E5A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_m2D4B7103DCEA057526CDF142A4D4C70136CC8233_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_m5354ABE381C181AA8B3514D1849E7788758E8505_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_m5AB8EA95A58AFC2614E9921F16B0603D0EA8ADA6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_m66FD7F4E4DE2617EE432AD9DA0D3A258C5F1FBFB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_m7CCC77D770D79991096597CD2FE892267BA7BA4B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_m8B55F40246FBF954F2C9981BEEEA0828A770A697_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_mA47467EEFB5EB9632375D95D39D2ED878AF286A2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_mDE9458FFE6DB4E5446D9B92FD59A9282EF0E26F1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_mDFB526FB6BE7B2C5266937D471D15F9D25C1DD8F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_mE64EB9BA625A97760C7A43F67DC976C6F7A8D0F8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_mEF9FBBA3E2BDF08B51E80190C3BC9C0E0204C417_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_mFB517B969B21E23CB5EAD0E9D4DB09A357727233_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_GetEventHandler_TisIDragHandler_t196F681B5B4A5BFCDEA2A93CA0A75D504908D25B_m5A727D5FF70D5140242C84BF539D7BC0C4D84D99_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13_m96365BF6D04738F7FB08BF90EF5B2CB5AE01C1AD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_GetEventHandler_TisIScrollHandler_t3BB7CCD821B37EBB5EA18D30D65D4075FB43198B_m862233B0489763DCCBC4FA2ADD82C50E3FAF6D04_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_GetEventHandler_TisISelectHandler_t05E0943DEF2BC53023C2E4BF4C815E0EDE82C0F4_mF4CBE0CD9A57B74AD0300F5CD3F0B2CD5529CFF2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_ValidateEventData_TisAxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442_mBBF734D77FCE3114EB1831C662BD8FB7A9CB1505_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_ValidateEventData_TisPointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_mDBD5031ADC7CB64D9BD1DCDF00C8C4B927CF0A18_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_AddComponent_TisBaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82_m1712CB24202FFDF87FC820B58224D773637E860A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_AddComponent_TisButton_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B_m36473E834D5F26A115FB3A704AC6A86C8C95FD95_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_AddComponent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_m474E23A3E8CBCA25DD03C7614EEF1E47AD566618_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_AddComponent_TisDropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46_m3FC7D1DDC3117BA73A6208371C6A4896FF21FC83_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_AddComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_mD30135D66AFB92E25180A1358319B74A4621D79F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_AddComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_mBCFCAB2CB522FEE3E8160D6B53776131804C0B25_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponentInChildren_TisDropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46_m9193A9BC92DC89CED4377A4B8719AB4F79D12E56_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisButton_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B_m04725F873F765AF3EA906137A60CD58809FE1C80_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisCanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90_m1E62EC28BAFB3FD20C659FFCDADD4A12105219E0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_m5EA55BE80E8E0FB0551D6C16C2BC57A726758C9A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisDropdown_tF6331401084B1213CAB10587A6EC81461501930F_mCEDADB496C533D2B1022FE5C0B5D68493866A5E2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisInputField_t533609195B110760BCFF00B746C87D81969CB005_mA51516D144F85CAE471A6A68DF98CFB88FCE87AA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisMask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB_mC09F1E3135566B979D6505E5F69268E8DDE16D47_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51_m86F516439BCE4785DEF4C19316FF222CD6DD91E7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisScrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389_m100E1B7CD3A739F07F5E190A8C25AE41512BD8A6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisSlider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09_m688424BCA2C09954B36F15A3C82F17CAECEB91A7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisSpriteRenderer_tCD51E875611195DBB91123B68434881D3441BC6F_mD25CEAAA219FA1235F8E88F914D2F8AC57303538_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisText_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_m24A42DAE3900B867697FFD9DFB6E448D6978CD4A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisToggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106_m9F98F777EFF307DC0F6FEA2C006044097874BE11_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponentsInParent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_mB625178DAF7A6B4A9380DCA09EB411F65B24569A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IndexedSet_1_AddUnique_mC24738E494850E9893B7D7FD5969B097EF1D0C93_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IndexedSet_1_AddUnique_mC7E7DF6E2912B691DFB7939E6843A767EB94E994_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IndexedSet_1_Clear_mE65E26890CD37A447B016CFE3348AD0E24E40238_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IndexedSet_1_Contains_m32C5F79FCDC99990211CBB191DFAA6A2591804D9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IndexedSet_1_RemoveAt_m88515EA7DB5AE71B53CE24A810DE0323264D8384_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IndexedSet_1_Remove_m187CB1B44A3F31785213A5CB7506D91ECD8CCCEF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IndexedSet_1_Remove_m2FB9F291535ED37DBF0E9DBB42F8B63E8B7AE980_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IndexedSet_1_Sort_m338A4FC9AF72E60401382F58002B10E2AB979A3D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IndexedSet_1__ctor_m1717E2CA1404D41499D0D08BC76E2F4DD7B2E047_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IndexedSet_1__ctor_m6229A7FC4962EA11D9BF02A057A80A0718898001_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IndexedSet_1_get_Count_m1CB8C29C8118B6846AAB3A4A1430A00907E480D0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IndexedSet_1_get_Count_m7E2FD722ACDC5D81B708B075E212803D092D8B68_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IndexedSet_1_get_Item_m657F3612726374420908A01DEB93BFF92F80A64A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IndexedSet_1_get_Item_m6711F92D6FD706E80DFD8F4F367C165F5902BC15_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_ToString_m53D0C9BBFAE30BCEBC3F3EBD0CC3554C231FA2E6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Key_m18DFCB801D8E1AAD81FB1D7687CEEDDC6374DB67_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_m663C5445E9F124109E548E46EF10E87186BC3E5C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ListPool_1_Get_m569D7CB2B16135A09E11EA59285A1AF81E3FA294_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ListPool_1_Release_m6F9B015A45FC521BC50CB2103FD6F7816609F2A3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_m7D0134D50AC3C08AD30A14C602366AF88E5B9164_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m7323CC33C87F7796A0C0E232B6DE861E7A3B3150_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m7DCB84D89B15944C08B73F13E91B780624023F37_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m8575648623727491C638FB4E8D7F5E1A1E4863F7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mA5146A0CC8A8EEB674C317F028E1E6FC12DC2C6D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mB466FEDA88AB72CA7331450A36E50D916A6C3BB6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mC1DB4C1FAE9E6A63959D08BAB319E9264B469EE0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mE0B46236A82E92B7F76C0F3A94ABBD0F4625A77C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m0F6A2806D11105299DC8E4D83E06D49BAABB8ABE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m328812EE6BE89C6594EFCA34543A2F011D1452C8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m402EA165A7440B0C93CCA7645DFD483F4239FC89_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mD6A4F201FB5F0713480F9CAF35A9646F08B56CB2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mDBBCE26B5F5EC83363B9BA4E83C11CCBD8731A6B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Contains_m8F95394505FB39DAE82E532546756505C14CC379_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_IndexOf_m114E5C45A23B126D2EE6F1E02C56589B9F45E712_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Insert_m3873559B095B71CCF01AEF43F569E58103296787_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_m1418F643EC903CD091DC3C6F0A64D260959A4DE7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_mE1B3271323D65C9D54BEC41CB54787BADF789A5B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_m5568E10AC94A0EA5A424CD633F6FC4D62A05D3F8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_m6E634BFACEA61C45680BA483504C730DD799A19A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_m808D4519EDCDCA2258E80F2B86286A2C2CCBEA3B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_mB19A87C63B177C6E8357C56CC64779D069191737_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m0FEB7C9D74FA782CD2962232418ECC84981E0ACE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m300B9D7AF854D5BD0495EC1DAF799C3E4637F733_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m348AEDFD8CF39B720D58C70279BABA7CF0364A6C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m539C5079C5B2DA574B65303E09CD83C60752A64D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m783AB36DF511851F4803E3E611E1F880054B61E4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m845B01994938B8BFB0C5DD50966CFAF8986EB7E4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mBE5B02FBBC3759FFBF8EB0BA4DCCF3D8C2875A92_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mC1ED9A460A050E673D3EF1200D4C15FF2AAA1732_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mE0CF797BC1662A4FDFF8009E76AC0A5CD1BB1FCA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m1559446010537D733C618DF42A7F0A1DD309E6F5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m16394594C6ADDE04FA98C299373EF131332A29F4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m2D6E8205805CC637E4E517EE4EDF52B89D70AB51_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m3CE6A18703ABFF7312511F654475662716BF8F51_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m5617F346AC79B187A6C78EC59B4F34DE3101C348_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m7C1FFC5C91DC37F0D0C71D737C9BA7081E0722F0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m9345B2AB981B955CA4FB16F0D1EE6CCF01E5115E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mA61C8F11E4F47F828FC3E31E04C25BF06F23B2A4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mC0AFF39B43A58B72EE46643C311C0292B1272966_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mC484E236B081F938DDD06DBD0DBF69A49238A84A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mDC92CDF088A4BBE454D68D038801327048A187E9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mFC002F15947CA8F0F0D6ABE5C6273E357E160AE8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m03F4D33FFA4A999ED58836C70404EDFFA0AF3C21_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m0E3505D06F1926E029213512C54F066892371459_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m2A56C2A02EB54A7A40292117D706176EB29A9CF6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m568CF9C5AC5F5D02D8414E6F6C62F0B2D93115C4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m5B8C7F9E17F03DAC2C891DFAFEF7BE2F1B4BDFAE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m63E24FAB51E3F8F1B68E34D15BF21A95848FEEC4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m6556A45DA0ECCB9FFCA9717755E39559BD1679EF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m74325398BEC7FE110512D57346D985A1C0D7DD25_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m82892B79752B36DB7663E25E080C6FFAA0C125BD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m82CCD5EC107FD608ACAAE67A6ED50F1076469157_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mF3CFF4FB71CEEDC038A8826D6AE1A226B7CF22A6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mF73D6D74056683643E15167BE983AB1873857A1C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ObjectPool_1__ctor_m321803B809C165BCDCCF7D73EAD285EFDD638B44_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Object_Instantiate_TisDropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46_m5063405ACD5422343C447BB6F01EA28525635C50_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Object_Instantiate_TisGameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F_mC4AB712D7F18E0991E1542CE53F11385E21E7B90_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SetPropertyUtility_SetStruct_TisAspectMode_t2D8C205891B8E63CA16B6AC3BA1D41320903C65A_mE814FB85AB8ABF881CDDE938A344CE5E97C8F8B1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SetPropertyUtility_SetStruct_TisFitMode_tBF783E77415F7063B468C18E758F738D83D60A08_mAB5FD1502245CDD21A16BD16A2E61ECEA23297CA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SetPropertyUtility_SetStruct_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m4ACD4ED0F57868F46763D5D0BBF12FCAE1314E3A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TweenRunner_1_Init_m36554C1037EC37B2D67A1BDE9B4D2407FE2C7657_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TweenRunner_1_StartTween_mCD6A38F2A78EADA8BFD4D710333E6263D32DAEFE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TweenRunner_1__ctor_mBCECADAAC67B34851BF7AE7F23AAA7BEDD17CDAE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3COnFinishSubmitU3Ed__9_System_Collections_IEnumerator_Reset_mADAC8D44A98EB373142102E747F6F82CDCBF44E6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__79_0_mC9A9AAD60D24FC76EFD98E83E9DAF5EECAABCD56_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass62_0_U3CShowU3Eb__0_m63D2341A7D8EC695D01B0F934D58C2F9C3F306A3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityAction_1__ctor_m4C2CD24BD9D5930174895BE29AC306AE8675706C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityAction_1__ctor_mBB2754F539A754A4BA916AF035A54BCEC7A00CA5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityAction_1__ctor_mDF0761DC432ADAE690B100D381AAEE87CD2C3DCB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1_AddListener_m5A6D7B15EFC39EFA12721981E727CBD81E3051AF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1_AddListener_mCCF08CC8634A4987236EA3C100FFCA94A18C7CC8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1_AddListener_mF7F87D2B61E38F1FE1C8328F7125F4F129011AB1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1_Invoke_m2B015F1AE7FEA9E2D9E2621E5179AB752B5469CD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1_Invoke_mAC9BEEF287D58E79A447A57E28D3679F9B199D70_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1_Invoke_mB755E72B8F7D26CFA94C8B9B145F6019FB5932CC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1_Invoke_mC579EE94CDB01C1CA945F652FD710CB64895FA9E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1__ctor_m488AA12DF55CA69BD2FEF7750B745B4C04452553_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1__ctor_m90CD771D0B50926E7B8624F1E0697F1FF539098D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1__ctor_mE99456F65F6796D9B37A8FC6CD31A598367DF68A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_GetEnumerator_m6C97EA54EAEC8DCB5120131913AB22C6AF403234_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeType* BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Dropdown_tF6331401084B1213CAB10587A6EC81461501930F_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* InputField_t533609195B110760BCFF00B746C87D81969CB005_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* RawImage_t68991514DB8F48442D614E7904A298C936B3C7C8_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106_0_0_0_var;
IL2CPP_EXTERN_C const uint32_t AnimationTriggers__ctor_mF0F35FC53FA65A88FEF8D4F52006FE957981C246_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AspectRatioFitter_GetParentSize_m5AA652B731F6930CA9C9B342C93354D73EFB6874_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AspectRatioFitter_OnDisable_m82534D7AD69F406A0A90A9E912B05658E7AD9A88_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AspectRatioFitter_UpdateRect_m9C9311A3A55D5C3175E80C87944B0035DD9084E0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AspectRatioFitter_get_rectTransform_m10762C918EB094ED7335B938446F6537EF9E7F26_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AspectRatioFitter_set_aspectMode_mDF90DA2FC20507B35EC237C91C93A3DBB3CB4322_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AspectRatioFitter_set_aspectRatio_m3E56408CB25114762687C9C5398E34BBCBE8DB01_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AxisEventData__ctor_m9694BD920E181114C1A079141D07BD092E05B27D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BaseInputModule_DetermineMoveDirection_mC1D1D145996C9A384D865FAE4B02FDF9D106EA52_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BaseInputModule_FindCommonRoot_m1995190ADC1341F180811C5213F1CA522B6282A5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BaseInputModule_FindFirstRaycast_m4ABCD1BCF871A87518D47C906B8F63154B6BF275_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BaseInputModule_GetAxisEventData_m920ACD6398A0B3FD82E6990DF89B2A50DEE25990_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BaseInputModule_GetBaseEventData_mB945B5DF7A5C2B825C7D542D944A7795D8F5F93F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BaseInputModule_HandlePointerExitAndEnter_mD32C0E209A19F78D07D964D162188D13762463BF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BaseInputModule_OnEnable_mD8CAA2DE8AEC7907D84C40DEA7A0A83A8C530D5E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BaseInputModule__ctor_m4D2F1DB4FA2524BCB5598111C11E5E00D4A95DC6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BaseMeshEffect_ModifyMesh_m1E691826E2BD65C3D2B76E991842BC5671A3B295_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BaseMeshEffect_OnDidApplyAnimationProperties_mBAC052B0C5723BBFD501BA63F93C74BE3667B144_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BaseMeshEffect_OnDisable_mE6A5C8C62463E34A982933C7A77B2E2ECB91C8F1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BaseMeshEffect_OnEnable_m34959EE194208A72A3D64460D0232CAD04398CAA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BaseMeshEffect_get_graphic_mDD7D8CD6F220B9DE656145A1346EA9799255BE21_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BaseRaycaster_OnDisable_m0FA75817BD8DADDF85C10E02B0067E835C80EE0C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BaseRaycaster_OnEnable_m31B91C059934DAB7FEA26D8D5A030CCF469778C1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BaseRaycaster_ToString_mED39E4461F0C708B924FC87DB5A2949917FF42F1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BaseRaycaster_get_rootRaycaster_m4DF6B023C195A4E8E9AF8D8E411379A9052D80A5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Button_OnFinishSubmit_m89D3F073EF025FE5DE11FAC04E41025685AAE20F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Button_Press_m58210E36B74902AC4667E5A75B4ADB891D1596C2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Button__ctor_m51451154939F30BAA6EB8B005BD480E2E20540CB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasScaler_HandleScaleWithScreenSize_mB3430B5FD262C0826FF228EDC80AD0144F7826F6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasScaler_Handle_m867273F56329565834F7793E05C970D8E32DA4B6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasScaler_OnEnable_m4FDFAD573E34C335F6EBCC5CB0625353AF189E64_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasScaler_set_defaultSpriteDPI_m7509D86B586D726E29D2C21A2CB4E0C567BFF65A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasScaler_set_referenceResolution_m816A6770562B655C056B255757993A589C1DFA4B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasScaler_set_scaleFactor_mDA73D373B6D69FCD255C7784576B93079F2A6CC0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasUpdateRegistry_CleanInvalidItems_m033AB2A5652116F351F3287C37E0910AE78506D0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasUpdateRegistry_InternalRegisterCanvasElementForGraphicRebuild_m21F2CD6F08EA106A9B7CB61836836E67D9AD014A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasUpdateRegistry_InternalRegisterCanvasElementForLayoutRebuild_m4B27D53D884E8281D102493C216A85402702B02B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasUpdateRegistry_InternalUnRegisterCanvasElementForGraphicRebuild_mE9C5DB7632C213651671F55119B385984FDA52BB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasUpdateRegistry_InternalUnRegisterCanvasElementForLayoutRebuild_m257D195226FDF05E9A9723745094408E556A165E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasUpdateRegistry_IsRebuildingGraphics_m9675CE4A1FED3F73C3B0EDCD1DA90BB390EE2A03_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasUpdateRegistry_IsRebuildingLayout_m067422BB24431C94CE3DC7FB25760351B3015D80_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasUpdateRegistry_ObjectValidForUpdate_m0A572FA254D152E92FD6D6DC63B4B0FA66B88250_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasUpdateRegistry_ParentCount_m41ED796F144AF2FF40F97F45687086942FE09776_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasUpdateRegistry_PerformUpdate_m6C0C51EBC871BFD67FEE7403B0A4D8FC99AAE93E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasUpdateRegistry_RegisterCanvasElementForGraphicRebuild_m78F01AB29AC2F8BA889E0D0A67CD150BE0006508_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasUpdateRegistry_RegisterCanvasElementForLayoutRebuild_mD64DEDFC14F5B52DE3A685CD1B132907A784D70D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasUpdateRegistry_SortLayoutList_mB2F2B63B28CC722E5AA645835963DD3678FC08BA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasUpdateRegistry_TryRegisterCanvasElementForGraphicRebuild_mF9026CA6334F6B484FC243F0C1BFAE15EDBDEB11_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasUpdateRegistry_TryRegisterCanvasElementForLayoutRebuild_m4D405FFBB41D68D0D1A260DBFBC196257EC95898_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasUpdateRegistry_UnRegisterCanvasElementForRebuild_m65BE77E918ACF3C08D0C2651B3120120AC7A5FD0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasUpdateRegistry__cctor_m4816A252A4E24967FBEF0AD749DDE9B3F8D5FB44_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasUpdateRegistry__ctor_m86AC7F2BD30DF9ABEA5CA8C74BA28367D5325E9A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CanvasUpdateRegistry_get_instance_m6A2150EA4C8C74AF18E53B3CF22BF6EAF70FF927_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ClipperRegistry_Cull_mBCB5139DD0FBCC6436ABA8F014E455DF219ADB18_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ClipperRegistry_Register_m3D9ADBB2F45433ABA125ADC70834A188BE5BB486_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ClipperRegistry_Unregister_mA09C34BE5C5BC681695DA6F638C3CA585B236467_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ClipperRegistry__ctor_mBE6A18696846AD82B4C069BEA3C4318777A59521_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ClipperRegistry_get_instance_mE4E214237577A08B2A6C8AF9DD7CDAE1B75E387B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Clipping_FindCullAndClipWorldRect_mF3B79EF5BE61C8D2FCF12B428EA38A55FE1CA31A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ColorBlock_Equals_mCA2055CA21C85A585504A447B3B048480BB7AB21_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ColorBlock_GetHashCode_m1F4A5EC52681DEE9C205F4A5C5A60051DAF71111_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ColorTweenCallback__ctor_m7F7918E559131B5A1480199E6DC9B03A533D644D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ColorTween_AddOnChangedCallback_mF516F2C835133EB59CB28895961716360131D82D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ColorTween_TweenValue_m4EF3CDDDDC3986BA6D06D4DB785310B131958749_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ContentSizeFitter_OnDisable_m1E5A38232518EDD43A9B2265B2EB496F91C9DEB8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ContentSizeFitter_SetDirty_m018F67222A9B6CB351DB14625794E9508A153670_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ContentSizeFitter_get_rectTransform_mE7FD5F977E954B6D54B9C1CCD112A4A70840CF56_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ContentSizeFitter_set_horizontalFit_m38BB1F91ECB19CA55395886DE04404293568DE53_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ContentSizeFitter_set_verticalFit_mFE092A2EA456864549B62369A11A711230C181EF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultControls_CreateButton_m73704B2DEB6F80CF622B31A7B14BBEC3A24737C2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultControls_CreateDropdown_m00FF9DE1B54D5EA9B22EECC23EAB2D465538C0B2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultControls_CreateImage_m5A948ACE15B86771B6F3EB7A8A74EBE938CEB3E6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultControls_CreateInputField_mDF85B76D7CDE06E5E49F537EA5FDD8192DA5E65A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultControls_CreatePanel_m6CC4319B8D81426FC2A4E94CA836AB4F0ECA0205_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultControls_CreateRawImage_m3704C3F2E829FBCFEEDA34F27668000B1E6E5A02_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultControls_CreateScrollView_m18E2B79533E8C63917A90B112C7861D8777FAB89_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultControls_CreateScrollbar_m876785B77922E7A0918137096FE9CEEC4BBCA1C6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultControls_CreateSlider_m2AF0A50D2FF4EB21A68A5DBF92076C8DB6D50C5B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultControls_CreateText_mB0CA319F4BF0C8EC8773075885BD67D78A4582FE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultControls_CreateToggle_m9F0611E37F71C5C077EB3D64D998A7117C830B7F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultControls_CreateUIElementRoot_m6B5271F0FD59538B62BD2A81C972F919A8F2F184_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultControls_SetDefaultTextValues_mA1638BD65C2A72207A3E3EA7D1D8A8485D108A1A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultControls_SetLayerRecursively_m090900DE7A3FFC976E3DBE9B54C11769EE126BF1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultControls_SetParentAndAlign_m4176E84A699CD8A68747888300DC651B765A512A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultControls__cctor_m2CFE7925A4D7254130F760EBE94A377BB86417A9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultControls_get_factory_m616056407908402EFF7E24BC02D0A1B0CDED98B2UnityEngine_UI_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultControls_get_factory_m616056407908402EFF7E24BC02D0A1B0CDED98B2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultRuntimeFactory_CreateGameObject_m76DCCBEF0431C815F2AC2360614D4FF09F98E34C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultRuntimeFactory__cctor_m917CD6F4766028435BE57F5EAFD83A887E0CA4E8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_AddItem_m0E0D9C4C7C73622BC2E7AC785BD4CEA48FE952EF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_AddOptions_m00D0E094A726D9E20E42CDE57430879266456ABB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_AddOptions_m07425DFFE48698B71FFAA7A88EA4EB9191A0A20D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_AddOptions_m1F55A888671D01E7933300CEFF571556EE717AC8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_AlphaFadeList_m7E0D67E3ED4F3578B5850B47E4A6F9CFF19A49BB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_AlphaFadeList_m86254B5CBD02903E1D9AF108EB1E86234DCE45E2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_Awake_mDEFE3A3991573E2C6942EF866CC4D2350481322E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_ClearOptions_mC20522EBB5C22EFC938740AB7A2524EF8CCCDD0D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_CreateBlocker_m036190311A5551395BC6DD3807D909F851AC8075_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_CreateDropdownList_m4C38DE76864D27BBA2033CD5DD72A88B1D2896A9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_CreateItem_m591B3B4546D13786893F9930BE702F3A9AAE3CDC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_DelayedDestroyDropdownList_m09235010EDBDA0A0341350E1D34BC0BA9A326CBF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_DestroyBlocker_mEF1CA103B452EBED15714974CEE056CB44C17A58_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_DestroyDropdownList_m1049B8618DF9EFDC6504F4CF29F240252BCAC0A5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_Hide_m396A627BAA21433514959C71BD8B13A31B7B99A8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_ImmediateDestroyDropdownList_mB3CE7E1B2B95662433A48B5BA20A51755AAE677E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_OnDisable_m7CBB6617F6557D89C1E92EC5A7433426AADCF53C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_OnSelectItem_m28AC73C405708C623F4EE5C42E61D5C8D2ECC011_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_RefreshShownValue_m310DF4ABCFE31C74153AAE3874B40DDF3D6959E1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_SetAlpha_mEFF1F7A014A6A66AEFFA937DA3EE8591B7F2336D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_Set_mB556E466A427314DC78F38EA38DB4462672B2A49_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_SetupTemplate_m3F4C22ABEF75FEC05E3D42D277EF2299A7934E0C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_Show_m996910C935BA7D778E35EBAA55F1AC7299A0B3D9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown_Start_m32F9113294B5F5EB5EFE41F9D2B6C49A516182E5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown__cctor_mC1DD8DB000D6E2DCA6CD41C429DDF120B6535442_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Dropdown__ctor_m441023FADC43E0D5215546260F0230D92439AA9C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Entry__ctor_m646E309104AA1D549A0C07B948BE183013A927BF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EventSystem_ChangeEventModule_mE2CF924DE5717273AA345F5A52C46BA98C8ED662_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EventSystem_IsPointerOverGameObject_mF2B40021727C8285F99201995760659C2A53E513_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EventSystem_OnDisable_m35EE11C87000577B20D754B063E0B5C6849FA7E4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EventSystem_OnEnable_mE18ECC7BE60F739FEE9ABA731010E46A965894ED_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EventSystem_RaycastAll_mA5A53B5404EF95AE97EE81445056153ED41CBF80_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EventSystem_RaycastComparer_mECA916E0B66A65018A1E7544E51C6D77BC52F1CA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EventSystem_SetSelectedGameObject_m532EE7D0346462EDBB56E5BCD048CB3BEFB84E3A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EventSystem_TickModules_m0A74957A4FF307FF480D2103AD225640693EB8C3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EventSystem_ToString_mAD8804AA87C37BF28EE8712110C185E7135C15B5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EventSystem_UpdateModules_m9E90C6FD7A4202BD6E4801C6AF109D859167FE8A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EventSystem_Update_m62B9E3C3F69A8A22EE9BE644E9B44221140754ED_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EventSystem__cctor_m97E5871EEF081006E2793E916D0723D59DBE6EAD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EventSystem__ctor_m7DCB0D2525B2EBA3458C5B6911231DCDFBB21104_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EventSystem_get_baseEventDataCache_m2B14076E5EF918BE1A94F16DE1A827AC1401BC89_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EventSystem_get_current_m3151477735829089F66A3E46AD6DAB14CFDDE7BD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EventSystem_set_current_mADC79D2345234F851DA554EF79746D43CC6B6951_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EventTrigger_Execute_m012E5ACD13CF24C4CEC5C3C9E508185A57EF2890_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EventTrigger_get_triggers_m16CC3F855662E6CEE23031B7787DA8CB4ADDF28A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_Execute_m00514A1B45480BC9D55FA88B66914ED163B6A6CC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_Execute_m00C0AAED23C33309955E60AB6319863A3052AE61_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_Execute_m046FB8ED863B38BD15281E9EED004E9686B87184_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_Execute_m177896660F17B1D4CC55DD2AEB8A2C783B582DC7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_Execute_m1C2C7DA0379E8A119C415FAFF3B613C9D5278E5A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_Execute_m2D4B7103DCEA057526CDF142A4D4C70136CC8233_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_Execute_m5354ABE381C181AA8B3514D1849E7788758E8505_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_Execute_m5AB8EA95A58AFC2614E9921F16B0603D0EA8ADA6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_Execute_m66FD7F4E4DE2617EE432AD9DA0D3A258C5F1FBFB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_Execute_m7CCC77D770D79991096597CD2FE892267BA7BA4B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_Execute_m8B55F40246FBF954F2C9981BEEEA0828A770A697_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_Execute_mA47467EEFB5EB9632375D95D39D2ED878AF286A2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_Execute_mDE9458FFE6DB4E5446D9B92FD59A9282EF0E26F1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_Execute_mDFB526FB6BE7B2C5266937D471D15F9D25C1DD8F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_Execute_mE64EB9BA625A97760C7A43F67DC976C6F7A8D0F8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_Execute_mEF9FBBA3E2BDF08B51E80190C3BC9C0E0204C417_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_Execute_mFB517B969B21E23CB5EAD0E9D4DB09A357727233_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_GetEventChain_mD90FFC4A70E16AFA81AC6C9CFF174630F77C608C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents__cctor_mCD47C80D80A3C5F1D3AEEF3ACD31AD1EE197A883_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_beginDragHandler_m7F238765714F73899EAFDF0BA203D9A8A57AED31UnityEngine_UI_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_beginDragHandler_m7F238765714F73899EAFDF0BA203D9A8A57AED31_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_cancelHandler_m5DB4A9513FB8B9248AE555F7D8E8043175B8D995UnityEngine_UI_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_cancelHandler_m5DB4A9513FB8B9248AE555F7D8E8043175B8D995_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_deselectHandler_mEAA9E3701CC972EFDD20B30E9B3CD9302B2FD668UnityEngine_UI_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_deselectHandler_mEAA9E3701CC972EFDD20B30E9B3CD9302B2FD668_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_dragHandler_m41B7D77771806788CD773C83C2E5A53D5ED5B179UnityEngine_UI_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_dragHandler_m41B7D77771806788CD773C83C2E5A53D5ED5B179_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_dropHandler_mC2362B96C6CD3628B83722F4B7C73E707C6C1EAFUnityEngine_UI_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_dropHandler_mC2362B96C6CD3628B83722F4B7C73E707C6C1EAF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_endDragHandler_m23B60D3E3873043263069A3C3145393475690769UnityEngine_UI_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_endDragHandler_m23B60D3E3873043263069A3C3145393475690769_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_initializePotentialDrag_m5B3D899EB08DA227EFBFC67778DDB98D7505C6D4UnityEngine_UI_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_initializePotentialDrag_m5B3D899EB08DA227EFBFC67778DDB98D7505C6D4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_moveHandler_m113A4222FC10723B2E38398E182C02F6624D6F24UnityEngine_UI_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_moveHandler_m113A4222FC10723B2E38398E182C02F6624D6F24_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_pointerClickHandler_mA657195AEC7D0A42036CBCAC9AD48F215C3C69E3UnityEngine_UI_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_pointerClickHandler_mA657195AEC7D0A42036CBCAC9AD48F215C3C69E3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_pointerDownHandler_m8AE9CA906C86BBBEB75BA2D05F5DAB01F62519E3UnityEngine_UI_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_pointerDownHandler_m8AE9CA906C86BBBEB75BA2D05F5DAB01F62519E3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_pointerEnterHandler_mFD5296E38EB1C5EB6D16CB83913430FEEBF889A5UnityEngine_UI_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_pointerEnterHandler_mFD5296E38EB1C5EB6D16CB83913430FEEBF889A5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_pointerExitHandler_mE5EC9537676A055EEE178A4E6B58D96F9B4AC301UnityEngine_UI_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_pointerExitHandler_mE5EC9537676A055EEE178A4E6B58D96F9B4AC301_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_pointerUpHandler_m7EDDD1128DC04344CECEBCB9B6B7CD064F7FAED2UnityEngine_UI_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_pointerUpHandler_m7EDDD1128DC04344CECEBCB9B6B7CD064F7FAED2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_scrollHandler_m48E5B17388986BD59EC7A7BF27E3D30A9FD057F7UnityEngine_UI_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_scrollHandler_m48E5B17388986BD59EC7A7BF27E3D30A9FD057F7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_selectHandler_m26186C0D78CA4A8AFA0789A09F488F7E186BE1C8UnityEngine_UI_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_selectHandler_m26186C0D78CA4A8AFA0789A09F488F7E186BE1C8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_submitHandler_m734C2BE2F7CDA7F5C42897E3C8023D3C7E1EDF88UnityEngine_UI_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_submitHandler_m734C2BE2F7CDA7F5C42897E3C8023D3C7E1EDF88_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_updateSelectedHandler_mE18DBB058B1EDC75D4F690A1E35003749BBC0567UnityEngine_UI_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ExecuteEvents_get_updateSelectedHandler_mE18DBB058B1EDC75D4F690A1E35003749BBC0567_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t FloatTweenCallback__ctor_mE8AC174FE27E1A12832510D461316FEA939BD2F3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t FloatTween_AddOnChangedCallback_mADD5FACCDFA9E77C08CA65B8E5D33AE06DB79D50_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t FloatTween_TweenValue_m78FEB902E18BE0882BC487BC29B6EA3905E4F05C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MouseState_AnyPressesThisFrame_m82FC431EAEE7573E5748685923194D4EB9540E2D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MouseState_AnyReleasesThisFrame_m330B78224B8AB1177B9BC160BDC015D3A9DB9309_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MouseState_GetButtonState_m0C2884609F720A284C72EAEF061C781F4874CCAE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MouseState__ctor_m03EB3CF8C4BEA925F63C1BA8197C3FA632975F09_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Physics2DRaycaster_Raycast_m3CEA59B484E46F41A6F62B923AC23FB140DE8DF3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PhysicsRaycaster_ComputeRayAndDistance_m92EFFE5A5287CC625EA6B66853DE2959985AFE7D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PhysicsRaycaster_Raycast_m790F8B5B886500FF2C7D8E966DA72400A4C2B55C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PhysicsRaycaster_get_depth_mFEEAAEECAF9522513EC430D6AED0C4FE64354708_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PhysicsRaycaster_get_eventCamera_mA4D0809E09657E6B635FF54EA8178CA5280C297E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PhysicsRaycaster_get_finalEventMask_m33F53EF1231123847F95DBFF865C3B19E6CD1EB6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PointerEventData_ToString_mA94EE73CA98DC98D20DA590DE44C4FCCE9729A73_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PointerEventData__ctor_mA2208343CA6EE41C13A6B7123322CC88B00A723B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PointerEventData_get_enterEventCamera_m4DCBA203F50F1F4D30118573061FD4634D4B4915_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PointerEventData_get_pressEventCamera_mC505603722C7C3CBEE8C56029C2CA6C5CC769E76_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PointerEventData_set_pointerPress_mDFB3D803C9C4137799F9F1D57810DAAF08238327_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PointerInputModule_ClearSelection_m05E527F28FB39BEBA8FA27153DAE71C8E7FDC958_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PointerInputModule_DeselectIfSelectionChanged_m3A32EDB68D6F489FD2A22CAB5A98D343E0634BDD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PointerInputModule_GetMousePointerEventData_m1BE3C022E0D9B001B96B9FB129FE57FEBFD13E7F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PointerInputModule_GetPointerData_mB16DD3B9751FFEBBB1EC7802533D8EF36C9C8248_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PointerInputModule_GetTouchPointerEventData_m630FA2AD7438552F7AF904ED42EA90FADD910055_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PointerInputModule_IsPointerOverGameObject_m8F735B4286B61B82E9C92966B99A9A2D575495F5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PointerInputModule_ProcessDrag_m1B953F6640DBD2E46508B18F4F281ED461DD1360_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PointerInputModule_RemovePointerData_mDDADB278A6A01D38C46631A9531C62C17B4DEBEA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PointerInputModule_ShouldStartDrag_mE818EC5B7706E3803A4EDA09FD1D14A0ED105049_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PointerInputModule_ToString_mD9C4C6C80C3CFD3A8C1E39D4F9A58A9E29DD1865_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t PointerInputModule__ctor_m1E5E97188BEB6F225E167E5D2BA6DAEF4BFA3510_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RaycastHitComparer__cctor_m1CEECC8D87DDE7315C8F0845658FC13E34CD4A31_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RaycastResult_Clear_m5C979A22E0B12FBD7BA035FE0815B4D81E82E9F7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RaycastResult_ToString_mFD0F27611425231BAF089CEBB0332FEFD7FB9E21_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RaycastResult_get_isValid_m53278AA3529BC7B909A9AA082026D51CE6926813_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RaycasterManager_AddRaycaster_mB93CFBBCE344327BF96AC11CB500219FD1873B9A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RaycasterManager_GetRaycasters_mA2491B7F058FB2DA88179C0BDE0EFB0B0E28B740UnityEngine_UI_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RaycasterManager_GetRaycasters_mA2491B7F058FB2DA88179C0BDE0EFB0B0E28B740_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RaycasterManager_RemoveRaycasters_m26668BA781D690D83E3417436D2D9AE577004624_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RaycasterManager__cctor_mEF2E08745F0138B43512752C0E151055B953A3AF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StandaloneInputModule_ActivateModule_m4861DB0128B954D53E51FB5A6CC1524346F76A1E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StandaloneInputModule_GetRawMoveVector_m36E309DADA8C0BB4CA0710FAABE0F4E9B77C2F6A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StandaloneInputModule_ProcessMouseEvent_m4D1CB4E39517B014D3F81B9F0423B8FA6F8A8656_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StandaloneInputModule_ProcessMousePress_m795F279F981E957475C724C010FA8A87F9BE6CF4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StandaloneInputModule_ProcessTouchPress_m74A52DA64B9C5EB8B5A38889F25BFEAFC284FB51_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StandaloneInputModule_ReleaseMouse_m1EE3D0D685BB09DAAE4556477420B7D05FE3F0C1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StandaloneInputModule_SendMoveEventToSelectedObject_m45E5CAE198660284CF7DB1FA464B79F9E26D44D3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StandaloneInputModule_SendSubmitEventToSelectedObject_m132BF623619679A3E5871B7DA5BC5DD7B2E274DA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StandaloneInputModule_SendUpdateEventToSelectedObject_m2982A721762040935DE3835DE71FBA28650036FB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StandaloneInputModule_ShouldActivateModule_mD6CF146E884E38E295E95C6AC3A355029E653D35_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StandaloneInputModule_UpdateModule_m0525AD093E45EFB1FE8484731A81C3E45222EFB9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StandaloneInputModule__ctor_m7ACED26CC5670B0729809379560FCBE0D0311AC8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TouchInputModule_FakeTouches_mB10F6B25D8CFACA3FD96C1823E6E4FF6427A5663_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TouchInputModule_ProcessTouchPress_m10A4854C822E110906745CFB1EEAF846F48D2949_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TouchInputModule_ShouldActivateModule_mB2F45197C70AC23D1250782612B10ACBC1262022_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TouchInputModule_ToString_m532F4130976306175BFCF9831A6F470346995BD2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TouchInputModule_UpdateModule_mAA1097F92F5F1808251CB8D9BFD124AE2663AEDA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TriggerEvent__ctor_m5FA4AD9F5E1671A1F7F4C45AB1620624FEFC5F13_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3COnFinishSubmitU3Ed__9_System_Collections_IEnumerator_Reset_mADAC8D44A98EB373142102E747F6F82CDCBF44E6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3C_cctorU3Eb__79_0_mC9A9AAD60D24FC76EFD98E83E9DAF5EECAABCD56_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t U3CU3Ec__cctor_m61F9115D2905902E74081C1270593040BE0D9F4B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t UIBehaviour_IsDestroyed_m169BA727AB81FF96092471C152C845EBE944A269_MetadataUsageId;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
struct ComponentU5BU5D_t7BE50AFB6301C06D990819B3D8F35CA326CDD155;
struct DisplayU5BU5D_tB2AB0FDB3B2E9FD784D5100C18EB0ED489A2CCC9;
struct BaseInputU5BU5D_t8D390CDD3C58D992EDA010E5AF94B42F4C73E6E3;
struct BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6;
struct RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65;
struct RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165;
struct RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57;
struct Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <Module>
struct U3CModuleU3E_t76DD45B11E728799BA16B6E93B81827DD86E5AEE
{
public:
public:
};
// System.Object
struct Il2CppArrayBounds;
// System.Array
// System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32,UnityEngine.EventSystems.PointerEventData>
struct ValueCollection_tB55394F384417AC8A8E53492B82E4C216B7FC23B : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary
Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tB55394F384417AC8A8E53492B82E4C216B7FC23B, ___dictionary_0)); }
inline Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.EventSystems.PointerEventData>
struct Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0;
// System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_t9FA9BC8E37D9A65FEA7CDE9E9D8BF84F6BE76AC0* ___entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::version
int32_t ___version_3;
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
int32_t ___freeList_4;
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
int32_t ___freeCount_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
RuntimeObject* ___comparer_6;
// System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
KeyCollection_tDD03143C92B9ED1B27C4D6DED3D403861DA658D0 * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_tB55394F384417AC8A8E53492B82E4C216B7FC23B * ___values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750, ___buckets_0)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750, ___entries_1)); }
inline EntryU5BU5D_t9FA9BC8E37D9A65FEA7CDE9E9D8BF84F6BE76AC0* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t9FA9BC8E37D9A65FEA7CDE9E9D8BF84F6BE76AC0** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t9FA9BC8E37D9A65FEA7CDE9E9D8BF84F6BE76AC0* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750, ___count_2)); }
inline int32_t get_count_2() const { return ___count_2; }
inline int32_t* get_address_of_count_2() { return &___count_2; }
inline void set_count_2(int32_t value)
{
___count_2 = value;
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750, ___version_3)); }
inline int32_t get_version_3() const { return ___version_3; }
inline int32_t* get_address_of_version_3() { return &___version_3; }
inline void set_version_3(int32_t value)
{
___version_3 = value;
}
inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750, ___freeList_4)); }
inline int32_t get_freeList_4() const { return ___freeList_4; }
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
inline void set_freeList_4(int32_t value)
{
___freeList_4 = value;
}
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750, ___freeCount_5)); }
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
inline void set_freeCount_5(int32_t value)
{
___freeCount_5 = value;
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750, ___keys_7)); }
inline KeyCollection_tDD03143C92B9ED1B27C4D6DED3D403861DA658D0 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_tDD03143C92B9ED1B27C4D6DED3D403861DA658D0 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_tDD03143C92B9ED1B27C4D6DED3D403861DA658D0 * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750, ___values_8)); }
inline ValueCollection_tB55394F384417AC8A8E53492B82E4C216B7FC23B * get_values_8() const { return ___values_8; }
inline ValueCollection_tB55394F384417AC8A8E53492B82E4C216B7FC23B ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_tB55394F384417AC8A8E53492B82E4C216B7FC23B * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Object>
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____items_1)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__items_1() const { return ____items_1; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_StaticFields, ____emptyArray_5)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__emptyArray_5() const { return ____emptyArray_5; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.String>
struct List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3, ____items_1)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get__items_1() const { return ____items_1; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_StaticFields, ____emptyArray_5)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get__emptyArray_5() const { return ____emptyArray_5; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.Canvas>
struct List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14, ____items_1)); }
inline CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129* get__items_1() const { return ____items_1; }
inline CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14_StaticFields, ____emptyArray_5)); }
inline CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129* get__emptyArray_5() const { return ____emptyArray_5; }
inline CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(CanvasU5BU5D_t69253447FFB59DF7EE8408C1DB31C3E6CF80C129* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule>
struct List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
BaseInputModuleU5BU5D_t96C73D6EB068D1ED6D0BB05720B83EACFB44E115* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176, ____items_1)); }
inline BaseInputModuleU5BU5D_t96C73D6EB068D1ED6D0BB05720B83EACFB44E115* get__items_1() const { return ____items_1; }
inline BaseInputModuleU5BU5D_t96C73D6EB068D1ED6D0BB05720B83EACFB44E115** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(BaseInputModuleU5BU5D_t96C73D6EB068D1ED6D0BB05720B83EACFB44E115* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
BaseInputModuleU5BU5D_t96C73D6EB068D1ED6D0BB05720B83EACFB44E115* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176_StaticFields, ____emptyArray_5)); }
inline BaseInputModuleU5BU5D_t96C73D6EB068D1ED6D0BB05720B83EACFB44E115* get__emptyArray_5() const { return ____emptyArray_5; }
inline BaseInputModuleU5BU5D_t96C73D6EB068D1ED6D0BB05720B83EACFB44E115** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(BaseInputModuleU5BU5D_t96C73D6EB068D1ED6D0BB05720B83EACFB44E115* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseRaycaster>
struct List_1_tE44A303DE85018C722D021A9716A97568780A0E1 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tE44A303DE85018C722D021A9716A97568780A0E1, ____items_1)); }
inline BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6* get__items_1() const { return ____items_1; }
inline BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tE44A303DE85018C722D021A9716A97568780A0E1, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tE44A303DE85018C722D021A9716A97568780A0E1, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tE44A303DE85018C722D021A9716A97568780A0E1, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tE44A303DE85018C722D021A9716A97568780A0E1_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE44A303DE85018C722D021A9716A97568780A0E1_StaticFields, ____emptyArray_5)); }
inline BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6* get__emptyArray_5() const { return ____emptyArray_5; }
inline BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>
struct List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
EventSystemU5BU5D_t08BD6FCD5A30D5603671D67AF878DBA41AFE9604* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B, ____items_1)); }
inline EventSystemU5BU5D_t08BD6FCD5A30D5603671D67AF878DBA41AFE9604* get__items_1() const { return ____items_1; }
inline EventSystemU5BU5D_t08BD6FCD5A30D5603671D67AF878DBA41AFE9604** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(EventSystemU5BU5D_t08BD6FCD5A30D5603671D67AF878DBA41AFE9604* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
EventSystemU5BU5D_t08BD6FCD5A30D5603671D67AF878DBA41AFE9604* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B_StaticFields, ____emptyArray_5)); }
inline EventSystemU5BU5D_t08BD6FCD5A30D5603671D67AF878DBA41AFE9604* get__emptyArray_5() const { return ____emptyArray_5; }
inline EventSystemU5BU5D_t08BD6FCD5A30D5603671D67AF878DBA41AFE9604** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(EventSystemU5BU5D_t08BD6FCD5A30D5603671D67AF878DBA41AFE9604* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.EventSystems.EventTrigger_Entry>
struct List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
EntryU5BU5D_tB5DBEB01F3998CD9581F39203F8CAD8798FC418C* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2, ____items_1)); }
inline EntryU5BU5D_tB5DBEB01F3998CD9581F39203F8CAD8798FC418C* get__items_1() const { return ____items_1; }
inline EntryU5BU5D_tB5DBEB01F3998CD9581F39203F8CAD8798FC418C** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(EntryU5BU5D_tB5DBEB01F3998CD9581F39203F8CAD8798FC418C* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
EntryU5BU5D_tB5DBEB01F3998CD9581F39203F8CAD8798FC418C* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2_StaticFields, ____emptyArray_5)); }
inline EntryU5BU5D_tB5DBEB01F3998CD9581F39203F8CAD8798FC418C* get__emptyArray_5() const { return ____emptyArray_5; }
inline EntryU5BU5D_tB5DBEB01F3998CD9581F39203F8CAD8798FC418C** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(EntryU5BU5D_tB5DBEB01F3998CD9581F39203F8CAD8798FC418C* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>
struct List_1_tE1B02DF614CD9F94F541033562E5F649C88F18A2 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
IEventSystemHandlerU5BU5D_tAEDE6FF8079C3638A0CD2AD1D9430AE3EC7A0AEB* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tE1B02DF614CD9F94F541033562E5F649C88F18A2, ____items_1)); }
inline IEventSystemHandlerU5BU5D_tAEDE6FF8079C3638A0CD2AD1D9430AE3EC7A0AEB* get__items_1() const { return ____items_1; }
inline IEventSystemHandlerU5BU5D_tAEDE6FF8079C3638A0CD2AD1D9430AE3EC7A0AEB** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(IEventSystemHandlerU5BU5D_tAEDE6FF8079C3638A0CD2AD1D9430AE3EC7A0AEB* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tE1B02DF614CD9F94F541033562E5F649C88F18A2, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tE1B02DF614CD9F94F541033562E5F649C88F18A2, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tE1B02DF614CD9F94F541033562E5F649C88F18A2, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tE1B02DF614CD9F94F541033562E5F649C88F18A2_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
IEventSystemHandlerU5BU5D_tAEDE6FF8079C3638A0CD2AD1D9430AE3EC7A0AEB* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE1B02DF614CD9F94F541033562E5F649C88F18A2_StaticFields, ____emptyArray_5)); }
inline IEventSystemHandlerU5BU5D_tAEDE6FF8079C3638A0CD2AD1D9430AE3EC7A0AEB* get__emptyArray_5() const { return ____emptyArray_5; }
inline IEventSystemHandlerU5BU5D_tAEDE6FF8079C3638A0CD2AD1D9430AE3EC7A0AEB** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(IEventSystemHandlerU5BU5D_tAEDE6FF8079C3638A0CD2AD1D9430AE3EC7A0AEB* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.EventSystems.PointerInputModule_ButtonState>
struct List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ButtonStateU5BU5D_t8F3BFDF0C2EF7E4D21E69ABBE6845C21C194E268* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137, ____items_1)); }
inline ButtonStateU5BU5D_t8F3BFDF0C2EF7E4D21E69ABBE6845C21C194E268* get__items_1() const { return ____items_1; }
inline ButtonStateU5BU5D_t8F3BFDF0C2EF7E4D21E69ABBE6845C21C194E268** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ButtonStateU5BU5D_t8F3BFDF0C2EF7E4D21E69ABBE6845C21C194E268* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ButtonStateU5BU5D_t8F3BFDF0C2EF7E4D21E69ABBE6845C21C194E268* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137_StaticFields, ____emptyArray_5)); }
inline ButtonStateU5BU5D_t8F3BFDF0C2EF7E4D21E69ABBE6845C21C194E268* get__emptyArray_5() const { return ____emptyArray_5; }
inline ButtonStateU5BU5D_t8F3BFDF0C2EF7E4D21E69ABBE6845C21C194E268** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ButtonStateU5BU5D_t8F3BFDF0C2EF7E4D21E69ABBE6845C21C194E268* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>
struct List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098, ____items_1)); }
inline RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* get__items_1() const { return ____items_1; }
inline RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098_StaticFields, ____emptyArray_5)); }
inline RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* get__emptyArray_5() const { return ____emptyArray_5; }
inline RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.GameObject>
struct List_1_t3D4152882C54B77C712688E910390D5C8E030463 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
GameObjectU5BU5D_tBF9D474747511CF34A040A1697E34C74C19BB520* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t3D4152882C54B77C712688E910390D5C8E030463, ____items_1)); }
inline GameObjectU5BU5D_tBF9D474747511CF34A040A1697E34C74C19BB520* get__items_1() const { return ____items_1; }
inline GameObjectU5BU5D_tBF9D474747511CF34A040A1697E34C74C19BB520** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(GameObjectU5BU5D_tBF9D474747511CF34A040A1697E34C74C19BB520* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t3D4152882C54B77C712688E910390D5C8E030463, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t3D4152882C54B77C712688E910390D5C8E030463, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t3D4152882C54B77C712688E910390D5C8E030463, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t3D4152882C54B77C712688E910390D5C8E030463_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
GameObjectU5BU5D_tBF9D474747511CF34A040A1697E34C74C19BB520* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3D4152882C54B77C712688E910390D5C8E030463_StaticFields, ____emptyArray_5)); }
inline GameObjectU5BU5D_tBF9D474747511CF34A040A1697E34C74C19BB520* get__emptyArray_5() const { return ____emptyArray_5; }
inline GameObjectU5BU5D_tBF9D474747511CF34A040A1697E34C74C19BB520** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(GameObjectU5BU5D_tBF9D474747511CF34A040A1697E34C74C19BB520* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.Sprite>
struct List_1_tF23BA9E080B0770882049C6DC281D5C589990D67 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
SpriteU5BU5D_tF94AD07E062BC08ECD019A21E7A7B861654905F7* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tF23BA9E080B0770882049C6DC281D5C589990D67, ____items_1)); }
inline SpriteU5BU5D_tF94AD07E062BC08ECD019A21E7A7B861654905F7* get__items_1() const { return ____items_1; }
inline SpriteU5BU5D_tF94AD07E062BC08ECD019A21E7A7B861654905F7** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(SpriteU5BU5D_tF94AD07E062BC08ECD019A21E7A7B861654905F7* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tF23BA9E080B0770882049C6DC281D5C589990D67, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tF23BA9E080B0770882049C6DC281D5C589990D67, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tF23BA9E080B0770882049C6DC281D5C589990D67, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tF23BA9E080B0770882049C6DC281D5C589990D67_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
SpriteU5BU5D_tF94AD07E062BC08ECD019A21E7A7B861654905F7* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tF23BA9E080B0770882049C6DC281D5C589990D67_StaticFields, ____emptyArray_5)); }
inline SpriteU5BU5D_tF94AD07E062BC08ECD019A21E7A7B861654905F7* get__emptyArray_5() const { return ____emptyArray_5; }
inline SpriteU5BU5D_tF94AD07E062BC08ECD019A21E7A7B861654905F7** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(SpriteU5BU5D_tF94AD07E062BC08ECD019A21E7A7B861654905F7* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.Transform>
struct List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE, ____items_1)); }
inline TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804* get__items_1() const { return ____items_1; }
inline TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE_StaticFields, ____emptyArray_5)); }
inline TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804* get__emptyArray_5() const { return ____emptyArray_5; }
inline TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(TransformU5BU5D_t4F5A1132877D8BA66ABC0A9A7FADA4E0237A7804* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.UI.Dropdown_DropdownItem>
struct List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
DropdownItemU5BU5D_t42132E9435E07E2056C716E4139A76E0CC00E843* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t836CD930F5F0862929A362435417DA9BCD4186F8, ____items_1)); }
inline DropdownItemU5BU5D_t42132E9435E07E2056C716E4139A76E0CC00E843* get__items_1() const { return ____items_1; }
inline DropdownItemU5BU5D_t42132E9435E07E2056C716E4139A76E0CC00E843** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(DropdownItemU5BU5D_t42132E9435E07E2056C716E4139A76E0CC00E843* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t836CD930F5F0862929A362435417DA9BCD4186F8, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t836CD930F5F0862929A362435417DA9BCD4186F8, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t836CD930F5F0862929A362435417DA9BCD4186F8, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t836CD930F5F0862929A362435417DA9BCD4186F8_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
DropdownItemU5BU5D_t42132E9435E07E2056C716E4139A76E0CC00E843* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t836CD930F5F0862929A362435417DA9BCD4186F8_StaticFields, ____emptyArray_5)); }
inline DropdownItemU5BU5D_t42132E9435E07E2056C716E4139A76E0CC00E843* get__emptyArray_5() const { return ____emptyArray_5; }
inline DropdownItemU5BU5D_t42132E9435E07E2056C716E4139A76E0CC00E843** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(DropdownItemU5BU5D_t42132E9435E07E2056C716E4139A76E0CC00E843* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.UI.Dropdown_OptionData>
struct List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
OptionDataU5BU5D_t7594674D67B75BA053EC688A05603EC89B1F36A8* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83, ____items_1)); }
inline OptionDataU5BU5D_t7594674D67B75BA053EC688A05603EC89B1F36A8* get__items_1() const { return ____items_1; }
inline OptionDataU5BU5D_t7594674D67B75BA053EC688A05603EC89B1F36A8** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(OptionDataU5BU5D_t7594674D67B75BA053EC688A05603EC89B1F36A8* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
OptionDataU5BU5D_t7594674D67B75BA053EC688A05603EC89B1F36A8* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83_StaticFields, ____emptyArray_5)); }
inline OptionDataU5BU5D_t7594674D67B75BA053EC688A05603EC89B1F36A8* get__emptyArray_5() const { return ____emptyArray_5; }
inline OptionDataU5BU5D_t7594674D67B75BA053EC688A05603EC89B1F36A8** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(OptionDataU5BU5D_t7594674D67B75BA053EC688A05603EC89B1F36A8* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.UI.RectMask2D>
struct List_1_tFE915F05C1A0D10E751CEC3F24F229A6C57E375C : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
RectMask2DU5BU5D_t561412965D8881DE3CB36C5AF730E91188345A21* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tFE915F05C1A0D10E751CEC3F24F229A6C57E375C, ____items_1)); }
inline RectMask2DU5BU5D_t561412965D8881DE3CB36C5AF730E91188345A21* get__items_1() const { return ____items_1; }
inline RectMask2DU5BU5D_t561412965D8881DE3CB36C5AF730E91188345A21** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(RectMask2DU5BU5D_t561412965D8881DE3CB36C5AF730E91188345A21* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tFE915F05C1A0D10E751CEC3F24F229A6C57E375C, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tFE915F05C1A0D10E751CEC3F24F229A6C57E375C, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tFE915F05C1A0D10E751CEC3F24F229A6C57E375C, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tFE915F05C1A0D10E751CEC3F24F229A6C57E375C_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
RectMask2DU5BU5D_t561412965D8881DE3CB36C5AF730E91188345A21* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tFE915F05C1A0D10E751CEC3F24F229A6C57E375C_StaticFields, ____emptyArray_5)); }
inline RectMask2DU5BU5D_t561412965D8881DE3CB36C5AF730E91188345A21* get__emptyArray_5() const { return ____emptyArray_5; }
inline RectMask2DU5BU5D_t561412965D8881DE3CB36C5AF730E91188345A21** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(RectMask2DU5BU5D_t561412965D8881DE3CB36C5AF730E91188345A21* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::m_stringLength
int32_t ___m_stringLength_0;
// System.Char System.String::m_firstChar
Il2CppChar ___m_firstChar_1;
public:
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
inline void set_m_stringLength_0(int32_t value)
{
___m_stringLength_0 = value;
}
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
inline void set_m_firstChar_1(Il2CppChar value)
{
___m_firstChar_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_5;
public:
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
inline String_t* get_Empty_5() const { return ___Empty_5; }
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
inline void set_Empty_5(String_t* value)
{
___Empty_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
}
};
// System.Text.StringBuilder
struct StringBuilder_t : public RuntimeObject
{
public:
// System.Char[] System.Text.StringBuilder::m_ChunkChars
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___m_ChunkChars_0;
// System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
StringBuilder_t * ___m_ChunkPrevious_1;
// System.Int32 System.Text.StringBuilder::m_ChunkLength
int32_t ___m_ChunkLength_2;
// System.Int32 System.Text.StringBuilder::m_ChunkOffset
int32_t ___m_ChunkOffset_3;
// System.Int32 System.Text.StringBuilder::m_MaxCapacity
int32_t ___m_MaxCapacity_4;
public:
inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkChars_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; }
inline void set_m_ChunkChars_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___m_ChunkChars_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkChars_0), (void*)value);
}
inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); }
inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; }
inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; }
inline void set_m_ChunkPrevious_1(StringBuilder_t * value)
{
___m_ChunkPrevious_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkPrevious_1), (void*)value);
}
inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkLength_2)); }
inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; }
inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; }
inline void set_m_ChunkLength_2(int32_t value)
{
___m_ChunkLength_2 = value;
}
inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); }
inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; }
inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; }
inline void set_m_ChunkOffset_3(int32_t value)
{
___m_ChunkOffset_3 = value;
}
inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); }
inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; }
inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; }
inline void set_m_MaxCapacity_4(int32_t value)
{
___m_MaxCapacity_4 = value;
}
};
// System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com
{
};
// UnityEngine.EventSystems.AbstractEventData
struct AbstractEventData_t636F385820C291DAE25897BCEB4FBCADDA3B75F6 : public RuntimeObject
{
public:
// System.Boolean UnityEngine.EventSystems.AbstractEventData::m_Used
bool ___m_Used_0;
public:
inline static int32_t get_offset_of_m_Used_0() { return static_cast<int32_t>(offsetof(AbstractEventData_t636F385820C291DAE25897BCEB4FBCADDA3B75F6, ___m_Used_0)); }
inline bool get_m_Used_0() const { return ___m_Used_0; }
inline bool* get_address_of_m_Used_0() { return &___m_Used_0; }
inline void set_m_Used_0(bool value)
{
___m_Used_0 = value;
}
};
// UnityEngine.EventSystems.ExecuteEvents
struct ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985 : public RuntimeObject
{
public:
public:
};
struct ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields
{
public:
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerEnterHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerEnterHandler
EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 * ___s_PointerEnterHandler_0;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerExitHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerExitHandler
EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA * ___s_PointerExitHandler_1;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerDownHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerDownHandler
EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E * ___s_PointerDownHandler_2;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerUpHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerUpHandler
EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 * ___s_PointerUpHandler_3;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerClickHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerClickHandler
EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E * ___s_PointerClickHandler_4;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IInitializePotentialDragHandler> UnityEngine.EventSystems.ExecuteEvents::s_InitializePotentialDragHandler
EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 * ___s_InitializePotentialDragHandler_5;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IBeginDragHandler> UnityEngine.EventSystems.ExecuteEvents::s_BeginDragHandler
EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 * ___s_BeginDragHandler_6;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IDragHandler> UnityEngine.EventSystems.ExecuteEvents::s_DragHandler
EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 * ___s_DragHandler_7;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IEndDragHandler> UnityEngine.EventSystems.ExecuteEvents::s_EndDragHandler
EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 * ___s_EndDragHandler_8;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IDropHandler> UnityEngine.EventSystems.ExecuteEvents::s_DropHandler
EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 * ___s_DropHandler_9;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IScrollHandler> UnityEngine.EventSystems.ExecuteEvents::s_ScrollHandler
EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A * ___s_ScrollHandler_10;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IUpdateSelectedHandler> UnityEngine.EventSystems.ExecuteEvents::s_UpdateSelectedHandler
EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 * ___s_UpdateSelectedHandler_11;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.ISelectHandler> UnityEngine.EventSystems.ExecuteEvents::s_SelectHandler
EventFunction_1_t7521247C87411935E8A2CA38683533083459473F * ___s_SelectHandler_12;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IDeselectHandler> UnityEngine.EventSystems.ExecuteEvents::s_DeselectHandler
EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 * ___s_DeselectHandler_13;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IMoveHandler> UnityEngine.EventSystems.ExecuteEvents::s_MoveHandler
EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB * ___s_MoveHandler_14;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.ISubmitHandler> UnityEngine.EventSystems.ExecuteEvents::s_SubmitHandler
EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B * ___s_SubmitHandler_15;
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.ICancelHandler> UnityEngine.EventSystems.ExecuteEvents::s_CancelHandler
EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 * ___s_CancelHandler_16;
// UnityEngine.UI.ObjectPool`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>> UnityEngine.EventSystems.ExecuteEvents::s_HandlerListPool
ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC * ___s_HandlerListPool_17;
// System.Collections.Generic.List`1<UnityEngine.Transform> UnityEngine.EventSystems.ExecuteEvents::s_InternalTransformList
List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE * ___s_InternalTransformList_18;
public:
inline static int32_t get_offset_of_s_PointerEnterHandler_0() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_PointerEnterHandler_0)); }
inline EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 * get_s_PointerEnterHandler_0() const { return ___s_PointerEnterHandler_0; }
inline EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 ** get_address_of_s_PointerEnterHandler_0() { return &___s_PointerEnterHandler_0; }
inline void set_s_PointerEnterHandler_0(EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 * value)
{
___s_PointerEnterHandler_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_PointerEnterHandler_0), (void*)value);
}
inline static int32_t get_offset_of_s_PointerExitHandler_1() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_PointerExitHandler_1)); }
inline EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA * get_s_PointerExitHandler_1() const { return ___s_PointerExitHandler_1; }
inline EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA ** get_address_of_s_PointerExitHandler_1() { return &___s_PointerExitHandler_1; }
inline void set_s_PointerExitHandler_1(EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA * value)
{
___s_PointerExitHandler_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_PointerExitHandler_1), (void*)value);
}
inline static int32_t get_offset_of_s_PointerDownHandler_2() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_PointerDownHandler_2)); }
inline EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E * get_s_PointerDownHandler_2() const { return ___s_PointerDownHandler_2; }
inline EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E ** get_address_of_s_PointerDownHandler_2() { return &___s_PointerDownHandler_2; }
inline void set_s_PointerDownHandler_2(EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E * value)
{
___s_PointerDownHandler_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_PointerDownHandler_2), (void*)value);
}
inline static int32_t get_offset_of_s_PointerUpHandler_3() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_PointerUpHandler_3)); }
inline EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 * get_s_PointerUpHandler_3() const { return ___s_PointerUpHandler_3; }
inline EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 ** get_address_of_s_PointerUpHandler_3() { return &___s_PointerUpHandler_3; }
inline void set_s_PointerUpHandler_3(EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 * value)
{
___s_PointerUpHandler_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_PointerUpHandler_3), (void*)value);
}
inline static int32_t get_offset_of_s_PointerClickHandler_4() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_PointerClickHandler_4)); }
inline EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E * get_s_PointerClickHandler_4() const { return ___s_PointerClickHandler_4; }
inline EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E ** get_address_of_s_PointerClickHandler_4() { return &___s_PointerClickHandler_4; }
inline void set_s_PointerClickHandler_4(EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E * value)
{
___s_PointerClickHandler_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_PointerClickHandler_4), (void*)value);
}
inline static int32_t get_offset_of_s_InitializePotentialDragHandler_5() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_InitializePotentialDragHandler_5)); }
inline EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 * get_s_InitializePotentialDragHandler_5() const { return ___s_InitializePotentialDragHandler_5; }
inline EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 ** get_address_of_s_InitializePotentialDragHandler_5() { return &___s_InitializePotentialDragHandler_5; }
inline void set_s_InitializePotentialDragHandler_5(EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 * value)
{
___s_InitializePotentialDragHandler_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_InitializePotentialDragHandler_5), (void*)value);
}
inline static int32_t get_offset_of_s_BeginDragHandler_6() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_BeginDragHandler_6)); }
inline EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 * get_s_BeginDragHandler_6() const { return ___s_BeginDragHandler_6; }
inline EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 ** get_address_of_s_BeginDragHandler_6() { return &___s_BeginDragHandler_6; }
inline void set_s_BeginDragHandler_6(EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 * value)
{
___s_BeginDragHandler_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_BeginDragHandler_6), (void*)value);
}
inline static int32_t get_offset_of_s_DragHandler_7() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_DragHandler_7)); }
inline EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 * get_s_DragHandler_7() const { return ___s_DragHandler_7; }
inline EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 ** get_address_of_s_DragHandler_7() { return &___s_DragHandler_7; }
inline void set_s_DragHandler_7(EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 * value)
{
___s_DragHandler_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DragHandler_7), (void*)value);
}
inline static int32_t get_offset_of_s_EndDragHandler_8() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_EndDragHandler_8)); }
inline EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 * get_s_EndDragHandler_8() const { return ___s_EndDragHandler_8; }
inline EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 ** get_address_of_s_EndDragHandler_8() { return &___s_EndDragHandler_8; }
inline void set_s_EndDragHandler_8(EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 * value)
{
___s_EndDragHandler_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_EndDragHandler_8), (void*)value);
}
inline static int32_t get_offset_of_s_DropHandler_9() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_DropHandler_9)); }
inline EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 * get_s_DropHandler_9() const { return ___s_DropHandler_9; }
inline EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 ** get_address_of_s_DropHandler_9() { return &___s_DropHandler_9; }
inline void set_s_DropHandler_9(EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 * value)
{
___s_DropHandler_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DropHandler_9), (void*)value);
}
inline static int32_t get_offset_of_s_ScrollHandler_10() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_ScrollHandler_10)); }
inline EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A * get_s_ScrollHandler_10() const { return ___s_ScrollHandler_10; }
inline EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A ** get_address_of_s_ScrollHandler_10() { return &___s_ScrollHandler_10; }
inline void set_s_ScrollHandler_10(EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A * value)
{
___s_ScrollHandler_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_ScrollHandler_10), (void*)value);
}
inline static int32_t get_offset_of_s_UpdateSelectedHandler_11() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_UpdateSelectedHandler_11)); }
inline EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 * get_s_UpdateSelectedHandler_11() const { return ___s_UpdateSelectedHandler_11; }
inline EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 ** get_address_of_s_UpdateSelectedHandler_11() { return &___s_UpdateSelectedHandler_11; }
inline void set_s_UpdateSelectedHandler_11(EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 * value)
{
___s_UpdateSelectedHandler_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_UpdateSelectedHandler_11), (void*)value);
}
inline static int32_t get_offset_of_s_SelectHandler_12() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_SelectHandler_12)); }
inline EventFunction_1_t7521247C87411935E8A2CA38683533083459473F * get_s_SelectHandler_12() const { return ___s_SelectHandler_12; }
inline EventFunction_1_t7521247C87411935E8A2CA38683533083459473F ** get_address_of_s_SelectHandler_12() { return &___s_SelectHandler_12; }
inline void set_s_SelectHandler_12(EventFunction_1_t7521247C87411935E8A2CA38683533083459473F * value)
{
___s_SelectHandler_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_SelectHandler_12), (void*)value);
}
inline static int32_t get_offset_of_s_DeselectHandler_13() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_DeselectHandler_13)); }
inline EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 * get_s_DeselectHandler_13() const { return ___s_DeselectHandler_13; }
inline EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 ** get_address_of_s_DeselectHandler_13() { return &___s_DeselectHandler_13; }
inline void set_s_DeselectHandler_13(EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 * value)
{
___s_DeselectHandler_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DeselectHandler_13), (void*)value);
}
inline static int32_t get_offset_of_s_MoveHandler_14() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_MoveHandler_14)); }
inline EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB * get_s_MoveHandler_14() const { return ___s_MoveHandler_14; }
inline EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB ** get_address_of_s_MoveHandler_14() { return &___s_MoveHandler_14; }
inline void set_s_MoveHandler_14(EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB * value)
{
___s_MoveHandler_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_MoveHandler_14), (void*)value);
}
inline static int32_t get_offset_of_s_SubmitHandler_15() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_SubmitHandler_15)); }
inline EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B * get_s_SubmitHandler_15() const { return ___s_SubmitHandler_15; }
inline EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B ** get_address_of_s_SubmitHandler_15() { return &___s_SubmitHandler_15; }
inline void set_s_SubmitHandler_15(EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B * value)
{
___s_SubmitHandler_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_SubmitHandler_15), (void*)value);
}
inline static int32_t get_offset_of_s_CancelHandler_16() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_CancelHandler_16)); }
inline EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 * get_s_CancelHandler_16() const { return ___s_CancelHandler_16; }
inline EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 ** get_address_of_s_CancelHandler_16() { return &___s_CancelHandler_16; }
inline void set_s_CancelHandler_16(EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 * value)
{
___s_CancelHandler_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_CancelHandler_16), (void*)value);
}
inline static int32_t get_offset_of_s_HandlerListPool_17() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_HandlerListPool_17)); }
inline ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC * get_s_HandlerListPool_17() const { return ___s_HandlerListPool_17; }
inline ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC ** get_address_of_s_HandlerListPool_17() { return &___s_HandlerListPool_17; }
inline void set_s_HandlerListPool_17(ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC * value)
{
___s_HandlerListPool_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_HandlerListPool_17), (void*)value);
}
inline static int32_t get_offset_of_s_InternalTransformList_18() { return static_cast<int32_t>(offsetof(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields, ___s_InternalTransformList_18)); }
inline List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE * get_s_InternalTransformList_18() const { return ___s_InternalTransformList_18; }
inline List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE ** get_address_of_s_InternalTransformList_18() { return &___s_InternalTransformList_18; }
inline void set_s_InternalTransformList_18(List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE * value)
{
___s_InternalTransformList_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_InternalTransformList_18), (void*)value);
}
};
// UnityEngine.EventSystems.ExecuteEvents_<>c
struct U3CU3Ec_t91DA84DB86FD18E664B2FBDACCB1B7A5E2A0849C : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t91DA84DB86FD18E664B2FBDACCB1B7A5E2A0849C_StaticFields
{
public:
// UnityEngine.EventSystems.ExecuteEvents_<>c UnityEngine.EventSystems.ExecuteEvents_<>c::<>9
U3CU3Ec_t91DA84DB86FD18E664B2FBDACCB1B7A5E2A0849C * ___U3CU3E9_0;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t91DA84DB86FD18E664B2FBDACCB1B7A5E2A0849C_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t91DA84DB86FD18E664B2FBDACCB1B7A5E2A0849C * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t91DA84DB86FD18E664B2FBDACCB1B7A5E2A0849C ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t91DA84DB86FD18E664B2FBDACCB1B7A5E2A0849C * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
};
// UnityEngine.EventSystems.PhysicsRaycaster_RaycastHitComparer
struct RaycastHitComparer_t5465A53942AAC60F5716D514946F4AB6C263CFA2 : public RuntimeObject
{
public:
public:
};
struct RaycastHitComparer_t5465A53942AAC60F5716D514946F4AB6C263CFA2_StaticFields
{
public:
// UnityEngine.EventSystems.PhysicsRaycaster_RaycastHitComparer UnityEngine.EventSystems.PhysicsRaycaster_RaycastHitComparer::instance
RaycastHitComparer_t5465A53942AAC60F5716D514946F4AB6C263CFA2 * ___instance_0;
public:
inline static int32_t get_offset_of_instance_0() { return static_cast<int32_t>(offsetof(RaycastHitComparer_t5465A53942AAC60F5716D514946F4AB6C263CFA2_StaticFields, ___instance_0)); }
inline RaycastHitComparer_t5465A53942AAC60F5716D514946F4AB6C263CFA2 * get_instance_0() const { return ___instance_0; }
inline RaycastHitComparer_t5465A53942AAC60F5716D514946F4AB6C263CFA2 ** get_address_of_instance_0() { return &___instance_0; }
inline void set_instance_0(RaycastHitComparer_t5465A53942AAC60F5716D514946F4AB6C263CFA2 * value)
{
___instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_0), (void*)value);
}
};
// UnityEngine.EventSystems.PointerInputModule_MouseState
struct MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 : public RuntimeObject
{
public:
// System.Collections.Generic.List`1<UnityEngine.EventSystems.PointerInputModule_ButtonState> UnityEngine.EventSystems.PointerInputModule_MouseState::m_TrackedButtons
List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137 * ___m_TrackedButtons_0;
public:
inline static int32_t get_offset_of_m_TrackedButtons_0() { return static_cast<int32_t>(offsetof(MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7, ___m_TrackedButtons_0)); }
inline List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137 * get_m_TrackedButtons_0() const { return ___m_TrackedButtons_0; }
inline List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137 ** get_address_of_m_TrackedButtons_0() { return &___m_TrackedButtons_0; }
inline void set_m_TrackedButtons_0(List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137 * value)
{
___m_TrackedButtons_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TrackedButtons_0), (void*)value);
}
};
// UnityEngine.EventSystems.RaycasterManager
struct RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A : public RuntimeObject
{
public:
public:
};
struct RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_StaticFields
{
public:
// System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseRaycaster> UnityEngine.EventSystems.RaycasterManager::s_Raycasters
List_1_tE44A303DE85018C722D021A9716A97568780A0E1 * ___s_Raycasters_0;
public:
inline static int32_t get_offset_of_s_Raycasters_0() { return static_cast<int32_t>(offsetof(RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_StaticFields, ___s_Raycasters_0)); }
inline List_1_tE44A303DE85018C722D021A9716A97568780A0E1 * get_s_Raycasters_0() const { return ___s_Raycasters_0; }
inline List_1_tE44A303DE85018C722D021A9716A97568780A0E1 ** get_address_of_s_Raycasters_0() { return &___s_Raycasters_0; }
inline void set_s_Raycasters_0(List_1_tE44A303DE85018C722D021A9716A97568780A0E1 * value)
{
___s_Raycasters_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Raycasters_0), (void*)value);
}
};
// UnityEngine.Events.UnityEventBase
struct UnityEventBase_t6E0F7823762EE94BB8489B5AE41C7802A266D3D5 : public RuntimeObject
{
public:
// UnityEngine.Events.InvokableCallList UnityEngine.Events.UnityEventBase::m_Calls
InvokableCallList_t18AA4F473C7B295216B7D4B9723B4F3DFCCC9A3F * ___m_Calls_0;
// UnityEngine.Events.PersistentCallGroup UnityEngine.Events.UnityEventBase::m_PersistentCalls
PersistentCallGroup_t6E5DF2EBDA42794B5FE0C6DAA97DF65F0BFF571F * ___m_PersistentCalls_1;
// System.Boolean UnityEngine.Events.UnityEventBase::m_CallsDirty
bool ___m_CallsDirty_2;
public:
inline static int32_t get_offset_of_m_Calls_0() { return static_cast<int32_t>(offsetof(UnityEventBase_t6E0F7823762EE94BB8489B5AE41C7802A266D3D5, ___m_Calls_0)); }
inline InvokableCallList_t18AA4F473C7B295216B7D4B9723B4F3DFCCC9A3F * get_m_Calls_0() const { return ___m_Calls_0; }
inline InvokableCallList_t18AA4F473C7B295216B7D4B9723B4F3DFCCC9A3F ** get_address_of_m_Calls_0() { return &___m_Calls_0; }
inline void set_m_Calls_0(InvokableCallList_t18AA4F473C7B295216B7D4B9723B4F3DFCCC9A3F * value)
{
___m_Calls_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Calls_0), (void*)value);
}
inline static int32_t get_offset_of_m_PersistentCalls_1() { return static_cast<int32_t>(offsetof(UnityEventBase_t6E0F7823762EE94BB8489B5AE41C7802A266D3D5, ___m_PersistentCalls_1)); }
inline PersistentCallGroup_t6E5DF2EBDA42794B5FE0C6DAA97DF65F0BFF571F * get_m_PersistentCalls_1() const { return ___m_PersistentCalls_1; }
inline PersistentCallGroup_t6E5DF2EBDA42794B5FE0C6DAA97DF65F0BFF571F ** get_address_of_m_PersistentCalls_1() { return &___m_PersistentCalls_1; }
inline void set_m_PersistentCalls_1(PersistentCallGroup_t6E5DF2EBDA42794B5FE0C6DAA97DF65F0BFF571F * value)
{
___m_PersistentCalls_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PersistentCalls_1), (void*)value);
}
inline static int32_t get_offset_of_m_CallsDirty_2() { return static_cast<int32_t>(offsetof(UnityEventBase_t6E0F7823762EE94BB8489B5AE41C7802A266D3D5, ___m_CallsDirty_2)); }
inline bool get_m_CallsDirty_2() const { return ___m_CallsDirty_2; }
inline bool* get_address_of_m_CallsDirty_2() { return &___m_CallsDirty_2; }
inline void set_m_CallsDirty_2(bool value)
{
___m_CallsDirty_2 = value;
}
};
// UnityEngine.UI.AnimationTriggers
struct AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5 : public RuntimeObject
{
public:
// System.String UnityEngine.UI.AnimationTriggers::m_NormalTrigger
String_t* ___m_NormalTrigger_5;
// System.String UnityEngine.UI.AnimationTriggers::m_HighlightedTrigger
String_t* ___m_HighlightedTrigger_6;
// System.String UnityEngine.UI.AnimationTriggers::m_PressedTrigger
String_t* ___m_PressedTrigger_7;
// System.String UnityEngine.UI.AnimationTriggers::m_SelectedTrigger
String_t* ___m_SelectedTrigger_8;
// System.String UnityEngine.UI.AnimationTriggers::m_DisabledTrigger
String_t* ___m_DisabledTrigger_9;
public:
inline static int32_t get_offset_of_m_NormalTrigger_5() { return static_cast<int32_t>(offsetof(AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5, ___m_NormalTrigger_5)); }
inline String_t* get_m_NormalTrigger_5() const { return ___m_NormalTrigger_5; }
inline String_t** get_address_of_m_NormalTrigger_5() { return &___m_NormalTrigger_5; }
inline void set_m_NormalTrigger_5(String_t* value)
{
___m_NormalTrigger_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_NormalTrigger_5), (void*)value);
}
inline static int32_t get_offset_of_m_HighlightedTrigger_6() { return static_cast<int32_t>(offsetof(AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5, ___m_HighlightedTrigger_6)); }
inline String_t* get_m_HighlightedTrigger_6() const { return ___m_HighlightedTrigger_6; }
inline String_t** get_address_of_m_HighlightedTrigger_6() { return &___m_HighlightedTrigger_6; }
inline void set_m_HighlightedTrigger_6(String_t* value)
{
___m_HighlightedTrigger_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HighlightedTrigger_6), (void*)value);
}
inline static int32_t get_offset_of_m_PressedTrigger_7() { return static_cast<int32_t>(offsetof(AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5, ___m_PressedTrigger_7)); }
inline String_t* get_m_PressedTrigger_7() const { return ___m_PressedTrigger_7; }
inline String_t** get_address_of_m_PressedTrigger_7() { return &___m_PressedTrigger_7; }
inline void set_m_PressedTrigger_7(String_t* value)
{
___m_PressedTrigger_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PressedTrigger_7), (void*)value);
}
inline static int32_t get_offset_of_m_SelectedTrigger_8() { return static_cast<int32_t>(offsetof(AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5, ___m_SelectedTrigger_8)); }
inline String_t* get_m_SelectedTrigger_8() const { return ___m_SelectedTrigger_8; }
inline String_t** get_address_of_m_SelectedTrigger_8() { return &___m_SelectedTrigger_8; }
inline void set_m_SelectedTrigger_8(String_t* value)
{
___m_SelectedTrigger_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectedTrigger_8), (void*)value);
}
inline static int32_t get_offset_of_m_DisabledTrigger_9() { return static_cast<int32_t>(offsetof(AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5, ___m_DisabledTrigger_9)); }
inline String_t* get_m_DisabledTrigger_9() const { return ___m_DisabledTrigger_9; }
inline String_t** get_address_of_m_DisabledTrigger_9() { return &___m_DisabledTrigger_9; }
inline void set_m_DisabledTrigger_9(String_t* value)
{
___m_DisabledTrigger_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DisabledTrigger_9), (void*)value);
}
};
// UnityEngine.UI.BaseVertexEffect
struct BaseVertexEffect_t1EF95AB1FC33A027710E7DC86D19F700156C4F6A : public RuntimeObject
{
public:
public:
};
// UnityEngine.UI.Button_<OnFinishSubmit>d__9
struct U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54 : public RuntimeObject
{
public:
// System.Int32 UnityEngine.UI.Button_<OnFinishSubmit>d__9::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object UnityEngine.UI.Button_<OnFinishSubmit>d__9::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// UnityEngine.UI.Button UnityEngine.UI.Button_<OnFinishSubmit>d__9::<>4__this
Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * ___U3CU3E4__this_2;
// System.Single UnityEngine.UI.Button_<OnFinishSubmit>d__9::<fadeTime>5__2
float ___U3CfadeTimeU3E5__2_3;
// System.Single UnityEngine.UI.Button_<OnFinishSubmit>d__9::<elapsedTime>5__3
float ___U3CelapsedTimeU3E5__3_4;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54, ___U3CU3E2__current_1)); }
inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; }
inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; }
inline void set_U3CU3E2__current_1(RuntimeObject * value)
{
___U3CU3E2__current_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54, ___U3CU3E4__this_2)); }
inline Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value);
}
inline static int32_t get_offset_of_U3CfadeTimeU3E5__2_3() { return static_cast<int32_t>(offsetof(U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54, ___U3CfadeTimeU3E5__2_3)); }
inline float get_U3CfadeTimeU3E5__2_3() const { return ___U3CfadeTimeU3E5__2_3; }
inline float* get_address_of_U3CfadeTimeU3E5__2_3() { return &___U3CfadeTimeU3E5__2_3; }
inline void set_U3CfadeTimeU3E5__2_3(float value)
{
___U3CfadeTimeU3E5__2_3 = value;
}
inline static int32_t get_offset_of_U3CelapsedTimeU3E5__3_4() { return static_cast<int32_t>(offsetof(U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54, ___U3CelapsedTimeU3E5__3_4)); }
inline float get_U3CelapsedTimeU3E5__3_4() const { return ___U3CelapsedTimeU3E5__3_4; }
inline float* get_address_of_U3CelapsedTimeU3E5__3_4() { return &___U3CelapsedTimeU3E5__3_4; }
inline void set_U3CelapsedTimeU3E5__3_4(float value)
{
___U3CelapsedTimeU3E5__3_4 = value;
}
};
// UnityEngine.UI.CanvasUpdateRegistry
struct CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 : public RuntimeObject
{
public:
// System.Boolean UnityEngine.UI.CanvasUpdateRegistry::m_PerformingLayoutUpdate
bool ___m_PerformingLayoutUpdate_1;
// System.Boolean UnityEngine.UI.CanvasUpdateRegistry::m_PerformingGraphicUpdate
bool ___m_PerformingGraphicUpdate_2;
// System.String[] UnityEngine.UI.CanvasUpdateRegistry::m_CanvasUpdateProfilerStrings
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_CanvasUpdateProfilerStrings_3;
// UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.ICanvasElement> UnityEngine.UI.CanvasUpdateRegistry::m_LayoutRebuildQueue
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * ___m_LayoutRebuildQueue_5;
// UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.ICanvasElement> UnityEngine.UI.CanvasUpdateRegistry::m_GraphicRebuildQueue
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * ___m_GraphicRebuildQueue_6;
public:
inline static int32_t get_offset_of_m_PerformingLayoutUpdate_1() { return static_cast<int32_t>(offsetof(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9, ___m_PerformingLayoutUpdate_1)); }
inline bool get_m_PerformingLayoutUpdate_1() const { return ___m_PerformingLayoutUpdate_1; }
inline bool* get_address_of_m_PerformingLayoutUpdate_1() { return &___m_PerformingLayoutUpdate_1; }
inline void set_m_PerformingLayoutUpdate_1(bool value)
{
___m_PerformingLayoutUpdate_1 = value;
}
inline static int32_t get_offset_of_m_PerformingGraphicUpdate_2() { return static_cast<int32_t>(offsetof(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9, ___m_PerformingGraphicUpdate_2)); }
inline bool get_m_PerformingGraphicUpdate_2() const { return ___m_PerformingGraphicUpdate_2; }
inline bool* get_address_of_m_PerformingGraphicUpdate_2() { return &___m_PerformingGraphicUpdate_2; }
inline void set_m_PerformingGraphicUpdate_2(bool value)
{
___m_PerformingGraphicUpdate_2 = value;
}
inline static int32_t get_offset_of_m_CanvasUpdateProfilerStrings_3() { return static_cast<int32_t>(offsetof(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9, ___m_CanvasUpdateProfilerStrings_3)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_CanvasUpdateProfilerStrings_3() const { return ___m_CanvasUpdateProfilerStrings_3; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_CanvasUpdateProfilerStrings_3() { return &___m_CanvasUpdateProfilerStrings_3; }
inline void set_m_CanvasUpdateProfilerStrings_3(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___m_CanvasUpdateProfilerStrings_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CanvasUpdateProfilerStrings_3), (void*)value);
}
inline static int32_t get_offset_of_m_LayoutRebuildQueue_5() { return static_cast<int32_t>(offsetof(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9, ___m_LayoutRebuildQueue_5)); }
inline IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * get_m_LayoutRebuildQueue_5() const { return ___m_LayoutRebuildQueue_5; }
inline IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 ** get_address_of_m_LayoutRebuildQueue_5() { return &___m_LayoutRebuildQueue_5; }
inline void set_m_LayoutRebuildQueue_5(IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * value)
{
___m_LayoutRebuildQueue_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_LayoutRebuildQueue_5), (void*)value);
}
inline static int32_t get_offset_of_m_GraphicRebuildQueue_6() { return static_cast<int32_t>(offsetof(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9, ___m_GraphicRebuildQueue_6)); }
inline IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * get_m_GraphicRebuildQueue_6() const { return ___m_GraphicRebuildQueue_6; }
inline IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 ** get_address_of_m_GraphicRebuildQueue_6() { return &___m_GraphicRebuildQueue_6; }
inline void set_m_GraphicRebuildQueue_6(IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * value)
{
___m_GraphicRebuildQueue_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_GraphicRebuildQueue_6), (void*)value);
}
};
struct CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_StaticFields
{
public:
// UnityEngine.UI.CanvasUpdateRegistry UnityEngine.UI.CanvasUpdateRegistry::s_Instance
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * ___s_Instance_0;
// System.Comparison`1<UnityEngine.UI.ICanvasElement> UnityEngine.UI.CanvasUpdateRegistry::s_SortLayoutFunction
Comparison_1_tE7E69DEDE3A7782BEEADFF223EE57D6F7F626AEC * ___s_SortLayoutFunction_7;
public:
inline static int32_t get_offset_of_s_Instance_0() { return static_cast<int32_t>(offsetof(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_StaticFields, ___s_Instance_0)); }
inline CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * get_s_Instance_0() const { return ___s_Instance_0; }
inline CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 ** get_address_of_s_Instance_0() { return &___s_Instance_0; }
inline void set_s_Instance_0(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * value)
{
___s_Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Instance_0), (void*)value);
}
inline static int32_t get_offset_of_s_SortLayoutFunction_7() { return static_cast<int32_t>(offsetof(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_StaticFields, ___s_SortLayoutFunction_7)); }
inline Comparison_1_tE7E69DEDE3A7782BEEADFF223EE57D6F7F626AEC * get_s_SortLayoutFunction_7() const { return ___s_SortLayoutFunction_7; }
inline Comparison_1_tE7E69DEDE3A7782BEEADFF223EE57D6F7F626AEC ** get_address_of_s_SortLayoutFunction_7() { return &___s_SortLayoutFunction_7; }
inline void set_s_SortLayoutFunction_7(Comparison_1_tE7E69DEDE3A7782BEEADFF223EE57D6F7F626AEC * value)
{
___s_SortLayoutFunction_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_SortLayoutFunction_7), (void*)value);
}
};
// UnityEngine.UI.ClipperRegistry
struct ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F : public RuntimeObject
{
public:
// UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.IClipper> UnityEngine.UI.ClipperRegistry::m_Clippers
IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A * ___m_Clippers_1;
public:
inline static int32_t get_offset_of_m_Clippers_1() { return static_cast<int32_t>(offsetof(ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F, ___m_Clippers_1)); }
inline IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A * get_m_Clippers_1() const { return ___m_Clippers_1; }
inline IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A ** get_address_of_m_Clippers_1() { return &___m_Clippers_1; }
inline void set_m_Clippers_1(IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A * value)
{
___m_Clippers_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Clippers_1), (void*)value);
}
};
struct ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F_StaticFields
{
public:
// UnityEngine.UI.ClipperRegistry UnityEngine.UI.ClipperRegistry::s_Instance
ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F * ___s_Instance_0;
public:
inline static int32_t get_offset_of_s_Instance_0() { return static_cast<int32_t>(offsetof(ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F_StaticFields, ___s_Instance_0)); }
inline ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F * get_s_Instance_0() const { return ___s_Instance_0; }
inline ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F ** get_address_of_s_Instance_0() { return &___s_Instance_0; }
inline void set_s_Instance_0(ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F * value)
{
___s_Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Instance_0), (void*)value);
}
};
// UnityEngine.UI.Clipping
struct Clipping_t54CCE61957223C3A78768A2185E906846335DE25 : public RuntimeObject
{
public:
public:
};
// UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.ICanvasElement>
struct IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 : public RuntimeObject
{
public:
// System.Collections.Generic.List`1<T> UnityEngine.UI.Collections.IndexedSet`1::m_List
List_1_t0998F898063587B085A1FEFF73806FCB149A93AE * ___m_List_0;
// System.Collections.Generic.Dictionary`2<T,System.Int32> UnityEngine.UI.Collections.IndexedSet`1::m_Dictionary
Dictionary_2_tFC741FE83E41AFDB837F12174457B5D49FB89D81 * ___m_Dictionary_1;
public:
inline static int32_t get_offset_of_m_List_0() { return static_cast<int32_t>(offsetof(IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61, ___m_List_0)); }
inline List_1_t0998F898063587B085A1FEFF73806FCB149A93AE * get_m_List_0() const { return ___m_List_0; }
inline List_1_t0998F898063587B085A1FEFF73806FCB149A93AE ** get_address_of_m_List_0() { return &___m_List_0; }
inline void set_m_List_0(List_1_t0998F898063587B085A1FEFF73806FCB149A93AE * value)
{
___m_List_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_List_0), (void*)value);
}
inline static int32_t get_offset_of_m_Dictionary_1() { return static_cast<int32_t>(offsetof(IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61, ___m_Dictionary_1)); }
inline Dictionary_2_tFC741FE83E41AFDB837F12174457B5D49FB89D81 * get_m_Dictionary_1() const { return ___m_Dictionary_1; }
inline Dictionary_2_tFC741FE83E41AFDB837F12174457B5D49FB89D81 ** get_address_of_m_Dictionary_1() { return &___m_Dictionary_1; }
inline void set_m_Dictionary_1(Dictionary_2_tFC741FE83E41AFDB837F12174457B5D49FB89D81 * value)
{
___m_Dictionary_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Dictionary_1), (void*)value);
}
};
// UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.IClipper>
struct IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A : public RuntimeObject
{
public:
// System.Collections.Generic.List`1<T> UnityEngine.UI.Collections.IndexedSet`1::m_List
List_1_t963F1C52D303E088C23BA96CEB8D6E020DC61A3A * ___m_List_0;
// System.Collections.Generic.Dictionary`2<T,System.Int32> UnityEngine.UI.Collections.IndexedSet`1::m_Dictionary
Dictionary_2_tC1202FF46679C1EBCE143C681E460447571A72D8 * ___m_Dictionary_1;
public:
inline static int32_t get_offset_of_m_List_0() { return static_cast<int32_t>(offsetof(IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A, ___m_List_0)); }
inline List_1_t963F1C52D303E088C23BA96CEB8D6E020DC61A3A * get_m_List_0() const { return ___m_List_0; }
inline List_1_t963F1C52D303E088C23BA96CEB8D6E020DC61A3A ** get_address_of_m_List_0() { return &___m_List_0; }
inline void set_m_List_0(List_1_t963F1C52D303E088C23BA96CEB8D6E020DC61A3A * value)
{
___m_List_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_List_0), (void*)value);
}
inline static int32_t get_offset_of_m_Dictionary_1() { return static_cast<int32_t>(offsetof(IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A, ___m_Dictionary_1)); }
inline Dictionary_2_tC1202FF46679C1EBCE143C681E460447571A72D8 * get_m_Dictionary_1() const { return ___m_Dictionary_1; }
inline Dictionary_2_tC1202FF46679C1EBCE143C681E460447571A72D8 ** get_address_of_m_Dictionary_1() { return &___m_Dictionary_1; }
inline void set_m_Dictionary_1(Dictionary_2_tC1202FF46679C1EBCE143C681E460447571A72D8 * value)
{
___m_Dictionary_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Dictionary_1), (void*)value);
}
};
// UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>
struct TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF : public RuntimeObject
{
public:
// UnityEngine.MonoBehaviour UnityEngine.UI.CoroutineTween.TweenRunner`1::m_CoroutineContainer
MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429 * ___m_CoroutineContainer_0;
// System.Collections.IEnumerator UnityEngine.UI.CoroutineTween.TweenRunner`1::m_Tween
RuntimeObject* ___m_Tween_1;
public:
inline static int32_t get_offset_of_m_CoroutineContainer_0() { return static_cast<int32_t>(offsetof(TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF, ___m_CoroutineContainer_0)); }
inline MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429 * get_m_CoroutineContainer_0() const { return ___m_CoroutineContainer_0; }
inline MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429 ** get_address_of_m_CoroutineContainer_0() { return &___m_CoroutineContainer_0; }
inline void set_m_CoroutineContainer_0(MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429 * value)
{
___m_CoroutineContainer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CoroutineContainer_0), (void*)value);
}
inline static int32_t get_offset_of_m_Tween_1() { return static_cast<int32_t>(offsetof(TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF, ___m_Tween_1)); }
inline RuntimeObject* get_m_Tween_1() const { return ___m_Tween_1; }
inline RuntimeObject** get_address_of_m_Tween_1() { return &___m_Tween_1; }
inline void set_m_Tween_1(RuntimeObject* value)
{
___m_Tween_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Tween_1), (void*)value);
}
};
// UnityEngine.UI.DefaultControls_DefaultRuntimeFactory
struct DefaultRuntimeFactory_t220869A7714E77F38D078944261214EF14D509F2 : public RuntimeObject
{
public:
public:
};
struct DefaultRuntimeFactory_t220869A7714E77F38D078944261214EF14D509F2_StaticFields
{
public:
// UnityEngine.UI.DefaultControls_IFactoryControls UnityEngine.UI.DefaultControls_DefaultRuntimeFactory::Default
RuntimeObject* ___Default_0;
public:
inline static int32_t get_offset_of_Default_0() { return static_cast<int32_t>(offsetof(DefaultRuntimeFactory_t220869A7714E77F38D078944261214EF14D509F2_StaticFields, ___Default_0)); }
inline RuntimeObject* get_Default_0() const { return ___Default_0; }
inline RuntimeObject** get_address_of_Default_0() { return &___Default_0; }
inline void set_Default_0(RuntimeObject* value)
{
___Default_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Default_0), (void*)value);
}
};
// UnityEngine.UI.Dropdown_<>c__DisplayClass62_0
struct U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A : public RuntimeObject
{
public:
// UnityEngine.UI.Dropdown_DropdownItem UnityEngine.UI.Dropdown_<>c__DisplayClass62_0::item
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * ___item_0;
// UnityEngine.UI.Dropdown UnityEngine.UI.Dropdown_<>c__DisplayClass62_0::<>4__this
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * ___U3CU3E4__this_1;
public:
inline static int32_t get_offset_of_item_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A, ___item_0)); }
inline DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * get_item_0() const { return ___item_0; }
inline DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 ** get_address_of_item_0() { return &___item_0; }
inline void set_item_0(DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * value)
{
___item_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___item_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E4__this_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A, ___U3CU3E4__this_1)); }
inline Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * get_U3CU3E4__this_1() const { return ___U3CU3E4__this_1; }
inline Dropdown_tF6331401084B1213CAB10587A6EC81461501930F ** get_address_of_U3CU3E4__this_1() { return &___U3CU3E4__this_1; }
inline void set_U3CU3E4__this_1(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * value)
{
___U3CU3E4__this_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_1), (void*)value);
}
};
// UnityEngine.UI.Dropdown_<DelayedDestroyDropdownList>d__74
struct U3CDelayedDestroyDropdownListU3Ed__74_tE1C8F40CDF9DE52D3A9F431CB712B752DE9F6D69 : public RuntimeObject
{
public:
// System.Int32 UnityEngine.UI.Dropdown_<DelayedDestroyDropdownList>d__74::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object UnityEngine.UI.Dropdown_<DelayedDestroyDropdownList>d__74::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// System.Single UnityEngine.UI.Dropdown_<DelayedDestroyDropdownList>d__74::delay
float ___delay_2;
// UnityEngine.UI.Dropdown UnityEngine.UI.Dropdown_<DelayedDestroyDropdownList>d__74::<>4__this
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * ___U3CU3E4__this_3;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CDelayedDestroyDropdownListU3Ed__74_tE1C8F40CDF9DE52D3A9F431CB712B752DE9F6D69, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CDelayedDestroyDropdownListU3Ed__74_tE1C8F40CDF9DE52D3A9F431CB712B752DE9F6D69, ___U3CU3E2__current_1)); }
inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; }
inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; }
inline void set_U3CU3E2__current_1(RuntimeObject * value)
{
___U3CU3E2__current_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value);
}
inline static int32_t get_offset_of_delay_2() { return static_cast<int32_t>(offsetof(U3CDelayedDestroyDropdownListU3Ed__74_tE1C8F40CDF9DE52D3A9F431CB712B752DE9F6D69, ___delay_2)); }
inline float get_delay_2() const { return ___delay_2; }
inline float* get_address_of_delay_2() { return &___delay_2; }
inline void set_delay_2(float value)
{
___delay_2 = value;
}
inline static int32_t get_offset_of_U3CU3E4__this_3() { return static_cast<int32_t>(offsetof(U3CDelayedDestroyDropdownListU3Ed__74_tE1C8F40CDF9DE52D3A9F431CB712B752DE9F6D69, ___U3CU3E4__this_3)); }
inline Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * get_U3CU3E4__this_3() const { return ___U3CU3E4__this_3; }
inline Dropdown_tF6331401084B1213CAB10587A6EC81461501930F ** get_address_of_U3CU3E4__this_3() { return &___U3CU3E4__this_3; }
inline void set_U3CU3E4__this_3(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * value)
{
___U3CU3E4__this_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_3), (void*)value);
}
};
// UnityEngine.UI.Dropdown_OptionData
struct OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 : public RuntimeObject
{
public:
// System.String UnityEngine.UI.Dropdown_OptionData::m_Text
String_t* ___m_Text_0;
// UnityEngine.Sprite UnityEngine.UI.Dropdown_OptionData::m_Image
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_Image_1;
public:
inline static int32_t get_offset_of_m_Text_0() { return static_cast<int32_t>(offsetof(OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831, ___m_Text_0)); }
inline String_t* get_m_Text_0() const { return ___m_Text_0; }
inline String_t** get_address_of_m_Text_0() { return &___m_Text_0; }
inline void set_m_Text_0(String_t* value)
{
___m_Text_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Text_0), (void*)value);
}
inline static int32_t get_offset_of_m_Image_1() { return static_cast<int32_t>(offsetof(OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831, ___m_Image_1)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_Image_1() const { return ___m_Image_1; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_Image_1() { return &___m_Image_1; }
inline void set_m_Image_1(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_Image_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Image_1), (void*)value);
}
};
// UnityEngine.UI.Dropdown_OptionDataList
struct OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D : public RuntimeObject
{
public:
// System.Collections.Generic.List`1<UnityEngine.UI.Dropdown_OptionData> UnityEngine.UI.Dropdown_OptionDataList::m_Options
List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * ___m_Options_0;
public:
inline static int32_t get_offset_of_m_Options_0() { return static_cast<int32_t>(offsetof(OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D, ___m_Options_0)); }
inline List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * get_m_Options_0() const { return ___m_Options_0; }
inline List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 ** get_address_of_m_Options_0() { return &___m_Options_0; }
inline void set_m_Options_0(List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * value)
{
___m_Options_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Options_0), (void*)value);
}
};
// UnityEngine.UI.ObjectPool`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>>
struct ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC : public RuntimeObject
{
public:
// System.Collections.Generic.Stack`1<T> UnityEngine.UI.ObjectPool`1::m_Stack
Stack_1_tF50226FFA575B9B0BD73826121A0F7932D871B32 * ___m_Stack_0;
// UnityEngine.Events.UnityAction`1<T> UnityEngine.UI.ObjectPool`1::m_ActionOnGet
UnityAction_1_t3B6DA5D18F5A6D34776438B5CD187C01229E969A * ___m_ActionOnGet_1;
// UnityEngine.Events.UnityAction`1<T> UnityEngine.UI.ObjectPool`1::m_ActionOnRelease
UnityAction_1_t3B6DA5D18F5A6D34776438B5CD187C01229E969A * ___m_ActionOnRelease_2;
// System.Int32 UnityEngine.UI.ObjectPool`1::<countAll>k__BackingField
int32_t ___U3CcountAllU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_m_Stack_0() { return static_cast<int32_t>(offsetof(ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC, ___m_Stack_0)); }
inline Stack_1_tF50226FFA575B9B0BD73826121A0F7932D871B32 * get_m_Stack_0() const { return ___m_Stack_0; }
inline Stack_1_tF50226FFA575B9B0BD73826121A0F7932D871B32 ** get_address_of_m_Stack_0() { return &___m_Stack_0; }
inline void set_m_Stack_0(Stack_1_tF50226FFA575B9B0BD73826121A0F7932D871B32 * value)
{
___m_Stack_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Stack_0), (void*)value);
}
inline static int32_t get_offset_of_m_ActionOnGet_1() { return static_cast<int32_t>(offsetof(ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC, ___m_ActionOnGet_1)); }
inline UnityAction_1_t3B6DA5D18F5A6D34776438B5CD187C01229E969A * get_m_ActionOnGet_1() const { return ___m_ActionOnGet_1; }
inline UnityAction_1_t3B6DA5D18F5A6D34776438B5CD187C01229E969A ** get_address_of_m_ActionOnGet_1() { return &___m_ActionOnGet_1; }
inline void set_m_ActionOnGet_1(UnityAction_1_t3B6DA5D18F5A6D34776438B5CD187C01229E969A * value)
{
___m_ActionOnGet_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ActionOnGet_1), (void*)value);
}
inline static int32_t get_offset_of_m_ActionOnRelease_2() { return static_cast<int32_t>(offsetof(ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC, ___m_ActionOnRelease_2)); }
inline UnityAction_1_t3B6DA5D18F5A6D34776438B5CD187C01229E969A * get_m_ActionOnRelease_2() const { return ___m_ActionOnRelease_2; }
inline UnityAction_1_t3B6DA5D18F5A6D34776438B5CD187C01229E969A ** get_address_of_m_ActionOnRelease_2() { return &___m_ActionOnRelease_2; }
inline void set_m_ActionOnRelease_2(UnityAction_1_t3B6DA5D18F5A6D34776438B5CD187C01229E969A * value)
{
___m_ActionOnRelease_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ActionOnRelease_2), (void*)value);
}
inline static int32_t get_offset_of_U3CcountAllU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC, ___U3CcountAllU3Ek__BackingField_3)); }
inline int32_t get_U3CcountAllU3Ek__BackingField_3() const { return ___U3CcountAllU3Ek__BackingField_3; }
inline int32_t* get_address_of_U3CcountAllU3Ek__BackingField_3() { return &___U3CcountAllU3Ek__BackingField_3; }
inline void set_U3CcountAllU3Ek__BackingField_3(int32_t value)
{
___U3CcountAllU3Ek__BackingField_3 = value;
}
};
// UnityEngine.UI.ReflectionMethodsCache
struct ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A : public RuntimeObject
{
public:
// UnityEngine.UI.ReflectionMethodsCache_Raycast3DCallback UnityEngine.UI.ReflectionMethodsCache::raycast3D
Raycast3DCallback_t83483916473C9710AEDB316A65CBE62C58935C5F * ___raycast3D_0;
// UnityEngine.UI.ReflectionMethodsCache_RaycastAllCallback UnityEngine.UI.ReflectionMethodsCache::raycast3DAll
RaycastAllCallback_t751407A44270E02FAA43D0846A58EE6A8C4AE1CE * ___raycast3DAll_1;
// UnityEngine.UI.ReflectionMethodsCache_GetRaycastNonAllocCallback UnityEngine.UI.ReflectionMethodsCache::getRaycastNonAlloc
GetRaycastNonAllocCallback_tC13D9767CFF00EAB26E9FCC4BDD505F0721A2B4D * ___getRaycastNonAlloc_2;
// UnityEngine.UI.ReflectionMethodsCache_Raycast2DCallback UnityEngine.UI.ReflectionMethodsCache::raycast2D
Raycast2DCallback_tE99ABF9ABC3A380677949E8C05A3E477889B82BE * ___raycast2D_3;
// UnityEngine.UI.ReflectionMethodsCache_GetRayIntersectionAllCallback UnityEngine.UI.ReflectionMethodsCache::getRayIntersectionAll
GetRayIntersectionAllCallback_t68C2581CCF05E868297EBD3F3361274954845095 * ___getRayIntersectionAll_4;
// UnityEngine.UI.ReflectionMethodsCache_GetRayIntersectionAllNonAllocCallback UnityEngine.UI.ReflectionMethodsCache::getRayIntersectionAllNonAlloc
GetRayIntersectionAllNonAllocCallback_tAD7508D45DB6679B6394983579AD18D967CC2AD4 * ___getRayIntersectionAllNonAlloc_5;
public:
inline static int32_t get_offset_of_raycast3D_0() { return static_cast<int32_t>(offsetof(ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A, ___raycast3D_0)); }
inline Raycast3DCallback_t83483916473C9710AEDB316A65CBE62C58935C5F * get_raycast3D_0() const { return ___raycast3D_0; }
inline Raycast3DCallback_t83483916473C9710AEDB316A65CBE62C58935C5F ** get_address_of_raycast3D_0() { return &___raycast3D_0; }
inline void set_raycast3D_0(Raycast3DCallback_t83483916473C9710AEDB316A65CBE62C58935C5F * value)
{
___raycast3D_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___raycast3D_0), (void*)value);
}
inline static int32_t get_offset_of_raycast3DAll_1() { return static_cast<int32_t>(offsetof(ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A, ___raycast3DAll_1)); }
inline RaycastAllCallback_t751407A44270E02FAA43D0846A58EE6A8C4AE1CE * get_raycast3DAll_1() const { return ___raycast3DAll_1; }
inline RaycastAllCallback_t751407A44270E02FAA43D0846A58EE6A8C4AE1CE ** get_address_of_raycast3DAll_1() { return &___raycast3DAll_1; }
inline void set_raycast3DAll_1(RaycastAllCallback_t751407A44270E02FAA43D0846A58EE6A8C4AE1CE * value)
{
___raycast3DAll_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___raycast3DAll_1), (void*)value);
}
inline static int32_t get_offset_of_getRaycastNonAlloc_2() { return static_cast<int32_t>(offsetof(ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A, ___getRaycastNonAlloc_2)); }
inline GetRaycastNonAllocCallback_tC13D9767CFF00EAB26E9FCC4BDD505F0721A2B4D * get_getRaycastNonAlloc_2() const { return ___getRaycastNonAlloc_2; }
inline GetRaycastNonAllocCallback_tC13D9767CFF00EAB26E9FCC4BDD505F0721A2B4D ** get_address_of_getRaycastNonAlloc_2() { return &___getRaycastNonAlloc_2; }
inline void set_getRaycastNonAlloc_2(GetRaycastNonAllocCallback_tC13D9767CFF00EAB26E9FCC4BDD505F0721A2B4D * value)
{
___getRaycastNonAlloc_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getRaycastNonAlloc_2), (void*)value);
}
inline static int32_t get_offset_of_raycast2D_3() { return static_cast<int32_t>(offsetof(ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A, ___raycast2D_3)); }
inline Raycast2DCallback_tE99ABF9ABC3A380677949E8C05A3E477889B82BE * get_raycast2D_3() const { return ___raycast2D_3; }
inline Raycast2DCallback_tE99ABF9ABC3A380677949E8C05A3E477889B82BE ** get_address_of_raycast2D_3() { return &___raycast2D_3; }
inline void set_raycast2D_3(Raycast2DCallback_tE99ABF9ABC3A380677949E8C05A3E477889B82BE * value)
{
___raycast2D_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___raycast2D_3), (void*)value);
}
inline static int32_t get_offset_of_getRayIntersectionAll_4() { return static_cast<int32_t>(offsetof(ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A, ___getRayIntersectionAll_4)); }
inline GetRayIntersectionAllCallback_t68C2581CCF05E868297EBD3F3361274954845095 * get_getRayIntersectionAll_4() const { return ___getRayIntersectionAll_4; }
inline GetRayIntersectionAllCallback_t68C2581CCF05E868297EBD3F3361274954845095 ** get_address_of_getRayIntersectionAll_4() { return &___getRayIntersectionAll_4; }
inline void set_getRayIntersectionAll_4(GetRayIntersectionAllCallback_t68C2581CCF05E868297EBD3F3361274954845095 * value)
{
___getRayIntersectionAll_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getRayIntersectionAll_4), (void*)value);
}
inline static int32_t get_offset_of_getRayIntersectionAllNonAlloc_5() { return static_cast<int32_t>(offsetof(ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A, ___getRayIntersectionAllNonAlloc_5)); }
inline GetRayIntersectionAllNonAllocCallback_tAD7508D45DB6679B6394983579AD18D967CC2AD4 * get_getRayIntersectionAllNonAlloc_5() const { return ___getRayIntersectionAllNonAlloc_5; }
inline GetRayIntersectionAllNonAllocCallback_tAD7508D45DB6679B6394983579AD18D967CC2AD4 ** get_address_of_getRayIntersectionAllNonAlloc_5() { return &___getRayIntersectionAllNonAlloc_5; }
inline void set_getRayIntersectionAllNonAlloc_5(GetRayIntersectionAllNonAllocCallback_tAD7508D45DB6679B6394983579AD18D967CC2AD4 * value)
{
___getRayIntersectionAllNonAlloc_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___getRayIntersectionAllNonAlloc_5), (void*)value);
}
};
struct ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A_StaticFields
{
public:
// UnityEngine.UI.ReflectionMethodsCache UnityEngine.UI.ReflectionMethodsCache::s_ReflectionMethodsCache
ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A * ___s_ReflectionMethodsCache_6;
public:
inline static int32_t get_offset_of_s_ReflectionMethodsCache_6() { return static_cast<int32_t>(offsetof(ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A_StaticFields, ___s_ReflectionMethodsCache_6)); }
inline ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A * get_s_ReflectionMethodsCache_6() const { return ___s_ReflectionMethodsCache_6; }
inline ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A ** get_address_of_s_ReflectionMethodsCache_6() { return &___s_ReflectionMethodsCache_6; }
inline void set_s_ReflectionMethodsCache_6(ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A * value)
{
___s_ReflectionMethodsCache_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_ReflectionMethodsCache_6), (void*)value);
}
};
// UnityEngine.YieldInstruction
struct YieldInstruction_t836035AC7BD07A3C7909F7AD2A5B42DE99D91C44 : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.YieldInstruction
struct YieldInstruction_t836035AC7BD07A3C7909F7AD2A5B42DE99D91C44_marshaled_pinvoke
{
};
// Native definition for COM marshalling of UnityEngine.YieldInstruction
struct YieldInstruction_t836035AC7BD07A3C7909F7AD2A5B42DE99D91C44_marshaled_com
{
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12
struct __StaticArrayInitTypeSizeU3D12_t7F98A3A922EF4B6DA62C3CF2D4E5897EED2C26B8
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D12_t7F98A3A922EF4B6DA62C3CF2D4E5897EED2C26B8__padding[12];
};
public:
};
// System.Boolean
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); }
inline bool get_m_value_0() const { return ___m_value_0; }
inline bool* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(bool value)
{
___m_value_0 = value;
}
};
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields
{
public:
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
public:
inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); }
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
inline void set_TrueString_5(String_t* value)
{
___TrueString_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); }
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
inline void set_FalseString_6(String_t* value)
{
___FalseString_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
}
};
// System.Byte
struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07
{
public:
// System.Byte System.Byte::m_value
uint8_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07, ___m_value_0)); }
inline uint8_t get_m_value_0() const { return ___m_value_0; }
inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint8_t value)
{
___m_value_0 = value;
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Int32,System.Object>
struct Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version
int32_t ___version_2;
// TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue
RuntimeObject * ___currentValue_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6, ___dictionary_0)); }
inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6, ___currentValue_3)); }
inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; }
inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; }
inline void set_currentValue_3(RuntimeObject * value)
{
___currentValue_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Int32,UnityEngine.EventSystems.PointerEventData>
struct Enumerator_t416C0E23E1A315F8494EF420F4DB9EF6C4D80871
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary
Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version
int32_t ___version_2;
// TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___currentValue_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t416C0E23E1A315F8494EF420F4DB9EF6C4D80871, ___dictionary_0)); }
inline Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t416C0E23E1A315F8494EF420F4DB9EF6C4D80871, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t416C0E23E1A315F8494EF420F4DB9EF6C4D80871, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t416C0E23E1A315F8494EF420F4DB9EF6C4D80871, ___currentValue_3)); }
inline PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * get_currentValue_3() const { return ___currentValue_3; }
inline PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 ** get_address_of_currentValue_3() { return &___currentValue_3; }
inline void set_currentValue_3(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * value)
{
___currentValue_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>
struct KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367, ___key_0)); }
inline int32_t get_key_0() const { return ___key_0; }
inline int32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(int32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.EventSystems.PointerEventData>
struct KeyValuePair_2_t04EF4D50839D67939265F84585D99769CEAC8413
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t04EF4D50839D67939265F84585D99769CEAC8413, ___key_0)); }
inline int32_t get_key_0() const { return ___key_0; }
inline int32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(int32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t04EF4D50839D67939265F84585D99769CEAC8413, ___value_1)); }
inline PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * get_value_1() const { return ___value_1; }
inline PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF
{
public:
public:
};
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com
{
};
// System.Int32
struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102
{
public:
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); }
inline int32_t get_m_value_0() const { return ___m_value_0; }
inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int32_t value)
{
___m_value_0 = value;
}
};
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
// System.Single
struct Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1
{
public:
// System.Single System.Single::m_value
float ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, ___m_value_0)); }
inline float get_m_value_0() const { return ___m_value_0; }
inline float* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(float value)
{
___m_value_0 = value;
}
};
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
{
public:
union
{
struct
{
};
uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
};
public:
};
// UnityEngine.Color
struct Color_t119BCA590009762C7223FDD3AF9706653AC84ED2
{
public:
// System.Single UnityEngine.Color::r
float ___r_0;
// System.Single UnityEngine.Color::g
float ___g_1;
// System.Single UnityEngine.Color::b
float ___b_2;
// System.Single UnityEngine.Color::a
float ___a_3;
public:
inline static int32_t get_offset_of_r_0() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___r_0)); }
inline float get_r_0() const { return ___r_0; }
inline float* get_address_of_r_0() { return &___r_0; }
inline void set_r_0(float value)
{
___r_0 = value;
}
inline static int32_t get_offset_of_g_1() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___g_1)); }
inline float get_g_1() const { return ___g_1; }
inline float* get_address_of_g_1() { return &___g_1; }
inline void set_g_1(float value)
{
___g_1 = value;
}
inline static int32_t get_offset_of_b_2() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___b_2)); }
inline float get_b_2() const { return ___b_2; }
inline float* get_address_of_b_2() { return &___b_2; }
inline void set_b_2(float value)
{
___b_2 = value;
}
inline static int32_t get_offset_of_a_3() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___a_3)); }
inline float get_a_3() const { return ___a_3; }
inline float* get_address_of_a_3() { return &___a_3; }
inline void set_a_3(float value)
{
___a_3 = value;
}
};
// UnityEngine.Color32
struct Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23
{
public:
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Int32 UnityEngine.Color32::rgba
int32_t ___rgba_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___rgba_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Byte UnityEngine.Color32::r
uint8_t ___r_1;
};
#pragma pack(pop, tp)
struct
{
uint8_t ___r_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___g_2_OffsetPadding[1];
// System.Byte UnityEngine.Color32::g
uint8_t ___g_2;
};
#pragma pack(pop, tp)
struct
{
char ___g_2_OffsetPadding_forAlignmentOnly[1];
uint8_t ___g_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___b_3_OffsetPadding[2];
// System.Byte UnityEngine.Color32::b
uint8_t ___b_3;
};
#pragma pack(pop, tp)
struct
{
char ___b_3_OffsetPadding_forAlignmentOnly[2];
uint8_t ___b_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___a_4_OffsetPadding[3];
// System.Byte UnityEngine.Color32::a
uint8_t ___a_4;
};
#pragma pack(pop, tp)
struct
{
char ___a_4_OffsetPadding_forAlignmentOnly[3];
uint8_t ___a_4_forAlignmentOnly;
};
};
public:
inline static int32_t get_offset_of_rgba_0() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___rgba_0)); }
inline int32_t get_rgba_0() const { return ___rgba_0; }
inline int32_t* get_address_of_rgba_0() { return &___rgba_0; }
inline void set_rgba_0(int32_t value)
{
___rgba_0 = value;
}
inline static int32_t get_offset_of_r_1() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___r_1)); }
inline uint8_t get_r_1() const { return ___r_1; }
inline uint8_t* get_address_of_r_1() { return &___r_1; }
inline void set_r_1(uint8_t value)
{
___r_1 = value;
}
inline static int32_t get_offset_of_g_2() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___g_2)); }
inline uint8_t get_g_2() const { return ___g_2; }
inline uint8_t* get_address_of_g_2() { return &___g_2; }
inline void set_g_2(uint8_t value)
{
___g_2 = value;
}
inline static int32_t get_offset_of_b_3() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___b_3)); }
inline uint8_t get_b_3() const { return ___b_3; }
inline uint8_t* get_address_of_b_3() { return &___b_3; }
inline void set_b_3(uint8_t value)
{
___b_3 = value;
}
inline static int32_t get_offset_of_a_4() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___a_4)); }
inline uint8_t get_a_4() const { return ___a_4; }
inline uint8_t* get_address_of_a_4() { return &___a_4; }
inline void set_a_4(uint8_t value)
{
___a_4 = value;
}
};
// UnityEngine.DrivenRectTransformTracker
struct DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03
{
public:
union
{
struct
{
};
uint8_t DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03__padding[1];
};
public:
};
// UnityEngine.EventSystems.BaseEventData
struct BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 : public AbstractEventData_t636F385820C291DAE25897BCEB4FBCADDA3B75F6
{
public:
// UnityEngine.EventSystems.EventSystem UnityEngine.EventSystems.BaseEventData::m_EventSystem
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * ___m_EventSystem_1;
public:
inline static int32_t get_offset_of_m_EventSystem_1() { return static_cast<int32_t>(offsetof(BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5, ___m_EventSystem_1)); }
inline EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * get_m_EventSystem_1() const { return ___m_EventSystem_1; }
inline EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 ** get_address_of_m_EventSystem_1() { return &___m_EventSystem_1; }
inline void set_m_EventSystem_1(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * value)
{
___m_EventSystem_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_EventSystem_1), (void*)value);
}
};
// UnityEngine.Events.UnityEvent
struct UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F : public UnityEventBase_t6E0F7823762EE94BB8489B5AE41C7802A266D3D5
{
public:
// System.Object[] UnityEngine.Events.UnityEvent::m_InvokeArray
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___m_InvokeArray_3;
public:
inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast<int32_t>(offsetof(UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F, ___m_InvokeArray_3)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; }
inline void set_m_InvokeArray_3(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___m_InvokeArray_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value);
}
};
// UnityEngine.Events.UnityEvent`1<System.Boolean>
struct UnityEvent_1_tE1EF042798523847EEBB2A12FA37C4003C1B1299 : public UnityEventBase_t6E0F7823762EE94BB8489B5AE41C7802A266D3D5
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___m_InvokeArray_3;
public:
inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast<int32_t>(offsetof(UnityEvent_1_tE1EF042798523847EEBB2A12FA37C4003C1B1299, ___m_InvokeArray_3)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; }
inline void set_m_InvokeArray_3(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___m_InvokeArray_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value);
}
};
// UnityEngine.Events.UnityEvent`1<System.Int32>
struct UnityEvent_1_t6DD758393B13FC2A58BE44E647D9EBEA4F27D914 : public UnityEventBase_t6E0F7823762EE94BB8489B5AE41C7802A266D3D5
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___m_InvokeArray_3;
public:
inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast<int32_t>(offsetof(UnityEvent_1_t6DD758393B13FC2A58BE44E647D9EBEA4F27D914, ___m_InvokeArray_3)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; }
inline void set_m_InvokeArray_3(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___m_InvokeArray_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value);
}
};
// UnityEngine.Events.UnityEvent`1<System.Single>
struct UnityEvent_1_t655F4ECDA62E804A34CC8737AC30B836ABD3D2DA : public UnityEventBase_t6E0F7823762EE94BB8489B5AE41C7802A266D3D5
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___m_InvokeArray_3;
public:
inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast<int32_t>(offsetof(UnityEvent_1_t655F4ECDA62E804A34CC8737AC30B836ABD3D2DA, ___m_InvokeArray_3)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; }
inline void set_m_InvokeArray_3(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___m_InvokeArray_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value);
}
};
// UnityEngine.Events.UnityEvent`1<UnityEngine.Color>
struct UnityEvent_1_tFB475F569CC8852B004B3F2DE7536E67324C2AF8 : public UnityEventBase_t6E0F7823762EE94BB8489B5AE41C7802A266D3D5
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___m_InvokeArray_3;
public:
inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast<int32_t>(offsetof(UnityEvent_1_tFB475F569CC8852B004B3F2DE7536E67324C2AF8, ___m_InvokeArray_3)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; }
inline void set_m_InvokeArray_3(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___m_InvokeArray_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value);
}
};
// UnityEngine.Events.UnityEvent`1<UnityEngine.EventSystems.BaseEventData>
struct UnityEvent_1_t55DE148B605149DF84E469388B37672EE507573E : public UnityEventBase_t6E0F7823762EE94BB8489B5AE41C7802A266D3D5
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___m_InvokeArray_3;
public:
inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast<int32_t>(offsetof(UnityEvent_1_t55DE148B605149DF84E469388B37672EE507573E, ___m_InvokeArray_3)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; }
inline void set_m_InvokeArray_3(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___m_InvokeArray_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value);
}
};
// UnityEngine.LayerMask
struct LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0
{
public:
// System.Int32 UnityEngine.LayerMask::m_Mask
int32_t ___m_Mask_0;
public:
inline static int32_t get_offset_of_m_Mask_0() { return static_cast<int32_t>(offsetof(LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0, ___m_Mask_0)); }
inline int32_t get_m_Mask_0() const { return ___m_Mask_0; }
inline int32_t* get_address_of_m_Mask_0() { return &___m_Mask_0; }
inline void set_m_Mask_0(int32_t value)
{
___m_Mask_0 = value;
}
};
// UnityEngine.Rect
struct Rect_t35B976DE901B5423C11705E156938EA27AB402CE
{
public:
// System.Single UnityEngine.Rect::m_XMin
float ___m_XMin_0;
// System.Single UnityEngine.Rect::m_YMin
float ___m_YMin_1;
// System.Single UnityEngine.Rect::m_Width
float ___m_Width_2;
// System.Single UnityEngine.Rect::m_Height
float ___m_Height_3;
public:
inline static int32_t get_offset_of_m_XMin_0() { return static_cast<int32_t>(offsetof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE, ___m_XMin_0)); }
inline float get_m_XMin_0() const { return ___m_XMin_0; }
inline float* get_address_of_m_XMin_0() { return &___m_XMin_0; }
inline void set_m_XMin_0(float value)
{
___m_XMin_0 = value;
}
inline static int32_t get_offset_of_m_YMin_1() { return static_cast<int32_t>(offsetof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE, ___m_YMin_1)); }
inline float get_m_YMin_1() const { return ___m_YMin_1; }
inline float* get_address_of_m_YMin_1() { return &___m_YMin_1; }
inline void set_m_YMin_1(float value)
{
___m_YMin_1 = value;
}
inline static int32_t get_offset_of_m_Width_2() { return static_cast<int32_t>(offsetof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE, ___m_Width_2)); }
inline float get_m_Width_2() const { return ___m_Width_2; }
inline float* get_address_of_m_Width_2() { return &___m_Width_2; }
inline void set_m_Width_2(float value)
{
___m_Width_2 = value;
}
inline static int32_t get_offset_of_m_Height_3() { return static_cast<int32_t>(offsetof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE, ___m_Height_3)); }
inline float get_m_Height_3() const { return ___m_Height_3; }
inline float* get_address_of_m_Height_3() { return &___m_Height_3; }
inline void set_m_Height_3(float value)
{
___m_Height_3 = value;
}
};
// UnityEngine.UI.CoroutineTween.FloatTween
struct FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A
{
public:
// UnityEngine.UI.CoroutineTween.FloatTween_FloatTweenCallback UnityEngine.UI.CoroutineTween.FloatTween::m_Target
FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502 * ___m_Target_0;
// System.Single UnityEngine.UI.CoroutineTween.FloatTween::m_StartValue
float ___m_StartValue_1;
// System.Single UnityEngine.UI.CoroutineTween.FloatTween::m_TargetValue
float ___m_TargetValue_2;
// System.Single UnityEngine.UI.CoroutineTween.FloatTween::m_Duration
float ___m_Duration_3;
// System.Boolean UnityEngine.UI.CoroutineTween.FloatTween::m_IgnoreTimeScale
bool ___m_IgnoreTimeScale_4;
public:
inline static int32_t get_offset_of_m_Target_0() { return static_cast<int32_t>(offsetof(FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A, ___m_Target_0)); }
inline FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502 * get_m_Target_0() const { return ___m_Target_0; }
inline FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502 ** get_address_of_m_Target_0() { return &___m_Target_0; }
inline void set_m_Target_0(FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502 * value)
{
___m_Target_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Target_0), (void*)value);
}
inline static int32_t get_offset_of_m_StartValue_1() { return static_cast<int32_t>(offsetof(FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A, ___m_StartValue_1)); }
inline float get_m_StartValue_1() const { return ___m_StartValue_1; }
inline float* get_address_of_m_StartValue_1() { return &___m_StartValue_1; }
inline void set_m_StartValue_1(float value)
{
___m_StartValue_1 = value;
}
inline static int32_t get_offset_of_m_TargetValue_2() { return static_cast<int32_t>(offsetof(FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A, ___m_TargetValue_2)); }
inline float get_m_TargetValue_2() const { return ___m_TargetValue_2; }
inline float* get_address_of_m_TargetValue_2() { return &___m_TargetValue_2; }
inline void set_m_TargetValue_2(float value)
{
___m_TargetValue_2 = value;
}
inline static int32_t get_offset_of_m_Duration_3() { return static_cast<int32_t>(offsetof(FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A, ___m_Duration_3)); }
inline float get_m_Duration_3() const { return ___m_Duration_3; }
inline float* get_address_of_m_Duration_3() { return &___m_Duration_3; }
inline void set_m_Duration_3(float value)
{
___m_Duration_3 = value;
}
inline static int32_t get_offset_of_m_IgnoreTimeScale_4() { return static_cast<int32_t>(offsetof(FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A, ___m_IgnoreTimeScale_4)); }
inline bool get_m_IgnoreTimeScale_4() const { return ___m_IgnoreTimeScale_4; }
inline bool* get_address_of_m_IgnoreTimeScale_4() { return &___m_IgnoreTimeScale_4; }
inline void set_m_IgnoreTimeScale_4(bool value)
{
___m_IgnoreTimeScale_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UI.CoroutineTween.FloatTween
struct FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A_marshaled_pinvoke
{
FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502 * ___m_Target_0;
float ___m_StartValue_1;
float ___m_TargetValue_2;
float ___m_Duration_3;
int32_t ___m_IgnoreTimeScale_4;
};
// Native definition for COM marshalling of UnityEngine.UI.CoroutineTween.FloatTween
struct FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A_marshaled_com
{
FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502 * ___m_Target_0;
float ___m_StartValue_1;
float ___m_TargetValue_2;
float ___m_Duration_3;
int32_t ___m_IgnoreTimeScale_4;
};
// UnityEngine.UI.DefaultControls_Resources
struct Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4
{
public:
// UnityEngine.Sprite UnityEngine.UI.DefaultControls_Resources::standard
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___standard_0;
// UnityEngine.Sprite UnityEngine.UI.DefaultControls_Resources::background
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___background_1;
// UnityEngine.Sprite UnityEngine.UI.DefaultControls_Resources::inputField
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___inputField_2;
// UnityEngine.Sprite UnityEngine.UI.DefaultControls_Resources::knob
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___knob_3;
// UnityEngine.Sprite UnityEngine.UI.DefaultControls_Resources::checkmark
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___checkmark_4;
// UnityEngine.Sprite UnityEngine.UI.DefaultControls_Resources::dropdown
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___dropdown_5;
// UnityEngine.Sprite UnityEngine.UI.DefaultControls_Resources::mask
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___mask_6;
public:
inline static int32_t get_offset_of_standard_0() { return static_cast<int32_t>(offsetof(Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4, ___standard_0)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_standard_0() const { return ___standard_0; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_standard_0() { return &___standard_0; }
inline void set_standard_0(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___standard_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___standard_0), (void*)value);
}
inline static int32_t get_offset_of_background_1() { return static_cast<int32_t>(offsetof(Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4, ___background_1)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_background_1() const { return ___background_1; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_background_1() { return &___background_1; }
inline void set_background_1(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___background_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___background_1), (void*)value);
}
inline static int32_t get_offset_of_inputField_2() { return static_cast<int32_t>(offsetof(Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4, ___inputField_2)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_inputField_2() const { return ___inputField_2; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_inputField_2() { return &___inputField_2; }
inline void set_inputField_2(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___inputField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___inputField_2), (void*)value);
}
inline static int32_t get_offset_of_knob_3() { return static_cast<int32_t>(offsetof(Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4, ___knob_3)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_knob_3() const { return ___knob_3; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_knob_3() { return &___knob_3; }
inline void set_knob_3(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___knob_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___knob_3), (void*)value);
}
inline static int32_t get_offset_of_checkmark_4() { return static_cast<int32_t>(offsetof(Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4, ___checkmark_4)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_checkmark_4() const { return ___checkmark_4; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_checkmark_4() { return &___checkmark_4; }
inline void set_checkmark_4(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___checkmark_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___checkmark_4), (void*)value);
}
inline static int32_t get_offset_of_dropdown_5() { return static_cast<int32_t>(offsetof(Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4, ___dropdown_5)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_dropdown_5() const { return ___dropdown_5; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_dropdown_5() { return &___dropdown_5; }
inline void set_dropdown_5(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___dropdown_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dropdown_5), (void*)value);
}
inline static int32_t get_offset_of_mask_6() { return static_cast<int32_t>(offsetof(Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4, ___mask_6)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_mask_6() const { return ___mask_6; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_mask_6() { return &___mask_6; }
inline void set_mask_6(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___mask_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___mask_6), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UI.DefaultControls/Resources
struct Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4_marshaled_pinvoke
{
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___standard_0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___background_1;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___inputField_2;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___knob_3;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___checkmark_4;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___dropdown_5;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___mask_6;
};
// Native definition for COM marshalling of UnityEngine.UI.DefaultControls/Resources
struct Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4_marshaled_com
{
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___standard_0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___background_1;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___inputField_2;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___knob_3;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___checkmark_4;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___dropdown_5;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___mask_6;
};
// UnityEngine.UI.SpriteState
struct SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A
{
public:
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_HighlightedSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_HighlightedSprite_0;
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_PressedSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_PressedSprite_1;
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_SelectedSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_SelectedSprite_2;
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_DisabledSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_DisabledSprite_3;
public:
inline static int32_t get_offset_of_m_HighlightedSprite_0() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_HighlightedSprite_0)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_HighlightedSprite_0() const { return ___m_HighlightedSprite_0; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_HighlightedSprite_0() { return &___m_HighlightedSprite_0; }
inline void set_m_HighlightedSprite_0(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_HighlightedSprite_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HighlightedSprite_0), (void*)value);
}
inline static int32_t get_offset_of_m_PressedSprite_1() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_PressedSprite_1)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_PressedSprite_1() const { return ___m_PressedSprite_1; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_PressedSprite_1() { return &___m_PressedSprite_1; }
inline void set_m_PressedSprite_1(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_PressedSprite_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PressedSprite_1), (void*)value);
}
inline static int32_t get_offset_of_m_SelectedSprite_2() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_SelectedSprite_2)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_SelectedSprite_2() const { return ___m_SelectedSprite_2; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_SelectedSprite_2() { return &___m_SelectedSprite_2; }
inline void set_m_SelectedSprite_2(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_SelectedSprite_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectedSprite_2), (void*)value);
}
inline static int32_t get_offset_of_m_DisabledSprite_3() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_DisabledSprite_3)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_DisabledSprite_3() const { return ___m_DisabledSprite_3; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_DisabledSprite_3() { return &___m_DisabledSprite_3; }
inline void set_m_DisabledSprite_3(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_DisabledSprite_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DisabledSprite_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UI.SpriteState
struct SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_marshaled_pinvoke
{
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_HighlightedSprite_0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_PressedSprite_1;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_SelectedSprite_2;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_DisabledSprite_3;
};
// Native definition for COM marshalling of UnityEngine.UI.SpriteState
struct SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_marshaled_com
{
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_HighlightedSprite_0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_PressedSprite_1;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_SelectedSprite_2;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_DisabledSprite_3;
};
// UnityEngine.Vector2
struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D
{
public:
// System.Single UnityEngine.Vector2::x
float ___x_0;
// System.Single UnityEngine.Vector2::y
float ___y_1;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
};
struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields
{
public:
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___zeroVector_2;
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___oneVector_3;
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___upVector_4;
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___downVector_5;
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___leftVector_6;
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___rightVector_7;
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___positiveInfinityVector_8;
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___negativeInfinityVector_9;
public:
inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___zeroVector_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_zeroVector_2() const { return ___zeroVector_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_zeroVector_2() { return &___zeroVector_2; }
inline void set_zeroVector_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___zeroVector_2 = value;
}
inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___oneVector_3)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_oneVector_3() const { return ___oneVector_3; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_oneVector_3() { return &___oneVector_3; }
inline void set_oneVector_3(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___oneVector_3 = value;
}
inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___upVector_4)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_upVector_4() const { return ___upVector_4; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_upVector_4() { return &___upVector_4; }
inline void set_upVector_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___upVector_4 = value;
}
inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___downVector_5)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_downVector_5() const { return ___downVector_5; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_downVector_5() { return &___downVector_5; }
inline void set_downVector_5(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___downVector_5 = value;
}
inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___leftVector_6)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_leftVector_6() const { return ___leftVector_6; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_leftVector_6() { return &___leftVector_6; }
inline void set_leftVector_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___leftVector_6 = value;
}
inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___rightVector_7)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_rightVector_7() const { return ___rightVector_7; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_rightVector_7() { return &___rightVector_7; }
inline void set_rightVector_7(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___rightVector_7 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___positiveInfinityVector_8)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; }
inline void set_positiveInfinityVector_8(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___positiveInfinityVector_8 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___negativeInfinityVector_9)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; }
inline void set_negativeInfinityVector_9(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___negativeInfinityVector_9 = value;
}
};
// UnityEngine.Vector2Int
struct Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905
{
public:
// System.Int32 UnityEngine.Vector2Int::m_X
int32_t ___m_X_0;
// System.Int32 UnityEngine.Vector2Int::m_Y
int32_t ___m_Y_1;
public:
inline static int32_t get_offset_of_m_X_0() { return static_cast<int32_t>(offsetof(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905, ___m_X_0)); }
inline int32_t get_m_X_0() const { return ___m_X_0; }
inline int32_t* get_address_of_m_X_0() { return &___m_X_0; }
inline void set_m_X_0(int32_t value)
{
___m_X_0 = value;
}
inline static int32_t get_offset_of_m_Y_1() { return static_cast<int32_t>(offsetof(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905, ___m_Y_1)); }
inline int32_t get_m_Y_1() const { return ___m_Y_1; }
inline int32_t* get_address_of_m_Y_1() { return &___m_Y_1; }
inline void set_m_Y_1(int32_t value)
{
___m_Y_1 = value;
}
};
struct Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905_StaticFields
{
public:
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Zero
Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 ___s_Zero_2;
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_One
Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 ___s_One_3;
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Up
Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 ___s_Up_4;
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Down
Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 ___s_Down_5;
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Left
Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 ___s_Left_6;
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Right
Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 ___s_Right_7;
public:
inline static int32_t get_offset_of_s_Zero_2() { return static_cast<int32_t>(offsetof(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905_StaticFields, ___s_Zero_2)); }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 get_s_Zero_2() const { return ___s_Zero_2; }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 * get_address_of_s_Zero_2() { return &___s_Zero_2; }
inline void set_s_Zero_2(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 value)
{
___s_Zero_2 = value;
}
inline static int32_t get_offset_of_s_One_3() { return static_cast<int32_t>(offsetof(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905_StaticFields, ___s_One_3)); }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 get_s_One_3() const { return ___s_One_3; }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 * get_address_of_s_One_3() { return &___s_One_3; }
inline void set_s_One_3(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 value)
{
___s_One_3 = value;
}
inline static int32_t get_offset_of_s_Up_4() { return static_cast<int32_t>(offsetof(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905_StaticFields, ___s_Up_4)); }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 get_s_Up_4() const { return ___s_Up_4; }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 * get_address_of_s_Up_4() { return &___s_Up_4; }
inline void set_s_Up_4(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 value)
{
___s_Up_4 = value;
}
inline static int32_t get_offset_of_s_Down_5() { return static_cast<int32_t>(offsetof(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905_StaticFields, ___s_Down_5)); }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 get_s_Down_5() const { return ___s_Down_5; }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 * get_address_of_s_Down_5() { return &___s_Down_5; }
inline void set_s_Down_5(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 value)
{
___s_Down_5 = value;
}
inline static int32_t get_offset_of_s_Left_6() { return static_cast<int32_t>(offsetof(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905_StaticFields, ___s_Left_6)); }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 get_s_Left_6() const { return ___s_Left_6; }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 * get_address_of_s_Left_6() { return &___s_Left_6; }
inline void set_s_Left_6(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 value)
{
___s_Left_6 = value;
}
inline static int32_t get_offset_of_s_Right_7() { return static_cast<int32_t>(offsetof(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905_StaticFields, ___s_Right_7)); }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 get_s_Right_7() const { return ___s_Right_7; }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 * get_address_of_s_Right_7() { return &___s_Right_7; }
inline void set_s_Right_7(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 value)
{
___s_Right_7 = value;
}
};
// UnityEngine.Vector3
struct Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720
{
public:
// System.Single UnityEngine.Vector3::x
float ___x_2;
// System.Single UnityEngine.Vector3::y
float ___y_3;
// System.Single UnityEngine.Vector3::z
float ___z_4;
public:
inline static int32_t get_offset_of_x_2() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___x_2)); }
inline float get_x_2() const { return ___x_2; }
inline float* get_address_of_x_2() { return &___x_2; }
inline void set_x_2(float value)
{
___x_2 = value;
}
inline static int32_t get_offset_of_y_3() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___y_3)); }
inline float get_y_3() const { return ___y_3; }
inline float* get_address_of_y_3() { return &___y_3; }
inline void set_y_3(float value)
{
___y_3 = value;
}
inline static int32_t get_offset_of_z_4() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___z_4)); }
inline float get_z_4() const { return ___z_4; }
inline float* get_address_of_z_4() { return &___z_4; }
inline void set_z_4(float value)
{
___z_4 = value;
}
};
struct Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields
{
public:
// UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___zeroVector_5;
// UnityEngine.Vector3 UnityEngine.Vector3::oneVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___oneVector_6;
// UnityEngine.Vector3 UnityEngine.Vector3::upVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___upVector_7;
// UnityEngine.Vector3 UnityEngine.Vector3::downVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___downVector_8;
// UnityEngine.Vector3 UnityEngine.Vector3::leftVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___leftVector_9;
// UnityEngine.Vector3 UnityEngine.Vector3::rightVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___rightVector_10;
// UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___forwardVector_11;
// UnityEngine.Vector3 UnityEngine.Vector3::backVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___backVector_12;
// UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___positiveInfinityVector_13;
// UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___negativeInfinityVector_14;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___zeroVector_5)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___oneVector_6)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_oneVector_6() const { return ___oneVector_6; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_upVector_7() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___upVector_7)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_upVector_7() const { return ___upVector_7; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_upVector_7() { return &___upVector_7; }
inline void set_upVector_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___upVector_7 = value;
}
inline static int32_t get_offset_of_downVector_8() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___downVector_8)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_downVector_8() const { return ___downVector_8; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_downVector_8() { return &___downVector_8; }
inline void set_downVector_8(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___downVector_8 = value;
}
inline static int32_t get_offset_of_leftVector_9() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___leftVector_9)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_leftVector_9() const { return ___leftVector_9; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_leftVector_9() { return &___leftVector_9; }
inline void set_leftVector_9(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___leftVector_9 = value;
}
inline static int32_t get_offset_of_rightVector_10() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___rightVector_10)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_rightVector_10() const { return ___rightVector_10; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_rightVector_10() { return &___rightVector_10; }
inline void set_rightVector_10(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___rightVector_10 = value;
}
inline static int32_t get_offset_of_forwardVector_11() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___forwardVector_11)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_forwardVector_11() const { return ___forwardVector_11; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_forwardVector_11() { return &___forwardVector_11; }
inline void set_forwardVector_11(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___forwardVector_11 = value;
}
inline static int32_t get_offset_of_backVector_12() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___backVector_12)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_backVector_12() const { return ___backVector_12; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_backVector_12() { return &___backVector_12; }
inline void set_backVector_12(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___backVector_12 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___positiveInfinityVector_13)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; }
inline void set_positiveInfinityVector_13(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___positiveInfinityVector_13 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___negativeInfinityVector_14)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; }
inline void set_negativeInfinityVector_14(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___negativeInfinityVector_14 = value;
}
};
// UnityEngine.Vector4
struct Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E
{
public:
// System.Single UnityEngine.Vector4::x
float ___x_1;
// System.Single UnityEngine.Vector4::y
float ___y_2;
// System.Single UnityEngine.Vector4::z
float ___z_3;
// System.Single UnityEngine.Vector4::w
float ___w_4;
public:
inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___x_1)); }
inline float get_x_1() const { return ___x_1; }
inline float* get_address_of_x_1() { return &___x_1; }
inline void set_x_1(float value)
{
___x_1 = value;
}
inline static int32_t get_offset_of_y_2() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___y_2)); }
inline float get_y_2() const { return ___y_2; }
inline float* get_address_of_y_2() { return &___y_2; }
inline void set_y_2(float value)
{
___y_2 = value;
}
inline static int32_t get_offset_of_z_3() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___z_3)); }
inline float get_z_3() const { return ___z_3; }
inline float* get_address_of_z_3() { return &___z_3; }
inline void set_z_3(float value)
{
___z_3 = value;
}
inline static int32_t get_offset_of_w_4() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___w_4)); }
inline float get_w_4() const { return ___w_4; }
inline float* get_address_of_w_4() { return &___w_4; }
inline void set_w_4(float value)
{
___w_4 = value;
}
};
struct Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields
{
public:
// UnityEngine.Vector4 UnityEngine.Vector4::zeroVector
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___zeroVector_5;
// UnityEngine.Vector4 UnityEngine.Vector4::oneVector
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___oneVector_6;
// UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___positiveInfinityVector_7;
// UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___negativeInfinityVector_8;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___zeroVector_5)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___oneVector_6)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_oneVector_6() const { return ___oneVector_6; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_7() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___positiveInfinityVector_7)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_positiveInfinityVector_7() const { return ___positiveInfinityVector_7; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_positiveInfinityVector_7() { return &___positiveInfinityVector_7; }
inline void set_positiveInfinityVector_7(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___positiveInfinityVector_7 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___negativeInfinityVector_8)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_negativeInfinityVector_8() const { return ___negativeInfinityVector_8; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_negativeInfinityVector_8() { return &___negativeInfinityVector_8; }
inline void set_negativeInfinityVector_8(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___negativeInfinityVector_8 = value;
}
};
// <PrivateImplementationDetails>
struct U3CPrivateImplementationDetailsU3E_tC8332394FBFEEB4B73459A35E182942340DA3537 : public RuntimeObject
{
public:
public:
};
struct U3CPrivateImplementationDetailsU3E_tC8332394FBFEEB4B73459A35E182942340DA3537_StaticFields
{
public:
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::7BBE37982E6C057ED87163CAFC7FD6E5E42EEA46
__StaticArrayInitTypeSizeU3D12_t7F98A3A922EF4B6DA62C3CF2D4E5897EED2C26B8 ___7BBE37982E6C057ED87163CAFC7FD6E5E42EEA46_0;
public:
inline static int32_t get_offset_of_U37BBE37982E6C057ED87163CAFC7FD6E5E42EEA46_0() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tC8332394FBFEEB4B73459A35E182942340DA3537_StaticFields, ___7BBE37982E6C057ED87163CAFC7FD6E5E42EEA46_0)); }
inline __StaticArrayInitTypeSizeU3D12_t7F98A3A922EF4B6DA62C3CF2D4E5897EED2C26B8 get_U37BBE37982E6C057ED87163CAFC7FD6E5E42EEA46_0() const { return ___7BBE37982E6C057ED87163CAFC7FD6E5E42EEA46_0; }
inline __StaticArrayInitTypeSizeU3D12_t7F98A3A922EF4B6DA62C3CF2D4E5897EED2C26B8 * get_address_of_U37BBE37982E6C057ED87163CAFC7FD6E5E42EEA46_0() { return &___7BBE37982E6C057ED87163CAFC7FD6E5E42EEA46_0; }
inline void set_U37BBE37982E6C057ED87163CAFC7FD6E5E42EEA46_0(__StaticArrayInitTypeSizeU3D12_t7F98A3A922EF4B6DA62C3CF2D4E5897EED2C26B8 value)
{
___7BBE37982E6C057ED87163CAFC7FD6E5E42EEA46_0 = value;
}
};
// System.Collections.Generic.Dictionary`2_Enumerator<System.Int32,System.Object>
struct Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version
int32_t ___version_1;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index
int32_t ___index_2;
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 ___current_3;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType
int32_t ___getEnumeratorRetType_4;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7, ___dictionary_0)); }
inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7, ___version_1)); }
inline int32_t get_version_1() const { return ___version_1; }
inline int32_t* get_address_of_version_1() { return &___version_1; }
inline void set_version_1(int32_t value)
{
___version_1 = value;
}
inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7, ___index_2)); }
inline int32_t get_index_2() const { return ___index_2; }
inline int32_t* get_address_of_index_2() { return &___index_2; }
inline void set_index_2(int32_t value)
{
___index_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7, ___current_3)); }
inline KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 get_current_3() const { return ___current_3; }
inline KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL);
}
inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7, ___getEnumeratorRetType_4)); }
inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; }
inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; }
inline void set_getEnumeratorRetType_4(int32_t value)
{
___getEnumeratorRetType_4 = value;
}
};
// System.Collections.Generic.Dictionary`2_Enumerator<System.Int32,UnityEngine.EventSystems.PointerEventData>
struct Enumerator_t4A1A39D730A903621334A87D76E39D656515D0AF
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary
Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version
int32_t ___version_1;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index
int32_t ___index_2;
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current
KeyValuePair_2_t04EF4D50839D67939265F84585D99769CEAC8413 ___current_3;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType
int32_t ___getEnumeratorRetType_4;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t4A1A39D730A903621334A87D76E39D656515D0AF, ___dictionary_0)); }
inline Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t4A1A39D730A903621334A87D76E39D656515D0AF, ___version_1)); }
inline int32_t get_version_1() const { return ___version_1; }
inline int32_t* get_address_of_version_1() { return &___version_1; }
inline void set_version_1(int32_t value)
{
___version_1 = value;
}
inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t4A1A39D730A903621334A87D76E39D656515D0AF, ___index_2)); }
inline int32_t get_index_2() const { return ___index_2; }
inline int32_t* get_address_of_index_2() { return &___index_2; }
inline void set_index_2(int32_t value)
{
___index_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t4A1A39D730A903621334A87D76E39D656515D0AF, ___current_3)); }
inline KeyValuePair_2_t04EF4D50839D67939265F84585D99769CEAC8413 get_current_3() const { return ___current_3; }
inline KeyValuePair_2_t04EF4D50839D67939265F84585D99769CEAC8413 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_t04EF4D50839D67939265F84585D99769CEAC8413 value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL);
}
inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t4A1A39D730A903621334A87D76E39D656515D0AF, ___getEnumeratorRetType_4)); }
inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; }
inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; }
inline void set_getEnumeratorRetType_4(int32_t value)
{
___getEnumeratorRetType_4 = value;
}
};
// System.Delegate
struct Delegate_t : public RuntimeObject
{
public:
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject * ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t * ___method_info_7;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t * ___original_method_info_8;
// System.DelegateData System.Delegate::data
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_10;
public:
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); }
inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
inline void set_method_ptr_0(Il2CppMethodPointer value)
{
___method_ptr_0 = value;
}
inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); }
inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
inline void set_invoke_impl_1(intptr_t value)
{
___invoke_impl_1 = value;
}
inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); }
inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
inline void set_m_target_2(RuntimeObject * value)
{
___m_target_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); }
inline intptr_t get_method_3() const { return ___method_3; }
inline intptr_t* get_address_of_method_3() { return &___method_3; }
inline void set_method_3(intptr_t value)
{
___method_3 = value;
}
inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); }
inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
inline void set_delegate_trampoline_4(intptr_t value)
{
___delegate_trampoline_4 = value;
}
inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); }
inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
inline void set_extra_arg_5(intptr_t value)
{
___extra_arg_5 = value;
}
inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); }
inline intptr_t get_method_code_6() const { return ___method_code_6; }
inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
inline void set_method_code_6(intptr_t value)
{
___method_code_6 = value;
}
inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); }
inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
inline void set_method_info_7(MethodInfo_t * value)
{
___method_info_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value);
}
inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); }
inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
inline void set_original_method_info_8(MethodInfo_t * value)
{
___original_method_info_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value);
}
inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value)
{
___data_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value);
}
inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); }
inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
inline void set_method_is_virtual_10(bool value)
{
___method_is_virtual_10 = value;
}
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// System.Exception
struct Exception_t : public RuntimeObject
{
public:
// System.String System.Exception::_className
String_t* ____className_1;
// System.String System.Exception::_message
String_t* ____message_2;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_3;
// System.Exception System.Exception::_innerException
Exception_t * ____innerException_4;
// System.String System.Exception::_helpURL
String_t* ____helpURL_5;
// System.Object System.Exception::_stackTrace
RuntimeObject * ____stackTrace_6;
// System.String System.Exception::_stackTraceString
String_t* ____stackTraceString_7;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_8;
// System.Int32 System.Exception::_remoteStackIndex
int32_t ____remoteStackIndex_9;
// System.Object System.Exception::_dynamicMethods
RuntimeObject * ____dynamicMethods_10;
// System.Int32 System.Exception::_HResult
int32_t ____HResult_11;
// System.String System.Exception::_source
String_t* ____source_12;
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___native_trace_ips_15;
public:
inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); }
inline String_t* get__className_1() const { return ____className_1; }
inline String_t** get_address_of__className_1() { return &____className_1; }
inline void set__className_1(String_t* value)
{
____className_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value);
}
inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
inline String_t* get__message_2() const { return ____message_2; }
inline String_t** get_address_of__message_2() { return &____message_2; }
inline void set__message_2(String_t* value)
{
____message_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value);
}
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
inline RuntimeObject* get__data_3() const { return ____data_3; }
inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
inline void set__data_3(RuntimeObject* value)
{
____data_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value);
}
inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
inline Exception_t * get__innerException_4() const { return ____innerException_4; }
inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
inline void set__innerException_4(Exception_t * value)
{
____innerException_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value);
}
inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
inline String_t* get__helpURL_5() const { return ____helpURL_5; }
inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
inline void set__helpURL_5(String_t* value)
{
____helpURL_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value);
}
inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
inline void set__stackTrace_6(RuntimeObject * value)
{
____stackTrace_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value);
}
inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
inline void set__stackTraceString_7(String_t* value)
{
____stackTraceString_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value);
}
inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
inline void set__remoteStackTraceString_8(String_t* value)
{
____remoteStackTraceString_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value);
}
inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
inline void set__remoteStackIndex_9(int32_t value)
{
____remoteStackIndex_9 = value;
}
inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
inline void set__dynamicMethods_10(RuntimeObject * value)
{
____dynamicMethods_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value);
}
inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
inline int32_t get__HResult_11() const { return ____HResult_11; }
inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
inline void set__HResult_11(int32_t value)
{
____HResult_11 = value;
}
inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
inline String_t* get__source_12() const { return ____source_12; }
inline String_t** get_address_of__source_12() { return &____source_12; }
inline void set__source_12(String_t* value)
{
____source_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value);
}
inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value)
{
____safeSerializationManager_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value);
}
inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; }
inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value)
{
___captured_traces_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value);
}
inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value)
{
___native_trace_ips_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value);
}
};
struct Exception_t_StaticFields
{
public:
// System.Object System.Exception::s_EDILock
RuntimeObject * ___s_EDILock_0;
public:
inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
inline void set_s_EDILock_0(RuntimeObject * value)
{
___s_EDILock_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// System.Int32Enum
struct Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD
{
public:
// System.Int32 System.Int32Enum::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Reflection.BindingFlags
struct BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0
{
public:
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D
{
public:
// System.IntPtr System.RuntimeTypeHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, ___value_0)); }
inline intptr_t get_value_0() const { return ___value_0; }
inline intptr_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(intptr_t value)
{
___value_0 = value;
}
};
// UnityEngine.Bounds
struct Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890
{
public:
// UnityEngine.Vector3 UnityEngine.Bounds::m_Center
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Center_0;
// UnityEngine.Vector3 UnityEngine.Bounds::m_Extents
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Extents_1;
public:
inline static int32_t get_offset_of_m_Center_0() { return static_cast<int32_t>(offsetof(Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890, ___m_Center_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Center_0() const { return ___m_Center_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Center_0() { return &___m_Center_0; }
inline void set_m_Center_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Center_0 = value;
}
inline static int32_t get_offset_of_m_Extents_1() { return static_cast<int32_t>(offsetof(Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890, ___m_Extents_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Extents_1() const { return ___m_Extents_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Extents_1() { return &___m_Extents_1; }
inline void set_m_Extents_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Extents_1 = value;
}
};
// UnityEngine.Coroutine
struct Coroutine_tAE7DB2FC70A0AE6477F896F852057CB0754F06EC : public YieldInstruction_t836035AC7BD07A3C7909F7AD2A5B42DE99D91C44
{
public:
// System.IntPtr UnityEngine.Coroutine::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(Coroutine_tAE7DB2FC70A0AE6477F896F852057CB0754F06EC, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Coroutine
struct Coroutine_tAE7DB2FC70A0AE6477F896F852057CB0754F06EC_marshaled_pinvoke : public YieldInstruction_t836035AC7BD07A3C7909F7AD2A5B42DE99D91C44_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
};
// Native definition for COM marshalling of UnityEngine.Coroutine
struct Coroutine_tAE7DB2FC70A0AE6477F896F852057CB0754F06EC_marshaled_com : public YieldInstruction_t836035AC7BD07A3C7909F7AD2A5B42DE99D91C44_marshaled_com
{
intptr_t ___m_Ptr_0;
};
// UnityEngine.CursorLockMode
struct CursorLockMode_tF9B28266D253124BE56C232B7ED2D9F7CC3D1E38
{
public:
// System.Int32 UnityEngine.CursorLockMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CursorLockMode_tF9B28266D253124BE56C232B7ED2D9F7CC3D1E38, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Display
struct Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Display::nativeDisplay
intptr_t ___nativeDisplay_0;
public:
inline static int32_t get_offset_of_nativeDisplay_0() { return static_cast<int32_t>(offsetof(Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57, ___nativeDisplay_0)); }
inline intptr_t get_nativeDisplay_0() const { return ___nativeDisplay_0; }
inline intptr_t* get_address_of_nativeDisplay_0() { return &___nativeDisplay_0; }
inline void set_nativeDisplay_0(intptr_t value)
{
___nativeDisplay_0 = value;
}
};
struct Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57_StaticFields
{
public:
// UnityEngine.Display[] UnityEngine.Display::displays
DisplayU5BU5D_tB2AB0FDB3B2E9FD784D5100C18EB0ED489A2CCC9* ___displays_1;
// UnityEngine.Display UnityEngine.Display::_mainDisplay
Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57 * ____mainDisplay_2;
// UnityEngine.Display_DisplaysUpdatedDelegate UnityEngine.Display::onDisplaysUpdated
DisplaysUpdatedDelegate_t2FAF995B47D691BD7C5BBC17D533DD8B19BE9A90 * ___onDisplaysUpdated_3;
public:
inline static int32_t get_offset_of_displays_1() { return static_cast<int32_t>(offsetof(Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57_StaticFields, ___displays_1)); }
inline DisplayU5BU5D_tB2AB0FDB3B2E9FD784D5100C18EB0ED489A2CCC9* get_displays_1() const { return ___displays_1; }
inline DisplayU5BU5D_tB2AB0FDB3B2E9FD784D5100C18EB0ED489A2CCC9** get_address_of_displays_1() { return &___displays_1; }
inline void set_displays_1(DisplayU5BU5D_tB2AB0FDB3B2E9FD784D5100C18EB0ED489A2CCC9* value)
{
___displays_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___displays_1), (void*)value);
}
inline static int32_t get_offset_of__mainDisplay_2() { return static_cast<int32_t>(offsetof(Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57_StaticFields, ____mainDisplay_2)); }
inline Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57 * get__mainDisplay_2() const { return ____mainDisplay_2; }
inline Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57 ** get_address_of__mainDisplay_2() { return &____mainDisplay_2; }
inline void set__mainDisplay_2(Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57 * value)
{
____mainDisplay_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____mainDisplay_2), (void*)value);
}
inline static int32_t get_offset_of_onDisplaysUpdated_3() { return static_cast<int32_t>(offsetof(Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57_StaticFields, ___onDisplaysUpdated_3)); }
inline DisplaysUpdatedDelegate_t2FAF995B47D691BD7C5BBC17D533DD8B19BE9A90 * get_onDisplaysUpdated_3() const { return ___onDisplaysUpdated_3; }
inline DisplaysUpdatedDelegate_t2FAF995B47D691BD7C5BBC17D533DD8B19BE9A90 ** get_address_of_onDisplaysUpdated_3() { return &___onDisplaysUpdated_3; }
inline void set_onDisplaysUpdated_3(DisplaysUpdatedDelegate_t2FAF995B47D691BD7C5BBC17D533DD8B19BE9A90 * value)
{
___onDisplaysUpdated_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onDisplaysUpdated_3), (void*)value);
}
};
// UnityEngine.DrivenTransformProperties
struct DrivenTransformProperties_tE19A09F25C763B9190D4F0CD90ABC01F1C6CEC5F
{
public:
// System.Int32 UnityEngine.DrivenTransformProperties::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DrivenTransformProperties_tE19A09F25C763B9190D4F0CD90ABC01F1C6CEC5F, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.EventSystems.EventHandle
struct EventHandle_tF6428A551850EC70E06F4140A2D3121C4B0DC64E
{
public:
// System.Int32 UnityEngine.EventSystems.EventHandle::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventHandle_tF6428A551850EC70E06F4140A2D3121C4B0DC64E, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.EventSystems.EventTrigger_TriggerEvent
struct TriggerEvent_tF73252408C49CDE2F1A05AA75FE09086C53A9793 : public UnityEvent_1_t55DE148B605149DF84E469388B37672EE507573E
{
public:
public:
};
// UnityEngine.EventSystems.EventTriggerType
struct EventTriggerType_t1F93B498A28A60FC59EBD7B6AC28C25CABA3E0DE
{
public:
// System.Int32 UnityEngine.EventSystems.EventTriggerType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventTriggerType_t1F93B498A28A60FC59EBD7B6AC28C25CABA3E0DE, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.EventSystems.MoveDirection
struct MoveDirection_t82C25470C79BBE899C5E27B312A983D7FF457E1B
{
public:
// System.Int32 UnityEngine.EventSystems.MoveDirection::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MoveDirection_t82C25470C79BBE899C5E27B312A983D7FF457E1B, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.EventSystems.PointerEventData_FramePressState
struct FramePressState_t14175B3126231E1E65C038FBC84A1C6A24E3E79E
{
public:
// System.Int32 UnityEngine.EventSystems.PointerEventData_FramePressState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FramePressState_t14175B3126231E1E65C038FBC84A1C6A24E3E79E, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.EventSystems.PointerEventData_InputButton
struct InputButton_tCC7470F9FD2AFE525243394F0215B47D4BF86AB0
{
public:
// System.Int32 UnityEngine.EventSystems.PointerEventData_InputButton::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InputButton_tCC7470F9FD2AFE525243394F0215B47D4BF86AB0, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91
{
public:
// UnityEngine.GameObject UnityEngine.EventSystems.RaycastResult::m_GameObject
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0;
// UnityEngine.EventSystems.BaseRaycaster UnityEngine.EventSystems.RaycastResult::module
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1;
// System.Single UnityEngine.EventSystems.RaycastResult::distance
float ___distance_2;
// System.Single UnityEngine.EventSystems.RaycastResult::index
float ___index_3;
// System.Int32 UnityEngine.EventSystems.RaycastResult::depth
int32_t ___depth_4;
// System.Int32 UnityEngine.EventSystems.RaycastResult::sortingLayer
int32_t ___sortingLayer_5;
// System.Int32 UnityEngine.EventSystems.RaycastResult::sortingOrder
int32_t ___sortingOrder_6;
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldPosition
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7;
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldNormal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8;
// UnityEngine.Vector2 UnityEngine.EventSystems.RaycastResult::screenPosition
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9;
// System.Int32 UnityEngine.EventSystems.RaycastResult::displayIndex
int32_t ___displayIndex_10;
public:
inline static int32_t get_offset_of_m_GameObject_0() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___m_GameObject_0)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_GameObject_0() const { return ___m_GameObject_0; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_GameObject_0() { return &___m_GameObject_0; }
inline void set_m_GameObject_0(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___m_GameObject_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_GameObject_0), (void*)value);
}
inline static int32_t get_offset_of_module_1() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___module_1)); }
inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * get_module_1() const { return ___module_1; }
inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 ** get_address_of_module_1() { return &___module_1; }
inline void set_module_1(BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * value)
{
___module_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___module_1), (void*)value);
}
inline static int32_t get_offset_of_distance_2() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___distance_2)); }
inline float get_distance_2() const { return ___distance_2; }
inline float* get_address_of_distance_2() { return &___distance_2; }
inline void set_distance_2(float value)
{
___distance_2 = value;
}
inline static int32_t get_offset_of_index_3() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___index_3)); }
inline float get_index_3() const { return ___index_3; }
inline float* get_address_of_index_3() { return &___index_3; }
inline void set_index_3(float value)
{
___index_3 = value;
}
inline static int32_t get_offset_of_depth_4() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___depth_4)); }
inline int32_t get_depth_4() const { return ___depth_4; }
inline int32_t* get_address_of_depth_4() { return &___depth_4; }
inline void set_depth_4(int32_t value)
{
___depth_4 = value;
}
inline static int32_t get_offset_of_sortingLayer_5() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___sortingLayer_5)); }
inline int32_t get_sortingLayer_5() const { return ___sortingLayer_5; }
inline int32_t* get_address_of_sortingLayer_5() { return &___sortingLayer_5; }
inline void set_sortingLayer_5(int32_t value)
{
___sortingLayer_5 = value;
}
inline static int32_t get_offset_of_sortingOrder_6() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___sortingOrder_6)); }
inline int32_t get_sortingOrder_6() const { return ___sortingOrder_6; }
inline int32_t* get_address_of_sortingOrder_6() { return &___sortingOrder_6; }
inline void set_sortingOrder_6(int32_t value)
{
___sortingOrder_6 = value;
}
inline static int32_t get_offset_of_worldPosition_7() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___worldPosition_7)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_worldPosition_7() const { return ___worldPosition_7; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_worldPosition_7() { return &___worldPosition_7; }
inline void set_worldPosition_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___worldPosition_7 = value;
}
inline static int32_t get_offset_of_worldNormal_8() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___worldNormal_8)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_worldNormal_8() const { return ___worldNormal_8; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_worldNormal_8() { return &___worldNormal_8; }
inline void set_worldNormal_8(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___worldNormal_8 = value;
}
inline static int32_t get_offset_of_screenPosition_9() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___screenPosition_9)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_screenPosition_9() const { return ___screenPosition_9; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_screenPosition_9() { return &___screenPosition_9; }
inline void set_screenPosition_9(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___screenPosition_9 = value;
}
inline static int32_t get_offset_of_displayIndex_10() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___displayIndex_10)); }
inline int32_t get_displayIndex_10() const { return ___displayIndex_10; }
inline int32_t* get_address_of_displayIndex_10() { return &___displayIndex_10; }
inline void set_displayIndex_10(int32_t value)
{
___displayIndex_10 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshaled_pinvoke
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1;
float ___distance_2;
float ___index_3;
int32_t ___depth_4;
int32_t ___sortingLayer_5;
int32_t ___sortingOrder_6;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9;
int32_t ___displayIndex_10;
};
// Native definition for COM marshalling of UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshaled_com
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1;
float ___distance_2;
float ___index_3;
int32_t ___depth_4;
int32_t ___sortingLayer_5;
int32_t ___sortingOrder_6;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9;
int32_t ___displayIndex_10;
};
// UnityEngine.EventSystems.StandaloneInputModule_InputMode
struct InputMode_t6C81C4F84B743FC877C53380040470BE273BA79D
{
public:
// System.Int32 UnityEngine.EventSystems.StandaloneInputModule_InputMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InputMode_t6C81C4F84B743FC877C53380040470BE273BA79D, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.FontStyle
struct FontStyle_t273973EBB1F40C2381F6D60AB957149DE5720CF3
{
public:
// System.Int32 UnityEngine.FontStyle::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FontStyle_t273973EBB1F40C2381F6D60AB957149DE5720CF3, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.IMECompositionMode
struct IMECompositionMode_t491836CA4BD289253C9FF16B3C158744C8598CE2
{
public:
// System.Int32 UnityEngine.IMECompositionMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(IMECompositionMode_t491836CA4BD289253C9FF16B3C158744C8598CE2, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Object::m_CachedPtr
intptr_t ___m_CachedPtr_0;
public:
inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0, ___m_CachedPtr_0)); }
inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; }
inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; }
inline void set_m_CachedPtr_0(intptr_t value)
{
___m_CachedPtr_0 = value;
}
};
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields
{
public:
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
public:
inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); }
inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value)
{
___OffsetOfInstanceIDInCPlusPlusObject_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke
{
intptr_t ___m_CachedPtr_0;
};
// Native definition for COM marshalling of UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com
{
intptr_t ___m_CachedPtr_0;
};
// UnityEngine.OperatingSystemFamily
struct OperatingSystemFamily_tB10B95DB611852B942F4B31CCD63B9955350F2EE
{
public:
// System.Int32 UnityEngine.OperatingSystemFamily::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(OperatingSystemFamily_tB10B95DB611852B942F4B31CCD63B9955350F2EE, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Ray
struct Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2
{
public:
// UnityEngine.Vector3 UnityEngine.Ray::m_Origin
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Origin_0;
// UnityEngine.Vector3 UnityEngine.Ray::m_Direction
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Direction_1;
public:
inline static int32_t get_offset_of_m_Origin_0() { return static_cast<int32_t>(offsetof(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2, ___m_Origin_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Origin_0() const { return ___m_Origin_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Origin_0() { return &___m_Origin_0; }
inline void set_m_Origin_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Origin_0 = value;
}
inline static int32_t get_offset_of_m_Direction_1() { return static_cast<int32_t>(offsetof(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2, ___m_Direction_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Direction_1() const { return ___m_Direction_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Direction_1() { return &___m_Direction_1; }
inline void set_m_Direction_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Direction_1 = value;
}
};
// UnityEngine.RaycastHit
struct RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3
{
public:
// UnityEngine.Vector3 UnityEngine.RaycastHit::m_Point
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Point_0;
// UnityEngine.Vector3 UnityEngine.RaycastHit::m_Normal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Normal_1;
// System.UInt32 UnityEngine.RaycastHit::m_FaceID
uint32_t ___m_FaceID_2;
// System.Single UnityEngine.RaycastHit::m_Distance
float ___m_Distance_3;
// UnityEngine.Vector2 UnityEngine.RaycastHit::m_UV
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_UV_4;
// System.Int32 UnityEngine.RaycastHit::m_Collider
int32_t ___m_Collider_5;
public:
inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Point_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Point_0() const { return ___m_Point_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Point_0() { return &___m_Point_0; }
inline void set_m_Point_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Point_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Normal_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_FaceID_2() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_FaceID_2)); }
inline uint32_t get_m_FaceID_2() const { return ___m_FaceID_2; }
inline uint32_t* get_address_of_m_FaceID_2() { return &___m_FaceID_2; }
inline void set_m_FaceID_2(uint32_t value)
{
___m_FaceID_2 = value;
}
inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Distance_3)); }
inline float get_m_Distance_3() const { return ___m_Distance_3; }
inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; }
inline void set_m_Distance_3(float value)
{
___m_Distance_3 = value;
}
inline static int32_t get_offset_of_m_UV_4() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_UV_4)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_UV_4() const { return ___m_UV_4; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_UV_4() { return &___m_UV_4; }
inline void set_m_UV_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_UV_4 = value;
}
inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Collider_5)); }
inline int32_t get_m_Collider_5() const { return ___m_Collider_5; }
inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; }
inline void set_m_Collider_5(int32_t value)
{
___m_Collider_5 = value;
}
};
// UnityEngine.RaycastHit2D
struct RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE
{
public:
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Centroid
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Centroid_0;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Point
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Point_1;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Normal
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Normal_2;
// System.Single UnityEngine.RaycastHit2D::m_Distance
float ___m_Distance_3;
// System.Single UnityEngine.RaycastHit2D::m_Fraction
float ___m_Fraction_4;
// System.Int32 UnityEngine.RaycastHit2D::m_Collider
int32_t ___m_Collider_5;
public:
inline static int32_t get_offset_of_m_Centroid_0() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Centroid_0)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Centroid_0() const { return ___m_Centroid_0; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Centroid_0() { return &___m_Centroid_0; }
inline void set_m_Centroid_0(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Centroid_0 = value;
}
inline static int32_t get_offset_of_m_Point_1() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Point_1)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Point_1() const { return ___m_Point_1; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Point_1() { return &___m_Point_1; }
inline void set_m_Point_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Point_1 = value;
}
inline static int32_t get_offset_of_m_Normal_2() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Normal_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Normal_2() const { return ___m_Normal_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Normal_2() { return &___m_Normal_2; }
inline void set_m_Normal_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Normal_2 = value;
}
inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Distance_3)); }
inline float get_m_Distance_3() const { return ___m_Distance_3; }
inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; }
inline void set_m_Distance_3(float value)
{
___m_Distance_3 = value;
}
inline static int32_t get_offset_of_m_Fraction_4() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Fraction_4)); }
inline float get_m_Fraction_4() const { return ___m_Fraction_4; }
inline float* get_address_of_m_Fraction_4() { return &___m_Fraction_4; }
inline void set_m_Fraction_4(float value)
{
___m_Fraction_4 = value;
}
inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Collider_5)); }
inline int32_t get_m_Collider_5() const { return ___m_Collider_5; }
inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; }
inline void set_m_Collider_5(int32_t value)
{
___m_Collider_5 = value;
}
};
// UnityEngine.RectTransform_Axis
struct Axis_tA0521D01CB96B1073151D89F6DB21C805556FE39
{
public:
// System.Int32 UnityEngine.RectTransform_Axis::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Axis_tA0521D01CB96B1073151D89F6DB21C805556FE39, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.RenderMode
struct RenderMode_tB54632E74CDC4A990E815EB8C3CC515D3A9E2F60
{
public:
// System.Int32 UnityEngine.RenderMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RenderMode_tB54632E74CDC4A990E815EB8C3CC515D3A9E2F60, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.TextAnchor
struct TextAnchor_tEC19034D476659A5E05366C63564F34DD30E7C57
{
public:
// System.Int32 UnityEngine.TextAnchor::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextAnchor_tEC19034D476659A5E05366C63564F34DD30E7C57, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.TouchPhase
struct TouchPhase_t7E9CEC3DD059E32F847242513BD6CE30866AB2A6
{
public:
// System.Int32 UnityEngine.TouchPhase::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TouchPhase_t7E9CEC3DD059E32F847242513BD6CE30866AB2A6, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.TouchScreenKeyboardType
struct TouchScreenKeyboardType_tDD21D45735F3021BF4C6C7C1A660ABF03EBCE602
{
public:
// System.Int32 UnityEngine.TouchScreenKeyboardType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TouchScreenKeyboardType_tDD21D45735F3021BF4C6C7C1A660ABF03EBCE602, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.TouchType
struct TouchType_tBBD83025576FC017B10484014B5C396613A02B8E
{
public:
// System.Int32 UnityEngine.TouchType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TouchType_tBBD83025576FC017B10484014B5C396613A02B8E, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.AspectRatioFitter_AspectMode
struct AspectMode_t2D8C205891B8E63CA16B6AC3BA1D41320903C65A
{
public:
// System.Int32 UnityEngine.UI.AspectRatioFitter_AspectMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AspectMode_t2D8C205891B8E63CA16B6AC3BA1D41320903C65A, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.Button_ButtonClickedEvent
struct ButtonClickedEvent_t975D9C903BC4880557ADD7D3ACFB01CB2B3D6DDB : public UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F
{
public:
public:
};
// UnityEngine.UI.CanvasScaler_ScaleMode
struct ScaleMode_t38950B182EA5E1C8589AB5E02F36FEABB8A5CAA6
{
public:
// System.Int32 UnityEngine.UI.CanvasScaler_ScaleMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ScaleMode_t38950B182EA5E1C8589AB5E02F36FEABB8A5CAA6, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.CanvasScaler_ScreenMatchMode
struct ScreenMatchMode_t61C3A62F8F54F705D47C2C37B06DC8083238C133
{
public:
// System.Int32 UnityEngine.UI.CanvasScaler_ScreenMatchMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ScreenMatchMode_t61C3A62F8F54F705D47C2C37B06DC8083238C133, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.CanvasScaler_Unit
struct Unit_tD24A4DB24016D1A6B46579640E170359F76F8313
{
public:
// System.Int32 UnityEngine.UI.CanvasScaler_Unit::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Unit_tD24A4DB24016D1A6B46579640E170359F76F8313, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.CanvasUpdate
struct CanvasUpdate_t101AC9B078FFAAC6BDA703E7439B320BC19E9AF6
{
public:
// System.Int32 UnityEngine.UI.CanvasUpdate::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CanvasUpdate_t101AC9B078FFAAC6BDA703E7439B320BC19E9AF6, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.ColorBlock
struct ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA
{
public:
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_NormalColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_NormalColor_0;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_HighlightedColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_HighlightedColor_1;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_PressedColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_PressedColor_2;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_SelectedColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_SelectedColor_3;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_DisabledColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_DisabledColor_4;
// System.Single UnityEngine.UI.ColorBlock::m_ColorMultiplier
float ___m_ColorMultiplier_5;
// System.Single UnityEngine.UI.ColorBlock::m_FadeDuration
float ___m_FadeDuration_6;
public:
inline static int32_t get_offset_of_m_NormalColor_0() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_NormalColor_0)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_NormalColor_0() const { return ___m_NormalColor_0; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_NormalColor_0() { return &___m_NormalColor_0; }
inline void set_m_NormalColor_0(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_NormalColor_0 = value;
}
inline static int32_t get_offset_of_m_HighlightedColor_1() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_HighlightedColor_1)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_HighlightedColor_1() const { return ___m_HighlightedColor_1; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_HighlightedColor_1() { return &___m_HighlightedColor_1; }
inline void set_m_HighlightedColor_1(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_HighlightedColor_1 = value;
}
inline static int32_t get_offset_of_m_PressedColor_2() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_PressedColor_2)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_PressedColor_2() const { return ___m_PressedColor_2; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_PressedColor_2() { return &___m_PressedColor_2; }
inline void set_m_PressedColor_2(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_PressedColor_2 = value;
}
inline static int32_t get_offset_of_m_SelectedColor_3() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_SelectedColor_3)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_SelectedColor_3() const { return ___m_SelectedColor_3; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_SelectedColor_3() { return &___m_SelectedColor_3; }
inline void set_m_SelectedColor_3(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_SelectedColor_3 = value;
}
inline static int32_t get_offset_of_m_DisabledColor_4() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_DisabledColor_4)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_DisabledColor_4() const { return ___m_DisabledColor_4; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_DisabledColor_4() { return &___m_DisabledColor_4; }
inline void set_m_DisabledColor_4(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_DisabledColor_4 = value;
}
inline static int32_t get_offset_of_m_ColorMultiplier_5() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_ColorMultiplier_5)); }
inline float get_m_ColorMultiplier_5() const { return ___m_ColorMultiplier_5; }
inline float* get_address_of_m_ColorMultiplier_5() { return &___m_ColorMultiplier_5; }
inline void set_m_ColorMultiplier_5(float value)
{
___m_ColorMultiplier_5 = value;
}
inline static int32_t get_offset_of_m_FadeDuration_6() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_FadeDuration_6)); }
inline float get_m_FadeDuration_6() const { return ___m_FadeDuration_6; }
inline float* get_address_of_m_FadeDuration_6() { return &___m_FadeDuration_6; }
inline void set_m_FadeDuration_6(float value)
{
___m_FadeDuration_6 = value;
}
};
// UnityEngine.UI.ContentSizeFitter_FitMode
struct FitMode_tBF783E77415F7063B468C18E758F738D83D60A08
{
public:
// System.Int32 UnityEngine.UI.ContentSizeFitter_FitMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FitMode_tBF783E77415F7063B468C18E758F738D83D60A08, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.CoroutineTween.ColorTween_ColorTweenCallback
struct ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 : public UnityEvent_1_tFB475F569CC8852B004B3F2DE7536E67324C2AF8
{
public:
public:
};
// UnityEngine.UI.CoroutineTween.ColorTween_ColorTweenMode
struct ColorTweenMode_tDCE018D37330F576ACCD00D16CAF91AE55315F2F
{
public:
// System.Int32 UnityEngine.UI.CoroutineTween.ColorTween_ColorTweenMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ColorTweenMode_tDCE018D37330F576ACCD00D16CAF91AE55315F2F, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.CoroutineTween.FloatTween_FloatTweenCallback
struct FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502 : public UnityEvent_1_t655F4ECDA62E804A34CC8737AC30B836ABD3D2DA
{
public:
public:
};
// UnityEngine.UI.DefaultControls
struct DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2 : public RuntimeObject
{
public:
public:
};
struct DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields
{
public:
// UnityEngine.UI.DefaultControls_IFactoryControls UnityEngine.UI.DefaultControls::m_CurrentFactory
RuntimeObject* ___m_CurrentFactory_0;
// UnityEngine.Vector2 UnityEngine.UI.DefaultControls::s_ThickElementSize
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___s_ThickElementSize_4;
// UnityEngine.Vector2 UnityEngine.UI.DefaultControls::s_ThinElementSize
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___s_ThinElementSize_5;
// UnityEngine.Vector2 UnityEngine.UI.DefaultControls::s_ImageElementSize
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___s_ImageElementSize_6;
// UnityEngine.Color UnityEngine.UI.DefaultControls::s_DefaultSelectableColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___s_DefaultSelectableColor_7;
// UnityEngine.Color UnityEngine.UI.DefaultControls::s_PanelColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___s_PanelColor_8;
// UnityEngine.Color UnityEngine.UI.DefaultControls::s_TextColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___s_TextColor_9;
public:
inline static int32_t get_offset_of_m_CurrentFactory_0() { return static_cast<int32_t>(offsetof(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields, ___m_CurrentFactory_0)); }
inline RuntimeObject* get_m_CurrentFactory_0() const { return ___m_CurrentFactory_0; }
inline RuntimeObject** get_address_of_m_CurrentFactory_0() { return &___m_CurrentFactory_0; }
inline void set_m_CurrentFactory_0(RuntimeObject* value)
{
___m_CurrentFactory_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CurrentFactory_0), (void*)value);
}
inline static int32_t get_offset_of_s_ThickElementSize_4() { return static_cast<int32_t>(offsetof(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields, ___s_ThickElementSize_4)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_s_ThickElementSize_4() const { return ___s_ThickElementSize_4; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_s_ThickElementSize_4() { return &___s_ThickElementSize_4; }
inline void set_s_ThickElementSize_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___s_ThickElementSize_4 = value;
}
inline static int32_t get_offset_of_s_ThinElementSize_5() { return static_cast<int32_t>(offsetof(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields, ___s_ThinElementSize_5)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_s_ThinElementSize_5() const { return ___s_ThinElementSize_5; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_s_ThinElementSize_5() { return &___s_ThinElementSize_5; }
inline void set_s_ThinElementSize_5(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___s_ThinElementSize_5 = value;
}
inline static int32_t get_offset_of_s_ImageElementSize_6() { return static_cast<int32_t>(offsetof(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields, ___s_ImageElementSize_6)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_s_ImageElementSize_6() const { return ___s_ImageElementSize_6; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_s_ImageElementSize_6() { return &___s_ImageElementSize_6; }
inline void set_s_ImageElementSize_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___s_ImageElementSize_6 = value;
}
inline static int32_t get_offset_of_s_DefaultSelectableColor_7() { return static_cast<int32_t>(offsetof(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields, ___s_DefaultSelectableColor_7)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_s_DefaultSelectableColor_7() const { return ___s_DefaultSelectableColor_7; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_s_DefaultSelectableColor_7() { return &___s_DefaultSelectableColor_7; }
inline void set_s_DefaultSelectableColor_7(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___s_DefaultSelectableColor_7 = value;
}
inline static int32_t get_offset_of_s_PanelColor_8() { return static_cast<int32_t>(offsetof(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields, ___s_PanelColor_8)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_s_PanelColor_8() const { return ___s_PanelColor_8; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_s_PanelColor_8() { return &___s_PanelColor_8; }
inline void set_s_PanelColor_8(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___s_PanelColor_8 = value;
}
inline static int32_t get_offset_of_s_TextColor_9() { return static_cast<int32_t>(offsetof(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields, ___s_TextColor_9)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_s_TextColor_9() const { return ___s_TextColor_9; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_s_TextColor_9() { return &___s_TextColor_9; }
inline void set_s_TextColor_9(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___s_TextColor_9 = value;
}
};
// UnityEngine.UI.Dropdown_DropdownEvent
struct DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306 : public UnityEvent_1_t6DD758393B13FC2A58BE44E647D9EBEA4F27D914
{
public:
public:
};
// UnityEngine.UI.GraphicRaycaster_BlockingObjects
struct BlockingObjects_tFC334A7FDC8003C26A58D8FF24EDD045C49F9E23
{
public:
// System.Int32 UnityEngine.UI.GraphicRaycaster_BlockingObjects::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BlockingObjects_tFC334A7FDC8003C26A58D8FF24EDD045C49F9E23, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.Image_FillMethod
struct FillMethod_t0DB7332683118B7C7D2748BE74CFBF19CD19F8C5
{
public:
// System.Int32 UnityEngine.UI.Image_FillMethod::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FillMethod_t0DB7332683118B7C7D2748BE74CFBF19CD19F8C5, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.Image_Type
struct Type_t96B8A259B84ADA5E7D3B1F13AEAE22175937F38A
{
public:
// System.Int32 UnityEngine.UI.Image_Type::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Type_t96B8A259B84ADA5E7D3B1F13AEAE22175937F38A, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.InputField_CharacterValidation
struct CharacterValidation_t2661E1767E01D63D4C8CE8F95C53C617118F206E
{
public:
// System.Int32 UnityEngine.UI.InputField_CharacterValidation::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CharacterValidation_t2661E1767E01D63D4C8CE8F95C53C617118F206E, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.InputField_ContentType
struct ContentType_t8F7DB5382A51BC2D99814DEB6BCD904D5E5B2048
{
public:
// System.Int32 UnityEngine.UI.InputField_ContentType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ContentType_t8F7DB5382A51BC2D99814DEB6BCD904D5E5B2048, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.InputField_InputType
struct InputType_t1726189312457C509B0693B5ACDB9DA7387EB54A
{
public:
// System.Int32 UnityEngine.UI.InputField_InputType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InputType_t1726189312457C509B0693B5ACDB9DA7387EB54A, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.InputField_LineType
struct LineType_t9C34D02DDDA75D3E914ADD9E417258B40D56DED6
{
public:
// System.Int32 UnityEngine.UI.InputField_LineType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LineType_t9C34D02DDDA75D3E914ADD9E417258B40D56DED6, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.Navigation_Mode
struct Mode_t93F92BD50B147AE38D82BA33FA77FD247A59FE26
{
public:
// System.Int32 UnityEngine.UI.Navigation_Mode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Mode_t93F92BD50B147AE38D82BA33FA77FD247A59FE26, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.ScrollRect_MovementType
struct MovementType_t78F2436465C40CA3C70631E1E5F088EA7A15C97A
{
public:
// System.Int32 UnityEngine.UI.ScrollRect_MovementType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MovementType_t78F2436465C40CA3C70631E1E5F088EA7A15C97A, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.ScrollRect_ScrollbarVisibility
struct ScrollbarVisibility_t4D6A5D8EF1681A91CED9F04283D0C882DCE1531F
{
public:
// System.Int32 UnityEngine.UI.ScrollRect_ScrollbarVisibility::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ScrollbarVisibility_t4D6A5D8EF1681A91CED9F04283D0C882DCE1531F, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.Scrollbar_Direction
struct Direction_t7DC57FCC1DB6C12E88B2227EEEE2FCEF3F1483FF
{
public:
// System.Int32 UnityEngine.UI.Scrollbar_Direction::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Direction_t7DC57FCC1DB6C12E88B2227EEEE2FCEF3F1483FF, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.Selectable_SelectionState
struct SelectionState_tF089B96B46A592693753CBF23C52A3887632D210
{
public:
// System.Int32 UnityEngine.UI.Selectable_SelectionState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SelectionState_tF089B96B46A592693753CBF23C52A3887632D210, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.Selectable_Transition
struct Transition_tA9261C608B54C52324084A0B080E7A3E0548A181
{
public:
// System.Int32 UnityEngine.UI.Selectable_Transition::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Transition_tA9261C608B54C52324084A0B080E7A3E0548A181, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.Slider_Direction
struct Direction_tAAEBCB52D43F1B8F5DBB1A6F1025F9D02852B67E
{
public:
// System.Int32 UnityEngine.UI.Slider_Direction::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Direction_tAAEBCB52D43F1B8F5DBB1A6F1025F9D02852B67E, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.Toggle_ToggleEvent
struct ToggleEvent_t50D925F8E220FB47DA738411CEF9C57FF7E1DC43 : public UnityEvent_1_tE1EF042798523847EEBB2A12FA37C4003C1B1299
{
public:
public:
};
// UnityEngine.UI.Toggle_ToggleTransition
struct ToggleTransition_t45980EB1352FF47B2D8D8EBC90385AB68939046D
{
public:
// System.Int32 UnityEngine.UI.Toggle_ToggleTransition::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ToggleTransition_t45980EB1352FF47B2D8D8EBC90385AB68939046D, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UI.VertexHelper
struct VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F : public RuntimeObject
{
public:
// System.Collections.Generic.List`1<UnityEngine.Vector3> UnityEngine.UI.VertexHelper::m_Positions
List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5 * ___m_Positions_0;
// System.Collections.Generic.List`1<UnityEngine.Color32> UnityEngine.UI.VertexHelper::m_Colors
List_1_t749ADA5233D9B421293A000DCB83608A24C3D5D5 * ___m_Colors_1;
// System.Collections.Generic.List`1<UnityEngine.Vector2> UnityEngine.UI.VertexHelper::m_Uv0S
List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB * ___m_Uv0S_2;
// System.Collections.Generic.List`1<UnityEngine.Vector2> UnityEngine.UI.VertexHelper::m_Uv1S
List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB * ___m_Uv1S_3;
// System.Collections.Generic.List`1<UnityEngine.Vector2> UnityEngine.UI.VertexHelper::m_Uv2S
List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB * ___m_Uv2S_4;
// System.Collections.Generic.List`1<UnityEngine.Vector2> UnityEngine.UI.VertexHelper::m_Uv3S
List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB * ___m_Uv3S_5;
// System.Collections.Generic.List`1<UnityEngine.Vector3> UnityEngine.UI.VertexHelper::m_Normals
List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5 * ___m_Normals_6;
// System.Collections.Generic.List`1<UnityEngine.Vector4> UnityEngine.UI.VertexHelper::m_Tangents
List_1_tFF4005B40E5BA433006DA11C56DB086B1E2FC955 * ___m_Tangents_7;
// System.Collections.Generic.List`1<System.Int32> UnityEngine.UI.VertexHelper::m_Indices
List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * ___m_Indices_8;
// System.Boolean UnityEngine.UI.VertexHelper::m_ListsInitalized
bool ___m_ListsInitalized_11;
public:
inline static int32_t get_offset_of_m_Positions_0() { return static_cast<int32_t>(offsetof(VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F, ___m_Positions_0)); }
inline List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5 * get_m_Positions_0() const { return ___m_Positions_0; }
inline List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5 ** get_address_of_m_Positions_0() { return &___m_Positions_0; }
inline void set_m_Positions_0(List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5 * value)
{
___m_Positions_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Positions_0), (void*)value);
}
inline static int32_t get_offset_of_m_Colors_1() { return static_cast<int32_t>(offsetof(VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F, ___m_Colors_1)); }
inline List_1_t749ADA5233D9B421293A000DCB83608A24C3D5D5 * get_m_Colors_1() const { return ___m_Colors_1; }
inline List_1_t749ADA5233D9B421293A000DCB83608A24C3D5D5 ** get_address_of_m_Colors_1() { return &___m_Colors_1; }
inline void set_m_Colors_1(List_1_t749ADA5233D9B421293A000DCB83608A24C3D5D5 * value)
{
___m_Colors_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Colors_1), (void*)value);
}
inline static int32_t get_offset_of_m_Uv0S_2() { return static_cast<int32_t>(offsetof(VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F, ___m_Uv0S_2)); }
inline List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB * get_m_Uv0S_2() const { return ___m_Uv0S_2; }
inline List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB ** get_address_of_m_Uv0S_2() { return &___m_Uv0S_2; }
inline void set_m_Uv0S_2(List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB * value)
{
___m_Uv0S_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Uv0S_2), (void*)value);
}
inline static int32_t get_offset_of_m_Uv1S_3() { return static_cast<int32_t>(offsetof(VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F, ___m_Uv1S_3)); }
inline List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB * get_m_Uv1S_3() const { return ___m_Uv1S_3; }
inline List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB ** get_address_of_m_Uv1S_3() { return &___m_Uv1S_3; }
inline void set_m_Uv1S_3(List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB * value)
{
___m_Uv1S_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Uv1S_3), (void*)value);
}
inline static int32_t get_offset_of_m_Uv2S_4() { return static_cast<int32_t>(offsetof(VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F, ___m_Uv2S_4)); }
inline List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB * get_m_Uv2S_4() const { return ___m_Uv2S_4; }
inline List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB ** get_address_of_m_Uv2S_4() { return &___m_Uv2S_4; }
inline void set_m_Uv2S_4(List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB * value)
{
___m_Uv2S_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Uv2S_4), (void*)value);
}
inline static int32_t get_offset_of_m_Uv3S_5() { return static_cast<int32_t>(offsetof(VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F, ___m_Uv3S_5)); }
inline List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB * get_m_Uv3S_5() const { return ___m_Uv3S_5; }
inline List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB ** get_address_of_m_Uv3S_5() { return &___m_Uv3S_5; }
inline void set_m_Uv3S_5(List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB * value)
{
___m_Uv3S_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Uv3S_5), (void*)value);
}
inline static int32_t get_offset_of_m_Normals_6() { return static_cast<int32_t>(offsetof(VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F, ___m_Normals_6)); }
inline List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5 * get_m_Normals_6() const { return ___m_Normals_6; }
inline List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5 ** get_address_of_m_Normals_6() { return &___m_Normals_6; }
inline void set_m_Normals_6(List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5 * value)
{
___m_Normals_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Normals_6), (void*)value);
}
inline static int32_t get_offset_of_m_Tangents_7() { return static_cast<int32_t>(offsetof(VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F, ___m_Tangents_7)); }
inline List_1_tFF4005B40E5BA433006DA11C56DB086B1E2FC955 * get_m_Tangents_7() const { return ___m_Tangents_7; }
inline List_1_tFF4005B40E5BA433006DA11C56DB086B1E2FC955 ** get_address_of_m_Tangents_7() { return &___m_Tangents_7; }
inline void set_m_Tangents_7(List_1_tFF4005B40E5BA433006DA11C56DB086B1E2FC955 * value)
{
___m_Tangents_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Tangents_7), (void*)value);
}
inline static int32_t get_offset_of_m_Indices_8() { return static_cast<int32_t>(offsetof(VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F, ___m_Indices_8)); }
inline List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * get_m_Indices_8() const { return ___m_Indices_8; }
inline List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 ** get_address_of_m_Indices_8() { return &___m_Indices_8; }
inline void set_m_Indices_8(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * value)
{
___m_Indices_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Indices_8), (void*)value);
}
inline static int32_t get_offset_of_m_ListsInitalized_11() { return static_cast<int32_t>(offsetof(VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F, ___m_ListsInitalized_11)); }
inline bool get_m_ListsInitalized_11() const { return ___m_ListsInitalized_11; }
inline bool* get_address_of_m_ListsInitalized_11() { return &___m_ListsInitalized_11; }
inline void set_m_ListsInitalized_11(bool value)
{
___m_ListsInitalized_11 = value;
}
};
struct VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F_StaticFields
{
public:
// UnityEngine.Vector4 UnityEngine.UI.VertexHelper::s_DefaultTangent
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___s_DefaultTangent_9;
// UnityEngine.Vector3 UnityEngine.UI.VertexHelper::s_DefaultNormal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___s_DefaultNormal_10;
public:
inline static int32_t get_offset_of_s_DefaultTangent_9() { return static_cast<int32_t>(offsetof(VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F_StaticFields, ___s_DefaultTangent_9)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_s_DefaultTangent_9() const { return ___s_DefaultTangent_9; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_s_DefaultTangent_9() { return &___s_DefaultTangent_9; }
inline void set_s_DefaultTangent_9(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___s_DefaultTangent_9 = value;
}
inline static int32_t get_offset_of_s_DefaultNormal_10() { return static_cast<int32_t>(offsetof(VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F_StaticFields, ___s_DefaultNormal_10)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_s_DefaultNormal_10() const { return ___s_DefaultNormal_10; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_s_DefaultNormal_10() { return &___s_DefaultNormal_10; }
inline void set_s_DefaultNormal_10(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___s_DefaultNormal_10 = value;
}
};
// UnityEngine.UISystemProfilerApi_SampleType
struct SampleType_t2144AEAF3447ACAFCE1C13AF669F63192F8E75EC
{
public:
// System.Int32 UnityEngine.UISystemProfilerApi_SampleType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SampleType_t2144AEAF3447ACAFCE1C13AF669F63192F8E75EC, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value)
{
___delegates_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_11;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_11;
};
// System.SystemException
struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t
{
public:
public:
};
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ____impl_9;
public:
inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D get__impl_9() const { return ____impl_9; }
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * get_address_of__impl_9() { return &____impl_9; }
inline void set__impl_9(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D value)
{
____impl_9 = value;
}
};
struct Type_t_StaticFields
{
public:
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterAttribute_0;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterName_1;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterNameIgnoreCase_2;
// System.Object System.Type::Missing
RuntimeObject * ___Missing_3;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_4;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___EmptyTypes_5;
// System.Reflection.Binder System.Type::defaultBinder
Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___defaultBinder_6;
public:
inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
inline void set_FilterAttribute_0(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterAttribute_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
}
inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterName_1() const { return ___FilterName_1; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterName_1() { return &___FilterName_1; }
inline void set_FilterName_1(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
}
inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
inline void set_FilterNameIgnoreCase_2(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterNameIgnoreCase_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value);
}
inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
inline void set_Missing_3(RuntimeObject * value)
{
___Missing_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value);
}
inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
inline void set_Delimiter_4(Il2CppChar value)
{
___Delimiter_4 = value;
}
inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
inline void set_EmptyTypes_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___EmptyTypes_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
}
inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * get_defaultBinder_6() const { return ___defaultBinder_6; }
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
inline void set_defaultBinder_6(Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * value)
{
___defaultBinder_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
}
};
// UnityEngine.Component
struct Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// UnityEngine.EventSystems.AxisEventData
struct AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 : public BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5
{
public:
// UnityEngine.Vector2 UnityEngine.EventSystems.AxisEventData::<moveVector>k__BackingField
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___U3CmoveVectorU3Ek__BackingField_2;
// UnityEngine.EventSystems.MoveDirection UnityEngine.EventSystems.AxisEventData::<moveDir>k__BackingField
int32_t ___U3CmoveDirU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CmoveVectorU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442, ___U3CmoveVectorU3Ek__BackingField_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_U3CmoveVectorU3Ek__BackingField_2() const { return ___U3CmoveVectorU3Ek__BackingField_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_U3CmoveVectorU3Ek__BackingField_2() { return &___U3CmoveVectorU3Ek__BackingField_2; }
inline void set_U3CmoveVectorU3Ek__BackingField_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___U3CmoveVectorU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CmoveDirU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442, ___U3CmoveDirU3Ek__BackingField_3)); }
inline int32_t get_U3CmoveDirU3Ek__BackingField_3() const { return ___U3CmoveDirU3Ek__BackingField_3; }
inline int32_t* get_address_of_U3CmoveDirU3Ek__BackingField_3() { return &___U3CmoveDirU3Ek__BackingField_3; }
inline void set_U3CmoveDirU3Ek__BackingField_3(int32_t value)
{
___U3CmoveDirU3Ek__BackingField_3 = value;
}
};
// UnityEngine.EventSystems.EventTrigger_Entry
struct Entry_t58989269D924DCD15F196DDEDAB84B85ED4D734E : public RuntimeObject
{
public:
// UnityEngine.EventSystems.EventTriggerType UnityEngine.EventSystems.EventTrigger_Entry::eventID
int32_t ___eventID_0;
// UnityEngine.EventSystems.EventTrigger_TriggerEvent UnityEngine.EventSystems.EventTrigger_Entry::callback
TriggerEvent_tF73252408C49CDE2F1A05AA75FE09086C53A9793 * ___callback_1;
public:
inline static int32_t get_offset_of_eventID_0() { return static_cast<int32_t>(offsetof(Entry_t58989269D924DCD15F196DDEDAB84B85ED4D734E, ___eventID_0)); }
inline int32_t get_eventID_0() const { return ___eventID_0; }
inline int32_t* get_address_of_eventID_0() { return &___eventID_0; }
inline void set_eventID_0(int32_t value)
{
___eventID_0 = value;
}
inline static int32_t get_offset_of_callback_1() { return static_cast<int32_t>(offsetof(Entry_t58989269D924DCD15F196DDEDAB84B85ED4D734E, ___callback_1)); }
inline TriggerEvent_tF73252408C49CDE2F1A05AA75FE09086C53A9793 * get_callback_1() const { return ___callback_1; }
inline TriggerEvent_tF73252408C49CDE2F1A05AA75FE09086C53A9793 ** get_address_of_callback_1() { return &___callback_1; }
inline void set_callback_1(TriggerEvent_tF73252408C49CDE2F1A05AA75FE09086C53A9793 * value)
{
___callback_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___callback_1), (void*)value);
}
};
// UnityEngine.EventSystems.PointerEventData
struct PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 : public BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5
{
public:
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::<pointerEnter>k__BackingField
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___U3CpointerEnterU3Ek__BackingField_2;
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::m_PointerPress
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_PointerPress_3;
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::<lastPress>k__BackingField
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___U3ClastPressU3Ek__BackingField_4;
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::<rawPointerPress>k__BackingField
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___U3CrawPointerPressU3Ek__BackingField_5;
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::<pointerDrag>k__BackingField
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___U3CpointerDragU3Ek__BackingField_6;
// UnityEngine.EventSystems.RaycastResult UnityEngine.EventSystems.PointerEventData::<pointerCurrentRaycast>k__BackingField
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___U3CpointerCurrentRaycastU3Ek__BackingField_7;
// UnityEngine.EventSystems.RaycastResult UnityEngine.EventSystems.PointerEventData::<pointerPressRaycast>k__BackingField
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___U3CpointerPressRaycastU3Ek__BackingField_8;
// System.Collections.Generic.List`1<UnityEngine.GameObject> UnityEngine.EventSystems.PointerEventData::hovered
List_1_t3D4152882C54B77C712688E910390D5C8E030463 * ___hovered_9;
// System.Boolean UnityEngine.EventSystems.PointerEventData::<eligibleForClick>k__BackingField
bool ___U3CeligibleForClickU3Ek__BackingField_10;
// System.Int32 UnityEngine.EventSystems.PointerEventData::<pointerId>k__BackingField
int32_t ___U3CpointerIdU3Ek__BackingField_11;
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::<position>k__BackingField
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___U3CpositionU3Ek__BackingField_12;
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::<delta>k__BackingField
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___U3CdeltaU3Ek__BackingField_13;
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::<pressPosition>k__BackingField
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___U3CpressPositionU3Ek__BackingField_14;
// UnityEngine.Vector3 UnityEngine.EventSystems.PointerEventData::<worldPosition>k__BackingField
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___U3CworldPositionU3Ek__BackingField_15;
// UnityEngine.Vector3 UnityEngine.EventSystems.PointerEventData::<worldNormal>k__BackingField
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___U3CworldNormalU3Ek__BackingField_16;
// System.Single UnityEngine.EventSystems.PointerEventData::<clickTime>k__BackingField
float ___U3CclickTimeU3Ek__BackingField_17;
// System.Int32 UnityEngine.EventSystems.PointerEventData::<clickCount>k__BackingField
int32_t ___U3CclickCountU3Ek__BackingField_18;
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::<scrollDelta>k__BackingField
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___U3CscrollDeltaU3Ek__BackingField_19;
// System.Boolean UnityEngine.EventSystems.PointerEventData::<useDragThreshold>k__BackingField
bool ___U3CuseDragThresholdU3Ek__BackingField_20;
// System.Boolean UnityEngine.EventSystems.PointerEventData::<dragging>k__BackingField
bool ___U3CdraggingU3Ek__BackingField_21;
// UnityEngine.EventSystems.PointerEventData_InputButton UnityEngine.EventSystems.PointerEventData::<button>k__BackingField
int32_t ___U3CbuttonU3Ek__BackingField_22;
public:
inline static int32_t get_offset_of_U3CpointerEnterU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CpointerEnterU3Ek__BackingField_2)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_U3CpointerEnterU3Ek__BackingField_2() const { return ___U3CpointerEnterU3Ek__BackingField_2; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_U3CpointerEnterU3Ek__BackingField_2() { return &___U3CpointerEnterU3Ek__BackingField_2; }
inline void set_U3CpointerEnterU3Ek__BackingField_2(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___U3CpointerEnterU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CpointerEnterU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_m_PointerPress_3() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___m_PointerPress_3)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_PointerPress_3() const { return ___m_PointerPress_3; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_PointerPress_3() { return &___m_PointerPress_3; }
inline void set_m_PointerPress_3(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___m_PointerPress_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PointerPress_3), (void*)value);
}
inline static int32_t get_offset_of_U3ClastPressU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3ClastPressU3Ek__BackingField_4)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_U3ClastPressU3Ek__BackingField_4() const { return ___U3ClastPressU3Ek__BackingField_4; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_U3ClastPressU3Ek__BackingField_4() { return &___U3ClastPressU3Ek__BackingField_4; }
inline void set_U3ClastPressU3Ek__BackingField_4(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___U3ClastPressU3Ek__BackingField_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3ClastPressU3Ek__BackingField_4), (void*)value);
}
inline static int32_t get_offset_of_U3CrawPointerPressU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CrawPointerPressU3Ek__BackingField_5)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_U3CrawPointerPressU3Ek__BackingField_5() const { return ___U3CrawPointerPressU3Ek__BackingField_5; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_U3CrawPointerPressU3Ek__BackingField_5() { return &___U3CrawPointerPressU3Ek__BackingField_5; }
inline void set_U3CrawPointerPressU3Ek__BackingField_5(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___U3CrawPointerPressU3Ek__BackingField_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CrawPointerPressU3Ek__BackingField_5), (void*)value);
}
inline static int32_t get_offset_of_U3CpointerDragU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CpointerDragU3Ek__BackingField_6)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_U3CpointerDragU3Ek__BackingField_6() const { return ___U3CpointerDragU3Ek__BackingField_6; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_U3CpointerDragU3Ek__BackingField_6() { return &___U3CpointerDragU3Ek__BackingField_6; }
inline void set_U3CpointerDragU3Ek__BackingField_6(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___U3CpointerDragU3Ek__BackingField_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CpointerDragU3Ek__BackingField_6), (void*)value);
}
inline static int32_t get_offset_of_U3CpointerCurrentRaycastU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CpointerCurrentRaycastU3Ek__BackingField_7)); }
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 get_U3CpointerCurrentRaycastU3Ek__BackingField_7() const { return ___U3CpointerCurrentRaycastU3Ek__BackingField_7; }
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * get_address_of_U3CpointerCurrentRaycastU3Ek__BackingField_7() { return &___U3CpointerCurrentRaycastU3Ek__BackingField_7; }
inline void set_U3CpointerCurrentRaycastU3Ek__BackingField_7(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 value)
{
___U3CpointerCurrentRaycastU3Ek__BackingField_7 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CpointerCurrentRaycastU3Ek__BackingField_7))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CpointerCurrentRaycastU3Ek__BackingField_7))->___module_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_U3CpointerPressRaycastU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CpointerPressRaycastU3Ek__BackingField_8)); }
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 get_U3CpointerPressRaycastU3Ek__BackingField_8() const { return ___U3CpointerPressRaycastU3Ek__BackingField_8; }
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * get_address_of_U3CpointerPressRaycastU3Ek__BackingField_8() { return &___U3CpointerPressRaycastU3Ek__BackingField_8; }
inline void set_U3CpointerPressRaycastU3Ek__BackingField_8(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 value)
{
___U3CpointerPressRaycastU3Ek__BackingField_8 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CpointerPressRaycastU3Ek__BackingField_8))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CpointerPressRaycastU3Ek__BackingField_8))->___module_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_hovered_9() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___hovered_9)); }
inline List_1_t3D4152882C54B77C712688E910390D5C8E030463 * get_hovered_9() const { return ___hovered_9; }
inline List_1_t3D4152882C54B77C712688E910390D5C8E030463 ** get_address_of_hovered_9() { return &___hovered_9; }
inline void set_hovered_9(List_1_t3D4152882C54B77C712688E910390D5C8E030463 * value)
{
___hovered_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___hovered_9), (void*)value);
}
inline static int32_t get_offset_of_U3CeligibleForClickU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CeligibleForClickU3Ek__BackingField_10)); }
inline bool get_U3CeligibleForClickU3Ek__BackingField_10() const { return ___U3CeligibleForClickU3Ek__BackingField_10; }
inline bool* get_address_of_U3CeligibleForClickU3Ek__BackingField_10() { return &___U3CeligibleForClickU3Ek__BackingField_10; }
inline void set_U3CeligibleForClickU3Ek__BackingField_10(bool value)
{
___U3CeligibleForClickU3Ek__BackingField_10 = value;
}
inline static int32_t get_offset_of_U3CpointerIdU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CpointerIdU3Ek__BackingField_11)); }
inline int32_t get_U3CpointerIdU3Ek__BackingField_11() const { return ___U3CpointerIdU3Ek__BackingField_11; }
inline int32_t* get_address_of_U3CpointerIdU3Ek__BackingField_11() { return &___U3CpointerIdU3Ek__BackingField_11; }
inline void set_U3CpointerIdU3Ek__BackingField_11(int32_t value)
{
___U3CpointerIdU3Ek__BackingField_11 = value;
}
inline static int32_t get_offset_of_U3CpositionU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CpositionU3Ek__BackingField_12)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_U3CpositionU3Ek__BackingField_12() const { return ___U3CpositionU3Ek__BackingField_12; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_U3CpositionU3Ek__BackingField_12() { return &___U3CpositionU3Ek__BackingField_12; }
inline void set_U3CpositionU3Ek__BackingField_12(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___U3CpositionU3Ek__BackingField_12 = value;
}
inline static int32_t get_offset_of_U3CdeltaU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CdeltaU3Ek__BackingField_13)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_U3CdeltaU3Ek__BackingField_13() const { return ___U3CdeltaU3Ek__BackingField_13; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_U3CdeltaU3Ek__BackingField_13() { return &___U3CdeltaU3Ek__BackingField_13; }
inline void set_U3CdeltaU3Ek__BackingField_13(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___U3CdeltaU3Ek__BackingField_13 = value;
}
inline static int32_t get_offset_of_U3CpressPositionU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CpressPositionU3Ek__BackingField_14)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_U3CpressPositionU3Ek__BackingField_14() const { return ___U3CpressPositionU3Ek__BackingField_14; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_U3CpressPositionU3Ek__BackingField_14() { return &___U3CpressPositionU3Ek__BackingField_14; }
inline void set_U3CpressPositionU3Ek__BackingField_14(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___U3CpressPositionU3Ek__BackingField_14 = value;
}
inline static int32_t get_offset_of_U3CworldPositionU3Ek__BackingField_15() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CworldPositionU3Ek__BackingField_15)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_U3CworldPositionU3Ek__BackingField_15() const { return ___U3CworldPositionU3Ek__BackingField_15; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_U3CworldPositionU3Ek__BackingField_15() { return &___U3CworldPositionU3Ek__BackingField_15; }
inline void set_U3CworldPositionU3Ek__BackingField_15(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___U3CworldPositionU3Ek__BackingField_15 = value;
}
inline static int32_t get_offset_of_U3CworldNormalU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CworldNormalU3Ek__BackingField_16)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_U3CworldNormalU3Ek__BackingField_16() const { return ___U3CworldNormalU3Ek__BackingField_16; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_U3CworldNormalU3Ek__BackingField_16() { return &___U3CworldNormalU3Ek__BackingField_16; }
inline void set_U3CworldNormalU3Ek__BackingField_16(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___U3CworldNormalU3Ek__BackingField_16 = value;
}
inline static int32_t get_offset_of_U3CclickTimeU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CclickTimeU3Ek__BackingField_17)); }
inline float get_U3CclickTimeU3Ek__BackingField_17() const { return ___U3CclickTimeU3Ek__BackingField_17; }
inline float* get_address_of_U3CclickTimeU3Ek__BackingField_17() { return &___U3CclickTimeU3Ek__BackingField_17; }
inline void set_U3CclickTimeU3Ek__BackingField_17(float value)
{
___U3CclickTimeU3Ek__BackingField_17 = value;
}
inline static int32_t get_offset_of_U3CclickCountU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CclickCountU3Ek__BackingField_18)); }
inline int32_t get_U3CclickCountU3Ek__BackingField_18() const { return ___U3CclickCountU3Ek__BackingField_18; }
inline int32_t* get_address_of_U3CclickCountU3Ek__BackingField_18() { return &___U3CclickCountU3Ek__BackingField_18; }
inline void set_U3CclickCountU3Ek__BackingField_18(int32_t value)
{
___U3CclickCountU3Ek__BackingField_18 = value;
}
inline static int32_t get_offset_of_U3CscrollDeltaU3Ek__BackingField_19() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CscrollDeltaU3Ek__BackingField_19)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_U3CscrollDeltaU3Ek__BackingField_19() const { return ___U3CscrollDeltaU3Ek__BackingField_19; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_U3CscrollDeltaU3Ek__BackingField_19() { return &___U3CscrollDeltaU3Ek__BackingField_19; }
inline void set_U3CscrollDeltaU3Ek__BackingField_19(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___U3CscrollDeltaU3Ek__BackingField_19 = value;
}
inline static int32_t get_offset_of_U3CuseDragThresholdU3Ek__BackingField_20() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CuseDragThresholdU3Ek__BackingField_20)); }
inline bool get_U3CuseDragThresholdU3Ek__BackingField_20() const { return ___U3CuseDragThresholdU3Ek__BackingField_20; }
inline bool* get_address_of_U3CuseDragThresholdU3Ek__BackingField_20() { return &___U3CuseDragThresholdU3Ek__BackingField_20; }
inline void set_U3CuseDragThresholdU3Ek__BackingField_20(bool value)
{
___U3CuseDragThresholdU3Ek__BackingField_20 = value;
}
inline static int32_t get_offset_of_U3CdraggingU3Ek__BackingField_21() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CdraggingU3Ek__BackingField_21)); }
inline bool get_U3CdraggingU3Ek__BackingField_21() const { return ___U3CdraggingU3Ek__BackingField_21; }
inline bool* get_address_of_U3CdraggingU3Ek__BackingField_21() { return &___U3CdraggingU3Ek__BackingField_21; }
inline void set_U3CdraggingU3Ek__BackingField_21(bool value)
{
___U3CdraggingU3Ek__BackingField_21 = value;
}
inline static int32_t get_offset_of_U3CbuttonU3Ek__BackingField_22() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CbuttonU3Ek__BackingField_22)); }
inline int32_t get_U3CbuttonU3Ek__BackingField_22() const { return ___U3CbuttonU3Ek__BackingField_22; }
inline int32_t* get_address_of_U3CbuttonU3Ek__BackingField_22() { return &___U3CbuttonU3Ek__BackingField_22; }
inline void set_U3CbuttonU3Ek__BackingField_22(int32_t value)
{
___U3CbuttonU3Ek__BackingField_22 = value;
}
};
// UnityEngine.EventSystems.PointerInputModule_ButtonState
struct ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D : public RuntimeObject
{
public:
// UnityEngine.EventSystems.PointerEventData_InputButton UnityEngine.EventSystems.PointerInputModule_ButtonState::m_Button
int32_t ___m_Button_0;
// UnityEngine.EventSystems.PointerInputModule_MouseButtonEventData UnityEngine.EventSystems.PointerInputModule_ButtonState::m_EventData
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * ___m_EventData_1;
public:
inline static int32_t get_offset_of_m_Button_0() { return static_cast<int32_t>(offsetof(ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D, ___m_Button_0)); }
inline int32_t get_m_Button_0() const { return ___m_Button_0; }
inline int32_t* get_address_of_m_Button_0() { return &___m_Button_0; }
inline void set_m_Button_0(int32_t value)
{
___m_Button_0 = value;
}
inline static int32_t get_offset_of_m_EventData_1() { return static_cast<int32_t>(offsetof(ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D, ___m_EventData_1)); }
inline MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * get_m_EventData_1() const { return ___m_EventData_1; }
inline MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 ** get_address_of_m_EventData_1() { return &___m_EventData_1; }
inline void set_m_EventData_1(MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * value)
{
___m_EventData_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_EventData_1), (void*)value);
}
};
// UnityEngine.EventSystems.PointerInputModule_MouseButtonEventData
struct MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 : public RuntimeObject
{
public:
// UnityEngine.EventSystems.PointerEventData_FramePressState UnityEngine.EventSystems.PointerInputModule_MouseButtonEventData::buttonState
int32_t ___buttonState_0;
// UnityEngine.EventSystems.PointerEventData UnityEngine.EventSystems.PointerInputModule_MouseButtonEventData::buttonData
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___buttonData_1;
public:
inline static int32_t get_offset_of_buttonState_0() { return static_cast<int32_t>(offsetof(MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988, ___buttonState_0)); }
inline int32_t get_buttonState_0() const { return ___buttonState_0; }
inline int32_t* get_address_of_buttonState_0() { return &___buttonState_0; }
inline void set_buttonState_0(int32_t value)
{
___buttonState_0 = value;
}
inline static int32_t get_offset_of_buttonData_1() { return static_cast<int32_t>(offsetof(MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988, ___buttonData_1)); }
inline PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * get_buttonData_1() const { return ___buttonData_1; }
inline PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 ** get_address_of_buttonData_1() { return &___buttonData_1; }
inline void set_buttonData_1(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * value)
{
___buttonData_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buttonData_1), (void*)value);
}
};
// UnityEngine.GameObject
struct GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// UnityEngine.Mesh
struct Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// UnityEngine.Sprite
struct Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// UnityEngine.Touch
struct Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8
{
public:
// System.Int32 UnityEngine.Touch::m_FingerId
int32_t ___m_FingerId_0;
// UnityEngine.Vector2 UnityEngine.Touch::m_Position
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Position_1;
// UnityEngine.Vector2 UnityEngine.Touch::m_RawPosition
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_RawPosition_2;
// UnityEngine.Vector2 UnityEngine.Touch::m_PositionDelta
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_PositionDelta_3;
// System.Single UnityEngine.Touch::m_TimeDelta
float ___m_TimeDelta_4;
// System.Int32 UnityEngine.Touch::m_TapCount
int32_t ___m_TapCount_5;
// UnityEngine.TouchPhase UnityEngine.Touch::m_Phase
int32_t ___m_Phase_6;
// UnityEngine.TouchType UnityEngine.Touch::m_Type
int32_t ___m_Type_7;
// System.Single UnityEngine.Touch::m_Pressure
float ___m_Pressure_8;
// System.Single UnityEngine.Touch::m_maximumPossiblePressure
float ___m_maximumPossiblePressure_9;
// System.Single UnityEngine.Touch::m_Radius
float ___m_Radius_10;
// System.Single UnityEngine.Touch::m_RadiusVariance
float ___m_RadiusVariance_11;
// System.Single UnityEngine.Touch::m_AltitudeAngle
float ___m_AltitudeAngle_12;
// System.Single UnityEngine.Touch::m_AzimuthAngle
float ___m_AzimuthAngle_13;
public:
inline static int32_t get_offset_of_m_FingerId_0() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_FingerId_0)); }
inline int32_t get_m_FingerId_0() const { return ___m_FingerId_0; }
inline int32_t* get_address_of_m_FingerId_0() { return &___m_FingerId_0; }
inline void set_m_FingerId_0(int32_t value)
{
___m_FingerId_0 = value;
}
inline static int32_t get_offset_of_m_Position_1() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_Position_1)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Position_1() const { return ___m_Position_1; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Position_1() { return &___m_Position_1; }
inline void set_m_Position_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Position_1 = value;
}
inline static int32_t get_offset_of_m_RawPosition_2() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_RawPosition_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_RawPosition_2() const { return ___m_RawPosition_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_RawPosition_2() { return &___m_RawPosition_2; }
inline void set_m_RawPosition_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_RawPosition_2 = value;
}
inline static int32_t get_offset_of_m_PositionDelta_3() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_PositionDelta_3)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_PositionDelta_3() const { return ___m_PositionDelta_3; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_PositionDelta_3() { return &___m_PositionDelta_3; }
inline void set_m_PositionDelta_3(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_PositionDelta_3 = value;
}
inline static int32_t get_offset_of_m_TimeDelta_4() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_TimeDelta_4)); }
inline float get_m_TimeDelta_4() const { return ___m_TimeDelta_4; }
inline float* get_address_of_m_TimeDelta_4() { return &___m_TimeDelta_4; }
inline void set_m_TimeDelta_4(float value)
{
___m_TimeDelta_4 = value;
}
inline static int32_t get_offset_of_m_TapCount_5() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_TapCount_5)); }
inline int32_t get_m_TapCount_5() const { return ___m_TapCount_5; }
inline int32_t* get_address_of_m_TapCount_5() { return &___m_TapCount_5; }
inline void set_m_TapCount_5(int32_t value)
{
___m_TapCount_5 = value;
}
inline static int32_t get_offset_of_m_Phase_6() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_Phase_6)); }
inline int32_t get_m_Phase_6() const { return ___m_Phase_6; }
inline int32_t* get_address_of_m_Phase_6() { return &___m_Phase_6; }
inline void set_m_Phase_6(int32_t value)
{
___m_Phase_6 = value;
}
inline static int32_t get_offset_of_m_Type_7() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_Type_7)); }
inline int32_t get_m_Type_7() const { return ___m_Type_7; }
inline int32_t* get_address_of_m_Type_7() { return &___m_Type_7; }
inline void set_m_Type_7(int32_t value)
{
___m_Type_7 = value;
}
inline static int32_t get_offset_of_m_Pressure_8() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_Pressure_8)); }
inline float get_m_Pressure_8() const { return ___m_Pressure_8; }
inline float* get_address_of_m_Pressure_8() { return &___m_Pressure_8; }
inline void set_m_Pressure_8(float value)
{
___m_Pressure_8 = value;
}
inline static int32_t get_offset_of_m_maximumPossiblePressure_9() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_maximumPossiblePressure_9)); }
inline float get_m_maximumPossiblePressure_9() const { return ___m_maximumPossiblePressure_9; }
inline float* get_address_of_m_maximumPossiblePressure_9() { return &___m_maximumPossiblePressure_9; }
inline void set_m_maximumPossiblePressure_9(float value)
{
___m_maximumPossiblePressure_9 = value;
}
inline static int32_t get_offset_of_m_Radius_10() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_Radius_10)); }
inline float get_m_Radius_10() const { return ___m_Radius_10; }
inline float* get_address_of_m_Radius_10() { return &___m_Radius_10; }
inline void set_m_Radius_10(float value)
{
___m_Radius_10 = value;
}
inline static int32_t get_offset_of_m_RadiusVariance_11() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_RadiusVariance_11)); }
inline float get_m_RadiusVariance_11() const { return ___m_RadiusVariance_11; }
inline float* get_address_of_m_RadiusVariance_11() { return &___m_RadiusVariance_11; }
inline void set_m_RadiusVariance_11(float value)
{
___m_RadiusVariance_11 = value;
}
inline static int32_t get_offset_of_m_AltitudeAngle_12() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_AltitudeAngle_12)); }
inline float get_m_AltitudeAngle_12() const { return ___m_AltitudeAngle_12; }
inline float* get_address_of_m_AltitudeAngle_12() { return &___m_AltitudeAngle_12; }
inline void set_m_AltitudeAngle_12(float value)
{
___m_AltitudeAngle_12 = value;
}
inline static int32_t get_offset_of_m_AzimuthAngle_13() { return static_cast<int32_t>(offsetof(Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8, ___m_AzimuthAngle_13)); }
inline float get_m_AzimuthAngle_13() const { return ___m_AzimuthAngle_13; }
inline float* get_address_of_m_AzimuthAngle_13() { return &___m_AzimuthAngle_13; }
inline void set_m_AzimuthAngle_13(float value)
{
___m_AzimuthAngle_13 = value;
}
};
// UnityEngine.UI.CoroutineTween.ColorTween
struct ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228
{
public:
// UnityEngine.UI.CoroutineTween.ColorTween_ColorTweenCallback UnityEngine.UI.CoroutineTween.ColorTween::m_Target
ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 * ___m_Target_0;
// UnityEngine.Color UnityEngine.UI.CoroutineTween.ColorTween::m_StartColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_StartColor_1;
// UnityEngine.Color UnityEngine.UI.CoroutineTween.ColorTween::m_TargetColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_TargetColor_2;
// UnityEngine.UI.CoroutineTween.ColorTween_ColorTweenMode UnityEngine.UI.CoroutineTween.ColorTween::m_TweenMode
int32_t ___m_TweenMode_3;
// System.Single UnityEngine.UI.CoroutineTween.ColorTween::m_Duration
float ___m_Duration_4;
// System.Boolean UnityEngine.UI.CoroutineTween.ColorTween::m_IgnoreTimeScale
bool ___m_IgnoreTimeScale_5;
public:
inline static int32_t get_offset_of_m_Target_0() { return static_cast<int32_t>(offsetof(ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228, ___m_Target_0)); }
inline ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 * get_m_Target_0() const { return ___m_Target_0; }
inline ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 ** get_address_of_m_Target_0() { return &___m_Target_0; }
inline void set_m_Target_0(ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 * value)
{
___m_Target_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Target_0), (void*)value);
}
inline static int32_t get_offset_of_m_StartColor_1() { return static_cast<int32_t>(offsetof(ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228, ___m_StartColor_1)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_StartColor_1() const { return ___m_StartColor_1; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_StartColor_1() { return &___m_StartColor_1; }
inline void set_m_StartColor_1(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_StartColor_1 = value;
}
inline static int32_t get_offset_of_m_TargetColor_2() { return static_cast<int32_t>(offsetof(ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228, ___m_TargetColor_2)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_TargetColor_2() const { return ___m_TargetColor_2; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_TargetColor_2() { return &___m_TargetColor_2; }
inline void set_m_TargetColor_2(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_TargetColor_2 = value;
}
inline static int32_t get_offset_of_m_TweenMode_3() { return static_cast<int32_t>(offsetof(ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228, ___m_TweenMode_3)); }
inline int32_t get_m_TweenMode_3() const { return ___m_TweenMode_3; }
inline int32_t* get_address_of_m_TweenMode_3() { return &___m_TweenMode_3; }
inline void set_m_TweenMode_3(int32_t value)
{
___m_TweenMode_3 = value;
}
inline static int32_t get_offset_of_m_Duration_4() { return static_cast<int32_t>(offsetof(ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228, ___m_Duration_4)); }
inline float get_m_Duration_4() const { return ___m_Duration_4; }
inline float* get_address_of_m_Duration_4() { return &___m_Duration_4; }
inline void set_m_Duration_4(float value)
{
___m_Duration_4 = value;
}
inline static int32_t get_offset_of_m_IgnoreTimeScale_5() { return static_cast<int32_t>(offsetof(ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228, ___m_IgnoreTimeScale_5)); }
inline bool get_m_IgnoreTimeScale_5() const { return ___m_IgnoreTimeScale_5; }
inline bool* get_address_of_m_IgnoreTimeScale_5() { return &___m_IgnoreTimeScale_5; }
inline void set_m_IgnoreTimeScale_5(bool value)
{
___m_IgnoreTimeScale_5 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UI.CoroutineTween.ColorTween
struct ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228_marshaled_pinvoke
{
ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 * ___m_Target_0;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_StartColor_1;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_TargetColor_2;
int32_t ___m_TweenMode_3;
float ___m_Duration_4;
int32_t ___m_IgnoreTimeScale_5;
};
// Native definition for COM marshalling of UnityEngine.UI.CoroutineTween.ColorTween
struct ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228_marshaled_com
{
ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 * ___m_Target_0;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_StartColor_1;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_TargetColor_2;
int32_t ___m_TweenMode_3;
float ___m_Duration_4;
int32_t ___m_IgnoreTimeScale_5;
};
// UnityEngine.UI.Navigation
struct Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07
{
public:
// UnityEngine.UI.Navigation_Mode UnityEngine.UI.Navigation::m_Mode
int32_t ___m_Mode_0;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnUp
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnUp_1;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnDown
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnDown_2;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnLeft
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnLeft_3;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnRight
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnRight_4;
public:
inline static int32_t get_offset_of_m_Mode_0() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_Mode_0)); }
inline int32_t get_m_Mode_0() const { return ___m_Mode_0; }
inline int32_t* get_address_of_m_Mode_0() { return &___m_Mode_0; }
inline void set_m_Mode_0(int32_t value)
{
___m_Mode_0 = value;
}
inline static int32_t get_offset_of_m_SelectOnUp_1() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnUp_1)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnUp_1() const { return ___m_SelectOnUp_1; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnUp_1() { return &___m_SelectOnUp_1; }
inline void set_m_SelectOnUp_1(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___m_SelectOnUp_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnUp_1), (void*)value);
}
inline static int32_t get_offset_of_m_SelectOnDown_2() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnDown_2)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnDown_2() const { return ___m_SelectOnDown_2; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnDown_2() { return &___m_SelectOnDown_2; }
inline void set_m_SelectOnDown_2(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___m_SelectOnDown_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnDown_2), (void*)value);
}
inline static int32_t get_offset_of_m_SelectOnLeft_3() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnLeft_3)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnLeft_3() const { return ___m_SelectOnLeft_3; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnLeft_3() { return &___m_SelectOnLeft_3; }
inline void set_m_SelectOnLeft_3(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___m_SelectOnLeft_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnLeft_3), (void*)value);
}
inline static int32_t get_offset_of_m_SelectOnRight_4() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnRight_4)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnRight_4() const { return ___m_SelectOnRight_4; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnRight_4() { return &___m_SelectOnRight_4; }
inline void set_m_SelectOnRight_4(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___m_SelectOnRight_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnRight_4), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UI.Navigation
struct Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_marshaled_pinvoke
{
int32_t ___m_Mode_0;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnUp_1;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnDown_2;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnLeft_3;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnRight_4;
};
// Native definition for COM marshalling of UnityEngine.UI.Navigation
struct Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_marshaled_com
{
int32_t ___m_Mode_0;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnUp_1;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnDown_2;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnLeft_3;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnRight_4;
};
// System.Comparison`1<UnityEngine.EventSystems.RaycastResult>
struct Comparison_1_t80059259E2DC99461F7DF9B43BA93054613AE703 : public MulticastDelegate_t
{
public:
public:
};
// System.Comparison`1<UnityEngine.UI.ICanvasElement>
struct Comparison_1_tE7E69DEDE3A7782BEEADFF223EE57D6F7F626AEC : public MulticastDelegate_t
{
public:
public:
};
// System.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// UnityEngine.Behaviour
struct Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8 : public Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621
{
public:
public:
};
// UnityEngine.Canvas_WillRenderCanvases
struct WillRenderCanvases_tBD5AD090B5938021DEAA679A5AEEA790F60A8BEE : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Collider
struct Collider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF : public Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621
{
public:
public:
};
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IBeginDragHandler>
struct EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.ICancelHandler>
struct EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IDeselectHandler>
struct EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IDragHandler>
struct EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IDropHandler>
struct EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IEndDragHandler>
struct EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IInitializePotentialDragHandler>
struct EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IMoveHandler>
struct EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerClickHandler>
struct EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerDownHandler>
struct EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerEnterHandler>
struct EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerExitHandler>
struct EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerUpHandler>
struct EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IScrollHandler>
struct EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.ISelectHandler>
struct EventFunction_1_t7521247C87411935E8A2CA38683533083459473F : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.ISubmitHandler>
struct EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IUpdateSelectedHandler>
struct EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Events.UnityAction
struct UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Events.UnityAction`1<System.Boolean>
struct UnityAction_1_tB994D127B02789CE2010397AEF756615E5F84FDC : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Events.UnityAction`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>>
struct UnityAction_1_t3B6DA5D18F5A6D34776438B5CD187C01229E969A : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Events.UnityAction`1<System.Single>
struct UnityAction_1_t0064196FB7635B812E65BA9FD08D39F68C75DCD9 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Events.UnityAction`1<UnityEngine.Color>
struct UnityAction_1_t8523D5D21ADA168AED3BD9CFFCED8FF87199DE9D : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Renderer
struct Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 : public Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621
{
public:
public:
};
// UnityEngine.Transform
struct Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA : public Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621
{
public:
public:
};
// UnityEngine.UI.ReflectionMethodsCache_GetRayIntersectionAllCallback
struct GetRayIntersectionAllCallback_t68C2581CCF05E868297EBD3F3361274954845095 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.UI.ReflectionMethodsCache_GetRayIntersectionAllNonAllocCallback
struct GetRayIntersectionAllNonAllocCallback_tAD7508D45DB6679B6394983579AD18D967CC2AD4 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.UI.ReflectionMethodsCache_GetRaycastNonAllocCallback
struct GetRaycastNonAllocCallback_tC13D9767CFF00EAB26E9FCC4BDD505F0721A2B4D : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.UI.ReflectionMethodsCache_RaycastAllCallback
struct RaycastAllCallback_t751407A44270E02FAA43D0846A58EE6A8C4AE1CE : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Camera
struct Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 : public Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8
{
public:
public:
};
struct Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34_StaticFields
{
public:
// UnityEngine.Camera_CameraCallback UnityEngine.Camera::onPreCull
CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0 * ___onPreCull_4;
// UnityEngine.Camera_CameraCallback UnityEngine.Camera::onPreRender
CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0 * ___onPreRender_5;
// UnityEngine.Camera_CameraCallback UnityEngine.Camera::onPostRender
CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0 * ___onPostRender_6;
public:
inline static int32_t get_offset_of_onPreCull_4() { return static_cast<int32_t>(offsetof(Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34_StaticFields, ___onPreCull_4)); }
inline CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0 * get_onPreCull_4() const { return ___onPreCull_4; }
inline CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0 ** get_address_of_onPreCull_4() { return &___onPreCull_4; }
inline void set_onPreCull_4(CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0 * value)
{
___onPreCull_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onPreCull_4), (void*)value);
}
inline static int32_t get_offset_of_onPreRender_5() { return static_cast<int32_t>(offsetof(Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34_StaticFields, ___onPreRender_5)); }
inline CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0 * get_onPreRender_5() const { return ___onPreRender_5; }
inline CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0 ** get_address_of_onPreRender_5() { return &___onPreRender_5; }
inline void set_onPreRender_5(CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0 * value)
{
___onPreRender_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onPreRender_5), (void*)value);
}
inline static int32_t get_offset_of_onPostRender_6() { return static_cast<int32_t>(offsetof(Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34_StaticFields, ___onPostRender_6)); }
inline CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0 * get_onPostRender_6() const { return ___onPostRender_6; }
inline CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0 ** get_address_of_onPostRender_6() { return &___onPostRender_6; }
inline void set_onPostRender_6(CameraCallback_t8BBB42AA08D7498DFC11F4128117055BC7F0B9D0 * value)
{
___onPostRender_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onPostRender_6), (void*)value);
}
};
// UnityEngine.Canvas
struct Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 : public Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8
{
public:
public:
};
struct Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_StaticFields
{
public:
// UnityEngine.Canvas_WillRenderCanvases UnityEngine.Canvas::willRenderCanvases
WillRenderCanvases_tBD5AD090B5938021DEAA679A5AEEA790F60A8BEE * ___willRenderCanvases_4;
public:
inline static int32_t get_offset_of_willRenderCanvases_4() { return static_cast<int32_t>(offsetof(Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_StaticFields, ___willRenderCanvases_4)); }
inline WillRenderCanvases_tBD5AD090B5938021DEAA679A5AEEA790F60A8BEE * get_willRenderCanvases_4() const { return ___willRenderCanvases_4; }
inline WillRenderCanvases_tBD5AD090B5938021DEAA679A5AEEA790F60A8BEE ** get_address_of_willRenderCanvases_4() { return &___willRenderCanvases_4; }
inline void set_willRenderCanvases_4(WillRenderCanvases_tBD5AD090B5938021DEAA679A5AEEA790F60A8BEE * value)
{
___willRenderCanvases_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___willRenderCanvases_4), (void*)value);
}
};
// UnityEngine.CanvasGroup
struct CanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90 : public Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8
{
public:
public:
};
// UnityEngine.Collider2D
struct Collider2D_tD64BE58E48B95D89D349FEAB54D0FE2EEBF83379 : public Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8
{
public:
public:
};
// UnityEngine.MonoBehaviour
struct MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429 : public Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8
{
public:
public:
};
// UnityEngine.RectTransform
struct RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 : public Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA
{
public:
public:
};
struct RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_StaticFields
{
public:
// UnityEngine.RectTransform_ReapplyDrivenProperties UnityEngine.RectTransform::reapplyDrivenProperties
ReapplyDrivenProperties_t431F4FBD9C59AE097FE33C4354CC6251B01B527D * ___reapplyDrivenProperties_4;
public:
inline static int32_t get_offset_of_reapplyDrivenProperties_4() { return static_cast<int32_t>(offsetof(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_StaticFields, ___reapplyDrivenProperties_4)); }
inline ReapplyDrivenProperties_t431F4FBD9C59AE097FE33C4354CC6251B01B527D * get_reapplyDrivenProperties_4() const { return ___reapplyDrivenProperties_4; }
inline ReapplyDrivenProperties_t431F4FBD9C59AE097FE33C4354CC6251B01B527D ** get_address_of_reapplyDrivenProperties_4() { return &___reapplyDrivenProperties_4; }
inline void set_reapplyDrivenProperties_4(ReapplyDrivenProperties_t431F4FBD9C59AE097FE33C4354CC6251B01B527D * value)
{
___reapplyDrivenProperties_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___reapplyDrivenProperties_4), (void*)value);
}
};
// UnityEngine.SpriteRenderer
struct SpriteRenderer_tCD51E875611195DBB91123B68434881D3441BC6F : public Renderer_t0556D67DD582620D1F495627EDE30D03284151F4
{
public:
public:
};
// UnityEngine.EventSystems.EventTrigger
struct EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// System.Collections.Generic.List`1<UnityEngine.EventSystems.EventTrigger_Entry> UnityEngine.EventSystems.EventTrigger::m_Delegates
List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 * ___m_Delegates_4;
public:
inline static int32_t get_offset_of_m_Delegates_4() { return static_cast<int32_t>(offsetof(EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298, ___m_Delegates_4)); }
inline List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 * get_m_Delegates_4() const { return ___m_Delegates_4; }
inline List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 ** get_address_of_m_Delegates_4() { return &___m_Delegates_4; }
inline void set_m_Delegates_4(List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 * value)
{
___m_Delegates_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Delegates_4), (void*)value);
}
};
// UnityEngine.EventSystems.UIBehaviour
struct UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
public:
};
// UnityEngine.UI.Dropdown_DropdownItem
struct DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// UnityEngine.UI.Text UnityEngine.UI.Dropdown_DropdownItem::m_Text
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___m_Text_4;
// UnityEngine.UI.Image UnityEngine.UI.Dropdown_DropdownItem::m_Image
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * ___m_Image_5;
// UnityEngine.RectTransform UnityEngine.UI.Dropdown_DropdownItem::m_RectTransform
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_RectTransform_6;
// UnityEngine.UI.Toggle UnityEngine.UI.Dropdown_DropdownItem::m_Toggle
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * ___m_Toggle_7;
public:
inline static int32_t get_offset_of_m_Text_4() { return static_cast<int32_t>(offsetof(DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46, ___m_Text_4)); }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * get_m_Text_4() const { return ___m_Text_4; }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 ** get_address_of_m_Text_4() { return &___m_Text_4; }
inline void set_m_Text_4(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * value)
{
___m_Text_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Text_4), (void*)value);
}
inline static int32_t get_offset_of_m_Image_5() { return static_cast<int32_t>(offsetof(DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46, ___m_Image_5)); }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * get_m_Image_5() const { return ___m_Image_5; }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E ** get_address_of_m_Image_5() { return &___m_Image_5; }
inline void set_m_Image_5(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * value)
{
___m_Image_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Image_5), (void*)value);
}
inline static int32_t get_offset_of_m_RectTransform_6() { return static_cast<int32_t>(offsetof(DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46, ___m_RectTransform_6)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_RectTransform_6() const { return ___m_RectTransform_6; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_RectTransform_6() { return &___m_RectTransform_6; }
inline void set_m_RectTransform_6(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_RectTransform_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RectTransform_6), (void*)value);
}
inline static int32_t get_offset_of_m_Toggle_7() { return static_cast<int32_t>(offsetof(DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46, ___m_Toggle_7)); }
inline Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * get_m_Toggle_7() const { return ___m_Toggle_7; }
inline Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 ** get_address_of_m_Toggle_7() { return &___m_Toggle_7; }
inline void set_m_Toggle_7(Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * value)
{
___m_Toggle_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Toggle_7), (void*)value);
}
};
// UnityEngine.EventSystems.BaseInput
struct BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 : public UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70
{
public:
public:
};
// UnityEngine.EventSystems.BaseInputModule
struct BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 : public UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70
{
public:
// System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult> UnityEngine.EventSystems.BaseInputModule::m_RaycastResultCache
List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * ___m_RaycastResultCache_4;
// UnityEngine.EventSystems.AxisEventData UnityEngine.EventSystems.BaseInputModule::m_AxisEventData
AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * ___m_AxisEventData_5;
// UnityEngine.EventSystems.EventSystem UnityEngine.EventSystems.BaseInputModule::m_EventSystem
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * ___m_EventSystem_6;
// UnityEngine.EventSystems.BaseEventData UnityEngine.EventSystems.BaseInputModule::m_BaseEventData
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___m_BaseEventData_7;
// UnityEngine.EventSystems.BaseInput UnityEngine.EventSystems.BaseInputModule::m_InputOverride
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * ___m_InputOverride_8;
// UnityEngine.EventSystems.BaseInput UnityEngine.EventSystems.BaseInputModule::m_DefaultInput
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * ___m_DefaultInput_9;
public:
inline static int32_t get_offset_of_m_RaycastResultCache_4() { return static_cast<int32_t>(offsetof(BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939, ___m_RaycastResultCache_4)); }
inline List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * get_m_RaycastResultCache_4() const { return ___m_RaycastResultCache_4; }
inline List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 ** get_address_of_m_RaycastResultCache_4() { return &___m_RaycastResultCache_4; }
inline void set_m_RaycastResultCache_4(List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * value)
{
___m_RaycastResultCache_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RaycastResultCache_4), (void*)value);
}
inline static int32_t get_offset_of_m_AxisEventData_5() { return static_cast<int32_t>(offsetof(BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939, ___m_AxisEventData_5)); }
inline AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * get_m_AxisEventData_5() const { return ___m_AxisEventData_5; }
inline AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 ** get_address_of_m_AxisEventData_5() { return &___m_AxisEventData_5; }
inline void set_m_AxisEventData_5(AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * value)
{
___m_AxisEventData_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_AxisEventData_5), (void*)value);
}
inline static int32_t get_offset_of_m_EventSystem_6() { return static_cast<int32_t>(offsetof(BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939, ___m_EventSystem_6)); }
inline EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * get_m_EventSystem_6() const { return ___m_EventSystem_6; }
inline EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 ** get_address_of_m_EventSystem_6() { return &___m_EventSystem_6; }
inline void set_m_EventSystem_6(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * value)
{
___m_EventSystem_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_EventSystem_6), (void*)value);
}
inline static int32_t get_offset_of_m_BaseEventData_7() { return static_cast<int32_t>(offsetof(BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939, ___m_BaseEventData_7)); }
inline BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * get_m_BaseEventData_7() const { return ___m_BaseEventData_7; }
inline BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 ** get_address_of_m_BaseEventData_7() { return &___m_BaseEventData_7; }
inline void set_m_BaseEventData_7(BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * value)
{
___m_BaseEventData_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_BaseEventData_7), (void*)value);
}
inline static int32_t get_offset_of_m_InputOverride_8() { return static_cast<int32_t>(offsetof(BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939, ___m_InputOverride_8)); }
inline BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * get_m_InputOverride_8() const { return ___m_InputOverride_8; }
inline BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 ** get_address_of_m_InputOverride_8() { return &___m_InputOverride_8; }
inline void set_m_InputOverride_8(BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * value)
{
___m_InputOverride_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InputOverride_8), (void*)value);
}
inline static int32_t get_offset_of_m_DefaultInput_9() { return static_cast<int32_t>(offsetof(BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939, ___m_DefaultInput_9)); }
inline BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * get_m_DefaultInput_9() const { return ___m_DefaultInput_9; }
inline BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 ** get_address_of_m_DefaultInput_9() { return &___m_DefaultInput_9; }
inline void set_m_DefaultInput_9(BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * value)
{
___m_DefaultInput_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DefaultInput_9), (void*)value);
}
};
// UnityEngine.EventSystems.BaseRaycaster
struct BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 : public UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70
{
public:
// UnityEngine.EventSystems.BaseRaycaster UnityEngine.EventSystems.BaseRaycaster::m_RootRaycaster
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___m_RootRaycaster_4;
public:
inline static int32_t get_offset_of_m_RootRaycaster_4() { return static_cast<int32_t>(offsetof(BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966, ___m_RootRaycaster_4)); }
inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * get_m_RootRaycaster_4() const { return ___m_RootRaycaster_4; }
inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 ** get_address_of_m_RootRaycaster_4() { return &___m_RootRaycaster_4; }
inline void set_m_RootRaycaster_4(BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * value)
{
___m_RootRaycaster_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RootRaycaster_4), (void*)value);
}
};
// UnityEngine.EventSystems.EventSystem
struct EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 : public UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70
{
public:
// System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule> UnityEngine.EventSystems.EventSystem::m_SystemInputModules
List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 * ___m_SystemInputModules_4;
// UnityEngine.EventSystems.BaseInputModule UnityEngine.EventSystems.EventSystem::m_CurrentInputModule
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * ___m_CurrentInputModule_5;
// UnityEngine.GameObject UnityEngine.EventSystems.EventSystem::m_FirstSelected
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_FirstSelected_7;
// System.Boolean UnityEngine.EventSystems.EventSystem::m_sendNavigationEvents
bool ___m_sendNavigationEvents_8;
// System.Int32 UnityEngine.EventSystems.EventSystem::m_DragThreshold
int32_t ___m_DragThreshold_9;
// UnityEngine.GameObject UnityEngine.EventSystems.EventSystem::m_CurrentSelected
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_CurrentSelected_10;
// System.Boolean UnityEngine.EventSystems.EventSystem::m_HasFocus
bool ___m_HasFocus_11;
// System.Boolean UnityEngine.EventSystems.EventSystem::m_SelectionGuard
bool ___m_SelectionGuard_12;
// UnityEngine.EventSystems.BaseEventData UnityEngine.EventSystems.EventSystem::m_DummyData
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___m_DummyData_13;
public:
inline static int32_t get_offset_of_m_SystemInputModules_4() { return static_cast<int32_t>(offsetof(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77, ___m_SystemInputModules_4)); }
inline List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 * get_m_SystemInputModules_4() const { return ___m_SystemInputModules_4; }
inline List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 ** get_address_of_m_SystemInputModules_4() { return &___m_SystemInputModules_4; }
inline void set_m_SystemInputModules_4(List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 * value)
{
___m_SystemInputModules_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SystemInputModules_4), (void*)value);
}
inline static int32_t get_offset_of_m_CurrentInputModule_5() { return static_cast<int32_t>(offsetof(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77, ___m_CurrentInputModule_5)); }
inline BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * get_m_CurrentInputModule_5() const { return ___m_CurrentInputModule_5; }
inline BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 ** get_address_of_m_CurrentInputModule_5() { return &___m_CurrentInputModule_5; }
inline void set_m_CurrentInputModule_5(BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * value)
{
___m_CurrentInputModule_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CurrentInputModule_5), (void*)value);
}
inline static int32_t get_offset_of_m_FirstSelected_7() { return static_cast<int32_t>(offsetof(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77, ___m_FirstSelected_7)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_FirstSelected_7() const { return ___m_FirstSelected_7; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_FirstSelected_7() { return &___m_FirstSelected_7; }
inline void set_m_FirstSelected_7(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___m_FirstSelected_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FirstSelected_7), (void*)value);
}
inline static int32_t get_offset_of_m_sendNavigationEvents_8() { return static_cast<int32_t>(offsetof(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77, ___m_sendNavigationEvents_8)); }
inline bool get_m_sendNavigationEvents_8() const { return ___m_sendNavigationEvents_8; }
inline bool* get_address_of_m_sendNavigationEvents_8() { return &___m_sendNavigationEvents_8; }
inline void set_m_sendNavigationEvents_8(bool value)
{
___m_sendNavigationEvents_8 = value;
}
inline static int32_t get_offset_of_m_DragThreshold_9() { return static_cast<int32_t>(offsetof(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77, ___m_DragThreshold_9)); }
inline int32_t get_m_DragThreshold_9() const { return ___m_DragThreshold_9; }
inline int32_t* get_address_of_m_DragThreshold_9() { return &___m_DragThreshold_9; }
inline void set_m_DragThreshold_9(int32_t value)
{
___m_DragThreshold_9 = value;
}
inline static int32_t get_offset_of_m_CurrentSelected_10() { return static_cast<int32_t>(offsetof(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77, ___m_CurrentSelected_10)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_CurrentSelected_10() const { return ___m_CurrentSelected_10; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_CurrentSelected_10() { return &___m_CurrentSelected_10; }
inline void set_m_CurrentSelected_10(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___m_CurrentSelected_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CurrentSelected_10), (void*)value);
}
inline static int32_t get_offset_of_m_HasFocus_11() { return static_cast<int32_t>(offsetof(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77, ___m_HasFocus_11)); }
inline bool get_m_HasFocus_11() const { return ___m_HasFocus_11; }
inline bool* get_address_of_m_HasFocus_11() { return &___m_HasFocus_11; }
inline void set_m_HasFocus_11(bool value)
{
___m_HasFocus_11 = value;
}
inline static int32_t get_offset_of_m_SelectionGuard_12() { return static_cast<int32_t>(offsetof(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77, ___m_SelectionGuard_12)); }
inline bool get_m_SelectionGuard_12() const { return ___m_SelectionGuard_12; }
inline bool* get_address_of_m_SelectionGuard_12() { return &___m_SelectionGuard_12; }
inline void set_m_SelectionGuard_12(bool value)
{
___m_SelectionGuard_12 = value;
}
inline static int32_t get_offset_of_m_DummyData_13() { return static_cast<int32_t>(offsetof(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77, ___m_DummyData_13)); }
inline BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * get_m_DummyData_13() const { return ___m_DummyData_13; }
inline BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 ** get_address_of_m_DummyData_13() { return &___m_DummyData_13; }
inline void set_m_DummyData_13(BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * value)
{
___m_DummyData_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DummyData_13), (void*)value);
}
};
struct EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_StaticFields
{
public:
// System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem> UnityEngine.EventSystems.EventSystem::m_EventSystems
List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B * ___m_EventSystems_6;
// System.Comparison`1<UnityEngine.EventSystems.RaycastResult> UnityEngine.EventSystems.EventSystem::s_RaycastComparer
Comparison_1_t80059259E2DC99461F7DF9B43BA93054613AE703 * ___s_RaycastComparer_14;
public:
inline static int32_t get_offset_of_m_EventSystems_6() { return static_cast<int32_t>(offsetof(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_StaticFields, ___m_EventSystems_6)); }
inline List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B * get_m_EventSystems_6() const { return ___m_EventSystems_6; }
inline List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B ** get_address_of_m_EventSystems_6() { return &___m_EventSystems_6; }
inline void set_m_EventSystems_6(List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B * value)
{
___m_EventSystems_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_EventSystems_6), (void*)value);
}
inline static int32_t get_offset_of_s_RaycastComparer_14() { return static_cast<int32_t>(offsetof(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_StaticFields, ___s_RaycastComparer_14)); }
inline Comparison_1_t80059259E2DC99461F7DF9B43BA93054613AE703 * get_s_RaycastComparer_14() const { return ___s_RaycastComparer_14; }
inline Comparison_1_t80059259E2DC99461F7DF9B43BA93054613AE703 ** get_address_of_s_RaycastComparer_14() { return &___s_RaycastComparer_14; }
inline void set_s_RaycastComparer_14(Comparison_1_t80059259E2DC99461F7DF9B43BA93054613AE703 * value)
{
___s_RaycastComparer_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_RaycastComparer_14), (void*)value);
}
};
// UnityEngine.UI.AspectRatioFitter
struct AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6 : public UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70
{
public:
// UnityEngine.UI.AspectRatioFitter_AspectMode UnityEngine.UI.AspectRatioFitter::m_AspectMode
int32_t ___m_AspectMode_4;
// System.Single UnityEngine.UI.AspectRatioFitter::m_AspectRatio
float ___m_AspectRatio_5;
// UnityEngine.RectTransform UnityEngine.UI.AspectRatioFitter::m_Rect
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_Rect_6;
// System.Boolean UnityEngine.UI.AspectRatioFitter::m_DelayedSetDirty
bool ___m_DelayedSetDirty_7;
// UnityEngine.DrivenRectTransformTracker UnityEngine.UI.AspectRatioFitter::m_Tracker
DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 ___m_Tracker_8;
public:
inline static int32_t get_offset_of_m_AspectMode_4() { return static_cast<int32_t>(offsetof(AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6, ___m_AspectMode_4)); }
inline int32_t get_m_AspectMode_4() const { return ___m_AspectMode_4; }
inline int32_t* get_address_of_m_AspectMode_4() { return &___m_AspectMode_4; }
inline void set_m_AspectMode_4(int32_t value)
{
___m_AspectMode_4 = value;
}
inline static int32_t get_offset_of_m_AspectRatio_5() { return static_cast<int32_t>(offsetof(AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6, ___m_AspectRatio_5)); }
inline float get_m_AspectRatio_5() const { return ___m_AspectRatio_5; }
inline float* get_address_of_m_AspectRatio_5() { return &___m_AspectRatio_5; }
inline void set_m_AspectRatio_5(float value)
{
___m_AspectRatio_5 = value;
}
inline static int32_t get_offset_of_m_Rect_6() { return static_cast<int32_t>(offsetof(AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6, ___m_Rect_6)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_Rect_6() const { return ___m_Rect_6; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_Rect_6() { return &___m_Rect_6; }
inline void set_m_Rect_6(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_Rect_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Rect_6), (void*)value);
}
inline static int32_t get_offset_of_m_DelayedSetDirty_7() { return static_cast<int32_t>(offsetof(AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6, ___m_DelayedSetDirty_7)); }
inline bool get_m_DelayedSetDirty_7() const { return ___m_DelayedSetDirty_7; }
inline bool* get_address_of_m_DelayedSetDirty_7() { return &___m_DelayedSetDirty_7; }
inline void set_m_DelayedSetDirty_7(bool value)
{
___m_DelayedSetDirty_7 = value;
}
inline static int32_t get_offset_of_m_Tracker_8() { return static_cast<int32_t>(offsetof(AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6, ___m_Tracker_8)); }
inline DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 get_m_Tracker_8() const { return ___m_Tracker_8; }
inline DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 * get_address_of_m_Tracker_8() { return &___m_Tracker_8; }
inline void set_m_Tracker_8(DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 value)
{
___m_Tracker_8 = value;
}
};
// UnityEngine.UI.BaseMeshEffect
struct BaseMeshEffect_t72759F31F9D204D7EFB6B45097873809D4524BA5 : public UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70
{
public:
// UnityEngine.UI.Graphic UnityEngine.UI.BaseMeshEffect::m_Graphic
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * ___m_Graphic_4;
public:
inline static int32_t get_offset_of_m_Graphic_4() { return static_cast<int32_t>(offsetof(BaseMeshEffect_t72759F31F9D204D7EFB6B45097873809D4524BA5, ___m_Graphic_4)); }
inline Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * get_m_Graphic_4() const { return ___m_Graphic_4; }
inline Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 ** get_address_of_m_Graphic_4() { return &___m_Graphic_4; }
inline void set_m_Graphic_4(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * value)
{
___m_Graphic_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Graphic_4), (void*)value);
}
};
// UnityEngine.UI.CanvasScaler
struct CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 : public UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70
{
public:
// UnityEngine.UI.CanvasScaler_ScaleMode UnityEngine.UI.CanvasScaler::m_UiScaleMode
int32_t ___m_UiScaleMode_4;
// System.Single UnityEngine.UI.CanvasScaler::m_ReferencePixelsPerUnit
float ___m_ReferencePixelsPerUnit_5;
// System.Single UnityEngine.UI.CanvasScaler::m_ScaleFactor
float ___m_ScaleFactor_6;
// UnityEngine.Vector2 UnityEngine.UI.CanvasScaler::m_ReferenceResolution
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_ReferenceResolution_7;
// UnityEngine.UI.CanvasScaler_ScreenMatchMode UnityEngine.UI.CanvasScaler::m_ScreenMatchMode
int32_t ___m_ScreenMatchMode_8;
// System.Single UnityEngine.UI.CanvasScaler::m_MatchWidthOrHeight
float ___m_MatchWidthOrHeight_9;
// UnityEngine.UI.CanvasScaler_Unit UnityEngine.UI.CanvasScaler::m_PhysicalUnit
int32_t ___m_PhysicalUnit_11;
// System.Single UnityEngine.UI.CanvasScaler::m_FallbackScreenDPI
float ___m_FallbackScreenDPI_12;
// System.Single UnityEngine.UI.CanvasScaler::m_DefaultSpriteDPI
float ___m_DefaultSpriteDPI_13;
// System.Single UnityEngine.UI.CanvasScaler::m_DynamicPixelsPerUnit
float ___m_DynamicPixelsPerUnit_14;
// UnityEngine.Canvas UnityEngine.UI.CanvasScaler::m_Canvas
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * ___m_Canvas_15;
// System.Single UnityEngine.UI.CanvasScaler::m_PrevScaleFactor
float ___m_PrevScaleFactor_16;
// System.Single UnityEngine.UI.CanvasScaler::m_PrevReferencePixelsPerUnit
float ___m_PrevReferencePixelsPerUnit_17;
public:
inline static int32_t get_offset_of_m_UiScaleMode_4() { return static_cast<int32_t>(offsetof(CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564, ___m_UiScaleMode_4)); }
inline int32_t get_m_UiScaleMode_4() const { return ___m_UiScaleMode_4; }
inline int32_t* get_address_of_m_UiScaleMode_4() { return &___m_UiScaleMode_4; }
inline void set_m_UiScaleMode_4(int32_t value)
{
___m_UiScaleMode_4 = value;
}
inline static int32_t get_offset_of_m_ReferencePixelsPerUnit_5() { return static_cast<int32_t>(offsetof(CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564, ___m_ReferencePixelsPerUnit_5)); }
inline float get_m_ReferencePixelsPerUnit_5() const { return ___m_ReferencePixelsPerUnit_5; }
inline float* get_address_of_m_ReferencePixelsPerUnit_5() { return &___m_ReferencePixelsPerUnit_5; }
inline void set_m_ReferencePixelsPerUnit_5(float value)
{
___m_ReferencePixelsPerUnit_5 = value;
}
inline static int32_t get_offset_of_m_ScaleFactor_6() { return static_cast<int32_t>(offsetof(CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564, ___m_ScaleFactor_6)); }
inline float get_m_ScaleFactor_6() const { return ___m_ScaleFactor_6; }
inline float* get_address_of_m_ScaleFactor_6() { return &___m_ScaleFactor_6; }
inline void set_m_ScaleFactor_6(float value)
{
___m_ScaleFactor_6 = value;
}
inline static int32_t get_offset_of_m_ReferenceResolution_7() { return static_cast<int32_t>(offsetof(CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564, ___m_ReferenceResolution_7)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_ReferenceResolution_7() const { return ___m_ReferenceResolution_7; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_ReferenceResolution_7() { return &___m_ReferenceResolution_7; }
inline void set_m_ReferenceResolution_7(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_ReferenceResolution_7 = value;
}
inline static int32_t get_offset_of_m_ScreenMatchMode_8() { return static_cast<int32_t>(offsetof(CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564, ___m_ScreenMatchMode_8)); }
inline int32_t get_m_ScreenMatchMode_8() const { return ___m_ScreenMatchMode_8; }
inline int32_t* get_address_of_m_ScreenMatchMode_8() { return &___m_ScreenMatchMode_8; }
inline void set_m_ScreenMatchMode_8(int32_t value)
{
___m_ScreenMatchMode_8 = value;
}
inline static int32_t get_offset_of_m_MatchWidthOrHeight_9() { return static_cast<int32_t>(offsetof(CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564, ___m_MatchWidthOrHeight_9)); }
inline float get_m_MatchWidthOrHeight_9() const { return ___m_MatchWidthOrHeight_9; }
inline float* get_address_of_m_MatchWidthOrHeight_9() { return &___m_MatchWidthOrHeight_9; }
inline void set_m_MatchWidthOrHeight_9(float value)
{
___m_MatchWidthOrHeight_9 = value;
}
inline static int32_t get_offset_of_m_PhysicalUnit_11() { return static_cast<int32_t>(offsetof(CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564, ___m_PhysicalUnit_11)); }
inline int32_t get_m_PhysicalUnit_11() const { return ___m_PhysicalUnit_11; }
inline int32_t* get_address_of_m_PhysicalUnit_11() { return &___m_PhysicalUnit_11; }
inline void set_m_PhysicalUnit_11(int32_t value)
{
___m_PhysicalUnit_11 = value;
}
inline static int32_t get_offset_of_m_FallbackScreenDPI_12() { return static_cast<int32_t>(offsetof(CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564, ___m_FallbackScreenDPI_12)); }
inline float get_m_FallbackScreenDPI_12() const { return ___m_FallbackScreenDPI_12; }
inline float* get_address_of_m_FallbackScreenDPI_12() { return &___m_FallbackScreenDPI_12; }
inline void set_m_FallbackScreenDPI_12(float value)
{
___m_FallbackScreenDPI_12 = value;
}
inline static int32_t get_offset_of_m_DefaultSpriteDPI_13() { return static_cast<int32_t>(offsetof(CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564, ___m_DefaultSpriteDPI_13)); }
inline float get_m_DefaultSpriteDPI_13() const { return ___m_DefaultSpriteDPI_13; }
inline float* get_address_of_m_DefaultSpriteDPI_13() { return &___m_DefaultSpriteDPI_13; }
inline void set_m_DefaultSpriteDPI_13(float value)
{
___m_DefaultSpriteDPI_13 = value;
}
inline static int32_t get_offset_of_m_DynamicPixelsPerUnit_14() { return static_cast<int32_t>(offsetof(CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564, ___m_DynamicPixelsPerUnit_14)); }
inline float get_m_DynamicPixelsPerUnit_14() const { return ___m_DynamicPixelsPerUnit_14; }
inline float* get_address_of_m_DynamicPixelsPerUnit_14() { return &___m_DynamicPixelsPerUnit_14; }
inline void set_m_DynamicPixelsPerUnit_14(float value)
{
___m_DynamicPixelsPerUnit_14 = value;
}
inline static int32_t get_offset_of_m_Canvas_15() { return static_cast<int32_t>(offsetof(CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564, ___m_Canvas_15)); }
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * get_m_Canvas_15() const { return ___m_Canvas_15; }
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 ** get_address_of_m_Canvas_15() { return &___m_Canvas_15; }
inline void set_m_Canvas_15(Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * value)
{
___m_Canvas_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Canvas_15), (void*)value);
}
inline static int32_t get_offset_of_m_PrevScaleFactor_16() { return static_cast<int32_t>(offsetof(CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564, ___m_PrevScaleFactor_16)); }
inline float get_m_PrevScaleFactor_16() const { return ___m_PrevScaleFactor_16; }
inline float* get_address_of_m_PrevScaleFactor_16() { return &___m_PrevScaleFactor_16; }
inline void set_m_PrevScaleFactor_16(float value)
{
___m_PrevScaleFactor_16 = value;
}
inline static int32_t get_offset_of_m_PrevReferencePixelsPerUnit_17() { return static_cast<int32_t>(offsetof(CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564, ___m_PrevReferencePixelsPerUnit_17)); }
inline float get_m_PrevReferencePixelsPerUnit_17() const { return ___m_PrevReferencePixelsPerUnit_17; }
inline float* get_address_of_m_PrevReferencePixelsPerUnit_17() { return &___m_PrevReferencePixelsPerUnit_17; }
inline void set_m_PrevReferencePixelsPerUnit_17(float value)
{
___m_PrevReferencePixelsPerUnit_17 = value;
}
};
// UnityEngine.UI.ContentSizeFitter
struct ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8 : public UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70
{
public:
// UnityEngine.UI.ContentSizeFitter_FitMode UnityEngine.UI.ContentSizeFitter::m_HorizontalFit
int32_t ___m_HorizontalFit_4;
// UnityEngine.UI.ContentSizeFitter_FitMode UnityEngine.UI.ContentSizeFitter::m_VerticalFit
int32_t ___m_VerticalFit_5;
// UnityEngine.RectTransform UnityEngine.UI.ContentSizeFitter::m_Rect
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_Rect_6;
// UnityEngine.DrivenRectTransformTracker UnityEngine.UI.ContentSizeFitter::m_Tracker
DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 ___m_Tracker_7;
public:
inline static int32_t get_offset_of_m_HorizontalFit_4() { return static_cast<int32_t>(offsetof(ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8, ___m_HorizontalFit_4)); }
inline int32_t get_m_HorizontalFit_4() const { return ___m_HorizontalFit_4; }
inline int32_t* get_address_of_m_HorizontalFit_4() { return &___m_HorizontalFit_4; }
inline void set_m_HorizontalFit_4(int32_t value)
{
___m_HorizontalFit_4 = value;
}
inline static int32_t get_offset_of_m_VerticalFit_5() { return static_cast<int32_t>(offsetof(ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8, ___m_VerticalFit_5)); }
inline int32_t get_m_VerticalFit_5() const { return ___m_VerticalFit_5; }
inline int32_t* get_address_of_m_VerticalFit_5() { return &___m_VerticalFit_5; }
inline void set_m_VerticalFit_5(int32_t value)
{
___m_VerticalFit_5 = value;
}
inline static int32_t get_offset_of_m_Rect_6() { return static_cast<int32_t>(offsetof(ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8, ___m_Rect_6)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_Rect_6() const { return ___m_Rect_6; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_Rect_6() { return &___m_Rect_6; }
inline void set_m_Rect_6(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_Rect_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Rect_6), (void*)value);
}
inline static int32_t get_offset_of_m_Tracker_7() { return static_cast<int32_t>(offsetof(ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8, ___m_Tracker_7)); }
inline DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 get_m_Tracker_7() const { return ___m_Tracker_7; }
inline DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 * get_address_of_m_Tracker_7() { return &___m_Tracker_7; }
inline void set_m_Tracker_7(DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 value)
{
___m_Tracker_7 = value;
}
};
// UnityEngine.UI.Graphic
struct Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 : public UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70
{
public:
// UnityEngine.Material UnityEngine.UI.Graphic::m_Material
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___m_Material_6;
// UnityEngine.Color UnityEngine.UI.Graphic::m_Color
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_Color_7;
// System.Boolean UnityEngine.UI.Graphic::m_SkipLayoutUpdate
bool ___m_SkipLayoutUpdate_8;
// System.Boolean UnityEngine.UI.Graphic::m_SkipMaterialUpdate
bool ___m_SkipMaterialUpdate_9;
// System.Boolean UnityEngine.UI.Graphic::m_RaycastTarget
bool ___m_RaycastTarget_10;
// UnityEngine.RectTransform UnityEngine.UI.Graphic::m_RectTransform
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_RectTransform_11;
// UnityEngine.CanvasRenderer UnityEngine.UI.Graphic::m_CanvasRenderer
CanvasRenderer_tB4D9C9FE77FD5C9C4546FC022D6E956960BC2B72 * ___m_CanvasRenderer_12;
// UnityEngine.Canvas UnityEngine.UI.Graphic::m_Canvas
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * ___m_Canvas_13;
// System.Boolean UnityEngine.UI.Graphic::m_VertsDirty
bool ___m_VertsDirty_14;
// System.Boolean UnityEngine.UI.Graphic::m_MaterialDirty
bool ___m_MaterialDirty_15;
// UnityEngine.Events.UnityAction UnityEngine.UI.Graphic::m_OnDirtyLayoutCallback
UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * ___m_OnDirtyLayoutCallback_16;
// UnityEngine.Events.UnityAction UnityEngine.UI.Graphic::m_OnDirtyVertsCallback
UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * ___m_OnDirtyVertsCallback_17;
// UnityEngine.Events.UnityAction UnityEngine.UI.Graphic::m_OnDirtyMaterialCallback
UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * ___m_OnDirtyMaterialCallback_18;
// UnityEngine.Mesh UnityEngine.UI.Graphic::m_CachedMesh
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___m_CachedMesh_21;
// UnityEngine.Vector2[] UnityEngine.UI.Graphic::m_CachedUvs
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___m_CachedUvs_22;
// UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween> UnityEngine.UI.Graphic::m_ColorTweenRunner
TweenRunner_1_t56CEB168ADE3739A1BDDBF258FDC759DF8927172 * ___m_ColorTweenRunner_23;
// System.Boolean UnityEngine.UI.Graphic::<useLegacyMeshGeneration>k__BackingField
bool ___U3CuseLegacyMeshGenerationU3Ek__BackingField_24;
public:
inline static int32_t get_offset_of_m_Material_6() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_Material_6)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_m_Material_6() const { return ___m_Material_6; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_m_Material_6() { return &___m_Material_6; }
inline void set_m_Material_6(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___m_Material_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Material_6), (void*)value);
}
inline static int32_t get_offset_of_m_Color_7() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_Color_7)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_Color_7() const { return ___m_Color_7; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_Color_7() { return &___m_Color_7; }
inline void set_m_Color_7(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_Color_7 = value;
}
inline static int32_t get_offset_of_m_SkipLayoutUpdate_8() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_SkipLayoutUpdate_8)); }
inline bool get_m_SkipLayoutUpdate_8() const { return ___m_SkipLayoutUpdate_8; }
inline bool* get_address_of_m_SkipLayoutUpdate_8() { return &___m_SkipLayoutUpdate_8; }
inline void set_m_SkipLayoutUpdate_8(bool value)
{
___m_SkipLayoutUpdate_8 = value;
}
inline static int32_t get_offset_of_m_SkipMaterialUpdate_9() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_SkipMaterialUpdate_9)); }
inline bool get_m_SkipMaterialUpdate_9() const { return ___m_SkipMaterialUpdate_9; }
inline bool* get_address_of_m_SkipMaterialUpdate_9() { return &___m_SkipMaterialUpdate_9; }
inline void set_m_SkipMaterialUpdate_9(bool value)
{
___m_SkipMaterialUpdate_9 = value;
}
inline static int32_t get_offset_of_m_RaycastTarget_10() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_RaycastTarget_10)); }
inline bool get_m_RaycastTarget_10() const { return ___m_RaycastTarget_10; }
inline bool* get_address_of_m_RaycastTarget_10() { return &___m_RaycastTarget_10; }
inline void set_m_RaycastTarget_10(bool value)
{
___m_RaycastTarget_10 = value;
}
inline static int32_t get_offset_of_m_RectTransform_11() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_RectTransform_11)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_RectTransform_11() const { return ___m_RectTransform_11; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_RectTransform_11() { return &___m_RectTransform_11; }
inline void set_m_RectTransform_11(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_RectTransform_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RectTransform_11), (void*)value);
}
inline static int32_t get_offset_of_m_CanvasRenderer_12() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_CanvasRenderer_12)); }
inline CanvasRenderer_tB4D9C9FE77FD5C9C4546FC022D6E956960BC2B72 * get_m_CanvasRenderer_12() const { return ___m_CanvasRenderer_12; }
inline CanvasRenderer_tB4D9C9FE77FD5C9C4546FC022D6E956960BC2B72 ** get_address_of_m_CanvasRenderer_12() { return &___m_CanvasRenderer_12; }
inline void set_m_CanvasRenderer_12(CanvasRenderer_tB4D9C9FE77FD5C9C4546FC022D6E956960BC2B72 * value)
{
___m_CanvasRenderer_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CanvasRenderer_12), (void*)value);
}
inline static int32_t get_offset_of_m_Canvas_13() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_Canvas_13)); }
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * get_m_Canvas_13() const { return ___m_Canvas_13; }
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 ** get_address_of_m_Canvas_13() { return &___m_Canvas_13; }
inline void set_m_Canvas_13(Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * value)
{
___m_Canvas_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Canvas_13), (void*)value);
}
inline static int32_t get_offset_of_m_VertsDirty_14() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_VertsDirty_14)); }
inline bool get_m_VertsDirty_14() const { return ___m_VertsDirty_14; }
inline bool* get_address_of_m_VertsDirty_14() { return &___m_VertsDirty_14; }
inline void set_m_VertsDirty_14(bool value)
{
___m_VertsDirty_14 = value;
}
inline static int32_t get_offset_of_m_MaterialDirty_15() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_MaterialDirty_15)); }
inline bool get_m_MaterialDirty_15() const { return ___m_MaterialDirty_15; }
inline bool* get_address_of_m_MaterialDirty_15() { return &___m_MaterialDirty_15; }
inline void set_m_MaterialDirty_15(bool value)
{
___m_MaterialDirty_15 = value;
}
inline static int32_t get_offset_of_m_OnDirtyLayoutCallback_16() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_OnDirtyLayoutCallback_16)); }
inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * get_m_OnDirtyLayoutCallback_16() const { return ___m_OnDirtyLayoutCallback_16; }
inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 ** get_address_of_m_OnDirtyLayoutCallback_16() { return &___m_OnDirtyLayoutCallback_16; }
inline void set_m_OnDirtyLayoutCallback_16(UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * value)
{
___m_OnDirtyLayoutCallback_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnDirtyLayoutCallback_16), (void*)value);
}
inline static int32_t get_offset_of_m_OnDirtyVertsCallback_17() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_OnDirtyVertsCallback_17)); }
inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * get_m_OnDirtyVertsCallback_17() const { return ___m_OnDirtyVertsCallback_17; }
inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 ** get_address_of_m_OnDirtyVertsCallback_17() { return &___m_OnDirtyVertsCallback_17; }
inline void set_m_OnDirtyVertsCallback_17(UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * value)
{
___m_OnDirtyVertsCallback_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnDirtyVertsCallback_17), (void*)value);
}
inline static int32_t get_offset_of_m_OnDirtyMaterialCallback_18() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_OnDirtyMaterialCallback_18)); }
inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * get_m_OnDirtyMaterialCallback_18() const { return ___m_OnDirtyMaterialCallback_18; }
inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 ** get_address_of_m_OnDirtyMaterialCallback_18() { return &___m_OnDirtyMaterialCallback_18; }
inline void set_m_OnDirtyMaterialCallback_18(UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * value)
{
___m_OnDirtyMaterialCallback_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnDirtyMaterialCallback_18), (void*)value);
}
inline static int32_t get_offset_of_m_CachedMesh_21() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_CachedMesh_21)); }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * get_m_CachedMesh_21() const { return ___m_CachedMesh_21; }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C ** get_address_of_m_CachedMesh_21() { return &___m_CachedMesh_21; }
inline void set_m_CachedMesh_21(Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * value)
{
___m_CachedMesh_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CachedMesh_21), (void*)value);
}
inline static int32_t get_offset_of_m_CachedUvs_22() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_CachedUvs_22)); }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* get_m_CachedUvs_22() const { return ___m_CachedUvs_22; }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6** get_address_of_m_CachedUvs_22() { return &___m_CachedUvs_22; }
inline void set_m_CachedUvs_22(Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* value)
{
___m_CachedUvs_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CachedUvs_22), (void*)value);
}
inline static int32_t get_offset_of_m_ColorTweenRunner_23() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_ColorTweenRunner_23)); }
inline TweenRunner_1_t56CEB168ADE3739A1BDDBF258FDC759DF8927172 * get_m_ColorTweenRunner_23() const { return ___m_ColorTweenRunner_23; }
inline TweenRunner_1_t56CEB168ADE3739A1BDDBF258FDC759DF8927172 ** get_address_of_m_ColorTweenRunner_23() { return &___m_ColorTweenRunner_23; }
inline void set_m_ColorTweenRunner_23(TweenRunner_1_t56CEB168ADE3739A1BDDBF258FDC759DF8927172 * value)
{
___m_ColorTweenRunner_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ColorTweenRunner_23), (void*)value);
}
inline static int32_t get_offset_of_U3CuseLegacyMeshGenerationU3Ek__BackingField_24() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___U3CuseLegacyMeshGenerationU3Ek__BackingField_24)); }
inline bool get_U3CuseLegacyMeshGenerationU3Ek__BackingField_24() const { return ___U3CuseLegacyMeshGenerationU3Ek__BackingField_24; }
inline bool* get_address_of_U3CuseLegacyMeshGenerationU3Ek__BackingField_24() { return &___U3CuseLegacyMeshGenerationU3Ek__BackingField_24; }
inline void set_U3CuseLegacyMeshGenerationU3Ek__BackingField_24(bool value)
{
___U3CuseLegacyMeshGenerationU3Ek__BackingField_24 = value;
}
};
struct Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8_StaticFields
{
public:
// UnityEngine.Material UnityEngine.UI.Graphic::s_DefaultUI
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___s_DefaultUI_4;
// UnityEngine.Texture2D UnityEngine.UI.Graphic::s_WhiteTexture
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___s_WhiteTexture_5;
// UnityEngine.Mesh UnityEngine.UI.Graphic::s_Mesh
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___s_Mesh_19;
// UnityEngine.UI.VertexHelper UnityEngine.UI.Graphic::s_VertexHelper
VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F * ___s_VertexHelper_20;
public:
inline static int32_t get_offset_of_s_DefaultUI_4() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8_StaticFields, ___s_DefaultUI_4)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_s_DefaultUI_4() const { return ___s_DefaultUI_4; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_s_DefaultUI_4() { return &___s_DefaultUI_4; }
inline void set_s_DefaultUI_4(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___s_DefaultUI_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultUI_4), (void*)value);
}
inline static int32_t get_offset_of_s_WhiteTexture_5() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8_StaticFields, ___s_WhiteTexture_5)); }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * get_s_WhiteTexture_5() const { return ___s_WhiteTexture_5; }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C ** get_address_of_s_WhiteTexture_5() { return &___s_WhiteTexture_5; }
inline void set_s_WhiteTexture_5(Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * value)
{
___s_WhiteTexture_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_WhiteTexture_5), (void*)value);
}
inline static int32_t get_offset_of_s_Mesh_19() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8_StaticFields, ___s_Mesh_19)); }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * get_s_Mesh_19() const { return ___s_Mesh_19; }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C ** get_address_of_s_Mesh_19() { return &___s_Mesh_19; }
inline void set_s_Mesh_19(Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * value)
{
___s_Mesh_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Mesh_19), (void*)value);
}
inline static int32_t get_offset_of_s_VertexHelper_20() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8_StaticFields, ___s_VertexHelper_20)); }
inline VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F * get_s_VertexHelper_20() const { return ___s_VertexHelper_20; }
inline VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F ** get_address_of_s_VertexHelper_20() { return &___s_VertexHelper_20; }
inline void set_s_VertexHelper_20(VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F * value)
{
___s_VertexHelper_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_VertexHelper_20), (void*)value);
}
};
// UnityEngine.UI.Mask
struct Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB : public UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70
{
public:
// UnityEngine.RectTransform UnityEngine.UI.Mask::m_RectTransform
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_RectTransform_4;
// System.Boolean UnityEngine.UI.Mask::m_ShowMaskGraphic
bool ___m_ShowMaskGraphic_5;
// UnityEngine.UI.Graphic UnityEngine.UI.Mask::m_Graphic
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * ___m_Graphic_6;
// UnityEngine.Material UnityEngine.UI.Mask::m_MaskMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___m_MaskMaterial_7;
// UnityEngine.Material UnityEngine.UI.Mask::m_UnmaskMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___m_UnmaskMaterial_8;
public:
inline static int32_t get_offset_of_m_RectTransform_4() { return static_cast<int32_t>(offsetof(Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB, ___m_RectTransform_4)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_RectTransform_4() const { return ___m_RectTransform_4; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_RectTransform_4() { return &___m_RectTransform_4; }
inline void set_m_RectTransform_4(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_RectTransform_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RectTransform_4), (void*)value);
}
inline static int32_t get_offset_of_m_ShowMaskGraphic_5() { return static_cast<int32_t>(offsetof(Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB, ___m_ShowMaskGraphic_5)); }
inline bool get_m_ShowMaskGraphic_5() const { return ___m_ShowMaskGraphic_5; }
inline bool* get_address_of_m_ShowMaskGraphic_5() { return &___m_ShowMaskGraphic_5; }
inline void set_m_ShowMaskGraphic_5(bool value)
{
___m_ShowMaskGraphic_5 = value;
}
inline static int32_t get_offset_of_m_Graphic_6() { return static_cast<int32_t>(offsetof(Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB, ___m_Graphic_6)); }
inline Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * get_m_Graphic_6() const { return ___m_Graphic_6; }
inline Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 ** get_address_of_m_Graphic_6() { return &___m_Graphic_6; }
inline void set_m_Graphic_6(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * value)
{
___m_Graphic_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Graphic_6), (void*)value);
}
inline static int32_t get_offset_of_m_MaskMaterial_7() { return static_cast<int32_t>(offsetof(Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB, ___m_MaskMaterial_7)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_m_MaskMaterial_7() const { return ___m_MaskMaterial_7; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_m_MaskMaterial_7() { return &___m_MaskMaterial_7; }
inline void set_m_MaskMaterial_7(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___m_MaskMaterial_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_MaskMaterial_7), (void*)value);
}
inline static int32_t get_offset_of_m_UnmaskMaterial_8() { return static_cast<int32_t>(offsetof(Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB, ___m_UnmaskMaterial_8)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_m_UnmaskMaterial_8() const { return ___m_UnmaskMaterial_8; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_m_UnmaskMaterial_8() { return &___m_UnmaskMaterial_8; }
inline void set_m_UnmaskMaterial_8(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___m_UnmaskMaterial_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_UnmaskMaterial_8), (void*)value);
}
};
// UnityEngine.UI.RectMask2D
struct RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B : public UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70
{
public:
// UnityEngine.UI.RectangularVertexClipper UnityEngine.UI.RectMask2D::m_VertexClipper
RectangularVertexClipper_t6C47856C4F775A5799A49A100196C2BB14C5DD91 * ___m_VertexClipper_4;
// UnityEngine.RectTransform UnityEngine.UI.RectMask2D::m_RectTransform
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_RectTransform_5;
// System.Collections.Generic.HashSet`1<UnityEngine.UI.MaskableGraphic> UnityEngine.UI.RectMask2D::m_MaskableTargets
HashSet_1_tAF46C0FA5DE4DF8DBF79849CC6D9ECAC4E17DC5B * ___m_MaskableTargets_6;
// System.Collections.Generic.HashSet`1<UnityEngine.UI.IClippable> UnityEngine.UI.RectMask2D::m_ClipTargets
HashSet_1_t342660F836636D5AEACE4C134C048A1B9F549EDC * ___m_ClipTargets_7;
// System.Boolean UnityEngine.UI.RectMask2D::m_ShouldRecalculateClipRects
bool ___m_ShouldRecalculateClipRects_8;
// System.Collections.Generic.List`1<UnityEngine.UI.RectMask2D> UnityEngine.UI.RectMask2D::m_Clippers
List_1_tFE915F05C1A0D10E751CEC3F24F229A6C57E375C * ___m_Clippers_9;
// UnityEngine.Rect UnityEngine.UI.RectMask2D::m_LastClipRectCanvasSpace
Rect_t35B976DE901B5423C11705E156938EA27AB402CE ___m_LastClipRectCanvasSpace_10;
// System.Boolean UnityEngine.UI.RectMask2D::m_ForceClip
bool ___m_ForceClip_11;
// UnityEngine.Vector4 UnityEngine.UI.RectMask2D::m_Padding
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___m_Padding_12;
// UnityEngine.Vector2Int UnityEngine.UI.RectMask2D::m_Softness
Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 ___m_Softness_13;
// UnityEngine.Canvas UnityEngine.UI.RectMask2D::m_Canvas
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * ___m_Canvas_14;
// UnityEngine.Vector3[] UnityEngine.UI.RectMask2D::m_Corners
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___m_Corners_15;
public:
inline static int32_t get_offset_of_m_VertexClipper_4() { return static_cast<int32_t>(offsetof(RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B, ___m_VertexClipper_4)); }
inline RectangularVertexClipper_t6C47856C4F775A5799A49A100196C2BB14C5DD91 * get_m_VertexClipper_4() const { return ___m_VertexClipper_4; }
inline RectangularVertexClipper_t6C47856C4F775A5799A49A100196C2BB14C5DD91 ** get_address_of_m_VertexClipper_4() { return &___m_VertexClipper_4; }
inline void set_m_VertexClipper_4(RectangularVertexClipper_t6C47856C4F775A5799A49A100196C2BB14C5DD91 * value)
{
___m_VertexClipper_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_VertexClipper_4), (void*)value);
}
inline static int32_t get_offset_of_m_RectTransform_5() { return static_cast<int32_t>(offsetof(RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B, ___m_RectTransform_5)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_RectTransform_5() const { return ___m_RectTransform_5; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_RectTransform_5() { return &___m_RectTransform_5; }
inline void set_m_RectTransform_5(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_RectTransform_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RectTransform_5), (void*)value);
}
inline static int32_t get_offset_of_m_MaskableTargets_6() { return static_cast<int32_t>(offsetof(RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B, ___m_MaskableTargets_6)); }
inline HashSet_1_tAF46C0FA5DE4DF8DBF79849CC6D9ECAC4E17DC5B * get_m_MaskableTargets_6() const { return ___m_MaskableTargets_6; }
inline HashSet_1_tAF46C0FA5DE4DF8DBF79849CC6D9ECAC4E17DC5B ** get_address_of_m_MaskableTargets_6() { return &___m_MaskableTargets_6; }
inline void set_m_MaskableTargets_6(HashSet_1_tAF46C0FA5DE4DF8DBF79849CC6D9ECAC4E17DC5B * value)
{
___m_MaskableTargets_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_MaskableTargets_6), (void*)value);
}
inline static int32_t get_offset_of_m_ClipTargets_7() { return static_cast<int32_t>(offsetof(RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B, ___m_ClipTargets_7)); }
inline HashSet_1_t342660F836636D5AEACE4C134C048A1B9F549EDC * get_m_ClipTargets_7() const { return ___m_ClipTargets_7; }
inline HashSet_1_t342660F836636D5AEACE4C134C048A1B9F549EDC ** get_address_of_m_ClipTargets_7() { return &___m_ClipTargets_7; }
inline void set_m_ClipTargets_7(HashSet_1_t342660F836636D5AEACE4C134C048A1B9F549EDC * value)
{
___m_ClipTargets_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ClipTargets_7), (void*)value);
}
inline static int32_t get_offset_of_m_ShouldRecalculateClipRects_8() { return static_cast<int32_t>(offsetof(RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B, ___m_ShouldRecalculateClipRects_8)); }
inline bool get_m_ShouldRecalculateClipRects_8() const { return ___m_ShouldRecalculateClipRects_8; }
inline bool* get_address_of_m_ShouldRecalculateClipRects_8() { return &___m_ShouldRecalculateClipRects_8; }
inline void set_m_ShouldRecalculateClipRects_8(bool value)
{
___m_ShouldRecalculateClipRects_8 = value;
}
inline static int32_t get_offset_of_m_Clippers_9() { return static_cast<int32_t>(offsetof(RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B, ___m_Clippers_9)); }
inline List_1_tFE915F05C1A0D10E751CEC3F24F229A6C57E375C * get_m_Clippers_9() const { return ___m_Clippers_9; }
inline List_1_tFE915F05C1A0D10E751CEC3F24F229A6C57E375C ** get_address_of_m_Clippers_9() { return &___m_Clippers_9; }
inline void set_m_Clippers_9(List_1_tFE915F05C1A0D10E751CEC3F24F229A6C57E375C * value)
{
___m_Clippers_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Clippers_9), (void*)value);
}
inline static int32_t get_offset_of_m_LastClipRectCanvasSpace_10() { return static_cast<int32_t>(offsetof(RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B, ___m_LastClipRectCanvasSpace_10)); }
inline Rect_t35B976DE901B5423C11705E156938EA27AB402CE get_m_LastClipRectCanvasSpace_10() const { return ___m_LastClipRectCanvasSpace_10; }
inline Rect_t35B976DE901B5423C11705E156938EA27AB402CE * get_address_of_m_LastClipRectCanvasSpace_10() { return &___m_LastClipRectCanvasSpace_10; }
inline void set_m_LastClipRectCanvasSpace_10(Rect_t35B976DE901B5423C11705E156938EA27AB402CE value)
{
___m_LastClipRectCanvasSpace_10 = value;
}
inline static int32_t get_offset_of_m_ForceClip_11() { return static_cast<int32_t>(offsetof(RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B, ___m_ForceClip_11)); }
inline bool get_m_ForceClip_11() const { return ___m_ForceClip_11; }
inline bool* get_address_of_m_ForceClip_11() { return &___m_ForceClip_11; }
inline void set_m_ForceClip_11(bool value)
{
___m_ForceClip_11 = value;
}
inline static int32_t get_offset_of_m_Padding_12() { return static_cast<int32_t>(offsetof(RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B, ___m_Padding_12)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_m_Padding_12() const { return ___m_Padding_12; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_m_Padding_12() { return &___m_Padding_12; }
inline void set_m_Padding_12(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___m_Padding_12 = value;
}
inline static int32_t get_offset_of_m_Softness_13() { return static_cast<int32_t>(offsetof(RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B, ___m_Softness_13)); }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 get_m_Softness_13() const { return ___m_Softness_13; }
inline Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 * get_address_of_m_Softness_13() { return &___m_Softness_13; }
inline void set_m_Softness_13(Vector2Int_t339DA203C037FA6BCFC926C36DC2194D52D5F905 value)
{
___m_Softness_13 = value;
}
inline static int32_t get_offset_of_m_Canvas_14() { return static_cast<int32_t>(offsetof(RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B, ___m_Canvas_14)); }
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * get_m_Canvas_14() const { return ___m_Canvas_14; }
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 ** get_address_of_m_Canvas_14() { return &___m_Canvas_14; }
inline void set_m_Canvas_14(Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * value)
{
___m_Canvas_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Canvas_14), (void*)value);
}
inline static int32_t get_offset_of_m_Corners_15() { return static_cast<int32_t>(offsetof(RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B, ___m_Corners_15)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_m_Corners_15() const { return ___m_Corners_15; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_m_Corners_15() { return &___m_Corners_15; }
inline void set_m_Corners_15(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
___m_Corners_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Corners_15), (void*)value);
}
};
// UnityEngine.UI.ScrollRect
struct ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 : public UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70
{
public:
// UnityEngine.RectTransform UnityEngine.UI.ScrollRect::m_Content
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_Content_4;
// System.Boolean UnityEngine.UI.ScrollRect::m_Horizontal
bool ___m_Horizontal_5;
// System.Boolean UnityEngine.UI.ScrollRect::m_Vertical
bool ___m_Vertical_6;
// UnityEngine.UI.ScrollRect_MovementType UnityEngine.UI.ScrollRect::m_MovementType
int32_t ___m_MovementType_7;
// System.Single UnityEngine.UI.ScrollRect::m_Elasticity
float ___m_Elasticity_8;
// System.Boolean UnityEngine.UI.ScrollRect::m_Inertia
bool ___m_Inertia_9;
// System.Single UnityEngine.UI.ScrollRect::m_DecelerationRate
float ___m_DecelerationRate_10;
// System.Single UnityEngine.UI.ScrollRect::m_ScrollSensitivity
float ___m_ScrollSensitivity_11;
// UnityEngine.RectTransform UnityEngine.UI.ScrollRect::m_Viewport
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_Viewport_12;
// UnityEngine.UI.Scrollbar UnityEngine.UI.ScrollRect::m_HorizontalScrollbar
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * ___m_HorizontalScrollbar_13;
// UnityEngine.UI.Scrollbar UnityEngine.UI.ScrollRect::m_VerticalScrollbar
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * ___m_VerticalScrollbar_14;
// UnityEngine.UI.ScrollRect_ScrollbarVisibility UnityEngine.UI.ScrollRect::m_HorizontalScrollbarVisibility
int32_t ___m_HorizontalScrollbarVisibility_15;
// UnityEngine.UI.ScrollRect_ScrollbarVisibility UnityEngine.UI.ScrollRect::m_VerticalScrollbarVisibility
int32_t ___m_VerticalScrollbarVisibility_16;
// System.Single UnityEngine.UI.ScrollRect::m_HorizontalScrollbarSpacing
float ___m_HorizontalScrollbarSpacing_17;
// System.Single UnityEngine.UI.ScrollRect::m_VerticalScrollbarSpacing
float ___m_VerticalScrollbarSpacing_18;
// UnityEngine.UI.ScrollRect_ScrollRectEvent UnityEngine.UI.ScrollRect::m_OnValueChanged
ScrollRectEvent_t8995F69D65BA823FB862144B12E6D3504236FEEB * ___m_OnValueChanged_19;
// UnityEngine.Vector2 UnityEngine.UI.ScrollRect::m_PointerStartLocalCursor
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_PointerStartLocalCursor_20;
// UnityEngine.Vector2 UnityEngine.UI.ScrollRect::m_ContentStartPosition
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_ContentStartPosition_21;
// UnityEngine.RectTransform UnityEngine.UI.ScrollRect::m_ViewRect
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_ViewRect_22;
// UnityEngine.Bounds UnityEngine.UI.ScrollRect::m_ContentBounds
Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 ___m_ContentBounds_23;
// UnityEngine.Bounds UnityEngine.UI.ScrollRect::m_ViewBounds
Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 ___m_ViewBounds_24;
// UnityEngine.Vector2 UnityEngine.UI.ScrollRect::m_Velocity
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Velocity_25;
// System.Boolean UnityEngine.UI.ScrollRect::m_Dragging
bool ___m_Dragging_26;
// System.Boolean UnityEngine.UI.ScrollRect::m_Scrolling
bool ___m_Scrolling_27;
// UnityEngine.Vector2 UnityEngine.UI.ScrollRect::m_PrevPosition
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_PrevPosition_28;
// UnityEngine.Bounds UnityEngine.UI.ScrollRect::m_PrevContentBounds
Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 ___m_PrevContentBounds_29;
// UnityEngine.Bounds UnityEngine.UI.ScrollRect::m_PrevViewBounds
Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 ___m_PrevViewBounds_30;
// System.Boolean UnityEngine.UI.ScrollRect::m_HasRebuiltLayout
bool ___m_HasRebuiltLayout_31;
// System.Boolean UnityEngine.UI.ScrollRect::m_HSliderExpand
bool ___m_HSliderExpand_32;
// System.Boolean UnityEngine.UI.ScrollRect::m_VSliderExpand
bool ___m_VSliderExpand_33;
// System.Single UnityEngine.UI.ScrollRect::m_HSliderHeight
float ___m_HSliderHeight_34;
// System.Single UnityEngine.UI.ScrollRect::m_VSliderWidth
float ___m_VSliderWidth_35;
// UnityEngine.RectTransform UnityEngine.UI.ScrollRect::m_Rect
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_Rect_36;
// UnityEngine.RectTransform UnityEngine.UI.ScrollRect::m_HorizontalScrollbarRect
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_HorizontalScrollbarRect_37;
// UnityEngine.RectTransform UnityEngine.UI.ScrollRect::m_VerticalScrollbarRect
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_VerticalScrollbarRect_38;
// UnityEngine.DrivenRectTransformTracker UnityEngine.UI.ScrollRect::m_Tracker
DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 ___m_Tracker_39;
// UnityEngine.Vector3[] UnityEngine.UI.ScrollRect::m_Corners
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___m_Corners_40;
public:
inline static int32_t get_offset_of_m_Content_4() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_Content_4)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_Content_4() const { return ___m_Content_4; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_Content_4() { return &___m_Content_4; }
inline void set_m_Content_4(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_Content_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Content_4), (void*)value);
}
inline static int32_t get_offset_of_m_Horizontal_5() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_Horizontal_5)); }
inline bool get_m_Horizontal_5() const { return ___m_Horizontal_5; }
inline bool* get_address_of_m_Horizontal_5() { return &___m_Horizontal_5; }
inline void set_m_Horizontal_5(bool value)
{
___m_Horizontal_5 = value;
}
inline static int32_t get_offset_of_m_Vertical_6() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_Vertical_6)); }
inline bool get_m_Vertical_6() const { return ___m_Vertical_6; }
inline bool* get_address_of_m_Vertical_6() { return &___m_Vertical_6; }
inline void set_m_Vertical_6(bool value)
{
___m_Vertical_6 = value;
}
inline static int32_t get_offset_of_m_MovementType_7() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_MovementType_7)); }
inline int32_t get_m_MovementType_7() const { return ___m_MovementType_7; }
inline int32_t* get_address_of_m_MovementType_7() { return &___m_MovementType_7; }
inline void set_m_MovementType_7(int32_t value)
{
___m_MovementType_7 = value;
}
inline static int32_t get_offset_of_m_Elasticity_8() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_Elasticity_8)); }
inline float get_m_Elasticity_8() const { return ___m_Elasticity_8; }
inline float* get_address_of_m_Elasticity_8() { return &___m_Elasticity_8; }
inline void set_m_Elasticity_8(float value)
{
___m_Elasticity_8 = value;
}
inline static int32_t get_offset_of_m_Inertia_9() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_Inertia_9)); }
inline bool get_m_Inertia_9() const { return ___m_Inertia_9; }
inline bool* get_address_of_m_Inertia_9() { return &___m_Inertia_9; }
inline void set_m_Inertia_9(bool value)
{
___m_Inertia_9 = value;
}
inline static int32_t get_offset_of_m_DecelerationRate_10() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_DecelerationRate_10)); }
inline float get_m_DecelerationRate_10() const { return ___m_DecelerationRate_10; }
inline float* get_address_of_m_DecelerationRate_10() { return &___m_DecelerationRate_10; }
inline void set_m_DecelerationRate_10(float value)
{
___m_DecelerationRate_10 = value;
}
inline static int32_t get_offset_of_m_ScrollSensitivity_11() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_ScrollSensitivity_11)); }
inline float get_m_ScrollSensitivity_11() const { return ___m_ScrollSensitivity_11; }
inline float* get_address_of_m_ScrollSensitivity_11() { return &___m_ScrollSensitivity_11; }
inline void set_m_ScrollSensitivity_11(float value)
{
___m_ScrollSensitivity_11 = value;
}
inline static int32_t get_offset_of_m_Viewport_12() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_Viewport_12)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_Viewport_12() const { return ___m_Viewport_12; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_Viewport_12() { return &___m_Viewport_12; }
inline void set_m_Viewport_12(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_Viewport_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Viewport_12), (void*)value);
}
inline static int32_t get_offset_of_m_HorizontalScrollbar_13() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_HorizontalScrollbar_13)); }
inline Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * get_m_HorizontalScrollbar_13() const { return ___m_HorizontalScrollbar_13; }
inline Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 ** get_address_of_m_HorizontalScrollbar_13() { return &___m_HorizontalScrollbar_13; }
inline void set_m_HorizontalScrollbar_13(Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * value)
{
___m_HorizontalScrollbar_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HorizontalScrollbar_13), (void*)value);
}
inline static int32_t get_offset_of_m_VerticalScrollbar_14() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_VerticalScrollbar_14)); }
inline Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * get_m_VerticalScrollbar_14() const { return ___m_VerticalScrollbar_14; }
inline Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 ** get_address_of_m_VerticalScrollbar_14() { return &___m_VerticalScrollbar_14; }
inline void set_m_VerticalScrollbar_14(Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * value)
{
___m_VerticalScrollbar_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_VerticalScrollbar_14), (void*)value);
}
inline static int32_t get_offset_of_m_HorizontalScrollbarVisibility_15() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_HorizontalScrollbarVisibility_15)); }
inline int32_t get_m_HorizontalScrollbarVisibility_15() const { return ___m_HorizontalScrollbarVisibility_15; }
inline int32_t* get_address_of_m_HorizontalScrollbarVisibility_15() { return &___m_HorizontalScrollbarVisibility_15; }
inline void set_m_HorizontalScrollbarVisibility_15(int32_t value)
{
___m_HorizontalScrollbarVisibility_15 = value;
}
inline static int32_t get_offset_of_m_VerticalScrollbarVisibility_16() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_VerticalScrollbarVisibility_16)); }
inline int32_t get_m_VerticalScrollbarVisibility_16() const { return ___m_VerticalScrollbarVisibility_16; }
inline int32_t* get_address_of_m_VerticalScrollbarVisibility_16() { return &___m_VerticalScrollbarVisibility_16; }
inline void set_m_VerticalScrollbarVisibility_16(int32_t value)
{
___m_VerticalScrollbarVisibility_16 = value;
}
inline static int32_t get_offset_of_m_HorizontalScrollbarSpacing_17() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_HorizontalScrollbarSpacing_17)); }
inline float get_m_HorizontalScrollbarSpacing_17() const { return ___m_HorizontalScrollbarSpacing_17; }
inline float* get_address_of_m_HorizontalScrollbarSpacing_17() { return &___m_HorizontalScrollbarSpacing_17; }
inline void set_m_HorizontalScrollbarSpacing_17(float value)
{
___m_HorizontalScrollbarSpacing_17 = value;
}
inline static int32_t get_offset_of_m_VerticalScrollbarSpacing_18() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_VerticalScrollbarSpacing_18)); }
inline float get_m_VerticalScrollbarSpacing_18() const { return ___m_VerticalScrollbarSpacing_18; }
inline float* get_address_of_m_VerticalScrollbarSpacing_18() { return &___m_VerticalScrollbarSpacing_18; }
inline void set_m_VerticalScrollbarSpacing_18(float value)
{
___m_VerticalScrollbarSpacing_18 = value;
}
inline static int32_t get_offset_of_m_OnValueChanged_19() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_OnValueChanged_19)); }
inline ScrollRectEvent_t8995F69D65BA823FB862144B12E6D3504236FEEB * get_m_OnValueChanged_19() const { return ___m_OnValueChanged_19; }
inline ScrollRectEvent_t8995F69D65BA823FB862144B12E6D3504236FEEB ** get_address_of_m_OnValueChanged_19() { return &___m_OnValueChanged_19; }
inline void set_m_OnValueChanged_19(ScrollRectEvent_t8995F69D65BA823FB862144B12E6D3504236FEEB * value)
{
___m_OnValueChanged_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnValueChanged_19), (void*)value);
}
inline static int32_t get_offset_of_m_PointerStartLocalCursor_20() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_PointerStartLocalCursor_20)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_PointerStartLocalCursor_20() const { return ___m_PointerStartLocalCursor_20; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_PointerStartLocalCursor_20() { return &___m_PointerStartLocalCursor_20; }
inline void set_m_PointerStartLocalCursor_20(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_PointerStartLocalCursor_20 = value;
}
inline static int32_t get_offset_of_m_ContentStartPosition_21() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_ContentStartPosition_21)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_ContentStartPosition_21() const { return ___m_ContentStartPosition_21; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_ContentStartPosition_21() { return &___m_ContentStartPosition_21; }
inline void set_m_ContentStartPosition_21(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_ContentStartPosition_21 = value;
}
inline static int32_t get_offset_of_m_ViewRect_22() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_ViewRect_22)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_ViewRect_22() const { return ___m_ViewRect_22; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_ViewRect_22() { return &___m_ViewRect_22; }
inline void set_m_ViewRect_22(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_ViewRect_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ViewRect_22), (void*)value);
}
inline static int32_t get_offset_of_m_ContentBounds_23() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_ContentBounds_23)); }
inline Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 get_m_ContentBounds_23() const { return ___m_ContentBounds_23; }
inline Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 * get_address_of_m_ContentBounds_23() { return &___m_ContentBounds_23; }
inline void set_m_ContentBounds_23(Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 value)
{
___m_ContentBounds_23 = value;
}
inline static int32_t get_offset_of_m_ViewBounds_24() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_ViewBounds_24)); }
inline Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 get_m_ViewBounds_24() const { return ___m_ViewBounds_24; }
inline Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 * get_address_of_m_ViewBounds_24() { return &___m_ViewBounds_24; }
inline void set_m_ViewBounds_24(Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 value)
{
___m_ViewBounds_24 = value;
}
inline static int32_t get_offset_of_m_Velocity_25() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_Velocity_25)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Velocity_25() const { return ___m_Velocity_25; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Velocity_25() { return &___m_Velocity_25; }
inline void set_m_Velocity_25(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Velocity_25 = value;
}
inline static int32_t get_offset_of_m_Dragging_26() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_Dragging_26)); }
inline bool get_m_Dragging_26() const { return ___m_Dragging_26; }
inline bool* get_address_of_m_Dragging_26() { return &___m_Dragging_26; }
inline void set_m_Dragging_26(bool value)
{
___m_Dragging_26 = value;
}
inline static int32_t get_offset_of_m_Scrolling_27() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_Scrolling_27)); }
inline bool get_m_Scrolling_27() const { return ___m_Scrolling_27; }
inline bool* get_address_of_m_Scrolling_27() { return &___m_Scrolling_27; }
inline void set_m_Scrolling_27(bool value)
{
___m_Scrolling_27 = value;
}
inline static int32_t get_offset_of_m_PrevPosition_28() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_PrevPosition_28)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_PrevPosition_28() const { return ___m_PrevPosition_28; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_PrevPosition_28() { return &___m_PrevPosition_28; }
inline void set_m_PrevPosition_28(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_PrevPosition_28 = value;
}
inline static int32_t get_offset_of_m_PrevContentBounds_29() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_PrevContentBounds_29)); }
inline Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 get_m_PrevContentBounds_29() const { return ___m_PrevContentBounds_29; }
inline Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 * get_address_of_m_PrevContentBounds_29() { return &___m_PrevContentBounds_29; }
inline void set_m_PrevContentBounds_29(Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 value)
{
___m_PrevContentBounds_29 = value;
}
inline static int32_t get_offset_of_m_PrevViewBounds_30() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_PrevViewBounds_30)); }
inline Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 get_m_PrevViewBounds_30() const { return ___m_PrevViewBounds_30; }
inline Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 * get_address_of_m_PrevViewBounds_30() { return &___m_PrevViewBounds_30; }
inline void set_m_PrevViewBounds_30(Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890 value)
{
___m_PrevViewBounds_30 = value;
}
inline static int32_t get_offset_of_m_HasRebuiltLayout_31() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_HasRebuiltLayout_31)); }
inline bool get_m_HasRebuiltLayout_31() const { return ___m_HasRebuiltLayout_31; }
inline bool* get_address_of_m_HasRebuiltLayout_31() { return &___m_HasRebuiltLayout_31; }
inline void set_m_HasRebuiltLayout_31(bool value)
{
___m_HasRebuiltLayout_31 = value;
}
inline static int32_t get_offset_of_m_HSliderExpand_32() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_HSliderExpand_32)); }
inline bool get_m_HSliderExpand_32() const { return ___m_HSliderExpand_32; }
inline bool* get_address_of_m_HSliderExpand_32() { return &___m_HSliderExpand_32; }
inline void set_m_HSliderExpand_32(bool value)
{
___m_HSliderExpand_32 = value;
}
inline static int32_t get_offset_of_m_VSliderExpand_33() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_VSliderExpand_33)); }
inline bool get_m_VSliderExpand_33() const { return ___m_VSliderExpand_33; }
inline bool* get_address_of_m_VSliderExpand_33() { return &___m_VSliderExpand_33; }
inline void set_m_VSliderExpand_33(bool value)
{
___m_VSliderExpand_33 = value;
}
inline static int32_t get_offset_of_m_HSliderHeight_34() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_HSliderHeight_34)); }
inline float get_m_HSliderHeight_34() const { return ___m_HSliderHeight_34; }
inline float* get_address_of_m_HSliderHeight_34() { return &___m_HSliderHeight_34; }
inline void set_m_HSliderHeight_34(float value)
{
___m_HSliderHeight_34 = value;
}
inline static int32_t get_offset_of_m_VSliderWidth_35() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_VSliderWidth_35)); }
inline float get_m_VSliderWidth_35() const { return ___m_VSliderWidth_35; }
inline float* get_address_of_m_VSliderWidth_35() { return &___m_VSliderWidth_35; }
inline void set_m_VSliderWidth_35(float value)
{
___m_VSliderWidth_35 = value;
}
inline static int32_t get_offset_of_m_Rect_36() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_Rect_36)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_Rect_36() const { return ___m_Rect_36; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_Rect_36() { return &___m_Rect_36; }
inline void set_m_Rect_36(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_Rect_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Rect_36), (void*)value);
}
inline static int32_t get_offset_of_m_HorizontalScrollbarRect_37() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_HorizontalScrollbarRect_37)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_HorizontalScrollbarRect_37() const { return ___m_HorizontalScrollbarRect_37; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_HorizontalScrollbarRect_37() { return &___m_HorizontalScrollbarRect_37; }
inline void set_m_HorizontalScrollbarRect_37(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_HorizontalScrollbarRect_37 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HorizontalScrollbarRect_37), (void*)value);
}
inline static int32_t get_offset_of_m_VerticalScrollbarRect_38() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_VerticalScrollbarRect_38)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_VerticalScrollbarRect_38() const { return ___m_VerticalScrollbarRect_38; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_VerticalScrollbarRect_38() { return &___m_VerticalScrollbarRect_38; }
inline void set_m_VerticalScrollbarRect_38(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_VerticalScrollbarRect_38 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_VerticalScrollbarRect_38), (void*)value);
}
inline static int32_t get_offset_of_m_Tracker_39() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_Tracker_39)); }
inline DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 get_m_Tracker_39() const { return ___m_Tracker_39; }
inline DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 * get_address_of_m_Tracker_39() { return &___m_Tracker_39; }
inline void set_m_Tracker_39(DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 value)
{
___m_Tracker_39 = value;
}
inline static int32_t get_offset_of_m_Corners_40() { return static_cast<int32_t>(offsetof(ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51, ___m_Corners_40)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_m_Corners_40() const { return ___m_Corners_40; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_m_Corners_40() { return &___m_Corners_40; }
inline void set_m_Corners_40(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
___m_Corners_40 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Corners_40), (void*)value);
}
};
// UnityEngine.UI.Selectable
struct Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A : public UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70
{
public:
// System.Boolean UnityEngine.UI.Selectable::m_EnableCalled
bool ___m_EnableCalled_6;
// UnityEngine.UI.Navigation UnityEngine.UI.Selectable::m_Navigation
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 ___m_Navigation_7;
// UnityEngine.UI.Selectable_Transition UnityEngine.UI.Selectable::m_Transition
int32_t ___m_Transition_8;
// UnityEngine.UI.ColorBlock UnityEngine.UI.Selectable::m_Colors
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA ___m_Colors_9;
// UnityEngine.UI.SpriteState UnityEngine.UI.Selectable::m_SpriteState
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A ___m_SpriteState_10;
// UnityEngine.UI.AnimationTriggers UnityEngine.UI.Selectable::m_AnimationTriggers
AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5 * ___m_AnimationTriggers_11;
// System.Boolean UnityEngine.UI.Selectable::m_Interactable
bool ___m_Interactable_12;
// UnityEngine.UI.Graphic UnityEngine.UI.Selectable::m_TargetGraphic
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * ___m_TargetGraphic_13;
// System.Boolean UnityEngine.UI.Selectable::m_GroupsAllowInteraction
bool ___m_GroupsAllowInteraction_14;
// System.Int32 UnityEngine.UI.Selectable::m_CurrentIndex
int32_t ___m_CurrentIndex_15;
// System.Boolean UnityEngine.UI.Selectable::<isPointerInside>k__BackingField
bool ___U3CisPointerInsideU3Ek__BackingField_16;
// System.Boolean UnityEngine.UI.Selectable::<isPointerDown>k__BackingField
bool ___U3CisPointerDownU3Ek__BackingField_17;
// System.Boolean UnityEngine.UI.Selectable::<hasSelection>k__BackingField
bool ___U3ChasSelectionU3Ek__BackingField_18;
// System.Collections.Generic.List`1<UnityEngine.CanvasGroup> UnityEngine.UI.Selectable::m_CanvasGroupCache
List_1_t053DAB6E2110E276A0339D73497193F464BC1F82 * ___m_CanvasGroupCache_19;
public:
inline static int32_t get_offset_of_m_EnableCalled_6() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_EnableCalled_6)); }
inline bool get_m_EnableCalled_6() const { return ___m_EnableCalled_6; }
inline bool* get_address_of_m_EnableCalled_6() { return &___m_EnableCalled_6; }
inline void set_m_EnableCalled_6(bool value)
{
___m_EnableCalled_6 = value;
}
inline static int32_t get_offset_of_m_Navigation_7() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_Navigation_7)); }
inline Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 get_m_Navigation_7() const { return ___m_Navigation_7; }
inline Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 * get_address_of_m_Navigation_7() { return &___m_Navigation_7; }
inline void set_m_Navigation_7(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 value)
{
___m_Navigation_7 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Navigation_7))->___m_SelectOnUp_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Navigation_7))->___m_SelectOnDown_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Navigation_7))->___m_SelectOnLeft_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Navigation_7))->___m_SelectOnRight_4), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_Transition_8() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_Transition_8)); }
inline int32_t get_m_Transition_8() const { return ___m_Transition_8; }
inline int32_t* get_address_of_m_Transition_8() { return &___m_Transition_8; }
inline void set_m_Transition_8(int32_t value)
{
___m_Transition_8 = value;
}
inline static int32_t get_offset_of_m_Colors_9() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_Colors_9)); }
inline ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA get_m_Colors_9() const { return ___m_Colors_9; }
inline ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * get_address_of_m_Colors_9() { return &___m_Colors_9; }
inline void set_m_Colors_9(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA value)
{
___m_Colors_9 = value;
}
inline static int32_t get_offset_of_m_SpriteState_10() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_SpriteState_10)); }
inline SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A get_m_SpriteState_10() const { return ___m_SpriteState_10; }
inline SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A * get_address_of_m_SpriteState_10() { return &___m_SpriteState_10; }
inline void set_m_SpriteState_10(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A value)
{
___m_SpriteState_10 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_SpriteState_10))->___m_HighlightedSprite_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_SpriteState_10))->___m_PressedSprite_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_SpriteState_10))->___m_SelectedSprite_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_SpriteState_10))->___m_DisabledSprite_3), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_AnimationTriggers_11() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_AnimationTriggers_11)); }
inline AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5 * get_m_AnimationTriggers_11() const { return ___m_AnimationTriggers_11; }
inline AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5 ** get_address_of_m_AnimationTriggers_11() { return &___m_AnimationTriggers_11; }
inline void set_m_AnimationTriggers_11(AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5 * value)
{
___m_AnimationTriggers_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_AnimationTriggers_11), (void*)value);
}
inline static int32_t get_offset_of_m_Interactable_12() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_Interactable_12)); }
inline bool get_m_Interactable_12() const { return ___m_Interactable_12; }
inline bool* get_address_of_m_Interactable_12() { return &___m_Interactable_12; }
inline void set_m_Interactable_12(bool value)
{
___m_Interactable_12 = value;
}
inline static int32_t get_offset_of_m_TargetGraphic_13() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_TargetGraphic_13)); }
inline Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * get_m_TargetGraphic_13() const { return ___m_TargetGraphic_13; }
inline Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 ** get_address_of_m_TargetGraphic_13() { return &___m_TargetGraphic_13; }
inline void set_m_TargetGraphic_13(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * value)
{
___m_TargetGraphic_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TargetGraphic_13), (void*)value);
}
inline static int32_t get_offset_of_m_GroupsAllowInteraction_14() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_GroupsAllowInteraction_14)); }
inline bool get_m_GroupsAllowInteraction_14() const { return ___m_GroupsAllowInteraction_14; }
inline bool* get_address_of_m_GroupsAllowInteraction_14() { return &___m_GroupsAllowInteraction_14; }
inline void set_m_GroupsAllowInteraction_14(bool value)
{
___m_GroupsAllowInteraction_14 = value;
}
inline static int32_t get_offset_of_m_CurrentIndex_15() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_CurrentIndex_15)); }
inline int32_t get_m_CurrentIndex_15() const { return ___m_CurrentIndex_15; }
inline int32_t* get_address_of_m_CurrentIndex_15() { return &___m_CurrentIndex_15; }
inline void set_m_CurrentIndex_15(int32_t value)
{
___m_CurrentIndex_15 = value;
}
inline static int32_t get_offset_of_U3CisPointerInsideU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___U3CisPointerInsideU3Ek__BackingField_16)); }
inline bool get_U3CisPointerInsideU3Ek__BackingField_16() const { return ___U3CisPointerInsideU3Ek__BackingField_16; }
inline bool* get_address_of_U3CisPointerInsideU3Ek__BackingField_16() { return &___U3CisPointerInsideU3Ek__BackingField_16; }
inline void set_U3CisPointerInsideU3Ek__BackingField_16(bool value)
{
___U3CisPointerInsideU3Ek__BackingField_16 = value;
}
inline static int32_t get_offset_of_U3CisPointerDownU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___U3CisPointerDownU3Ek__BackingField_17)); }
inline bool get_U3CisPointerDownU3Ek__BackingField_17() const { return ___U3CisPointerDownU3Ek__BackingField_17; }
inline bool* get_address_of_U3CisPointerDownU3Ek__BackingField_17() { return &___U3CisPointerDownU3Ek__BackingField_17; }
inline void set_U3CisPointerDownU3Ek__BackingField_17(bool value)
{
___U3CisPointerDownU3Ek__BackingField_17 = value;
}
inline static int32_t get_offset_of_U3ChasSelectionU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___U3ChasSelectionU3Ek__BackingField_18)); }
inline bool get_U3ChasSelectionU3Ek__BackingField_18() const { return ___U3ChasSelectionU3Ek__BackingField_18; }
inline bool* get_address_of_U3ChasSelectionU3Ek__BackingField_18() { return &___U3ChasSelectionU3Ek__BackingField_18; }
inline void set_U3ChasSelectionU3Ek__BackingField_18(bool value)
{
___U3ChasSelectionU3Ek__BackingField_18 = value;
}
inline static int32_t get_offset_of_m_CanvasGroupCache_19() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A, ___m_CanvasGroupCache_19)); }
inline List_1_t053DAB6E2110E276A0339D73497193F464BC1F82 * get_m_CanvasGroupCache_19() const { return ___m_CanvasGroupCache_19; }
inline List_1_t053DAB6E2110E276A0339D73497193F464BC1F82 ** get_address_of_m_CanvasGroupCache_19() { return &___m_CanvasGroupCache_19; }
inline void set_m_CanvasGroupCache_19(List_1_t053DAB6E2110E276A0339D73497193F464BC1F82 * value)
{
___m_CanvasGroupCache_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CanvasGroupCache_19), (void*)value);
}
};
struct Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A_StaticFields
{
public:
// UnityEngine.UI.Selectable[] UnityEngine.UI.Selectable::s_Selectables
SelectableU5BU5D_t98F7C5A863B20CD5DBE49CE288038BA954C83F02* ___s_Selectables_4;
// System.Int32 UnityEngine.UI.Selectable::s_SelectableCount
int32_t ___s_SelectableCount_5;
public:
inline static int32_t get_offset_of_s_Selectables_4() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A_StaticFields, ___s_Selectables_4)); }
inline SelectableU5BU5D_t98F7C5A863B20CD5DBE49CE288038BA954C83F02* get_s_Selectables_4() const { return ___s_Selectables_4; }
inline SelectableU5BU5D_t98F7C5A863B20CD5DBE49CE288038BA954C83F02** get_address_of_s_Selectables_4() { return &___s_Selectables_4; }
inline void set_s_Selectables_4(SelectableU5BU5D_t98F7C5A863B20CD5DBE49CE288038BA954C83F02* value)
{
___s_Selectables_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Selectables_4), (void*)value);
}
inline static int32_t get_offset_of_s_SelectableCount_5() { return static_cast<int32_t>(offsetof(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A_StaticFields, ___s_SelectableCount_5)); }
inline int32_t get_s_SelectableCount_5() const { return ___s_SelectableCount_5; }
inline int32_t* get_address_of_s_SelectableCount_5() { return &___s_SelectableCount_5; }
inline void set_s_SelectableCount_5(int32_t value)
{
___s_SelectableCount_5 = value;
}
};
// UnityEngine.EventSystems.PhysicsRaycaster
struct PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C : public BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966
{
public:
// UnityEngine.Camera UnityEngine.EventSystems.PhysicsRaycaster::m_EventCamera
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___m_EventCamera_6;
// UnityEngine.LayerMask UnityEngine.EventSystems.PhysicsRaycaster::m_EventMask
LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 ___m_EventMask_7;
// System.Int32 UnityEngine.EventSystems.PhysicsRaycaster::m_MaxRayIntersections
int32_t ___m_MaxRayIntersections_8;
// System.Int32 UnityEngine.EventSystems.PhysicsRaycaster::m_LastMaxRayIntersections
int32_t ___m_LastMaxRayIntersections_9;
// UnityEngine.RaycastHit[] UnityEngine.EventSystems.PhysicsRaycaster::m_Hits
RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57* ___m_Hits_10;
public:
inline static int32_t get_offset_of_m_EventCamera_6() { return static_cast<int32_t>(offsetof(PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C, ___m_EventCamera_6)); }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * get_m_EventCamera_6() const { return ___m_EventCamera_6; }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 ** get_address_of_m_EventCamera_6() { return &___m_EventCamera_6; }
inline void set_m_EventCamera_6(Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * value)
{
___m_EventCamera_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_EventCamera_6), (void*)value);
}
inline static int32_t get_offset_of_m_EventMask_7() { return static_cast<int32_t>(offsetof(PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C, ___m_EventMask_7)); }
inline LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 get_m_EventMask_7() const { return ___m_EventMask_7; }
inline LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 * get_address_of_m_EventMask_7() { return &___m_EventMask_7; }
inline void set_m_EventMask_7(LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 value)
{
___m_EventMask_7 = value;
}
inline static int32_t get_offset_of_m_MaxRayIntersections_8() { return static_cast<int32_t>(offsetof(PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C, ___m_MaxRayIntersections_8)); }
inline int32_t get_m_MaxRayIntersections_8() const { return ___m_MaxRayIntersections_8; }
inline int32_t* get_address_of_m_MaxRayIntersections_8() { return &___m_MaxRayIntersections_8; }
inline void set_m_MaxRayIntersections_8(int32_t value)
{
___m_MaxRayIntersections_8 = value;
}
inline static int32_t get_offset_of_m_LastMaxRayIntersections_9() { return static_cast<int32_t>(offsetof(PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C, ___m_LastMaxRayIntersections_9)); }
inline int32_t get_m_LastMaxRayIntersections_9() const { return ___m_LastMaxRayIntersections_9; }
inline int32_t* get_address_of_m_LastMaxRayIntersections_9() { return &___m_LastMaxRayIntersections_9; }
inline void set_m_LastMaxRayIntersections_9(int32_t value)
{
___m_LastMaxRayIntersections_9 = value;
}
inline static int32_t get_offset_of_m_Hits_10() { return static_cast<int32_t>(offsetof(PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C, ___m_Hits_10)); }
inline RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57* get_m_Hits_10() const { return ___m_Hits_10; }
inline RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57** get_address_of_m_Hits_10() { return &___m_Hits_10; }
inline void set_m_Hits_10(RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57* value)
{
___m_Hits_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Hits_10), (void*)value);
}
};
// UnityEngine.EventSystems.PointerInputModule
struct PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C : public BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939
{
public:
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.EventSystems.PointerEventData> UnityEngine.EventSystems.PointerInputModule::m_PointerData
Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * ___m_PointerData_14;
// UnityEngine.EventSystems.PointerInputModule_MouseState UnityEngine.EventSystems.PointerInputModule::m_MouseState
MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * ___m_MouseState_15;
public:
inline static int32_t get_offset_of_m_PointerData_14() { return static_cast<int32_t>(offsetof(PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C, ___m_PointerData_14)); }
inline Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * get_m_PointerData_14() const { return ___m_PointerData_14; }
inline Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 ** get_address_of_m_PointerData_14() { return &___m_PointerData_14; }
inline void set_m_PointerData_14(Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * value)
{
___m_PointerData_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PointerData_14), (void*)value);
}
inline static int32_t get_offset_of_m_MouseState_15() { return static_cast<int32_t>(offsetof(PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C, ___m_MouseState_15)); }
inline MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * get_m_MouseState_15() const { return ___m_MouseState_15; }
inline MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 ** get_address_of_m_MouseState_15() { return &___m_MouseState_15; }
inline void set_m_MouseState_15(MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * value)
{
___m_MouseState_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_MouseState_15), (void*)value);
}
};
// UnityEngine.UI.Button
struct Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B : public Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A
{
public:
// UnityEngine.UI.Button_ButtonClickedEvent UnityEngine.UI.Button::m_OnClick
ButtonClickedEvent_t975D9C903BC4880557ADD7D3ACFB01CB2B3D6DDB * ___m_OnClick_20;
public:
inline static int32_t get_offset_of_m_OnClick_20() { return static_cast<int32_t>(offsetof(Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B, ___m_OnClick_20)); }
inline ButtonClickedEvent_t975D9C903BC4880557ADD7D3ACFB01CB2B3D6DDB * get_m_OnClick_20() const { return ___m_OnClick_20; }
inline ButtonClickedEvent_t975D9C903BC4880557ADD7D3ACFB01CB2B3D6DDB ** get_address_of_m_OnClick_20() { return &___m_OnClick_20; }
inline void set_m_OnClick_20(ButtonClickedEvent_t975D9C903BC4880557ADD7D3ACFB01CB2B3D6DDB * value)
{
___m_OnClick_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnClick_20), (void*)value);
}
};
// UnityEngine.UI.Dropdown
struct Dropdown_tF6331401084B1213CAB10587A6EC81461501930F : public Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A
{
public:
// UnityEngine.RectTransform UnityEngine.UI.Dropdown::m_Template
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_Template_20;
// UnityEngine.UI.Text UnityEngine.UI.Dropdown::m_CaptionText
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___m_CaptionText_21;
// UnityEngine.UI.Image UnityEngine.UI.Dropdown::m_CaptionImage
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * ___m_CaptionImage_22;
// UnityEngine.UI.Text UnityEngine.UI.Dropdown::m_ItemText
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___m_ItemText_23;
// UnityEngine.UI.Image UnityEngine.UI.Dropdown::m_ItemImage
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * ___m_ItemImage_24;
// System.Int32 UnityEngine.UI.Dropdown::m_Value
int32_t ___m_Value_25;
// UnityEngine.UI.Dropdown_OptionDataList UnityEngine.UI.Dropdown::m_Options
OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D * ___m_Options_26;
// UnityEngine.UI.Dropdown_DropdownEvent UnityEngine.UI.Dropdown::m_OnValueChanged
DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306 * ___m_OnValueChanged_27;
// System.Single UnityEngine.UI.Dropdown::m_AlphaFadeSpeed
float ___m_AlphaFadeSpeed_28;
// UnityEngine.GameObject UnityEngine.UI.Dropdown::m_Dropdown
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_Dropdown_29;
// UnityEngine.GameObject UnityEngine.UI.Dropdown::m_Blocker
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_Blocker_30;
// System.Collections.Generic.List`1<UnityEngine.UI.Dropdown_DropdownItem> UnityEngine.UI.Dropdown::m_Items
List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * ___m_Items_31;
// UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween> UnityEngine.UI.Dropdown::m_AlphaTweenRunner
TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF * ___m_AlphaTweenRunner_32;
// System.Boolean UnityEngine.UI.Dropdown::validTemplate
bool ___validTemplate_33;
public:
inline static int32_t get_offset_of_m_Template_20() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_Template_20)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_Template_20() const { return ___m_Template_20; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_Template_20() { return &___m_Template_20; }
inline void set_m_Template_20(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_Template_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Template_20), (void*)value);
}
inline static int32_t get_offset_of_m_CaptionText_21() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_CaptionText_21)); }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * get_m_CaptionText_21() const { return ___m_CaptionText_21; }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 ** get_address_of_m_CaptionText_21() { return &___m_CaptionText_21; }
inline void set_m_CaptionText_21(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * value)
{
___m_CaptionText_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CaptionText_21), (void*)value);
}
inline static int32_t get_offset_of_m_CaptionImage_22() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_CaptionImage_22)); }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * get_m_CaptionImage_22() const { return ___m_CaptionImage_22; }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E ** get_address_of_m_CaptionImage_22() { return &___m_CaptionImage_22; }
inline void set_m_CaptionImage_22(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * value)
{
___m_CaptionImage_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CaptionImage_22), (void*)value);
}
inline static int32_t get_offset_of_m_ItemText_23() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_ItemText_23)); }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * get_m_ItemText_23() const { return ___m_ItemText_23; }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 ** get_address_of_m_ItemText_23() { return &___m_ItemText_23; }
inline void set_m_ItemText_23(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * value)
{
___m_ItemText_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ItemText_23), (void*)value);
}
inline static int32_t get_offset_of_m_ItemImage_24() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_ItemImage_24)); }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * get_m_ItemImage_24() const { return ___m_ItemImage_24; }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E ** get_address_of_m_ItemImage_24() { return &___m_ItemImage_24; }
inline void set_m_ItemImage_24(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * value)
{
___m_ItemImage_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ItemImage_24), (void*)value);
}
inline static int32_t get_offset_of_m_Value_25() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_Value_25)); }
inline int32_t get_m_Value_25() const { return ___m_Value_25; }
inline int32_t* get_address_of_m_Value_25() { return &___m_Value_25; }
inline void set_m_Value_25(int32_t value)
{
___m_Value_25 = value;
}
inline static int32_t get_offset_of_m_Options_26() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_Options_26)); }
inline OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D * get_m_Options_26() const { return ___m_Options_26; }
inline OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D ** get_address_of_m_Options_26() { return &___m_Options_26; }
inline void set_m_Options_26(OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D * value)
{
___m_Options_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Options_26), (void*)value);
}
inline static int32_t get_offset_of_m_OnValueChanged_27() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_OnValueChanged_27)); }
inline DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306 * get_m_OnValueChanged_27() const { return ___m_OnValueChanged_27; }
inline DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306 ** get_address_of_m_OnValueChanged_27() { return &___m_OnValueChanged_27; }
inline void set_m_OnValueChanged_27(DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306 * value)
{
___m_OnValueChanged_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnValueChanged_27), (void*)value);
}
inline static int32_t get_offset_of_m_AlphaFadeSpeed_28() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_AlphaFadeSpeed_28)); }
inline float get_m_AlphaFadeSpeed_28() const { return ___m_AlphaFadeSpeed_28; }
inline float* get_address_of_m_AlphaFadeSpeed_28() { return &___m_AlphaFadeSpeed_28; }
inline void set_m_AlphaFadeSpeed_28(float value)
{
___m_AlphaFadeSpeed_28 = value;
}
inline static int32_t get_offset_of_m_Dropdown_29() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_Dropdown_29)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_Dropdown_29() const { return ___m_Dropdown_29; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_Dropdown_29() { return &___m_Dropdown_29; }
inline void set_m_Dropdown_29(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___m_Dropdown_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Dropdown_29), (void*)value);
}
inline static int32_t get_offset_of_m_Blocker_30() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_Blocker_30)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_Blocker_30() const { return ___m_Blocker_30; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_Blocker_30() { return &___m_Blocker_30; }
inline void set_m_Blocker_30(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___m_Blocker_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Blocker_30), (void*)value);
}
inline static int32_t get_offset_of_m_Items_31() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_Items_31)); }
inline List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * get_m_Items_31() const { return ___m_Items_31; }
inline List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 ** get_address_of_m_Items_31() { return &___m_Items_31; }
inline void set_m_Items_31(List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * value)
{
___m_Items_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Items_31), (void*)value);
}
inline static int32_t get_offset_of_m_AlphaTweenRunner_32() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___m_AlphaTweenRunner_32)); }
inline TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF * get_m_AlphaTweenRunner_32() const { return ___m_AlphaTweenRunner_32; }
inline TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF ** get_address_of_m_AlphaTweenRunner_32() { return &___m_AlphaTweenRunner_32; }
inline void set_m_AlphaTweenRunner_32(TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF * value)
{
___m_AlphaTweenRunner_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_AlphaTweenRunner_32), (void*)value);
}
inline static int32_t get_offset_of_validTemplate_33() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F, ___validTemplate_33)); }
inline bool get_validTemplate_33() const { return ___validTemplate_33; }
inline bool* get_address_of_validTemplate_33() { return &___validTemplate_33; }
inline void set_validTemplate_33(bool value)
{
___validTemplate_33 = value;
}
};
struct Dropdown_tF6331401084B1213CAB10587A6EC81461501930F_StaticFields
{
public:
// UnityEngine.UI.Dropdown_OptionData UnityEngine.UI.Dropdown::s_NoOptionData
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * ___s_NoOptionData_34;
public:
inline static int32_t get_offset_of_s_NoOptionData_34() { return static_cast<int32_t>(offsetof(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F_StaticFields, ___s_NoOptionData_34)); }
inline OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * get_s_NoOptionData_34() const { return ___s_NoOptionData_34; }
inline OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 ** get_address_of_s_NoOptionData_34() { return &___s_NoOptionData_34; }
inline void set_s_NoOptionData_34(OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * value)
{
___s_NoOptionData_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_NoOptionData_34), (void*)value);
}
};
// UnityEngine.UI.GraphicRaycaster
struct GraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83 : public BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966
{
public:
// System.Boolean UnityEngine.UI.GraphicRaycaster::m_IgnoreReversedGraphics
bool ___m_IgnoreReversedGraphics_6;
// UnityEngine.UI.GraphicRaycaster_BlockingObjects UnityEngine.UI.GraphicRaycaster::m_BlockingObjects
int32_t ___m_BlockingObjects_7;
// UnityEngine.LayerMask UnityEngine.UI.GraphicRaycaster::m_BlockingMask
LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 ___m_BlockingMask_8;
// UnityEngine.Canvas UnityEngine.UI.GraphicRaycaster::m_Canvas
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * ___m_Canvas_9;
// System.Collections.Generic.List`1<UnityEngine.UI.Graphic> UnityEngine.UI.GraphicRaycaster::m_RaycastResults
List_1_t705F73CF6A6B35959C68A5EDDA0E8C8B3137797F * ___m_RaycastResults_10;
public:
inline static int32_t get_offset_of_m_IgnoreReversedGraphics_6() { return static_cast<int32_t>(offsetof(GraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83, ___m_IgnoreReversedGraphics_6)); }
inline bool get_m_IgnoreReversedGraphics_6() const { return ___m_IgnoreReversedGraphics_6; }
inline bool* get_address_of_m_IgnoreReversedGraphics_6() { return &___m_IgnoreReversedGraphics_6; }
inline void set_m_IgnoreReversedGraphics_6(bool value)
{
___m_IgnoreReversedGraphics_6 = value;
}
inline static int32_t get_offset_of_m_BlockingObjects_7() { return static_cast<int32_t>(offsetof(GraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83, ___m_BlockingObjects_7)); }
inline int32_t get_m_BlockingObjects_7() const { return ___m_BlockingObjects_7; }
inline int32_t* get_address_of_m_BlockingObjects_7() { return &___m_BlockingObjects_7; }
inline void set_m_BlockingObjects_7(int32_t value)
{
___m_BlockingObjects_7 = value;
}
inline static int32_t get_offset_of_m_BlockingMask_8() { return static_cast<int32_t>(offsetof(GraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83, ___m_BlockingMask_8)); }
inline LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 get_m_BlockingMask_8() const { return ___m_BlockingMask_8; }
inline LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 * get_address_of_m_BlockingMask_8() { return &___m_BlockingMask_8; }
inline void set_m_BlockingMask_8(LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 value)
{
___m_BlockingMask_8 = value;
}
inline static int32_t get_offset_of_m_Canvas_9() { return static_cast<int32_t>(offsetof(GraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83, ___m_Canvas_9)); }
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * get_m_Canvas_9() const { return ___m_Canvas_9; }
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 ** get_address_of_m_Canvas_9() { return &___m_Canvas_9; }
inline void set_m_Canvas_9(Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * value)
{
___m_Canvas_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Canvas_9), (void*)value);
}
inline static int32_t get_offset_of_m_RaycastResults_10() { return static_cast<int32_t>(offsetof(GraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83, ___m_RaycastResults_10)); }
inline List_1_t705F73CF6A6B35959C68A5EDDA0E8C8B3137797F * get_m_RaycastResults_10() const { return ___m_RaycastResults_10; }
inline List_1_t705F73CF6A6B35959C68A5EDDA0E8C8B3137797F ** get_address_of_m_RaycastResults_10() { return &___m_RaycastResults_10; }
inline void set_m_RaycastResults_10(List_1_t705F73CF6A6B35959C68A5EDDA0E8C8B3137797F * value)
{
___m_RaycastResults_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RaycastResults_10), (void*)value);
}
};
struct GraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83_StaticFields
{
public:
// System.Collections.Generic.List`1<UnityEngine.UI.Graphic> UnityEngine.UI.GraphicRaycaster::s_SortedGraphics
List_1_t705F73CF6A6B35959C68A5EDDA0E8C8B3137797F * ___s_SortedGraphics_11;
public:
inline static int32_t get_offset_of_s_SortedGraphics_11() { return static_cast<int32_t>(offsetof(GraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83_StaticFields, ___s_SortedGraphics_11)); }
inline List_1_t705F73CF6A6B35959C68A5EDDA0E8C8B3137797F * get_s_SortedGraphics_11() const { return ___s_SortedGraphics_11; }
inline List_1_t705F73CF6A6B35959C68A5EDDA0E8C8B3137797F ** get_address_of_s_SortedGraphics_11() { return &___s_SortedGraphics_11; }
inline void set_s_SortedGraphics_11(List_1_t705F73CF6A6B35959C68A5EDDA0E8C8B3137797F * value)
{
___s_SortedGraphics_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_SortedGraphics_11), (void*)value);
}
};
// UnityEngine.UI.InputField
struct InputField_t533609195B110760BCFF00B746C87D81969CB005 : public Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A
{
public:
// UnityEngine.TouchScreenKeyboard UnityEngine.UI.InputField::m_Keyboard
TouchScreenKeyboard_t2A69F85698E9780470181532D3F2BC903623FD90 * ___m_Keyboard_20;
// UnityEngine.UI.Text UnityEngine.UI.InputField::m_TextComponent
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___m_TextComponent_22;
// UnityEngine.UI.Graphic UnityEngine.UI.InputField::m_Placeholder
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * ___m_Placeholder_23;
// UnityEngine.UI.InputField_ContentType UnityEngine.UI.InputField::m_ContentType
int32_t ___m_ContentType_24;
// UnityEngine.UI.InputField_InputType UnityEngine.UI.InputField::m_InputType
int32_t ___m_InputType_25;
// System.Char UnityEngine.UI.InputField::m_AsteriskChar
Il2CppChar ___m_AsteriskChar_26;
// UnityEngine.TouchScreenKeyboardType UnityEngine.UI.InputField::m_KeyboardType
int32_t ___m_KeyboardType_27;
// UnityEngine.UI.InputField_LineType UnityEngine.UI.InputField::m_LineType
int32_t ___m_LineType_28;
// System.Boolean UnityEngine.UI.InputField::m_HideMobileInput
bool ___m_HideMobileInput_29;
// UnityEngine.UI.InputField_CharacterValidation UnityEngine.UI.InputField::m_CharacterValidation
int32_t ___m_CharacterValidation_30;
// System.Int32 UnityEngine.UI.InputField::m_CharacterLimit
int32_t ___m_CharacterLimit_31;
// UnityEngine.UI.InputField_SubmitEvent UnityEngine.UI.InputField::m_OnEndEdit
SubmitEvent_tE1EC12ACD7DE7D57B9ECBBACA05493E226E53E4A * ___m_OnEndEdit_32;
// UnityEngine.UI.InputField_OnChangeEvent UnityEngine.UI.InputField::m_OnValueChanged
OnChangeEvent_t6C3C7DD6AEA262BB97AD53B0E669EC7EC19BCC1A * ___m_OnValueChanged_33;
// UnityEngine.UI.InputField_OnValidateInput UnityEngine.UI.InputField::m_OnValidateInput
OnValidateInput_t3E857B491A319A5B22F6AD3D02CFD22C1BBFD8D0 * ___m_OnValidateInput_34;
// UnityEngine.Color UnityEngine.UI.InputField::m_CaretColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_CaretColor_35;
// System.Boolean UnityEngine.UI.InputField::m_CustomCaretColor
bool ___m_CustomCaretColor_36;
// UnityEngine.Color UnityEngine.UI.InputField::m_SelectionColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_SelectionColor_37;
// System.String UnityEngine.UI.InputField::m_Text
String_t* ___m_Text_38;
// System.Single UnityEngine.UI.InputField::m_CaretBlinkRate
float ___m_CaretBlinkRate_39;
// System.Int32 UnityEngine.UI.InputField::m_CaretWidth
int32_t ___m_CaretWidth_40;
// System.Boolean UnityEngine.UI.InputField::m_ReadOnly
bool ___m_ReadOnly_41;
// System.Int32 UnityEngine.UI.InputField::m_CaretPosition
int32_t ___m_CaretPosition_42;
// System.Int32 UnityEngine.UI.InputField::m_CaretSelectPosition
int32_t ___m_CaretSelectPosition_43;
// UnityEngine.RectTransform UnityEngine.UI.InputField::caretRectTrans
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___caretRectTrans_44;
// UnityEngine.UIVertex[] UnityEngine.UI.InputField::m_CursorVerts
UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* ___m_CursorVerts_45;
// UnityEngine.TextGenerator UnityEngine.UI.InputField::m_InputTextCache
TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 * ___m_InputTextCache_46;
// UnityEngine.CanvasRenderer UnityEngine.UI.InputField::m_CachedInputRenderer
CanvasRenderer_tB4D9C9FE77FD5C9C4546FC022D6E956960BC2B72 * ___m_CachedInputRenderer_47;
// System.Boolean UnityEngine.UI.InputField::m_PreventFontCallback
bool ___m_PreventFontCallback_48;
// UnityEngine.Mesh UnityEngine.UI.InputField::m_Mesh
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___m_Mesh_49;
// System.Boolean UnityEngine.UI.InputField::m_AllowInput
bool ___m_AllowInput_50;
// System.Boolean UnityEngine.UI.InputField::m_ShouldActivateNextUpdate
bool ___m_ShouldActivateNextUpdate_51;
// System.Boolean UnityEngine.UI.InputField::m_UpdateDrag
bool ___m_UpdateDrag_52;
// System.Boolean UnityEngine.UI.InputField::m_DragPositionOutOfBounds
bool ___m_DragPositionOutOfBounds_53;
// System.Boolean UnityEngine.UI.InputField::m_CaretVisible
bool ___m_CaretVisible_56;
// UnityEngine.Coroutine UnityEngine.UI.InputField::m_BlinkCoroutine
Coroutine_tAE7DB2FC70A0AE6477F896F852057CB0754F06EC * ___m_BlinkCoroutine_57;
// System.Single UnityEngine.UI.InputField::m_BlinkStartTime
float ___m_BlinkStartTime_58;
// System.Int32 UnityEngine.UI.InputField::m_DrawStart
int32_t ___m_DrawStart_59;
// System.Int32 UnityEngine.UI.InputField::m_DrawEnd
int32_t ___m_DrawEnd_60;
// UnityEngine.Coroutine UnityEngine.UI.InputField::m_DragCoroutine
Coroutine_tAE7DB2FC70A0AE6477F896F852057CB0754F06EC * ___m_DragCoroutine_61;
// System.String UnityEngine.UI.InputField::m_OriginalText
String_t* ___m_OriginalText_62;
// System.Boolean UnityEngine.UI.InputField::m_WasCanceled
bool ___m_WasCanceled_63;
// System.Boolean UnityEngine.UI.InputField::m_HasDoneFocusTransition
bool ___m_HasDoneFocusTransition_64;
// UnityEngine.WaitForSecondsRealtime UnityEngine.UI.InputField::m_WaitForSecondsRealtime
WaitForSecondsRealtime_t0CF361107C4A9E25E0D4CF2F37732CE785235739 * ___m_WaitForSecondsRealtime_65;
// System.Boolean UnityEngine.UI.InputField::m_TouchKeyboardAllowsInPlaceEditing
bool ___m_TouchKeyboardAllowsInPlaceEditing_66;
// UnityEngine.Event UnityEngine.UI.InputField::m_ProcessingEvent
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * ___m_ProcessingEvent_68;
public:
inline static int32_t get_offset_of_m_Keyboard_20() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_Keyboard_20)); }
inline TouchScreenKeyboard_t2A69F85698E9780470181532D3F2BC903623FD90 * get_m_Keyboard_20() const { return ___m_Keyboard_20; }
inline TouchScreenKeyboard_t2A69F85698E9780470181532D3F2BC903623FD90 ** get_address_of_m_Keyboard_20() { return &___m_Keyboard_20; }
inline void set_m_Keyboard_20(TouchScreenKeyboard_t2A69F85698E9780470181532D3F2BC903623FD90 * value)
{
___m_Keyboard_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Keyboard_20), (void*)value);
}
inline static int32_t get_offset_of_m_TextComponent_22() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_TextComponent_22)); }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * get_m_TextComponent_22() const { return ___m_TextComponent_22; }
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 ** get_address_of_m_TextComponent_22() { return &___m_TextComponent_22; }
inline void set_m_TextComponent_22(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * value)
{
___m_TextComponent_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TextComponent_22), (void*)value);
}
inline static int32_t get_offset_of_m_Placeholder_23() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_Placeholder_23)); }
inline Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * get_m_Placeholder_23() const { return ___m_Placeholder_23; }
inline Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 ** get_address_of_m_Placeholder_23() { return &___m_Placeholder_23; }
inline void set_m_Placeholder_23(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * value)
{
___m_Placeholder_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Placeholder_23), (void*)value);
}
inline static int32_t get_offset_of_m_ContentType_24() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_ContentType_24)); }
inline int32_t get_m_ContentType_24() const { return ___m_ContentType_24; }
inline int32_t* get_address_of_m_ContentType_24() { return &___m_ContentType_24; }
inline void set_m_ContentType_24(int32_t value)
{
___m_ContentType_24 = value;
}
inline static int32_t get_offset_of_m_InputType_25() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_InputType_25)); }
inline int32_t get_m_InputType_25() const { return ___m_InputType_25; }
inline int32_t* get_address_of_m_InputType_25() { return &___m_InputType_25; }
inline void set_m_InputType_25(int32_t value)
{
___m_InputType_25 = value;
}
inline static int32_t get_offset_of_m_AsteriskChar_26() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_AsteriskChar_26)); }
inline Il2CppChar get_m_AsteriskChar_26() const { return ___m_AsteriskChar_26; }
inline Il2CppChar* get_address_of_m_AsteriskChar_26() { return &___m_AsteriskChar_26; }
inline void set_m_AsteriskChar_26(Il2CppChar value)
{
___m_AsteriskChar_26 = value;
}
inline static int32_t get_offset_of_m_KeyboardType_27() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_KeyboardType_27)); }
inline int32_t get_m_KeyboardType_27() const { return ___m_KeyboardType_27; }
inline int32_t* get_address_of_m_KeyboardType_27() { return &___m_KeyboardType_27; }
inline void set_m_KeyboardType_27(int32_t value)
{
___m_KeyboardType_27 = value;
}
inline static int32_t get_offset_of_m_LineType_28() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_LineType_28)); }
inline int32_t get_m_LineType_28() const { return ___m_LineType_28; }
inline int32_t* get_address_of_m_LineType_28() { return &___m_LineType_28; }
inline void set_m_LineType_28(int32_t value)
{
___m_LineType_28 = value;
}
inline static int32_t get_offset_of_m_HideMobileInput_29() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_HideMobileInput_29)); }
inline bool get_m_HideMobileInput_29() const { return ___m_HideMobileInput_29; }
inline bool* get_address_of_m_HideMobileInput_29() { return &___m_HideMobileInput_29; }
inline void set_m_HideMobileInput_29(bool value)
{
___m_HideMobileInput_29 = value;
}
inline static int32_t get_offset_of_m_CharacterValidation_30() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_CharacterValidation_30)); }
inline int32_t get_m_CharacterValidation_30() const { return ___m_CharacterValidation_30; }
inline int32_t* get_address_of_m_CharacterValidation_30() { return &___m_CharacterValidation_30; }
inline void set_m_CharacterValidation_30(int32_t value)
{
___m_CharacterValidation_30 = value;
}
inline static int32_t get_offset_of_m_CharacterLimit_31() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_CharacterLimit_31)); }
inline int32_t get_m_CharacterLimit_31() const { return ___m_CharacterLimit_31; }
inline int32_t* get_address_of_m_CharacterLimit_31() { return &___m_CharacterLimit_31; }
inline void set_m_CharacterLimit_31(int32_t value)
{
___m_CharacterLimit_31 = value;
}
inline static int32_t get_offset_of_m_OnEndEdit_32() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_OnEndEdit_32)); }
inline SubmitEvent_tE1EC12ACD7DE7D57B9ECBBACA05493E226E53E4A * get_m_OnEndEdit_32() const { return ___m_OnEndEdit_32; }
inline SubmitEvent_tE1EC12ACD7DE7D57B9ECBBACA05493E226E53E4A ** get_address_of_m_OnEndEdit_32() { return &___m_OnEndEdit_32; }
inline void set_m_OnEndEdit_32(SubmitEvent_tE1EC12ACD7DE7D57B9ECBBACA05493E226E53E4A * value)
{
___m_OnEndEdit_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnEndEdit_32), (void*)value);
}
inline static int32_t get_offset_of_m_OnValueChanged_33() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_OnValueChanged_33)); }
inline OnChangeEvent_t6C3C7DD6AEA262BB97AD53B0E669EC7EC19BCC1A * get_m_OnValueChanged_33() const { return ___m_OnValueChanged_33; }
inline OnChangeEvent_t6C3C7DD6AEA262BB97AD53B0E669EC7EC19BCC1A ** get_address_of_m_OnValueChanged_33() { return &___m_OnValueChanged_33; }
inline void set_m_OnValueChanged_33(OnChangeEvent_t6C3C7DD6AEA262BB97AD53B0E669EC7EC19BCC1A * value)
{
___m_OnValueChanged_33 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnValueChanged_33), (void*)value);
}
inline static int32_t get_offset_of_m_OnValidateInput_34() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_OnValidateInput_34)); }
inline OnValidateInput_t3E857B491A319A5B22F6AD3D02CFD22C1BBFD8D0 * get_m_OnValidateInput_34() const { return ___m_OnValidateInput_34; }
inline OnValidateInput_t3E857B491A319A5B22F6AD3D02CFD22C1BBFD8D0 ** get_address_of_m_OnValidateInput_34() { return &___m_OnValidateInput_34; }
inline void set_m_OnValidateInput_34(OnValidateInput_t3E857B491A319A5B22F6AD3D02CFD22C1BBFD8D0 * value)
{
___m_OnValidateInput_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnValidateInput_34), (void*)value);
}
inline static int32_t get_offset_of_m_CaretColor_35() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_CaretColor_35)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_CaretColor_35() const { return ___m_CaretColor_35; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_CaretColor_35() { return &___m_CaretColor_35; }
inline void set_m_CaretColor_35(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_CaretColor_35 = value;
}
inline static int32_t get_offset_of_m_CustomCaretColor_36() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_CustomCaretColor_36)); }
inline bool get_m_CustomCaretColor_36() const { return ___m_CustomCaretColor_36; }
inline bool* get_address_of_m_CustomCaretColor_36() { return &___m_CustomCaretColor_36; }
inline void set_m_CustomCaretColor_36(bool value)
{
___m_CustomCaretColor_36 = value;
}
inline static int32_t get_offset_of_m_SelectionColor_37() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_SelectionColor_37)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_SelectionColor_37() const { return ___m_SelectionColor_37; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_SelectionColor_37() { return &___m_SelectionColor_37; }
inline void set_m_SelectionColor_37(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_SelectionColor_37 = value;
}
inline static int32_t get_offset_of_m_Text_38() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_Text_38)); }
inline String_t* get_m_Text_38() const { return ___m_Text_38; }
inline String_t** get_address_of_m_Text_38() { return &___m_Text_38; }
inline void set_m_Text_38(String_t* value)
{
___m_Text_38 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Text_38), (void*)value);
}
inline static int32_t get_offset_of_m_CaretBlinkRate_39() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_CaretBlinkRate_39)); }
inline float get_m_CaretBlinkRate_39() const { return ___m_CaretBlinkRate_39; }
inline float* get_address_of_m_CaretBlinkRate_39() { return &___m_CaretBlinkRate_39; }
inline void set_m_CaretBlinkRate_39(float value)
{
___m_CaretBlinkRate_39 = value;
}
inline static int32_t get_offset_of_m_CaretWidth_40() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_CaretWidth_40)); }
inline int32_t get_m_CaretWidth_40() const { return ___m_CaretWidth_40; }
inline int32_t* get_address_of_m_CaretWidth_40() { return &___m_CaretWidth_40; }
inline void set_m_CaretWidth_40(int32_t value)
{
___m_CaretWidth_40 = value;
}
inline static int32_t get_offset_of_m_ReadOnly_41() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_ReadOnly_41)); }
inline bool get_m_ReadOnly_41() const { return ___m_ReadOnly_41; }
inline bool* get_address_of_m_ReadOnly_41() { return &___m_ReadOnly_41; }
inline void set_m_ReadOnly_41(bool value)
{
___m_ReadOnly_41 = value;
}
inline static int32_t get_offset_of_m_CaretPosition_42() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_CaretPosition_42)); }
inline int32_t get_m_CaretPosition_42() const { return ___m_CaretPosition_42; }
inline int32_t* get_address_of_m_CaretPosition_42() { return &___m_CaretPosition_42; }
inline void set_m_CaretPosition_42(int32_t value)
{
___m_CaretPosition_42 = value;
}
inline static int32_t get_offset_of_m_CaretSelectPosition_43() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_CaretSelectPosition_43)); }
inline int32_t get_m_CaretSelectPosition_43() const { return ___m_CaretSelectPosition_43; }
inline int32_t* get_address_of_m_CaretSelectPosition_43() { return &___m_CaretSelectPosition_43; }
inline void set_m_CaretSelectPosition_43(int32_t value)
{
___m_CaretSelectPosition_43 = value;
}
inline static int32_t get_offset_of_caretRectTrans_44() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___caretRectTrans_44)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_caretRectTrans_44() const { return ___caretRectTrans_44; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_caretRectTrans_44() { return &___caretRectTrans_44; }
inline void set_caretRectTrans_44(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___caretRectTrans_44 = value;
Il2CppCodeGenWriteBarrier((void**)(&___caretRectTrans_44), (void*)value);
}
inline static int32_t get_offset_of_m_CursorVerts_45() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_CursorVerts_45)); }
inline UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* get_m_CursorVerts_45() const { return ___m_CursorVerts_45; }
inline UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A** get_address_of_m_CursorVerts_45() { return &___m_CursorVerts_45; }
inline void set_m_CursorVerts_45(UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* value)
{
___m_CursorVerts_45 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CursorVerts_45), (void*)value);
}
inline static int32_t get_offset_of_m_InputTextCache_46() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_InputTextCache_46)); }
inline TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 * get_m_InputTextCache_46() const { return ___m_InputTextCache_46; }
inline TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 ** get_address_of_m_InputTextCache_46() { return &___m_InputTextCache_46; }
inline void set_m_InputTextCache_46(TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 * value)
{
___m_InputTextCache_46 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InputTextCache_46), (void*)value);
}
inline static int32_t get_offset_of_m_CachedInputRenderer_47() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_CachedInputRenderer_47)); }
inline CanvasRenderer_tB4D9C9FE77FD5C9C4546FC022D6E956960BC2B72 * get_m_CachedInputRenderer_47() const { return ___m_CachedInputRenderer_47; }
inline CanvasRenderer_tB4D9C9FE77FD5C9C4546FC022D6E956960BC2B72 ** get_address_of_m_CachedInputRenderer_47() { return &___m_CachedInputRenderer_47; }
inline void set_m_CachedInputRenderer_47(CanvasRenderer_tB4D9C9FE77FD5C9C4546FC022D6E956960BC2B72 * value)
{
___m_CachedInputRenderer_47 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CachedInputRenderer_47), (void*)value);
}
inline static int32_t get_offset_of_m_PreventFontCallback_48() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_PreventFontCallback_48)); }
inline bool get_m_PreventFontCallback_48() const { return ___m_PreventFontCallback_48; }
inline bool* get_address_of_m_PreventFontCallback_48() { return &___m_PreventFontCallback_48; }
inline void set_m_PreventFontCallback_48(bool value)
{
___m_PreventFontCallback_48 = value;
}
inline static int32_t get_offset_of_m_Mesh_49() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_Mesh_49)); }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * get_m_Mesh_49() const { return ___m_Mesh_49; }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C ** get_address_of_m_Mesh_49() { return &___m_Mesh_49; }
inline void set_m_Mesh_49(Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * value)
{
___m_Mesh_49 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Mesh_49), (void*)value);
}
inline static int32_t get_offset_of_m_AllowInput_50() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_AllowInput_50)); }
inline bool get_m_AllowInput_50() const { return ___m_AllowInput_50; }
inline bool* get_address_of_m_AllowInput_50() { return &___m_AllowInput_50; }
inline void set_m_AllowInput_50(bool value)
{
___m_AllowInput_50 = value;
}
inline static int32_t get_offset_of_m_ShouldActivateNextUpdate_51() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_ShouldActivateNextUpdate_51)); }
inline bool get_m_ShouldActivateNextUpdate_51() const { return ___m_ShouldActivateNextUpdate_51; }
inline bool* get_address_of_m_ShouldActivateNextUpdate_51() { return &___m_ShouldActivateNextUpdate_51; }
inline void set_m_ShouldActivateNextUpdate_51(bool value)
{
___m_ShouldActivateNextUpdate_51 = value;
}
inline static int32_t get_offset_of_m_UpdateDrag_52() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_UpdateDrag_52)); }
inline bool get_m_UpdateDrag_52() const { return ___m_UpdateDrag_52; }
inline bool* get_address_of_m_UpdateDrag_52() { return &___m_UpdateDrag_52; }
inline void set_m_UpdateDrag_52(bool value)
{
___m_UpdateDrag_52 = value;
}
inline static int32_t get_offset_of_m_DragPositionOutOfBounds_53() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_DragPositionOutOfBounds_53)); }
inline bool get_m_DragPositionOutOfBounds_53() const { return ___m_DragPositionOutOfBounds_53; }
inline bool* get_address_of_m_DragPositionOutOfBounds_53() { return &___m_DragPositionOutOfBounds_53; }
inline void set_m_DragPositionOutOfBounds_53(bool value)
{
___m_DragPositionOutOfBounds_53 = value;
}
inline static int32_t get_offset_of_m_CaretVisible_56() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_CaretVisible_56)); }
inline bool get_m_CaretVisible_56() const { return ___m_CaretVisible_56; }
inline bool* get_address_of_m_CaretVisible_56() { return &___m_CaretVisible_56; }
inline void set_m_CaretVisible_56(bool value)
{
___m_CaretVisible_56 = value;
}
inline static int32_t get_offset_of_m_BlinkCoroutine_57() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_BlinkCoroutine_57)); }
inline Coroutine_tAE7DB2FC70A0AE6477F896F852057CB0754F06EC * get_m_BlinkCoroutine_57() const { return ___m_BlinkCoroutine_57; }
inline Coroutine_tAE7DB2FC70A0AE6477F896F852057CB0754F06EC ** get_address_of_m_BlinkCoroutine_57() { return &___m_BlinkCoroutine_57; }
inline void set_m_BlinkCoroutine_57(Coroutine_tAE7DB2FC70A0AE6477F896F852057CB0754F06EC * value)
{
___m_BlinkCoroutine_57 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_BlinkCoroutine_57), (void*)value);
}
inline static int32_t get_offset_of_m_BlinkStartTime_58() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_BlinkStartTime_58)); }
inline float get_m_BlinkStartTime_58() const { return ___m_BlinkStartTime_58; }
inline float* get_address_of_m_BlinkStartTime_58() { return &___m_BlinkStartTime_58; }
inline void set_m_BlinkStartTime_58(float value)
{
___m_BlinkStartTime_58 = value;
}
inline static int32_t get_offset_of_m_DrawStart_59() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_DrawStart_59)); }
inline int32_t get_m_DrawStart_59() const { return ___m_DrawStart_59; }
inline int32_t* get_address_of_m_DrawStart_59() { return &___m_DrawStart_59; }
inline void set_m_DrawStart_59(int32_t value)
{
___m_DrawStart_59 = value;
}
inline static int32_t get_offset_of_m_DrawEnd_60() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_DrawEnd_60)); }
inline int32_t get_m_DrawEnd_60() const { return ___m_DrawEnd_60; }
inline int32_t* get_address_of_m_DrawEnd_60() { return &___m_DrawEnd_60; }
inline void set_m_DrawEnd_60(int32_t value)
{
___m_DrawEnd_60 = value;
}
inline static int32_t get_offset_of_m_DragCoroutine_61() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_DragCoroutine_61)); }
inline Coroutine_tAE7DB2FC70A0AE6477F896F852057CB0754F06EC * get_m_DragCoroutine_61() const { return ___m_DragCoroutine_61; }
inline Coroutine_tAE7DB2FC70A0AE6477F896F852057CB0754F06EC ** get_address_of_m_DragCoroutine_61() { return &___m_DragCoroutine_61; }
inline void set_m_DragCoroutine_61(Coroutine_tAE7DB2FC70A0AE6477F896F852057CB0754F06EC * value)
{
___m_DragCoroutine_61 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DragCoroutine_61), (void*)value);
}
inline static int32_t get_offset_of_m_OriginalText_62() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_OriginalText_62)); }
inline String_t* get_m_OriginalText_62() const { return ___m_OriginalText_62; }
inline String_t** get_address_of_m_OriginalText_62() { return &___m_OriginalText_62; }
inline void set_m_OriginalText_62(String_t* value)
{
___m_OriginalText_62 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OriginalText_62), (void*)value);
}
inline static int32_t get_offset_of_m_WasCanceled_63() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_WasCanceled_63)); }
inline bool get_m_WasCanceled_63() const { return ___m_WasCanceled_63; }
inline bool* get_address_of_m_WasCanceled_63() { return &___m_WasCanceled_63; }
inline void set_m_WasCanceled_63(bool value)
{
___m_WasCanceled_63 = value;
}
inline static int32_t get_offset_of_m_HasDoneFocusTransition_64() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_HasDoneFocusTransition_64)); }
inline bool get_m_HasDoneFocusTransition_64() const { return ___m_HasDoneFocusTransition_64; }
inline bool* get_address_of_m_HasDoneFocusTransition_64() { return &___m_HasDoneFocusTransition_64; }
inline void set_m_HasDoneFocusTransition_64(bool value)
{
___m_HasDoneFocusTransition_64 = value;
}
inline static int32_t get_offset_of_m_WaitForSecondsRealtime_65() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_WaitForSecondsRealtime_65)); }
inline WaitForSecondsRealtime_t0CF361107C4A9E25E0D4CF2F37732CE785235739 * get_m_WaitForSecondsRealtime_65() const { return ___m_WaitForSecondsRealtime_65; }
inline WaitForSecondsRealtime_t0CF361107C4A9E25E0D4CF2F37732CE785235739 ** get_address_of_m_WaitForSecondsRealtime_65() { return &___m_WaitForSecondsRealtime_65; }
inline void set_m_WaitForSecondsRealtime_65(WaitForSecondsRealtime_t0CF361107C4A9E25E0D4CF2F37732CE785235739 * value)
{
___m_WaitForSecondsRealtime_65 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_WaitForSecondsRealtime_65), (void*)value);
}
inline static int32_t get_offset_of_m_TouchKeyboardAllowsInPlaceEditing_66() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_TouchKeyboardAllowsInPlaceEditing_66)); }
inline bool get_m_TouchKeyboardAllowsInPlaceEditing_66() const { return ___m_TouchKeyboardAllowsInPlaceEditing_66; }
inline bool* get_address_of_m_TouchKeyboardAllowsInPlaceEditing_66() { return &___m_TouchKeyboardAllowsInPlaceEditing_66; }
inline void set_m_TouchKeyboardAllowsInPlaceEditing_66(bool value)
{
___m_TouchKeyboardAllowsInPlaceEditing_66 = value;
}
inline static int32_t get_offset_of_m_ProcessingEvent_68() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005, ___m_ProcessingEvent_68)); }
inline Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * get_m_ProcessingEvent_68() const { return ___m_ProcessingEvent_68; }
inline Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 ** get_address_of_m_ProcessingEvent_68() { return &___m_ProcessingEvent_68; }
inline void set_m_ProcessingEvent_68(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * value)
{
___m_ProcessingEvent_68 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ProcessingEvent_68), (void*)value);
}
};
struct InputField_t533609195B110760BCFF00B746C87D81969CB005_StaticFields
{
public:
// System.Char[] UnityEngine.UI.InputField::kSeparators
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___kSeparators_21;
public:
inline static int32_t get_offset_of_kSeparators_21() { return static_cast<int32_t>(offsetof(InputField_t533609195B110760BCFF00B746C87D81969CB005_StaticFields, ___kSeparators_21)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_kSeparators_21() const { return ___kSeparators_21; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_kSeparators_21() { return &___kSeparators_21; }
inline void set_kSeparators_21(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___kSeparators_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___kSeparators_21), (void*)value);
}
};
// UnityEngine.UI.MaskableGraphic
struct MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F : public Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8
{
public:
// System.Boolean UnityEngine.UI.MaskableGraphic::m_ShouldRecalculateStencil
bool ___m_ShouldRecalculateStencil_25;
// UnityEngine.Material UnityEngine.UI.MaskableGraphic::m_MaskMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___m_MaskMaterial_26;
// UnityEngine.UI.RectMask2D UnityEngine.UI.MaskableGraphic::m_ParentMask
RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B * ___m_ParentMask_27;
// System.Boolean UnityEngine.UI.MaskableGraphic::m_Maskable
bool ___m_Maskable_28;
// System.Boolean UnityEngine.UI.MaskableGraphic::m_IsMaskingGraphic
bool ___m_IsMaskingGraphic_29;
// System.Boolean UnityEngine.UI.MaskableGraphic::m_IncludeForMasking
bool ___m_IncludeForMasking_30;
// UnityEngine.UI.MaskableGraphic_CullStateChangedEvent UnityEngine.UI.MaskableGraphic::m_OnCullStateChanged
CullStateChangedEvent_t6BC3E87DBC04B585798460D55F56B86C23B62FE4 * ___m_OnCullStateChanged_31;
// System.Boolean UnityEngine.UI.MaskableGraphic::m_ShouldRecalculate
bool ___m_ShouldRecalculate_32;
// System.Int32 UnityEngine.UI.MaskableGraphic::m_StencilValue
int32_t ___m_StencilValue_33;
// UnityEngine.Vector3[] UnityEngine.UI.MaskableGraphic::m_Corners
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___m_Corners_34;
public:
inline static int32_t get_offset_of_m_ShouldRecalculateStencil_25() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_ShouldRecalculateStencil_25)); }
inline bool get_m_ShouldRecalculateStencil_25() const { return ___m_ShouldRecalculateStencil_25; }
inline bool* get_address_of_m_ShouldRecalculateStencil_25() { return &___m_ShouldRecalculateStencil_25; }
inline void set_m_ShouldRecalculateStencil_25(bool value)
{
___m_ShouldRecalculateStencil_25 = value;
}
inline static int32_t get_offset_of_m_MaskMaterial_26() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_MaskMaterial_26)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_m_MaskMaterial_26() const { return ___m_MaskMaterial_26; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_m_MaskMaterial_26() { return &___m_MaskMaterial_26; }
inline void set_m_MaskMaterial_26(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___m_MaskMaterial_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_MaskMaterial_26), (void*)value);
}
inline static int32_t get_offset_of_m_ParentMask_27() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_ParentMask_27)); }
inline RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B * get_m_ParentMask_27() const { return ___m_ParentMask_27; }
inline RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B ** get_address_of_m_ParentMask_27() { return &___m_ParentMask_27; }
inline void set_m_ParentMask_27(RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B * value)
{
___m_ParentMask_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ParentMask_27), (void*)value);
}
inline static int32_t get_offset_of_m_Maskable_28() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_Maskable_28)); }
inline bool get_m_Maskable_28() const { return ___m_Maskable_28; }
inline bool* get_address_of_m_Maskable_28() { return &___m_Maskable_28; }
inline void set_m_Maskable_28(bool value)
{
___m_Maskable_28 = value;
}
inline static int32_t get_offset_of_m_IsMaskingGraphic_29() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_IsMaskingGraphic_29)); }
inline bool get_m_IsMaskingGraphic_29() const { return ___m_IsMaskingGraphic_29; }
inline bool* get_address_of_m_IsMaskingGraphic_29() { return &___m_IsMaskingGraphic_29; }
inline void set_m_IsMaskingGraphic_29(bool value)
{
___m_IsMaskingGraphic_29 = value;
}
inline static int32_t get_offset_of_m_IncludeForMasking_30() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_IncludeForMasking_30)); }
inline bool get_m_IncludeForMasking_30() const { return ___m_IncludeForMasking_30; }
inline bool* get_address_of_m_IncludeForMasking_30() { return &___m_IncludeForMasking_30; }
inline void set_m_IncludeForMasking_30(bool value)
{
___m_IncludeForMasking_30 = value;
}
inline static int32_t get_offset_of_m_OnCullStateChanged_31() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_OnCullStateChanged_31)); }
inline CullStateChangedEvent_t6BC3E87DBC04B585798460D55F56B86C23B62FE4 * get_m_OnCullStateChanged_31() const { return ___m_OnCullStateChanged_31; }
inline CullStateChangedEvent_t6BC3E87DBC04B585798460D55F56B86C23B62FE4 ** get_address_of_m_OnCullStateChanged_31() { return &___m_OnCullStateChanged_31; }
inline void set_m_OnCullStateChanged_31(CullStateChangedEvent_t6BC3E87DBC04B585798460D55F56B86C23B62FE4 * value)
{
___m_OnCullStateChanged_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnCullStateChanged_31), (void*)value);
}
inline static int32_t get_offset_of_m_ShouldRecalculate_32() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_ShouldRecalculate_32)); }
inline bool get_m_ShouldRecalculate_32() const { return ___m_ShouldRecalculate_32; }
inline bool* get_address_of_m_ShouldRecalculate_32() { return &___m_ShouldRecalculate_32; }
inline void set_m_ShouldRecalculate_32(bool value)
{
___m_ShouldRecalculate_32 = value;
}
inline static int32_t get_offset_of_m_StencilValue_33() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_StencilValue_33)); }
inline int32_t get_m_StencilValue_33() const { return ___m_StencilValue_33; }
inline int32_t* get_address_of_m_StencilValue_33() { return &___m_StencilValue_33; }
inline void set_m_StencilValue_33(int32_t value)
{
___m_StencilValue_33 = value;
}
inline static int32_t get_offset_of_m_Corners_34() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_Corners_34)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_m_Corners_34() const { return ___m_Corners_34; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_m_Corners_34() { return &___m_Corners_34; }
inline void set_m_Corners_34(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
___m_Corners_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Corners_34), (void*)value);
}
};
// UnityEngine.UI.Scrollbar
struct Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 : public Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A
{
public:
// UnityEngine.RectTransform UnityEngine.UI.Scrollbar::m_HandleRect
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_HandleRect_20;
// UnityEngine.UI.Scrollbar_Direction UnityEngine.UI.Scrollbar::m_Direction
int32_t ___m_Direction_21;
// System.Single UnityEngine.UI.Scrollbar::m_Value
float ___m_Value_22;
// System.Single UnityEngine.UI.Scrollbar::m_Size
float ___m_Size_23;
// System.Int32 UnityEngine.UI.Scrollbar::m_NumberOfSteps
int32_t ___m_NumberOfSteps_24;
// UnityEngine.UI.Scrollbar_ScrollEvent UnityEngine.UI.Scrollbar::m_OnValueChanged
ScrollEvent_t07B0FA266C69E36437A0083D5058B2952D151FF7 * ___m_OnValueChanged_25;
// UnityEngine.RectTransform UnityEngine.UI.Scrollbar::m_ContainerRect
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_ContainerRect_26;
// UnityEngine.Vector2 UnityEngine.UI.Scrollbar::m_Offset
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Offset_27;
// UnityEngine.DrivenRectTransformTracker UnityEngine.UI.Scrollbar::m_Tracker
DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 ___m_Tracker_28;
// UnityEngine.Coroutine UnityEngine.UI.Scrollbar::m_PointerDownRepeat
Coroutine_tAE7DB2FC70A0AE6477F896F852057CB0754F06EC * ___m_PointerDownRepeat_29;
// System.Boolean UnityEngine.UI.Scrollbar::isPointerDownAndNotDragging
bool ___isPointerDownAndNotDragging_30;
// System.Boolean UnityEngine.UI.Scrollbar::m_DelayedUpdateVisuals
bool ___m_DelayedUpdateVisuals_31;
public:
inline static int32_t get_offset_of_m_HandleRect_20() { return static_cast<int32_t>(offsetof(Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389, ___m_HandleRect_20)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_HandleRect_20() const { return ___m_HandleRect_20; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_HandleRect_20() { return &___m_HandleRect_20; }
inline void set_m_HandleRect_20(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_HandleRect_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HandleRect_20), (void*)value);
}
inline static int32_t get_offset_of_m_Direction_21() { return static_cast<int32_t>(offsetof(Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389, ___m_Direction_21)); }
inline int32_t get_m_Direction_21() const { return ___m_Direction_21; }
inline int32_t* get_address_of_m_Direction_21() { return &___m_Direction_21; }
inline void set_m_Direction_21(int32_t value)
{
___m_Direction_21 = value;
}
inline static int32_t get_offset_of_m_Value_22() { return static_cast<int32_t>(offsetof(Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389, ___m_Value_22)); }
inline float get_m_Value_22() const { return ___m_Value_22; }
inline float* get_address_of_m_Value_22() { return &___m_Value_22; }
inline void set_m_Value_22(float value)
{
___m_Value_22 = value;
}
inline static int32_t get_offset_of_m_Size_23() { return static_cast<int32_t>(offsetof(Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389, ___m_Size_23)); }
inline float get_m_Size_23() const { return ___m_Size_23; }
inline float* get_address_of_m_Size_23() { return &___m_Size_23; }
inline void set_m_Size_23(float value)
{
___m_Size_23 = value;
}
inline static int32_t get_offset_of_m_NumberOfSteps_24() { return static_cast<int32_t>(offsetof(Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389, ___m_NumberOfSteps_24)); }
inline int32_t get_m_NumberOfSteps_24() const { return ___m_NumberOfSteps_24; }
inline int32_t* get_address_of_m_NumberOfSteps_24() { return &___m_NumberOfSteps_24; }
inline void set_m_NumberOfSteps_24(int32_t value)
{
___m_NumberOfSteps_24 = value;
}
inline static int32_t get_offset_of_m_OnValueChanged_25() { return static_cast<int32_t>(offsetof(Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389, ___m_OnValueChanged_25)); }
inline ScrollEvent_t07B0FA266C69E36437A0083D5058B2952D151FF7 * get_m_OnValueChanged_25() const { return ___m_OnValueChanged_25; }
inline ScrollEvent_t07B0FA266C69E36437A0083D5058B2952D151FF7 ** get_address_of_m_OnValueChanged_25() { return &___m_OnValueChanged_25; }
inline void set_m_OnValueChanged_25(ScrollEvent_t07B0FA266C69E36437A0083D5058B2952D151FF7 * value)
{
___m_OnValueChanged_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnValueChanged_25), (void*)value);
}
inline static int32_t get_offset_of_m_ContainerRect_26() { return static_cast<int32_t>(offsetof(Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389, ___m_ContainerRect_26)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_ContainerRect_26() const { return ___m_ContainerRect_26; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_ContainerRect_26() { return &___m_ContainerRect_26; }
inline void set_m_ContainerRect_26(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_ContainerRect_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ContainerRect_26), (void*)value);
}
inline static int32_t get_offset_of_m_Offset_27() { return static_cast<int32_t>(offsetof(Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389, ___m_Offset_27)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Offset_27() const { return ___m_Offset_27; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Offset_27() { return &___m_Offset_27; }
inline void set_m_Offset_27(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Offset_27 = value;
}
inline static int32_t get_offset_of_m_Tracker_28() { return static_cast<int32_t>(offsetof(Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389, ___m_Tracker_28)); }
inline DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 get_m_Tracker_28() const { return ___m_Tracker_28; }
inline DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 * get_address_of_m_Tracker_28() { return &___m_Tracker_28; }
inline void set_m_Tracker_28(DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 value)
{
___m_Tracker_28 = value;
}
inline static int32_t get_offset_of_m_PointerDownRepeat_29() { return static_cast<int32_t>(offsetof(Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389, ___m_PointerDownRepeat_29)); }
inline Coroutine_tAE7DB2FC70A0AE6477F896F852057CB0754F06EC * get_m_PointerDownRepeat_29() const { return ___m_PointerDownRepeat_29; }
inline Coroutine_tAE7DB2FC70A0AE6477F896F852057CB0754F06EC ** get_address_of_m_PointerDownRepeat_29() { return &___m_PointerDownRepeat_29; }
inline void set_m_PointerDownRepeat_29(Coroutine_tAE7DB2FC70A0AE6477F896F852057CB0754F06EC * value)
{
___m_PointerDownRepeat_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PointerDownRepeat_29), (void*)value);
}
inline static int32_t get_offset_of_isPointerDownAndNotDragging_30() { return static_cast<int32_t>(offsetof(Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389, ___isPointerDownAndNotDragging_30)); }
inline bool get_isPointerDownAndNotDragging_30() const { return ___isPointerDownAndNotDragging_30; }
inline bool* get_address_of_isPointerDownAndNotDragging_30() { return &___isPointerDownAndNotDragging_30; }
inline void set_isPointerDownAndNotDragging_30(bool value)
{
___isPointerDownAndNotDragging_30 = value;
}
inline static int32_t get_offset_of_m_DelayedUpdateVisuals_31() { return static_cast<int32_t>(offsetof(Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389, ___m_DelayedUpdateVisuals_31)); }
inline bool get_m_DelayedUpdateVisuals_31() const { return ___m_DelayedUpdateVisuals_31; }
inline bool* get_address_of_m_DelayedUpdateVisuals_31() { return &___m_DelayedUpdateVisuals_31; }
inline void set_m_DelayedUpdateVisuals_31(bool value)
{
___m_DelayedUpdateVisuals_31 = value;
}
};
// UnityEngine.UI.Slider
struct Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09 : public Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A
{
public:
// UnityEngine.RectTransform UnityEngine.UI.Slider::m_FillRect
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_FillRect_20;
// UnityEngine.RectTransform UnityEngine.UI.Slider::m_HandleRect
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_HandleRect_21;
// UnityEngine.UI.Slider_Direction UnityEngine.UI.Slider::m_Direction
int32_t ___m_Direction_22;
// System.Single UnityEngine.UI.Slider::m_MinValue
float ___m_MinValue_23;
// System.Single UnityEngine.UI.Slider::m_MaxValue
float ___m_MaxValue_24;
// System.Boolean UnityEngine.UI.Slider::m_WholeNumbers
bool ___m_WholeNumbers_25;
// System.Single UnityEngine.UI.Slider::m_Value
float ___m_Value_26;
// UnityEngine.UI.Slider_SliderEvent UnityEngine.UI.Slider::m_OnValueChanged
SliderEvent_t64A824F56F80FC8E2F233F0A0FB0821702DF416C * ___m_OnValueChanged_27;
// UnityEngine.UI.Image UnityEngine.UI.Slider::m_FillImage
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * ___m_FillImage_28;
// UnityEngine.Transform UnityEngine.UI.Slider::m_FillTransform
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___m_FillTransform_29;
// UnityEngine.RectTransform UnityEngine.UI.Slider::m_FillContainerRect
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_FillContainerRect_30;
// UnityEngine.Transform UnityEngine.UI.Slider::m_HandleTransform
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___m_HandleTransform_31;
// UnityEngine.RectTransform UnityEngine.UI.Slider::m_HandleContainerRect
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_HandleContainerRect_32;
// UnityEngine.Vector2 UnityEngine.UI.Slider::m_Offset
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Offset_33;
// UnityEngine.DrivenRectTransformTracker UnityEngine.UI.Slider::m_Tracker
DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 ___m_Tracker_34;
// System.Boolean UnityEngine.UI.Slider::m_DelayedUpdateVisuals
bool ___m_DelayedUpdateVisuals_35;
public:
inline static int32_t get_offset_of_m_FillRect_20() { return static_cast<int32_t>(offsetof(Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09, ___m_FillRect_20)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_FillRect_20() const { return ___m_FillRect_20; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_FillRect_20() { return &___m_FillRect_20; }
inline void set_m_FillRect_20(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_FillRect_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FillRect_20), (void*)value);
}
inline static int32_t get_offset_of_m_HandleRect_21() { return static_cast<int32_t>(offsetof(Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09, ___m_HandleRect_21)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_HandleRect_21() const { return ___m_HandleRect_21; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_HandleRect_21() { return &___m_HandleRect_21; }
inline void set_m_HandleRect_21(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_HandleRect_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HandleRect_21), (void*)value);
}
inline static int32_t get_offset_of_m_Direction_22() { return static_cast<int32_t>(offsetof(Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09, ___m_Direction_22)); }
inline int32_t get_m_Direction_22() const { return ___m_Direction_22; }
inline int32_t* get_address_of_m_Direction_22() { return &___m_Direction_22; }
inline void set_m_Direction_22(int32_t value)
{
___m_Direction_22 = value;
}
inline static int32_t get_offset_of_m_MinValue_23() { return static_cast<int32_t>(offsetof(Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09, ___m_MinValue_23)); }
inline float get_m_MinValue_23() const { return ___m_MinValue_23; }
inline float* get_address_of_m_MinValue_23() { return &___m_MinValue_23; }
inline void set_m_MinValue_23(float value)
{
___m_MinValue_23 = value;
}
inline static int32_t get_offset_of_m_MaxValue_24() { return static_cast<int32_t>(offsetof(Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09, ___m_MaxValue_24)); }
inline float get_m_MaxValue_24() const { return ___m_MaxValue_24; }
inline float* get_address_of_m_MaxValue_24() { return &___m_MaxValue_24; }
inline void set_m_MaxValue_24(float value)
{
___m_MaxValue_24 = value;
}
inline static int32_t get_offset_of_m_WholeNumbers_25() { return static_cast<int32_t>(offsetof(Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09, ___m_WholeNumbers_25)); }
inline bool get_m_WholeNumbers_25() const { return ___m_WholeNumbers_25; }
inline bool* get_address_of_m_WholeNumbers_25() { return &___m_WholeNumbers_25; }
inline void set_m_WholeNumbers_25(bool value)
{
___m_WholeNumbers_25 = value;
}
inline static int32_t get_offset_of_m_Value_26() { return static_cast<int32_t>(offsetof(Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09, ___m_Value_26)); }
inline float get_m_Value_26() const { return ___m_Value_26; }
inline float* get_address_of_m_Value_26() { return &___m_Value_26; }
inline void set_m_Value_26(float value)
{
___m_Value_26 = value;
}
inline static int32_t get_offset_of_m_OnValueChanged_27() { return static_cast<int32_t>(offsetof(Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09, ___m_OnValueChanged_27)); }
inline SliderEvent_t64A824F56F80FC8E2F233F0A0FB0821702DF416C * get_m_OnValueChanged_27() const { return ___m_OnValueChanged_27; }
inline SliderEvent_t64A824F56F80FC8E2F233F0A0FB0821702DF416C ** get_address_of_m_OnValueChanged_27() { return &___m_OnValueChanged_27; }
inline void set_m_OnValueChanged_27(SliderEvent_t64A824F56F80FC8E2F233F0A0FB0821702DF416C * value)
{
___m_OnValueChanged_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnValueChanged_27), (void*)value);
}
inline static int32_t get_offset_of_m_FillImage_28() { return static_cast<int32_t>(offsetof(Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09, ___m_FillImage_28)); }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * get_m_FillImage_28() const { return ___m_FillImage_28; }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E ** get_address_of_m_FillImage_28() { return &___m_FillImage_28; }
inline void set_m_FillImage_28(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * value)
{
___m_FillImage_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FillImage_28), (void*)value);
}
inline static int32_t get_offset_of_m_FillTransform_29() { return static_cast<int32_t>(offsetof(Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09, ___m_FillTransform_29)); }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_m_FillTransform_29() const { return ___m_FillTransform_29; }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_m_FillTransform_29() { return &___m_FillTransform_29; }
inline void set_m_FillTransform_29(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value)
{
___m_FillTransform_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FillTransform_29), (void*)value);
}
inline static int32_t get_offset_of_m_FillContainerRect_30() { return static_cast<int32_t>(offsetof(Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09, ___m_FillContainerRect_30)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_FillContainerRect_30() const { return ___m_FillContainerRect_30; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_FillContainerRect_30() { return &___m_FillContainerRect_30; }
inline void set_m_FillContainerRect_30(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_FillContainerRect_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FillContainerRect_30), (void*)value);
}
inline static int32_t get_offset_of_m_HandleTransform_31() { return static_cast<int32_t>(offsetof(Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09, ___m_HandleTransform_31)); }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_m_HandleTransform_31() const { return ___m_HandleTransform_31; }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_m_HandleTransform_31() { return &___m_HandleTransform_31; }
inline void set_m_HandleTransform_31(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value)
{
___m_HandleTransform_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HandleTransform_31), (void*)value);
}
inline static int32_t get_offset_of_m_HandleContainerRect_32() { return static_cast<int32_t>(offsetof(Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09, ___m_HandleContainerRect_32)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_HandleContainerRect_32() const { return ___m_HandleContainerRect_32; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_HandleContainerRect_32() { return &___m_HandleContainerRect_32; }
inline void set_m_HandleContainerRect_32(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_HandleContainerRect_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HandleContainerRect_32), (void*)value);
}
inline static int32_t get_offset_of_m_Offset_33() { return static_cast<int32_t>(offsetof(Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09, ___m_Offset_33)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Offset_33() const { return ___m_Offset_33; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Offset_33() { return &___m_Offset_33; }
inline void set_m_Offset_33(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Offset_33 = value;
}
inline static int32_t get_offset_of_m_Tracker_34() { return static_cast<int32_t>(offsetof(Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09, ___m_Tracker_34)); }
inline DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 get_m_Tracker_34() const { return ___m_Tracker_34; }
inline DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 * get_address_of_m_Tracker_34() { return &___m_Tracker_34; }
inline void set_m_Tracker_34(DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 value)
{
___m_Tracker_34 = value;
}
inline static int32_t get_offset_of_m_DelayedUpdateVisuals_35() { return static_cast<int32_t>(offsetof(Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09, ___m_DelayedUpdateVisuals_35)); }
inline bool get_m_DelayedUpdateVisuals_35() const { return ___m_DelayedUpdateVisuals_35; }
inline bool* get_address_of_m_DelayedUpdateVisuals_35() { return &___m_DelayedUpdateVisuals_35; }
inline void set_m_DelayedUpdateVisuals_35(bool value)
{
___m_DelayedUpdateVisuals_35 = value;
}
};
// UnityEngine.UI.Toggle
struct Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 : public Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A
{
public:
// UnityEngine.UI.Toggle_ToggleTransition UnityEngine.UI.Toggle::toggleTransition
int32_t ___toggleTransition_20;
// UnityEngine.UI.Graphic UnityEngine.UI.Toggle::graphic
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * ___graphic_21;
// UnityEngine.UI.ToggleGroup UnityEngine.UI.Toggle::m_Group
ToggleGroup_t11E2B254D3C968C7D0DA11C606CC06D7D7F0D786 * ___m_Group_22;
// UnityEngine.UI.Toggle_ToggleEvent UnityEngine.UI.Toggle::onValueChanged
ToggleEvent_t50D925F8E220FB47DA738411CEF9C57FF7E1DC43 * ___onValueChanged_23;
// System.Boolean UnityEngine.UI.Toggle::m_IsOn
bool ___m_IsOn_24;
public:
inline static int32_t get_offset_of_toggleTransition_20() { return static_cast<int32_t>(offsetof(Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106, ___toggleTransition_20)); }
inline int32_t get_toggleTransition_20() const { return ___toggleTransition_20; }
inline int32_t* get_address_of_toggleTransition_20() { return &___toggleTransition_20; }
inline void set_toggleTransition_20(int32_t value)
{
___toggleTransition_20 = value;
}
inline static int32_t get_offset_of_graphic_21() { return static_cast<int32_t>(offsetof(Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106, ___graphic_21)); }
inline Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * get_graphic_21() const { return ___graphic_21; }
inline Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 ** get_address_of_graphic_21() { return &___graphic_21; }
inline void set_graphic_21(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * value)
{
___graphic_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___graphic_21), (void*)value);
}
inline static int32_t get_offset_of_m_Group_22() { return static_cast<int32_t>(offsetof(Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106, ___m_Group_22)); }
inline ToggleGroup_t11E2B254D3C968C7D0DA11C606CC06D7D7F0D786 * get_m_Group_22() const { return ___m_Group_22; }
inline ToggleGroup_t11E2B254D3C968C7D0DA11C606CC06D7D7F0D786 ** get_address_of_m_Group_22() { return &___m_Group_22; }
inline void set_m_Group_22(ToggleGroup_t11E2B254D3C968C7D0DA11C606CC06D7D7F0D786 * value)
{
___m_Group_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Group_22), (void*)value);
}
inline static int32_t get_offset_of_onValueChanged_23() { return static_cast<int32_t>(offsetof(Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106, ___onValueChanged_23)); }
inline ToggleEvent_t50D925F8E220FB47DA738411CEF9C57FF7E1DC43 * get_onValueChanged_23() const { return ___onValueChanged_23; }
inline ToggleEvent_t50D925F8E220FB47DA738411CEF9C57FF7E1DC43 ** get_address_of_onValueChanged_23() { return &___onValueChanged_23; }
inline void set_onValueChanged_23(ToggleEvent_t50D925F8E220FB47DA738411CEF9C57FF7E1DC43 * value)
{
___onValueChanged_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onValueChanged_23), (void*)value);
}
inline static int32_t get_offset_of_m_IsOn_24() { return static_cast<int32_t>(offsetof(Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106, ___m_IsOn_24)); }
inline bool get_m_IsOn_24() const { return ___m_IsOn_24; }
inline bool* get_address_of_m_IsOn_24() { return &___m_IsOn_24; }
inline void set_m_IsOn_24(bool value)
{
___m_IsOn_24 = value;
}
};
// UnityEngine.EventSystems.Physics2DRaycaster
struct Physics2DRaycaster_t5D190F0825AA5F9E76892B852D6A5437D9981972 : public PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C
{
public:
// UnityEngine.RaycastHit2D[] UnityEngine.EventSystems.Physics2DRaycaster::m_Hits
RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* ___m_Hits_11;
public:
inline static int32_t get_offset_of_m_Hits_11() { return static_cast<int32_t>(offsetof(Physics2DRaycaster_t5D190F0825AA5F9E76892B852D6A5437D9981972, ___m_Hits_11)); }
inline RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* get_m_Hits_11() const { return ___m_Hits_11; }
inline RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165** get_address_of_m_Hits_11() { return &___m_Hits_11; }
inline void set_m_Hits_11(RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* value)
{
___m_Hits_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Hits_11), (void*)value);
}
};
// UnityEngine.EventSystems.StandaloneInputModule
struct StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 : public PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C
{
public:
// System.Single UnityEngine.EventSystems.StandaloneInputModule::m_PrevActionTime
float ___m_PrevActionTime_16;
// UnityEngine.Vector2 UnityEngine.EventSystems.StandaloneInputModule::m_LastMoveVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_LastMoveVector_17;
// System.Int32 UnityEngine.EventSystems.StandaloneInputModule::m_ConsecutiveMoveCount
int32_t ___m_ConsecutiveMoveCount_18;
// UnityEngine.Vector2 UnityEngine.EventSystems.StandaloneInputModule::m_LastMousePosition
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_LastMousePosition_19;
// UnityEngine.Vector2 UnityEngine.EventSystems.StandaloneInputModule::m_MousePosition
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_MousePosition_20;
// UnityEngine.GameObject UnityEngine.EventSystems.StandaloneInputModule::m_CurrentFocusedGameObject
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_CurrentFocusedGameObject_21;
// UnityEngine.EventSystems.PointerEventData UnityEngine.EventSystems.StandaloneInputModule::m_InputPointerEvent
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___m_InputPointerEvent_22;
// System.String UnityEngine.EventSystems.StandaloneInputModule::m_HorizontalAxis
String_t* ___m_HorizontalAxis_23;
// System.String UnityEngine.EventSystems.StandaloneInputModule::m_VerticalAxis
String_t* ___m_VerticalAxis_24;
// System.String UnityEngine.EventSystems.StandaloneInputModule::m_SubmitButton
String_t* ___m_SubmitButton_25;
// System.String UnityEngine.EventSystems.StandaloneInputModule::m_CancelButton
String_t* ___m_CancelButton_26;
// System.Single UnityEngine.EventSystems.StandaloneInputModule::m_InputActionsPerSecond
float ___m_InputActionsPerSecond_27;
// System.Single UnityEngine.EventSystems.StandaloneInputModule::m_RepeatDelay
float ___m_RepeatDelay_28;
// System.Boolean UnityEngine.EventSystems.StandaloneInputModule::m_ForceModuleActive
bool ___m_ForceModuleActive_29;
public:
inline static int32_t get_offset_of_m_PrevActionTime_16() { return static_cast<int32_t>(offsetof(StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5, ___m_PrevActionTime_16)); }
inline float get_m_PrevActionTime_16() const { return ___m_PrevActionTime_16; }
inline float* get_address_of_m_PrevActionTime_16() { return &___m_PrevActionTime_16; }
inline void set_m_PrevActionTime_16(float value)
{
___m_PrevActionTime_16 = value;
}
inline static int32_t get_offset_of_m_LastMoveVector_17() { return static_cast<int32_t>(offsetof(StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5, ___m_LastMoveVector_17)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_LastMoveVector_17() const { return ___m_LastMoveVector_17; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_LastMoveVector_17() { return &___m_LastMoveVector_17; }
inline void set_m_LastMoveVector_17(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_LastMoveVector_17 = value;
}
inline static int32_t get_offset_of_m_ConsecutiveMoveCount_18() { return static_cast<int32_t>(offsetof(StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5, ___m_ConsecutiveMoveCount_18)); }
inline int32_t get_m_ConsecutiveMoveCount_18() const { return ___m_ConsecutiveMoveCount_18; }
inline int32_t* get_address_of_m_ConsecutiveMoveCount_18() { return &___m_ConsecutiveMoveCount_18; }
inline void set_m_ConsecutiveMoveCount_18(int32_t value)
{
___m_ConsecutiveMoveCount_18 = value;
}
inline static int32_t get_offset_of_m_LastMousePosition_19() { return static_cast<int32_t>(offsetof(StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5, ___m_LastMousePosition_19)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_LastMousePosition_19() const { return ___m_LastMousePosition_19; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_LastMousePosition_19() { return &___m_LastMousePosition_19; }
inline void set_m_LastMousePosition_19(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_LastMousePosition_19 = value;
}
inline static int32_t get_offset_of_m_MousePosition_20() { return static_cast<int32_t>(offsetof(StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5, ___m_MousePosition_20)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_MousePosition_20() const { return ___m_MousePosition_20; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_MousePosition_20() { return &___m_MousePosition_20; }
inline void set_m_MousePosition_20(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_MousePosition_20 = value;
}
inline static int32_t get_offset_of_m_CurrentFocusedGameObject_21() { return static_cast<int32_t>(offsetof(StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5, ___m_CurrentFocusedGameObject_21)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_CurrentFocusedGameObject_21() const { return ___m_CurrentFocusedGameObject_21; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_CurrentFocusedGameObject_21() { return &___m_CurrentFocusedGameObject_21; }
inline void set_m_CurrentFocusedGameObject_21(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___m_CurrentFocusedGameObject_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CurrentFocusedGameObject_21), (void*)value);
}
inline static int32_t get_offset_of_m_InputPointerEvent_22() { return static_cast<int32_t>(offsetof(StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5, ___m_InputPointerEvent_22)); }
inline PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * get_m_InputPointerEvent_22() const { return ___m_InputPointerEvent_22; }
inline PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 ** get_address_of_m_InputPointerEvent_22() { return &___m_InputPointerEvent_22; }
inline void set_m_InputPointerEvent_22(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * value)
{
___m_InputPointerEvent_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InputPointerEvent_22), (void*)value);
}
inline static int32_t get_offset_of_m_HorizontalAxis_23() { return static_cast<int32_t>(offsetof(StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5, ___m_HorizontalAxis_23)); }
inline String_t* get_m_HorizontalAxis_23() const { return ___m_HorizontalAxis_23; }
inline String_t** get_address_of_m_HorizontalAxis_23() { return &___m_HorizontalAxis_23; }
inline void set_m_HorizontalAxis_23(String_t* value)
{
___m_HorizontalAxis_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HorizontalAxis_23), (void*)value);
}
inline static int32_t get_offset_of_m_VerticalAxis_24() { return static_cast<int32_t>(offsetof(StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5, ___m_VerticalAxis_24)); }
inline String_t* get_m_VerticalAxis_24() const { return ___m_VerticalAxis_24; }
inline String_t** get_address_of_m_VerticalAxis_24() { return &___m_VerticalAxis_24; }
inline void set_m_VerticalAxis_24(String_t* value)
{
___m_VerticalAxis_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_VerticalAxis_24), (void*)value);
}
inline static int32_t get_offset_of_m_SubmitButton_25() { return static_cast<int32_t>(offsetof(StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5, ___m_SubmitButton_25)); }
inline String_t* get_m_SubmitButton_25() const { return ___m_SubmitButton_25; }
inline String_t** get_address_of_m_SubmitButton_25() { return &___m_SubmitButton_25; }
inline void set_m_SubmitButton_25(String_t* value)
{
___m_SubmitButton_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SubmitButton_25), (void*)value);
}
inline static int32_t get_offset_of_m_CancelButton_26() { return static_cast<int32_t>(offsetof(StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5, ___m_CancelButton_26)); }
inline String_t* get_m_CancelButton_26() const { return ___m_CancelButton_26; }
inline String_t** get_address_of_m_CancelButton_26() { return &___m_CancelButton_26; }
inline void set_m_CancelButton_26(String_t* value)
{
___m_CancelButton_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CancelButton_26), (void*)value);
}
inline static int32_t get_offset_of_m_InputActionsPerSecond_27() { return static_cast<int32_t>(offsetof(StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5, ___m_InputActionsPerSecond_27)); }
inline float get_m_InputActionsPerSecond_27() const { return ___m_InputActionsPerSecond_27; }
inline float* get_address_of_m_InputActionsPerSecond_27() { return &___m_InputActionsPerSecond_27; }
inline void set_m_InputActionsPerSecond_27(float value)
{
___m_InputActionsPerSecond_27 = value;
}
inline static int32_t get_offset_of_m_RepeatDelay_28() { return static_cast<int32_t>(offsetof(StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5, ___m_RepeatDelay_28)); }
inline float get_m_RepeatDelay_28() const { return ___m_RepeatDelay_28; }
inline float* get_address_of_m_RepeatDelay_28() { return &___m_RepeatDelay_28; }
inline void set_m_RepeatDelay_28(float value)
{
___m_RepeatDelay_28 = value;
}
inline static int32_t get_offset_of_m_ForceModuleActive_29() { return static_cast<int32_t>(offsetof(StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5, ___m_ForceModuleActive_29)); }
inline bool get_m_ForceModuleActive_29() const { return ___m_ForceModuleActive_29; }
inline bool* get_address_of_m_ForceModuleActive_29() { return &___m_ForceModuleActive_29; }
inline void set_m_ForceModuleActive_29(bool value)
{
___m_ForceModuleActive_29 = value;
}
};
// UnityEngine.EventSystems.TouchInputModule
struct TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945 : public PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C
{
public:
// UnityEngine.Vector2 UnityEngine.EventSystems.TouchInputModule::m_LastMousePosition
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_LastMousePosition_16;
// UnityEngine.Vector2 UnityEngine.EventSystems.TouchInputModule::m_MousePosition
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_MousePosition_17;
// UnityEngine.EventSystems.PointerEventData UnityEngine.EventSystems.TouchInputModule::m_InputPointerEvent
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___m_InputPointerEvent_18;
// System.Boolean UnityEngine.EventSystems.TouchInputModule::m_ForceModuleActive
bool ___m_ForceModuleActive_19;
public:
inline static int32_t get_offset_of_m_LastMousePosition_16() { return static_cast<int32_t>(offsetof(TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945, ___m_LastMousePosition_16)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_LastMousePosition_16() const { return ___m_LastMousePosition_16; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_LastMousePosition_16() { return &___m_LastMousePosition_16; }
inline void set_m_LastMousePosition_16(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_LastMousePosition_16 = value;
}
inline static int32_t get_offset_of_m_MousePosition_17() { return static_cast<int32_t>(offsetof(TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945, ___m_MousePosition_17)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_MousePosition_17() const { return ___m_MousePosition_17; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_MousePosition_17() { return &___m_MousePosition_17; }
inline void set_m_MousePosition_17(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_MousePosition_17 = value;
}
inline static int32_t get_offset_of_m_InputPointerEvent_18() { return static_cast<int32_t>(offsetof(TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945, ___m_InputPointerEvent_18)); }
inline PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * get_m_InputPointerEvent_18() const { return ___m_InputPointerEvent_18; }
inline PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 ** get_address_of_m_InputPointerEvent_18() { return &___m_InputPointerEvent_18; }
inline void set_m_InputPointerEvent_18(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * value)
{
___m_InputPointerEvent_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InputPointerEvent_18), (void*)value);
}
inline static int32_t get_offset_of_m_ForceModuleActive_19() { return static_cast<int32_t>(offsetof(TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945, ___m_ForceModuleActive_19)); }
inline bool get_m_ForceModuleActive_19() const { return ___m_ForceModuleActive_19; }
inline bool* get_address_of_m_ForceModuleActive_19() { return &___m_ForceModuleActive_19; }
inline void set_m_ForceModuleActive_19(bool value)
{
___m_ForceModuleActive_19 = value;
}
};
// UnityEngine.UI.Image
struct Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E : public MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F
{
public:
// UnityEngine.Sprite UnityEngine.UI.Image::m_Sprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_Sprite_36;
// UnityEngine.Sprite UnityEngine.UI.Image::m_OverrideSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_OverrideSprite_37;
// UnityEngine.UI.Image_Type UnityEngine.UI.Image::m_Type
int32_t ___m_Type_38;
// System.Boolean UnityEngine.UI.Image::m_PreserveAspect
bool ___m_PreserveAspect_39;
// System.Boolean UnityEngine.UI.Image::m_FillCenter
bool ___m_FillCenter_40;
// UnityEngine.UI.Image_FillMethod UnityEngine.UI.Image::m_FillMethod
int32_t ___m_FillMethod_41;
// System.Single UnityEngine.UI.Image::m_FillAmount
float ___m_FillAmount_42;
// System.Boolean UnityEngine.UI.Image::m_FillClockwise
bool ___m_FillClockwise_43;
// System.Int32 UnityEngine.UI.Image::m_FillOrigin
int32_t ___m_FillOrigin_44;
// System.Single UnityEngine.UI.Image::m_AlphaHitTestMinimumThreshold
float ___m_AlphaHitTestMinimumThreshold_45;
// System.Boolean UnityEngine.UI.Image::m_Tracked
bool ___m_Tracked_46;
// System.Boolean UnityEngine.UI.Image::m_UseSpriteMesh
bool ___m_UseSpriteMesh_47;
// System.Single UnityEngine.UI.Image::m_PixelsPerUnitMultiplier
float ___m_PixelsPerUnitMultiplier_48;
// System.Single UnityEngine.UI.Image::m_CachedReferencePixelsPerUnit
float ___m_CachedReferencePixelsPerUnit_49;
public:
inline static int32_t get_offset_of_m_Sprite_36() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_Sprite_36)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_Sprite_36() const { return ___m_Sprite_36; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_Sprite_36() { return &___m_Sprite_36; }
inline void set_m_Sprite_36(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_Sprite_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Sprite_36), (void*)value);
}
inline static int32_t get_offset_of_m_OverrideSprite_37() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_OverrideSprite_37)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_OverrideSprite_37() const { return ___m_OverrideSprite_37; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_OverrideSprite_37() { return &___m_OverrideSprite_37; }
inline void set_m_OverrideSprite_37(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_OverrideSprite_37 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OverrideSprite_37), (void*)value);
}
inline static int32_t get_offset_of_m_Type_38() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_Type_38)); }
inline int32_t get_m_Type_38() const { return ___m_Type_38; }
inline int32_t* get_address_of_m_Type_38() { return &___m_Type_38; }
inline void set_m_Type_38(int32_t value)
{
___m_Type_38 = value;
}
inline static int32_t get_offset_of_m_PreserveAspect_39() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_PreserveAspect_39)); }
inline bool get_m_PreserveAspect_39() const { return ___m_PreserveAspect_39; }
inline bool* get_address_of_m_PreserveAspect_39() { return &___m_PreserveAspect_39; }
inline void set_m_PreserveAspect_39(bool value)
{
___m_PreserveAspect_39 = value;
}
inline static int32_t get_offset_of_m_FillCenter_40() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_FillCenter_40)); }
inline bool get_m_FillCenter_40() const { return ___m_FillCenter_40; }
inline bool* get_address_of_m_FillCenter_40() { return &___m_FillCenter_40; }
inline void set_m_FillCenter_40(bool value)
{
___m_FillCenter_40 = value;
}
inline static int32_t get_offset_of_m_FillMethod_41() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_FillMethod_41)); }
inline int32_t get_m_FillMethod_41() const { return ___m_FillMethod_41; }
inline int32_t* get_address_of_m_FillMethod_41() { return &___m_FillMethod_41; }
inline void set_m_FillMethod_41(int32_t value)
{
___m_FillMethod_41 = value;
}
inline static int32_t get_offset_of_m_FillAmount_42() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_FillAmount_42)); }
inline float get_m_FillAmount_42() const { return ___m_FillAmount_42; }
inline float* get_address_of_m_FillAmount_42() { return &___m_FillAmount_42; }
inline void set_m_FillAmount_42(float value)
{
___m_FillAmount_42 = value;
}
inline static int32_t get_offset_of_m_FillClockwise_43() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_FillClockwise_43)); }
inline bool get_m_FillClockwise_43() const { return ___m_FillClockwise_43; }
inline bool* get_address_of_m_FillClockwise_43() { return &___m_FillClockwise_43; }
inline void set_m_FillClockwise_43(bool value)
{
___m_FillClockwise_43 = value;
}
inline static int32_t get_offset_of_m_FillOrigin_44() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_FillOrigin_44)); }
inline int32_t get_m_FillOrigin_44() const { return ___m_FillOrigin_44; }
inline int32_t* get_address_of_m_FillOrigin_44() { return &___m_FillOrigin_44; }
inline void set_m_FillOrigin_44(int32_t value)
{
___m_FillOrigin_44 = value;
}
inline static int32_t get_offset_of_m_AlphaHitTestMinimumThreshold_45() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_AlphaHitTestMinimumThreshold_45)); }
inline float get_m_AlphaHitTestMinimumThreshold_45() const { return ___m_AlphaHitTestMinimumThreshold_45; }
inline float* get_address_of_m_AlphaHitTestMinimumThreshold_45() { return &___m_AlphaHitTestMinimumThreshold_45; }
inline void set_m_AlphaHitTestMinimumThreshold_45(float value)
{
___m_AlphaHitTestMinimumThreshold_45 = value;
}
inline static int32_t get_offset_of_m_Tracked_46() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_Tracked_46)); }
inline bool get_m_Tracked_46() const { return ___m_Tracked_46; }
inline bool* get_address_of_m_Tracked_46() { return &___m_Tracked_46; }
inline void set_m_Tracked_46(bool value)
{
___m_Tracked_46 = value;
}
inline static int32_t get_offset_of_m_UseSpriteMesh_47() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_UseSpriteMesh_47)); }
inline bool get_m_UseSpriteMesh_47() const { return ___m_UseSpriteMesh_47; }
inline bool* get_address_of_m_UseSpriteMesh_47() { return &___m_UseSpriteMesh_47; }
inline void set_m_UseSpriteMesh_47(bool value)
{
___m_UseSpriteMesh_47 = value;
}
inline static int32_t get_offset_of_m_PixelsPerUnitMultiplier_48() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_PixelsPerUnitMultiplier_48)); }
inline float get_m_PixelsPerUnitMultiplier_48() const { return ___m_PixelsPerUnitMultiplier_48; }
inline float* get_address_of_m_PixelsPerUnitMultiplier_48() { return &___m_PixelsPerUnitMultiplier_48; }
inline void set_m_PixelsPerUnitMultiplier_48(float value)
{
___m_PixelsPerUnitMultiplier_48 = value;
}
inline static int32_t get_offset_of_m_CachedReferencePixelsPerUnit_49() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E, ___m_CachedReferencePixelsPerUnit_49)); }
inline float get_m_CachedReferencePixelsPerUnit_49() const { return ___m_CachedReferencePixelsPerUnit_49; }
inline float* get_address_of_m_CachedReferencePixelsPerUnit_49() { return &___m_CachedReferencePixelsPerUnit_49; }
inline void set_m_CachedReferencePixelsPerUnit_49(float value)
{
___m_CachedReferencePixelsPerUnit_49 = value;
}
};
struct Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_StaticFields
{
public:
// UnityEngine.Material UnityEngine.UI.Image::s_ETC1DefaultUI
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___s_ETC1DefaultUI_35;
// UnityEngine.Vector2[] UnityEngine.UI.Image::s_VertScratch
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___s_VertScratch_50;
// UnityEngine.Vector2[] UnityEngine.UI.Image::s_UVScratch
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___s_UVScratch_51;
// UnityEngine.Vector3[] UnityEngine.UI.Image::s_Xy
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___s_Xy_52;
// UnityEngine.Vector3[] UnityEngine.UI.Image::s_Uv
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___s_Uv_53;
// System.Collections.Generic.List`1<UnityEngine.UI.Image> UnityEngine.UI.Image::m_TrackedTexturelessImages
List_1_tB46CB6C7789F514A8BE08EB5A4F3D9D26AE5E4DA * ___m_TrackedTexturelessImages_54;
// System.Boolean UnityEngine.UI.Image::s_Initialized
bool ___s_Initialized_55;
public:
inline static int32_t get_offset_of_s_ETC1DefaultUI_35() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_StaticFields, ___s_ETC1DefaultUI_35)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_s_ETC1DefaultUI_35() const { return ___s_ETC1DefaultUI_35; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_s_ETC1DefaultUI_35() { return &___s_ETC1DefaultUI_35; }
inline void set_s_ETC1DefaultUI_35(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___s_ETC1DefaultUI_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_ETC1DefaultUI_35), (void*)value);
}
inline static int32_t get_offset_of_s_VertScratch_50() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_StaticFields, ___s_VertScratch_50)); }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* get_s_VertScratch_50() const { return ___s_VertScratch_50; }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6** get_address_of_s_VertScratch_50() { return &___s_VertScratch_50; }
inline void set_s_VertScratch_50(Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* value)
{
___s_VertScratch_50 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_VertScratch_50), (void*)value);
}
inline static int32_t get_offset_of_s_UVScratch_51() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_StaticFields, ___s_UVScratch_51)); }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* get_s_UVScratch_51() const { return ___s_UVScratch_51; }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6** get_address_of_s_UVScratch_51() { return &___s_UVScratch_51; }
inline void set_s_UVScratch_51(Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* value)
{
___s_UVScratch_51 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_UVScratch_51), (void*)value);
}
inline static int32_t get_offset_of_s_Xy_52() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_StaticFields, ___s_Xy_52)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_s_Xy_52() const { return ___s_Xy_52; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_s_Xy_52() { return &___s_Xy_52; }
inline void set_s_Xy_52(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
___s_Xy_52 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Xy_52), (void*)value);
}
inline static int32_t get_offset_of_s_Uv_53() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_StaticFields, ___s_Uv_53)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_s_Uv_53() const { return ___s_Uv_53; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_s_Uv_53() { return &___s_Uv_53; }
inline void set_s_Uv_53(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
___s_Uv_53 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Uv_53), (void*)value);
}
inline static int32_t get_offset_of_m_TrackedTexturelessImages_54() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_StaticFields, ___m_TrackedTexturelessImages_54)); }
inline List_1_tB46CB6C7789F514A8BE08EB5A4F3D9D26AE5E4DA * get_m_TrackedTexturelessImages_54() const { return ___m_TrackedTexturelessImages_54; }
inline List_1_tB46CB6C7789F514A8BE08EB5A4F3D9D26AE5E4DA ** get_address_of_m_TrackedTexturelessImages_54() { return &___m_TrackedTexturelessImages_54; }
inline void set_m_TrackedTexturelessImages_54(List_1_tB46CB6C7789F514A8BE08EB5A4F3D9D26AE5E4DA * value)
{
___m_TrackedTexturelessImages_54 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TrackedTexturelessImages_54), (void*)value);
}
inline static int32_t get_offset_of_s_Initialized_55() { return static_cast<int32_t>(offsetof(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_StaticFields, ___s_Initialized_55)); }
inline bool get_s_Initialized_55() const { return ___s_Initialized_55; }
inline bool* get_address_of_s_Initialized_55() { return &___s_Initialized_55; }
inline void set_s_Initialized_55(bool value)
{
___s_Initialized_55 = value;
}
};
// UnityEngine.UI.Text
struct Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 : public MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F
{
public:
// UnityEngine.UI.FontData UnityEngine.UI.Text::m_FontData
FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494 * ___m_FontData_35;
// System.String UnityEngine.UI.Text::m_Text
String_t* ___m_Text_36;
// UnityEngine.TextGenerator UnityEngine.UI.Text::m_TextCache
TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 * ___m_TextCache_37;
// UnityEngine.TextGenerator UnityEngine.UI.Text::m_TextCacheForLayout
TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 * ___m_TextCacheForLayout_38;
// System.Boolean UnityEngine.UI.Text::m_DisableFontTextureRebuiltCallback
bool ___m_DisableFontTextureRebuiltCallback_40;
// UnityEngine.UIVertex[] UnityEngine.UI.Text::m_TempVerts
UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* ___m_TempVerts_41;
public:
inline static int32_t get_offset_of_m_FontData_35() { return static_cast<int32_t>(offsetof(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030, ___m_FontData_35)); }
inline FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494 * get_m_FontData_35() const { return ___m_FontData_35; }
inline FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494 ** get_address_of_m_FontData_35() { return &___m_FontData_35; }
inline void set_m_FontData_35(FontData_t29F4568F4FB8C463AAFE6DD21FA7A812B4FF1494 * value)
{
___m_FontData_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FontData_35), (void*)value);
}
inline static int32_t get_offset_of_m_Text_36() { return static_cast<int32_t>(offsetof(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030, ___m_Text_36)); }
inline String_t* get_m_Text_36() const { return ___m_Text_36; }
inline String_t** get_address_of_m_Text_36() { return &___m_Text_36; }
inline void set_m_Text_36(String_t* value)
{
___m_Text_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Text_36), (void*)value);
}
inline static int32_t get_offset_of_m_TextCache_37() { return static_cast<int32_t>(offsetof(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030, ___m_TextCache_37)); }
inline TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 * get_m_TextCache_37() const { return ___m_TextCache_37; }
inline TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 ** get_address_of_m_TextCache_37() { return &___m_TextCache_37; }
inline void set_m_TextCache_37(TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 * value)
{
___m_TextCache_37 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TextCache_37), (void*)value);
}
inline static int32_t get_offset_of_m_TextCacheForLayout_38() { return static_cast<int32_t>(offsetof(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030, ___m_TextCacheForLayout_38)); }
inline TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 * get_m_TextCacheForLayout_38() const { return ___m_TextCacheForLayout_38; }
inline TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 ** get_address_of_m_TextCacheForLayout_38() { return &___m_TextCacheForLayout_38; }
inline void set_m_TextCacheForLayout_38(TextGenerator_tD455BE18A64C7DDF854F6DB3CCEBF705121C58A8 * value)
{
___m_TextCacheForLayout_38 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TextCacheForLayout_38), (void*)value);
}
inline static int32_t get_offset_of_m_DisableFontTextureRebuiltCallback_40() { return static_cast<int32_t>(offsetof(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030, ___m_DisableFontTextureRebuiltCallback_40)); }
inline bool get_m_DisableFontTextureRebuiltCallback_40() const { return ___m_DisableFontTextureRebuiltCallback_40; }
inline bool* get_address_of_m_DisableFontTextureRebuiltCallback_40() { return &___m_DisableFontTextureRebuiltCallback_40; }
inline void set_m_DisableFontTextureRebuiltCallback_40(bool value)
{
___m_DisableFontTextureRebuiltCallback_40 = value;
}
inline static int32_t get_offset_of_m_TempVerts_41() { return static_cast<int32_t>(offsetof(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030, ___m_TempVerts_41)); }
inline UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* get_m_TempVerts_41() const { return ___m_TempVerts_41; }
inline UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A** get_address_of_m_TempVerts_41() { return &___m_TempVerts_41; }
inline void set_m_TempVerts_41(UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* value)
{
___m_TempVerts_41 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TempVerts_41), (void*)value);
}
};
struct Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_StaticFields
{
public:
// UnityEngine.Material UnityEngine.UI.Text::s_DefaultText
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___s_DefaultText_39;
public:
inline static int32_t get_offset_of_s_DefaultText_39() { return static_cast<int32_t>(offsetof(Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_StaticFields, ___s_DefaultText_39)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_s_DefaultText_39() const { return ___s_DefaultText_39; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_s_DefaultText_39() { return &___s_DefaultText_39; }
inline void set_s_DefaultText_39(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___s_DefaultText_39 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultText_39), (void*)value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// UnityEngine.EventSystems.BaseInput[]
struct BaseInputU5BU5D_t8D390CDD3C58D992EDA010E5AF94B42F4C73E6E3 : public RuntimeArray
{
public:
ALIGN_FIELD (8) BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * m_Items[1];
public:
inline BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// UnityEngine.EventSystems.BaseRaycaster[]
struct BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6 : public RuntimeArray
{
public:
ALIGN_FIELD (8) BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * m_Items[1];
public:
inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray
{
public:
ALIGN_FIELD (8) RuntimeObject * m_Items[1];
public:
inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// UnityEngine.RaycastHit2D[]
struct RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165 : public RuntimeArray
{
public:
ALIGN_FIELD (8) RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE m_Items[1];
public:
inline RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE value)
{
m_Items[index] = value;
}
};
// UnityEngine.RaycastHit[]
struct RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57 : public RuntimeArray
{
public:
ALIGN_FIELD (8) RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 m_Items[1];
public:
inline RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 value)
{
m_Items[index] = value;
}
};
// UnityEngine.Display[]
struct DisplayU5BU5D_tB2AB0FDB3B2E9FD784D5100C18EB0ED489A2CCC9 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57 * m_Items[1];
public:
inline Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57 ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.String[]
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E : public RuntimeArray
{
public:
ALIGN_FIELD (8) String_t* m_Items[1];
public:
inline String_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline String_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, String_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Type[]
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F : public RuntimeArray
{
public:
ALIGN_FIELD (8) Type_t * m_Items[1];
public:
inline Type_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Type_t ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Type_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Type_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Type_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// UnityEngine.Component[]
struct ComponentU5BU5D_t7BE50AFB6301C06D990819B3D8F35CA326CDD155 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * m_Items[1];
public:
inline Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// UnityEngine.Vector3[]
struct Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 m_Items[1];
public:
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
m_Items[index] = value;
}
};
// UnityEngine.EventSystems.RaycastResult[]
struct RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65 : public RuntimeArray
{
public:
ALIGN_FIELD (8) RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 m_Items[1];
public:
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___module_1), (void*)NULL);
#endif
}
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___module_1), (void*)NULL);
#endif
}
};
// !!0[] UnityEngine.Component::GetComponents<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Component_GetComponents_TisRuntimeObject_mDC1D023FE07F73E1E8433D1E896D5F1250180C10_gshared (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method);
// !!0 UnityEngine.GameObject::AddComponent<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GameObject_AddComponent_TisRuntimeObject_m80EDFEAC4927F588A7A702F81524EDBFA8603FE2_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method);
// !!0 UnityEngine.Component::GetComponent<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Component_GetComponent_TisRuntimeObject_m129DEF8A66683189ED44B21496135824743EF617_gshared (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::get_Item(System.Int32)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 List_1_get_Item_m2A56C2A02EB54A7A40292117D706176EB29A9CF6_gshared_inline (List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::get_Count()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m3CE6A18703ABFF7312511F654475662716BF8F51_gshared_inline (List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<System.Object>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExecuteEvents_Execute_TisRuntimeObject_mDA4CD02F963B6939F8D079993DC2DCD75AB524DD_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, EventFunction_1_t0D76F16B2B9E513C3DFCE66CDCAC1768F5B6488C * ___functor2, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Clear_mC5CFC6C9F3007FC24FE020198265D4B5B0659FFC_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1<System.Object>::Remove(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_m908B647BB9F807676DACE34E3E73475C3C3751D4_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::Add(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m348AEDFD8CF39B720D58C70279BABA7CF0364A6C_gshared (List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * __this, const RuntimeMethod* method);
// !!0[] UnityEngine.Component::GetComponentsInParent<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* Component_GetComponentsInParent_TisRuntimeObject_m4C178287A7D9F411324F0D20D7214B40AC502A26_gshared (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<System.Object>::IndexOf(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_m98E4245F46A6D90AE3E96EFF3880D50ED6E2C728_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::RemoveAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_m50D861A91F15E3169935F47FB656C3ED5486E74E_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::Insert(System.Int32,!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_m327E513FB78F72441BBF2756AFCC788F89A4FA52_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___index0, RuntimeObject * ___item1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Component::GetComponents<System.Object>(System.Collections.Generic.List`1<!!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Component_GetComponents_TisRuntimeObject_m9B0DA96E1F1AAD212E866E859274F715A808BBC5_gshared (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * ___results0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Clear_mD6A4F201FB5F0713480F9CAF35A9646F08B56CB2_gshared (List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::Sort(System.Comparison`1<!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mB19A87C63B177C6E8357C56CC64779D069191737_gshared (List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * __this, Comparison_1_t80059259E2DC99461F7DF9B43BA93054613AE703 * ___comparison0, const RuntimeMethod* method);
// System.Void System.Comparison`1<UnityEngine.EventSystems.RaycastResult>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparison_1__ctor_mBCDF46BEA3D67AC2D1A438AC8D3480AE34293374_gshared (Comparison_1_t80059259E2DC99461F7DF9B43BA93054613AE703 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEvent`1<System.Object>::Invoke(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_m027706B0C7150736F066D5C663304CB0B80ABBF0_gshared (UnityEvent_1_t9E897A46A46C78F7104A831E63BB081546EFFF0D * __this, RuntimeObject * ___arg00, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEvent`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_m38CD236F782AA440F6DDB5D90B4C9DA24CDBA3A7_gshared (UnityEvent_1_t9E897A46A46C78F7104A831E63BB081546EFFF0D * __this, const RuntimeMethod* method);
// T UnityEngine.EventSystems.ExecuteEvents::ValidateEventData<System.Object>(UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ExecuteEvents_ValidateEventData_TisRuntimeObject_mC0CCF6A7FE6F32C0C6B0FB70F163257D9A07F211_gshared (BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___data0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventFunction_1__ctor_m7A19A827934CFEE34C9C44916C984B86003C7E69_gshared (EventFunction_1_t0D76F16B2B9E513C3DFCE66CDCAC1768F5B6488C * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityAction`1<System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1__ctor_mF6AE3BA9395C61DE1466BE7BB863A77F3584EEC3_gshared (UnityAction_1_t330F97880F37E23D6D0C6618DD77F28AC9EF8FA9 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Void UnityEngine.UI.ObjectPool`1<System.Object>::.ctor(UnityEngine.Events.UnityAction`1<T>,UnityEngine.Events.UnityAction`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectPool_1__ctor_m5A29AD1D0B7DD5C4F207B1659FF168D4BF7C0D01_gshared (ObjectPool_1_t5BE4172BA33477BCA8E88EF395C26D7558DEB7E9 * __this, UnityAction_1_t330F97880F37E23D6D0C6618DD77F28AC9EF8FA9 * ___actionOnGet0, UnityAction_1_t330F97880F37E23D6D0C6618DD77F28AC9EF8FA9 * ___actionOnRelease1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___capacity0, const RuntimeMethod* method);
// !!0 UnityEngine.GameObject::GetComponent<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GameObject_GetComponent_TisRuntimeObject_mD4382B2843BA9A61A01A8F9D7B9813D060F9C9CA_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::Add(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m7DCB84D89B15944C08B73F13E91B780624023F37_gshared (List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * __this, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___item0, const RuntimeMethod* method);
// System.Void System.Array::Sort<UnityEngine.RaycastHit>(!!0[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<!!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_mEF1012F8E1A6C51EA8DF47DEAF751056596FEB96_gshared (RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57* ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::TryGetValue(!0,!1&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m867F6DA953678D0333A55270B7C6EF38EFC293FF_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Add(!0,!1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_mF7AEA0EFA07EEBC1A4B283A26A7CB720EE7A4C20_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Remove(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m2204D6D532702FD13AB2A9AD8DB538E4E8FB1913_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___key0, const RuntimeMethod* method);
// System.Collections.Generic.Dictionary`2/ValueCollection<!0,!1> System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::get_Values()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913 * Dictionary_2_get_Values_m07CB5FB90C539E49DBB6DFF53E2D791819568978_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method);
// System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 ValueCollection_GetEnumerator_mE3FC38B611CBB8E3B330812AB32E6A9B58300C79_gshared (ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913 * __this, const RuntimeMethod* method);
// !1 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::get_Current()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m7478A1B54D9B92E960D1E1C1E95C475E4E6627F7_gshared_inline (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mEC2938FD01311789888F82425F685083D1171E32_gshared (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mB0A9FE8FC5264460EA74FDA394BA5952C00D5E5D_gshared (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_m0A844810F20B37C73BBE7E1B059856D5DAF18294_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method);
// System.Collections.Generic.Dictionary`2/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 Dictionary_2_GetEnumerator_mC4CC8729DB01471BF1ABD5331EFDB28A6C278E6A_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method);
// System.Collections.Generic.KeyValuePair`2<!0,!1> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::get_Current()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 Enumerator_get_Current_m06BE1BB610C63E4879934D506F770C25B6BBA73E_gshared_inline (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method);
// !1 System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Value()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m6A192504C64D61B2B59FF5641E62E5094F3914C1_gshared_inline (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Key()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m3BF2B782A34C5DBE7E9F7F1D0B69F9D248B6DD94_gshared_inline (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mB386E7259BB364D109750B49CD9572D0B7EE28A8_gshared (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m81ED3FDA0AA1BEEA5A2C8E108347EF4D03752310_gshared (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::GetEventHandler<System.Object>(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ExecuteEvents_GetEventHandler_TisRuntimeObject_m4A0A387AEA9C47C3DB85EAB3FE49C0689C0FFFA8_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___root0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m7D745ADE56151C2895459668F4A4242985E526D8_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1<System.Object>::Contains(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_mE08D561E86879A26245096C572A8593279383FDB_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::ExecuteHierarchy<System.Object>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_mB2DEEAF3F86ED5BECA570432FD5440948D5CB3B8_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___root0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, EventFunction_1_t0D76F16B2B9E513C3DFCE66CDCAC1768F5B6488C * ___callbackFunction2, const RuntimeMethod* method);
// System.String System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_mA08653D28F24D8EEBE68DDFE8B80981F50847AD6_gshared (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<System.Int32Enum>(T&,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m9E98202B88F58047BA33B2C7CA923AB4C93FD022_gshared (int32_t* ___currentValue0, int32_t ___newValue1, const RuntimeMethod* method);
// System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<System.Single>(T&,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m4ACD4ED0F57868F46763D5D0BBF12FCAE1314E3A_gshared (float* ___currentValue0, float ___newValue1, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Collections.IndexedSet`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IndexedSet_1__ctor_mA9E3CAA05341D4863E3080C31170AB64AAED0573_gshared (IndexedSet_1_tBC520330ED014FACA69A5A730B4C03ABD49AB4C3 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.UI.Collections.IndexedSet`1<System.Object>::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IndexedSet_1_get_Count_mA8B3EBDB71AD001C6D39FA35D79D7516C1C267E4_gshared (IndexedSet_1_tBC520330ED014FACA69A5A730B4C03ABD49AB4C3 * __this, const RuntimeMethod* method);
// T UnityEngine.UI.Collections.IndexedSet`1<System.Object>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * IndexedSet_1_get_Item_m982CBDB4CDA1A497EC25A60EC17AB8F7B2D51BC0_gshared (IndexedSet_1_tBC520330ED014FACA69A5A730B4C03ABD49AB4C3 * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Collections.IndexedSet`1<System.Object>::RemoveAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IndexedSet_1_RemoveAt_mBFCEF1CBBC140206B5DFCAE8205161429441E0EA_gshared (IndexedSet_1_tBC520330ED014FACA69A5A730B4C03ABD49AB4C3 * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Collections.IndexedSet`1<System.Object>::Sort(System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IndexedSet_1_Sort_m0365BC9CE6449DBD358C479FB244D07FE72F36E7_gshared (IndexedSet_1_tBC520330ED014FACA69A5A730B4C03ABD49AB4C3 * __this, Comparison_1_tD9DBDF7B2E4774B4D35E113A76D75828A24641F4 * ___sortLayoutFunction0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Collections.IndexedSet`1<System.Object>::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IndexedSet_1_Clear_m689CFB50CED51E5F519BEEF51B8D8C6FFBF41FB9_gshared (IndexedSet_1_tBC520330ED014FACA69A5A730B4C03ABD49AB4C3 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.UI.Collections.IndexedSet`1<System.Object>::Contains(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IndexedSet_1_Contains_mCA290D982CEDEE20068188B38AC28A45CDDC9D13_gshared (IndexedSet_1_tBC520330ED014FACA69A5A730B4C03ABD49AB4C3 * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
// System.Boolean UnityEngine.UI.Collections.IndexedSet`1<System.Object>::AddUnique(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IndexedSet_1_AddUnique_m90A07ACAD8A4E562C11674ED9598E5DE3AFE5F48_gshared (IndexedSet_1_tBC520330ED014FACA69A5A730B4C03ABD49AB4C3 * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
// System.Boolean UnityEngine.UI.Collections.IndexedSet`1<System.Object>::Remove(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IndexedSet_1_Remove_m8C62E0808CB2D9452B58F1CB736C431F04CA1F4B_gshared (IndexedSet_1_tBC520330ED014FACA69A5A730B4C03ABD49AB4C3 * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
// System.Void System.Comparison`1<System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparison_1__ctor_m3445CDEBFFF4A3A9EAED69CBCC2D247630CA5BD4_gshared (Comparison_1_tD9DBDF7B2E4774B4D35E113A76D75828A24641F4 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::Invoke(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_mB755E72B8F7D26CFA94C8B9B145F6019FB5932CC_gshared (UnityEvent_1_tFB475F569CC8852B004B3F2DE7536E67324C2AF8 * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___arg00, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::AddListener(UnityEngine.Events.UnityAction`1<!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_mF7F87D2B61E38F1FE1C8328F7125F4F129011AB1_gshared (UnityEvent_1_tFB475F569CC8852B004B3F2DE7536E67324C2AF8 * __this, UnityAction_1_t8523D5D21ADA168AED3BD9CFFCED8FF87199DE9D * ___call0, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_m488AA12DF55CA69BD2FEF7750B745B4C04452553_gshared (UnityEvent_1_tFB475F569CC8852B004B3F2DE7536E67324C2AF8 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEvent`1<System.Single>::Invoke(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_m2B015F1AE7FEA9E2D9E2621E5179AB752B5469CD_gshared (UnityEvent_1_t655F4ECDA62E804A34CC8737AC30B836ABD3D2DA * __this, float ___arg00, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEvent`1<System.Single>::AddListener(UnityEngine.Events.UnityAction`1<!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_mCCF08CC8634A4987236EA3C100FFCA94A18C7CC8_gshared (UnityEvent_1_t655F4ECDA62E804A34CC8737AC30B836ABD3D2DA * __this, UnityAction_1_t0064196FB7635B812E65BA9FD08D39F68C75DCD9 * ___call0, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEvent`1<System.Single>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_m90CD771D0B50926E7B8624F1E0697F1FF539098D_gshared (UnityEvent_1_t655F4ECDA62E804A34CC8737AC30B836ABD3D2DA * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEvent`1<System.Int32>::Invoke(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_mAC9BEEF287D58E79A447A57E28D3679F9B199D70_gshared (UnityEvent_1_t6DD758393B13FC2A58BE44E647D9EBEA4F27D914 * __this, int32_t ___arg00, const RuntimeMethod* method);
// System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TweenRunner_1__ctor_mBCECADAAC67B34851BF7AE7F23AAA7BEDD17CDAE_gshared (TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>::Init(UnityEngine.MonoBehaviour)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void TweenRunner_1_Init_m36554C1037EC37B2D67A1BDE9B4D2407FE2C7657_gshared_inline (TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF * __this, MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429 * ___coroutineContainer0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::AddRange(System.Collections.Generic.IEnumerable`1<!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddRange_m629B40CD4286736C328FA496AAFC388F697CF984_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject* ___collection0, const RuntimeMethod* method);
// !!0 UnityEngine.Component::GetComponentInChildren<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Component_GetComponentInChildren_TisRuntimeObject_m06B65DD1CC6DFB48DB4DEE2CC185788D42837D30_gshared (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method);
// T UnityEngine.UI.Dropdown::GetOrAddComponent<System.Object>(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dropdown_GetOrAddComponent_TisRuntimeObject_mAEDB727D813C41FFCB6E8556119504E270F2E755_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___go0, const RuntimeMethod* method);
// System.Collections.Generic.List`1<T> UnityEngine.UI.ListPool`1<System.Object>::Get()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * ListPool_1_Get_mEE963F0CFA2D9BE7F593624F2825F9C8E326217D_gshared (const RuntimeMethod* method);
// System.Void UnityEngine.GameObject::GetComponentsInParent<System.Object>(System.Boolean,System.Collections.Generic.List`1<!!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GameObject_GetComponentsInParent_TisRuntimeObject_m8E934276B44FBF476F4215C21957EB22DD6D6F4E_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, bool ___includeInactive0, List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * ___results1, const RuntimeMethod* method);
// System.Void UnityEngine.UI.ListPool`1<System.Object>::Release(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListPool_1_Release_mA153831D5786A134340D88D3C5C14451A188C6B6_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * ___toRelease0, const RuntimeMethod* method);
// !!0 UnityEngine.GameObject::GetComponentInChildren<System.Object>()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GameObject_GetComponentInChildren_TisRuntimeObject_mF2869D54987BDCEE9F39FF2F62D1FB1016744718_gshared (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityAction`1<System.Boolean>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1__ctor_mBB2754F539A754A4BA916AF035A54BCEC7A00CA5_gshared (UnityAction_1_tB994D127B02789CE2010397AEF756615E5F84FDC * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEvent`1<System.Boolean>::AddListener(UnityEngine.Events.UnityAction`1<!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_m5A6D7B15EFC39EFA12721981E727CBD81E3051AF_gshared (UnityEvent_1_tE1EF042798523847EEBB2A12FA37C4003C1B1299 * __this, UnityAction_1_tB994D127B02789CE2010397AEF756615E5F84FDC * ___call0, const RuntimeMethod* method);
// !!0 UnityEngine.Object::Instantiate<System.Object>(!!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Object_Instantiate_TisRuntimeObject_mFBEB99FAFA7C81868D18C2A17C94AF512CD872EC_gshared (RuntimeObject * ___original0, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityAction`1<System.Single>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1__ctor_mDF0761DC432ADAE690B100D381AAEE87CD2C3DCB_gshared (UnityAction_1_t0064196FB7635B812E65BA9FD08D39F68C75DCD9 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>::StartTween(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TweenRunner_1_StartTween_mCD6A38F2A78EADA8BFD4D710333E6263D32DAEFE_gshared (TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF * __this, FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A ___info0, const RuntimeMethod* method);
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.BaseEventData::.ctor(UnityEngine.EventSystems.EventSystem)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseEventData__ctor_m4A8184F01D2CA8B2DE6BB752F486CF7DEF7A56AE (BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * __this, EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * ___eventSystem0, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.Vector2::get_zero()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8 (const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.AxisEventData::set_moveVector(UnityEngine.Vector2)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void AxisEventData_set_moveVector_m863F26BE1230CBCCA2DEF5651CE0FC8B8F1D45A3_inline (AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.AxisEventData::set_moveDir(UnityEngine.EventSystems.MoveDirection)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void AxisEventData_set_moveDir_m6C647B27688638E9C02A98E47BEC5292C07465EE_inline (AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.AbstractEventData::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AbstractEventData__ctor_mE768723F461440691FA9218643BEC7692B816B36 (AbstractEventData_t636F385820C291DAE25897BCEB4FBCADDA3B75F6 * __this, const RuntimeMethod* method);
// UnityEngine.EventSystems.BaseInputModule UnityEngine.EventSystems.EventSystem::get_currentInputModule()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * EventSystem_get_currentInputModule_mAA917C940E32ECAC4324D6824A9E0A951F16D891_inline (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.EventSystems.EventSystem::get_currentSelectedGameObject()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * EventSystem_get_currentSelectedGameObject_mE28E78D268403602DE1FB6F059EE3E9CDB7325A4_inline (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.EventSystem::SetSelectedGameObject(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_SetSelectedGameObject_m532EE7D0346462EDBB56E5BCD048CB3BEFB84E3A (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___selected0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___pointer1, const RuntimeMethod* method);
// System.String UnityEngine.Input::get_compositionString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Input_get_compositionString_mA2BEBDED6F15265EDDB37D9E7160FE7580D7617C (const RuntimeMethod* method);
// UnityEngine.IMECompositionMode UnityEngine.Input::get_imeCompositionMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Input_get_imeCompositionMode_mAE9FA70DAEF3BE429C51FC48001368428FB2CA10 (const RuntimeMethod* method);
// System.Void UnityEngine.Input::set_imeCompositionMode(UnityEngine.IMECompositionMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Input_set_imeCompositionMode_m28AAFBFFD38640C3E0F15809C5D0C165B1EEA9A6 (int32_t ___value0, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.Input::get_compositionCursorPos()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D Input_get_compositionCursorPos_mCCF0BB765BC2668E19AD2832DEE7A3D1882777D8 (const RuntimeMethod* method);
// System.Void UnityEngine.Input::set_compositionCursorPos(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Input_set_compositionCursorPos_m39EB58D705F1E2D30D45480AF918CA098189F326 (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Input::get_mousePresent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Input_get_mousePresent_m84357E5B596CD17272874EF83E2D2F2864580E05 (const RuntimeMethod* method);
// System.Boolean UnityEngine.Input::GetMouseButtonDown(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Input_GetMouseButtonDown_m5AD76E22AA839706219AD86A4E0BE5276AF8E28A (int32_t ___button0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Input::GetMouseButtonUp(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Input_GetMouseButtonUp_m4899272EB31D43EC4A3A1A115843CD3D9AA2C4EC (int32_t ___button0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Input::GetMouseButton(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Input_GetMouseButton_m43C68DE93C7D990E875BA53C4DEC9CA6230C8B79 (int32_t ___button0, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.UI.MultipleDisplayUtilities::GetMousePositionRelativeToMainDisplayResolution()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D MultipleDisplayUtilities_GetMousePositionRelativeToMainDisplayResolution_m2D3CB08174B28122E201011E77C0A1BE762C948C (const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.Input::get_mouseScrollDelta()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D Input_get_mouseScrollDelta_m66F785090C429CE7DCDEF09C92CDBDD08FCDE98D (const RuntimeMethod* method);
// System.Boolean UnityEngine.Input::get_touchSupported()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Input_get_touchSupported_m59811A353627249C934E8FF7A6F3C4A7883978E9 (const RuntimeMethod* method);
// System.Int32 UnityEngine.Input::get_touchCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Input_get_touchCount_m497E19AA4FA22DB659F631B20FAEF65572D1B44E (const RuntimeMethod* method);
// UnityEngine.Touch UnityEngine.Input::GetTouch(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 Input_GetTouch_m8082D8EE3A187488373CE6AC66A70B0AAD7CC23F (int32_t ___index0, const RuntimeMethod* method);
// System.Single UnityEngine.Input::GetAxisRaw(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Input_GetAxisRaw_mC68301A9D93702F0C393E45C6337348062EACE21 (String_t* ___axisName0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Input::GetButtonDown(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Input_GetButtonDown_m1E80BAC5CCBE9E0151491B8F8F5FFD6AB050BBF0 (String_t* ___buttonName0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.UIBehaviour::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour__ctor_m1B44EE4BDA3604F96C48379524B9907FEB15EB53 (UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.Object::op_Inequality(UnityEngine.Object,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___x0, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___y1, const RuntimeMethod* method);
// System.Boolean UnityEngine.Object::op_Equality(UnityEngine.Object,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___x0, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___y1, const RuntimeMethod* method);
// !!0[] UnityEngine.Component::GetComponents<UnityEngine.EventSystems.BaseInput>()
inline BaseInputU5BU5D_t8D390CDD3C58D992EDA010E5AF94B42F4C73E6E3* Component_GetComponents_TisBaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82_m6F23E3795BE7E17A40BCA0064E9BFA4892670874 (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method)
{
return (( BaseInputU5BU5D_t8D390CDD3C58D992EDA010E5AF94B42F4C73E6E3* (*) (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *, const RuntimeMethod*))Component_GetComponents_TisRuntimeObject_mDC1D023FE07F73E1E8433D1E896D5F1250180C10_gshared)(__this, method);
}
// System.Type System.Object::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___handle0, const RuntimeMethod* method);
// System.Boolean System.Type::op_Equality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.Component::get_gameObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method);
// !!0 UnityEngine.GameObject::AddComponent<UnityEngine.EventSystems.BaseInput>()
inline BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * GameObject_AddComponent_TisBaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82_m1712CB24202FFDF87FC820B58224D773637E860A (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
return (( BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))GameObject_AddComponent_TisRuntimeObject_m80EDFEAC4927F588A7A702F81524EDBFA8603FE2_gshared)(__this, method);
}
// System.Void UnityEngine.EventSystems.UIBehaviour::OnEnable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnEnable_m4FF74AADA5E101F59DC5C19DCA82110F7482CB56 (UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 * __this, const RuntimeMethod* method);
// !!0 UnityEngine.Component::GetComponent<UnityEngine.EventSystems.EventSystem>()
inline EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * Component_GetComponent_TisEventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_m72CF57F3AD96E6CADECF5DDE79D3592A4D5E09A7 (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method)
{
return (( EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * (*) (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m129DEF8A66683189ED44B21496135824743EF617_gshared)(__this, method);
}
// System.Void UnityEngine.EventSystems.EventSystem::UpdateModules()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_UpdateModules_m9E90C6FD7A4202BD6E4801C6AF109D859167FE8A (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.UIBehaviour::OnDisable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnDisable_m43F5502A18FCFFD355381A95175DC71E0D4005EC (UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::get_Item(System.Int32)
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 List_1_get_Item_m2A56C2A02EB54A7A40292117D706176EB29A9CF6_inline (List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 (*) (List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 *, int32_t, const RuntimeMethod*))List_1_get_Item_m2A56C2A02EB54A7A40292117D706176EB29A9CF6_gshared_inline)(__this, ___index0, method);
}
// UnityEngine.GameObject UnityEngine.EventSystems.RaycastResult::get_gameObject()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * RaycastResult_get_gameObject_m9D77DEDFF498BAFE29A5F88E9F238400D04C8FDD_inline (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * __this, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::get_Count()
inline int32_t List_1_get_Count_m3CE6A18703ABFF7312511F654475662716BF8F51_inline (List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 *, const RuntimeMethod*))List_1_get_Count_m3CE6A18703ABFF7312511F654475662716BF8F51_gshared_inline)(__this, method);
}
// UnityEngine.EventSystems.MoveDirection UnityEngine.EventSystems.BaseInputModule::DetermineMoveDirection(System.Single,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseInputModule_DetermineMoveDirection_mC1D1D145996C9A384D865FAE4B02FDF9D106EA52 (float ___x0, float ___y1, float ___deadZone2, const RuntimeMethod* method);
// System.Void UnityEngine.Vector2::.ctor(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0 (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * __this, float ___x0, float ___y1, const RuntimeMethod* method);
// System.Single UnityEngine.Vector2::get_sqrMagnitude()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Vector2_get_sqrMagnitude_mAEE10A8ECE7D5754E10727BA8C9068A759AD7002 (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * __this, const RuntimeMethod* method);
// UnityEngine.Transform UnityEngine.GameObject::get_transform()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * GameObject_get_transform_mA5C38857137F137CB96C69FAA624199EB1C2FB2C (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method);
// UnityEngine.Transform UnityEngine.Transform::get_parent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * Transform_get_parent_m8FA24E38A1FA29D90CBF3CDC9F9F017C65BB3403 (Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * __this, const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::get_pointerEnter()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * PointerEventData_get_pointerEnter_m47E87ACB1557B6380D0E66F57C2F9FFFD5E86DC2_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<UnityEngine.GameObject>::get_Item(System.Int32)
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * List_1_get_Item_mF3CFF4FB71CEEDC038A8826D6AE1A226B7CF22A6_inline (List_1_t3D4152882C54B77C712688E910390D5C8E030463 * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * (*) (List_1_t3D4152882C54B77C712688E910390D5C8E030463 *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method);
}
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerExitHandler> UnityEngine.EventSystems.ExecuteEvents::get_pointerExitHandler()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA * ExecuteEvents_get_pointerExitHandler_mE5EC9537676A055EEE178A4E6B58D96F9B4AC301_inline (const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IPointerExitHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisIPointerExitHandler_t5D65A773A15D990BC231F7C9FE221AB4417327FF_m8444DB648260AACF886B84ADCB4F43871EFA8B4E (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA * ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *, EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA *, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDA4CD02F963B6939F8D079993DC2DCD75AB524DD_gshared)(___target0, ___eventData1, ___functor2, method);
}
// System.Int32 System.Collections.Generic.List`1<UnityEngine.GameObject>::get_Count()
inline int32_t List_1_get_Count_mA61C8F11E4F47F828FC3E31E04C25BF06F23B2A4_inline (List_1_t3D4152882C54B77C712688E910390D5C8E030463 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t3D4152882C54B77C712688E910390D5C8E030463 *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.GameObject>::Clear()
inline void List_1_Clear_m328812EE6BE89C6594EFCA34543A2F011D1452C8 (List_1_t3D4152882C54B77C712688E910390D5C8E030463 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t3D4152882C54B77C712688E910390D5C8E030463 *, const RuntimeMethod*))List_1_Clear_mC5CFC6C9F3007FC24FE020198265D4B5B0659FFC_gshared)(__this, method);
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_pointerEnter(UnityEngine.GameObject)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_pointerEnter_mCA947226697EEC596FD611B31C10D7CE981026CC_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Object::op_Implicit(UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___exists0, const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.EventSystems.BaseInputModule::FindCommonRoot(UnityEngine.GameObject,UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * BaseInputModule_FindCommonRoot_m1995190ADC1341F180811C5213F1CA522B6282A5 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___g10, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___g21, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1<UnityEngine.GameObject>::Remove(!0)
inline bool List_1_Remove_m808D4519EDCDCA2258E80F2B86286A2C2CCBEA3B (List_1_t3D4152882C54B77C712688E910390D5C8E030463 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_t3D4152882C54B77C712688E910390D5C8E030463 *, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))List_1_Remove_m908B647BB9F807676DACE34E3E73475C3C3751D4_gshared)(__this, ___item0, method);
}
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerEnterHandler> UnityEngine.EventSystems.ExecuteEvents::get_pointerEnterHandler()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 * ExecuteEvents_get_pointerEnterHandler_mFD5296E38EB1C5EB6D16CB83913430FEEBF889A5_inline (const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IPointerEnterHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisIPointerEnterHandler_tD4E3109B19B18A39FE89A2386C453D3F5019026B_m37CC44F6AF7FA4A3448507B54778B986B83C1A88 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 * ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *, EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 *, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDA4CD02F963B6939F8D079993DC2DCD75AB524DD_gshared)(___target0, ___eventData1, ___functor2, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.GameObject>::Add(!0)
inline void List_1_Add_mB466FEDA88AB72CA7331450A36E50D916A6C3BB6 (List_1_t3D4152882C54B77C712688E910390D5C8E030463 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t3D4152882C54B77C712688E910390D5C8E030463 *, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method);
}
// UnityEngine.EventSystems.EventSystem UnityEngine.EventSystems.BaseInputModule::get_eventSystem()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.AxisEventData::.ctor(UnityEngine.EventSystems.EventSystem)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AxisEventData__ctor_m9694BD920E181114C1A079141D07BD092E05B27D (AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * __this, EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * ___eventSystem0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Behaviour::get_enabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Behaviour_get_enabled_mAA0C9ED5A3D1589C1C8AA22636543528DB353CFB (Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.GameObject::get_activeInHierarchy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GameObject_get_activeInHierarchy_mDEE60F1B28281974BA9880EC448682F3DAABB1EF (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::.ctor()
inline void List_1__ctor_m348AEDFD8CF39B720D58C70279BABA7CF0364A6C (List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 *, const RuntimeMethod*))List_1__ctor_m348AEDFD8CF39B720D58C70279BABA7CF0364A6C_gshared)(__this, method);
}
// !!0[] UnityEngine.Component::GetComponentsInParent<UnityEngine.EventSystems.BaseRaycaster>()
inline BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6* Component_GetComponentsInParent_TisBaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966_mA53CA3BE4D53DA7CB02AD9E8D078821E2DD8F3EB (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method)
{
return (( BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6* (*) (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *, const RuntimeMethod*))Component_GetComponentsInParent_TisRuntimeObject_m4C178287A7D9F411324F0D20D7214B40AC502A26_gshared)(__this, method);
}
// System.String System.String::Concat(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07 (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.RaycasterManager::AddRaycaster(UnityEngine.EventSystems.BaseRaycaster)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycasterManager_AddRaycaster_mB93CFBBCE344327BF96AC11CB500219FD1873B9A (BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___baseRaycaster0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.RaycasterManager::RemoveRaycasters(UnityEngine.EventSystems.BaseRaycaster)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycasterManager_RemoveRaycasters_m26668BA781D690D83E3417436D2D9AE577004624 (BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___baseRaycaster0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.UIBehaviour::OnCanvasHierarchyChanged()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnCanvasHierarchyChanged_m5A9FF86F647810726B4AE9F8C15862F353FBDAFD (UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.UIBehaviour::OnTransformParentChanged()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnTransformParentChanged_mBB0F5D46FF7791D80FE6E4EE1932433246D5B7CB (UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 * __this, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>::get_Count()
inline int32_t List_1_get_Count_m5617F346AC79B187A6C78EC59B4F34DE3101C348_inline (List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method);
}
// !0 System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>::get_Item(System.Int32)
inline EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * List_1_get_Item_m63E24FAB51E3F8F1B68E34D15BF21A95848FEEC4_inline (List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * (*) (List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method);
}
// System.Int32 System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>::IndexOf(!0)
inline int32_t List_1_IndexOf_m114E5C45A23B126D2EE6F1E02C56589B9F45E712 (List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B * __this, EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * ___item0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B *, EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 *, const RuntimeMethod*))List_1_IndexOf_m98E4245F46A6D90AE3E96EFF3880D50ED6E2C728_gshared)(__this, ___item0, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>::RemoveAt(System.Int32)
inline void List_1_RemoveAt_mE1B3271323D65C9D54BEC41CB54787BADF789A5B (List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B * __this, int32_t ___index0, const RuntimeMethod* method)
{
(( void (*) (List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B *, int32_t, const RuntimeMethod*))List_1_RemoveAt_m50D861A91F15E3169935F47FB656C3ED5486E74E_gshared)(__this, ___index0, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>::Insert(System.Int32,!0)
inline void List_1_Insert_m3873559B095B71CCF01AEF43F569E58103296787 (List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B * __this, int32_t ___index0, EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * ___item1, const RuntimeMethod* method)
{
(( void (*) (List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B *, int32_t, EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 *, const RuntimeMethod*))List_1_Insert_m327E513FB78F72441BBF2756AFCC788F89A4FA52_gshared)(__this, ___index0, ___item1, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule>::.ctor()
inline void List_1__ctor_m783AB36DF511851F4803E3E611E1F880054B61E4 (List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method);
}
// System.Void UnityEngine.Component::GetComponents<UnityEngine.EventSystems.BaseInputModule>(System.Collections.Generic.List`1<!!0>)
inline void Component_GetComponents_TisBaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939_mECBA4532FE12C928961128EA2CA791C03D4820E7 (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 * ___results0, const RuntimeMethod* method)
{
(( void (*) (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *, List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 *, const RuntimeMethod*))Component_GetComponents_TisRuntimeObject_m9B0DA96E1F1AAD212E866E859274F715A808BBC5_gshared)(__this, ___results0, method);
}
// System.Int32 System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule>::get_Count()
inline int32_t List_1_get_Count_m7C1FFC5C91DC37F0D0C71D737C9BA7081E0722F0_inline (List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method);
}
// !0 System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule>::get_Item(System.Int32)
inline BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * List_1_get_Item_m6556A45DA0ECCB9FFCA9717755E39559BD1679EF_inline (List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * (*) (List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule>::RemoveAt(System.Int32)
inline void List_1_RemoveAt_m1418F643EC903CD091DC3C6F0A64D260959A4DE7 (List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 * __this, int32_t ___index0, const RuntimeMethod* method)
{
(( void (*) (List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 *, int32_t, const RuntimeMethod*))List_1_RemoveAt_m50D861A91F15E3169935F47FB656C3ED5486E74E_gshared)(__this, ___index0, method);
}
// System.String System.String::Concat(System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m2E1F71C491D2429CC80A28745488FEA947BB7AAC (RuntimeObject * ___arg00, RuntimeObject * ___arg11, RuntimeObject * ___arg22, const RuntimeMethod* method);
// System.Void UnityEngine.Debug::LogError(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogError_m3BCF9B78263152261565DCA9DB7D55F0C391ED29 (RuntimeObject * ___message0, const RuntimeMethod* method);
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDeselectHandler> UnityEngine.EventSystems.ExecuteEvents::get_deselectHandler()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 * ExecuteEvents_get_deselectHandler_mEAA9E3701CC972EFDD20B30E9B3CD9302B2FD668_inline (const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IDeselectHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisIDeselectHandler_t7A98A4E16B7F39F827584A16F120FD4FC001997D_mF1C0F17C5C072DFC5BED07B25EA0190CF9A53603 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 * ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *, EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 *, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDA4CD02F963B6939F8D079993DC2DCD75AB524DD_gshared)(___target0, ___eventData1, ___functor2, method);
}
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ISelectHandler> UnityEngine.EventSystems.ExecuteEvents::get_selectHandler()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_t7521247C87411935E8A2CA38683533083459473F * ExecuteEvents_get_selectHandler_m26186C0D78CA4A8AFA0789A09F488F7E186BE1C8_inline (const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.ISelectHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisISelectHandler_t05E0943DEF2BC53023C2E4BF4C815E0EDE82C0F4_m92C6BEB40DB31218269EA1F37D122227306823BC (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, EventFunction_1_t7521247C87411935E8A2CA38683533083459473F * ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *, EventFunction_1_t7521247C87411935E8A2CA38683533083459473F *, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDA4CD02F963B6939F8D079993DC2DCD75AB524DD_gshared)(___target0, ___eventData1, ___functor2, method);
}
// UnityEngine.EventSystems.BaseEventData UnityEngine.EventSystems.EventSystem::get_baseEventDataCache()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * EventSystem_get_baseEventDataCache_m2B14076E5EF918BE1A94F16DE1A827AC1401BC89 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.Camera::get_depth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Camera_get_depth_m436C49A1C7669E4AD5665A1F1107BDFBA38742CD (Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * __this, const RuntimeMethod* method);
// System.Int32 System.Int32::CompareTo(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_CompareTo_m2EB2B72F9095FF3438D830118D57E32E1CC67195 (int32_t* __this, int32_t ___value0, const RuntimeMethod* method);
// System.Int32 UnityEngine.SortingLayer::GetLayerValueFromID(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SortingLayer_GetLayerValueFromID_m564F9C83200E5EC3E9578A75854CB943CE5546F8 (int32_t ___id0, const RuntimeMethod* method);
// UnityEngine.EventSystems.BaseRaycaster UnityEngine.EventSystems.BaseRaycaster::get_rootRaycaster()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * BaseRaycaster_get_rootRaycaster_m4DF6B023C195A4E8E9AF8D8E411379A9052D80A5 (BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * __this, const RuntimeMethod* method);
// System.Int32 System.Single::CompareTo(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Single_CompareTo_mFBF2345D81E00F834E558A4ACFD4E5137582DBBC (float* __this, float ___value0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::Clear()
inline void List_1_Clear_mD6A4F201FB5F0713480F9CAF35A9646F08B56CB2 (List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 *, const RuntimeMethod*))List_1_Clear_mD6A4F201FB5F0713480F9CAF35A9646F08B56CB2_gshared)(__this, method);
}
// System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseRaycaster> UnityEngine.EventSystems.RaycasterManager::GetRaycasters()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR List_1_tE44A303DE85018C722D021A9716A97568780A0E1 * RaycasterManager_GetRaycasters_mA2491B7F058FB2DA88179C0BDE0EFB0B0E28B740_inline (const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseRaycaster>::get_Item(System.Int32)
inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * List_1_get_Item_mF73D6D74056683643E15167BE983AB1873857A1C_inline (List_1_tE44A303DE85018C722D021A9716A97568780A0E1 * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * (*) (List_1_tE44A303DE85018C722D021A9716A97568780A0E1 *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method);
}
// System.Int32 System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseRaycaster>::get_Count()
inline int32_t List_1_get_Count_m1559446010537D733C618DF42A7F0A1DD309E6F5_inline (List_1_tE44A303DE85018C722D021A9716A97568780A0E1 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tE44A303DE85018C722D021A9716A97568780A0E1 *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::Sort(System.Comparison`1<!0>)
inline void List_1_Sort_mB19A87C63B177C6E8357C56CC64779D069191737 (List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * __this, Comparison_1_t80059259E2DC99461F7DF9B43BA93054613AE703 * ___comparison0, const RuntimeMethod* method)
{
(( void (*) (List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 *, Comparison_1_t80059259E2DC99461F7DF9B43BA93054613AE703 *, const RuntimeMethod*))List_1_Sort_mB19A87C63B177C6E8357C56CC64779D069191737_gshared)(__this, ___comparison0, method);
}
// System.Boolean UnityEngine.EventSystems.EventSystem::IsPointerOverGameObject(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventSystem_IsPointerOverGameObject_mF2B40021727C8285F99201995760659C2A53E513 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, int32_t ___pointerId0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>::Add(!0)
inline void List_1_Add_mA5146A0CC8A8EEB674C317F028E1E6FC12DC2C6D (List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B * __this, EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B *, EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method);
}
// System.Boolean System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>::Remove(!0)
inline bool List_1_Remove_m6E634BFACEA61C45680BA483504C730DD799A19A (List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B * __this, EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B *, EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 *, const RuntimeMethod*))List_1_Remove_m908B647BB9F807676DACE34E3E73475C3C3751D4_gshared)(__this, ___item0, method);
}
// UnityEngine.EventSystems.EventSystem UnityEngine.EventSystems.EventSystem::get_current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * EventSystem_get_current_m3151477735829089F66A3E46AD6DAB14CFDDE7BD (const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.EventSystem::TickModules()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_TickModules_m0A74957A4FF307FF480D2103AD225640693EB8C3 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.EventSystem::ChangeEventModule(UnityEngine.EventSystems.BaseInputModule)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_ChangeEventModule_mE2CF924DE5717273AA345F5A52C46BA98C8ED662 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * ___module0, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E (StringBuilder_t * __this, const RuntimeMethod* method);
// System.String System.String::Concat(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mBB19C73816BDD1C3519F248E1ADC8E11A6FDB495 (RuntimeObject * ___arg00, RuntimeObject * ___arg11, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::AppendLine(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::AppendLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9 (StringBuilder_t * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>::.ctor()
inline void List_1__ctor_m539C5079C5B2DA574B65303E09CD83C60752A64D (List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method);
}
// System.Void System.Comparison`1<UnityEngine.EventSystems.RaycastResult>::.ctor(System.Object,System.IntPtr)
inline void Comparison_1__ctor_mBCDF46BEA3D67AC2D1A438AC8D3480AE34293374 (Comparison_1_t80059259E2DC99461F7DF9B43BA93054613AE703 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Comparison_1_t80059259E2DC99461F7DF9B43BA93054613AE703 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Comparison_1__ctor_mBCDF46BEA3D67AC2D1A438AC8D3480AE34293374_gshared)(__this, ___object0, ___method1, method);
}
// System.Collections.Generic.List`1<UnityEngine.EventSystems.EventTrigger/Entry> UnityEngine.EventSystems.EventTrigger::get_triggers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 * EventTrigger_get_triggers_m16CC3F855662E6CEE23031B7787DA8CB4ADDF28A (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.EventTrigger::set_triggers(System.Collections.Generic.List`1<UnityEngine.EventSystems.EventTrigger/Entry>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void EventTrigger_set_triggers_mF70F72B1E143AEE94E07B032C3E057A22625467C_inline (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.MonoBehaviour::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoBehaviour__ctor_mEAEC84B222C60319D593E456D769B3311DFCEF97 (MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.EventTrigger/Entry>::.ctor()
inline void List_1__ctor_m300B9D7AF854D5BD0495EC1DAF799C3E4637F733 (List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method);
}
// System.Int32 System.Collections.Generic.List`1<UnityEngine.EventSystems.EventTrigger/Entry>::get_Count()
inline int32_t List_1_get_Count_m16394594C6ADDE04FA98C299373EF131332A29F4_inline (List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method);
}
// !0 System.Collections.Generic.List`1<UnityEngine.EventSystems.EventTrigger/Entry>::get_Item(System.Int32)
inline Entry_t58989269D924DCD15F196DDEDAB84B85ED4D734E * List_1_get_Item_m74325398BEC7FE110512D57346D985A1C0D7DD25_inline (List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( Entry_t58989269D924DCD15F196DDEDAB84B85ED4D734E * (*) (List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method);
}
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.EventSystems.BaseEventData>::Invoke(!0)
inline void UnityEvent_1_Invoke_mC579EE94CDB01C1CA945F652FD710CB64895FA9E (UnityEvent_1_t55DE148B605149DF84E469388B37672EE507573E * __this, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___arg00, const RuntimeMethod* method)
{
(( void (*) (UnityEvent_1_t55DE148B605149DF84E469388B37672EE507573E *, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *, const RuntimeMethod*))UnityEvent_1_Invoke_m027706B0C7150736F066D5C663304CB0B80ABBF0_gshared)(__this, ___arg00, method);
}
// System.Void UnityEngine.EventSystems.EventTrigger::Execute(UnityEngine.EventSystems.EventTriggerType,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_Execute_m012E5ACD13CF24C4CEC5C3C9E508185A57EF2890 (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, int32_t ___id0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.EventTrigger/TriggerEvent::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TriggerEvent__ctor_m5FA4AD9F5E1671A1F7F4C45AB1620624FEFC5F13 (TriggerEvent_tF73252408C49CDE2F1A05AA75FE09086C53A9793 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.EventSystems.BaseEventData>::.ctor()
inline void UnityEvent_1__ctor_mE99456F65F6796D9B37A8FC6CD31A598367DF68A (UnityEvent_1_t55DE148B605149DF84E469388B37672EE507573E * __this, const RuntimeMethod* method)
{
(( void (*) (UnityEvent_1_t55DE148B605149DF84E469388B37672EE507573E *, const RuntimeMethod*))UnityEvent_1__ctor_m38CD236F782AA440F6DDB5D90B4C9DA24CDBA3A7_gshared)(__this, method);
}
// T UnityEngine.EventSystems.ExecuteEvents::ValidateEventData<UnityEngine.EventSystems.PointerEventData>(UnityEngine.EventSystems.BaseEventData)
inline PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ExecuteEvents_ValidateEventData_TisPointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_mDBD5031ADC7CB64D9BD1DCDF00C8C4B927CF0A18 (BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___data0, const RuntimeMethod* method)
{
return (( PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * (*) (BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *, const RuntimeMethod*))ExecuteEvents_ValidateEventData_TisRuntimeObject_mC0CCF6A7FE6F32C0C6B0FB70F163257D9A07F211_gshared)(___data0, method);
}
// T UnityEngine.EventSystems.ExecuteEvents::ValidateEventData<UnityEngine.EventSystems.AxisEventData>(UnityEngine.EventSystems.BaseEventData)
inline AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * ExecuteEvents_ValidateEventData_TisAxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442_mBBF734D77FCE3114EB1831C662BD8FB7A9CB1505 (BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___data0, const RuntimeMethod* method)
{
return (( AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * (*) (BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *, const RuntimeMethod*))ExecuteEvents_ValidateEventData_TisRuntimeObject_mC0CCF6A7FE6F32C0C6B0FB70F163257D9A07F211_gshared)(___data0, method);
}
// System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerEnterHandler>::.ctor(System.Object,System.IntPtr)
inline void EventFunction_1__ctor_m6FA291143C1BF5B88A1D2C10C544E0969B71A8F7 (EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 *, RuntimeObject *, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m7A19A827934CFEE34C9C44916C984B86003C7E69_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerExitHandler>::.ctor(System.Object,System.IntPtr)
inline void EventFunction_1__ctor_m5281F4464037C9AF749C2A1919996899A6BA3B5E (EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA *, RuntimeObject *, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m7A19A827934CFEE34C9C44916C984B86003C7E69_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerDownHandler>::.ctor(System.Object,System.IntPtr)
inline void EventFunction_1__ctor_m77A9FC421BDD9D44985C87EF84ACBCF13B12D82E (EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E *, RuntimeObject *, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m7A19A827934CFEE34C9C44916C984B86003C7E69_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerUpHandler>::.ctor(System.Object,System.IntPtr)
inline void EventFunction_1__ctor_m69B3E21354A94EE0919766B0321D303CECA1805C (EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 *, RuntimeObject *, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m7A19A827934CFEE34C9C44916C984B86003C7E69_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerClickHandler>::.ctor(System.Object,System.IntPtr)
inline void EventFunction_1__ctor_mF4D4AD6CB742214096B85593D5DA21ED876829CB (EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E *, RuntimeObject *, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m7A19A827934CFEE34C9C44916C984B86003C7E69_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IInitializePotentialDragHandler>::.ctor(System.Object,System.IntPtr)
inline void EventFunction_1__ctor_mBAFFA18A69E64D5C9068384BF21C45113F637F27 (EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 *, RuntimeObject *, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m7A19A827934CFEE34C9C44916C984B86003C7E69_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IBeginDragHandler>::.ctor(System.Object,System.IntPtr)
inline void EventFunction_1__ctor_mED551E6AA06C64C21357489D75BAAB42E1CD6257 (EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 *, RuntimeObject *, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m7A19A827934CFEE34C9C44916C984B86003C7E69_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDragHandler>::.ctor(System.Object,System.IntPtr)
inline void EventFunction_1__ctor_m18B8DFD4D5DF50CA371B85A92A3F046A146593DE (EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 *, RuntimeObject *, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m7A19A827934CFEE34C9C44916C984B86003C7E69_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IEndDragHandler>::.ctor(System.Object,System.IntPtr)
inline void EventFunction_1__ctor_mCB3347FCC983F5C6B949627182607D985560D788 (EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 *, RuntimeObject *, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m7A19A827934CFEE34C9C44916C984B86003C7E69_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDropHandler>::.ctor(System.Object,System.IntPtr)
inline void EventFunction_1__ctor_m4BC3155388ED9FF927E205C83B670BDA98C72A5A (EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 *, RuntimeObject *, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m7A19A827934CFEE34C9C44916C984B86003C7E69_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IScrollHandler>::.ctor(System.Object,System.IntPtr)
inline void EventFunction_1__ctor_mC08F78F3D7554EF5CD324CF27F62ECF0385C9D49 (EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A *, RuntimeObject *, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m7A19A827934CFEE34C9C44916C984B86003C7E69_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IUpdateSelectedHandler>::.ctor(System.Object,System.IntPtr)
inline void EventFunction_1__ctor_m49C054B972DF862CE16C45653EA83C81F925DA74 (EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 *, RuntimeObject *, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m7A19A827934CFEE34C9C44916C984B86003C7E69_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ISelectHandler>::.ctor(System.Object,System.IntPtr)
inline void EventFunction_1__ctor_mB4A3B970F27316B13C218A49BD275F08D1E86839 (EventFunction_1_t7521247C87411935E8A2CA38683533083459473F * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (EventFunction_1_t7521247C87411935E8A2CA38683533083459473F *, RuntimeObject *, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m7A19A827934CFEE34C9C44916C984B86003C7E69_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDeselectHandler>::.ctor(System.Object,System.IntPtr)
inline void EventFunction_1__ctor_m30B6E6749F2449F7852C7FF7A67CA6C6D4AFFD08 (EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 *, RuntimeObject *, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m7A19A827934CFEE34C9C44916C984B86003C7E69_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IMoveHandler>::.ctor(System.Object,System.IntPtr)
inline void EventFunction_1__ctor_m7C9972B79205176E3C7A236B1D9A9C2466CDD2BE (EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB *, RuntimeObject *, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m7A19A827934CFEE34C9C44916C984B86003C7E69_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ISubmitHandler>::.ctor(System.Object,System.IntPtr)
inline void EventFunction_1__ctor_mF1D69EE07782C6E23EE270A9E061267772CCDC93 (EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B *, RuntimeObject *, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m7A19A827934CFEE34C9C44916C984B86003C7E69_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ICancelHandler>::.ctor(System.Object,System.IntPtr)
inline void EventFunction_1__ctor_m3F50D0030FB2223DA3D47E0421818923D0D41932 (EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 *, RuntimeObject *, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m7A19A827934CFEE34C9C44916C984B86003C7E69_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.Events.UnityAction`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>>::.ctor(System.Object,System.IntPtr)
inline void UnityAction_1__ctor_m4C2CD24BD9D5930174895BE29AC306AE8675706C (UnityAction_1_t3B6DA5D18F5A6D34776438B5CD187C01229E969A * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (UnityAction_1_t3B6DA5D18F5A6D34776438B5CD187C01229E969A *, RuntimeObject *, intptr_t, const RuntimeMethod*))UnityAction_1__ctor_mF6AE3BA9395C61DE1466BE7BB863A77F3584EEC3_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.UI.ObjectPool`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>>::.ctor(UnityEngine.Events.UnityAction`1<T>,UnityEngine.Events.UnityAction`1<T>)
inline void ObjectPool_1__ctor_m321803B809C165BCDCCF7D73EAD285EFDD638B44 (ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC * __this, UnityAction_1_t3B6DA5D18F5A6D34776438B5CD187C01229E969A * ___actionOnGet0, UnityAction_1_t3B6DA5D18F5A6D34776438B5CD187C01229E969A * ___actionOnRelease1, const RuntimeMethod* method)
{
(( void (*) (ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC *, UnityAction_1_t3B6DA5D18F5A6D34776438B5CD187C01229E969A *, UnityAction_1_t3B6DA5D18F5A6D34776438B5CD187C01229E969A *, const RuntimeMethod*))ObjectPool_1__ctor_m5A29AD1D0B7DD5C4F207B1659FF168D4BF7C0D01_gshared)(__this, ___actionOnGet0, ___actionOnRelease1, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.Transform>::.ctor(System.Int32)
inline void List_1__ctor_mC1ED9A460A050E673D3EF1200D4C15FF2AAA1732 (List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE * __this, int32_t ___capacity0, const RuntimeMethod* method)
{
(( void (*) (List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE *, int32_t, const RuntimeMethod*))List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57_gshared)(__this, ___capacity0, method);
}
// System.Void UnityEngine.EventSystems.ExecuteEvents/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mA3946064CEB17BF67A4B63F6E1716F3F7F27803A (U3CU3Ec_t91DA84DB86FD18E664B2FBDACCB1B7A5E2A0849C * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>::Clear()
inline void List_1_Clear_m402EA165A7440B0C93CCA7645DFD483F4239FC89 (List_1_tE1B02DF614CD9F94F541033562E5F649C88F18A2 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tE1B02DF614CD9F94F541033562E5F649C88F18A2 *, const RuntimeMethod*))List_1_Clear_mC5CFC6C9F3007FC24FE020198265D4B5B0659FFC_gshared)(__this, method);
}
// System.Void UnityEngine.EventSystems.PhysicsRaycaster::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PhysicsRaycaster__ctor_m1A3C04070C6C1E3C4449D3BB4AD7C880D336D4CA (PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.PhysicsRaycaster::ComputeRayAndDistance(UnityEngine.EventSystems.PointerEventData,UnityEngine.Ray&,System.Int32&,System.Single&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PhysicsRaycaster_ComputeRayAndDistance_m92EFFE5A5287CC625EA6B66853DE2959985AFE7D (PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___eventData0, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 * ___ray1, int32_t* ___eventDisplayIndex2, float* ___distanceToClipPlane3, const RuntimeMethod* method);
// System.Int32 UnityEngine.EventSystems.PhysicsRaycaster::get_maxRayIntersections()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t PhysicsRaycaster_get_maxRayIntersections_m473112CC291635C45D0590CC4B03C07D652FB69A_inline (PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C * __this, const RuntimeMethod* method);
// UnityEngine.UI.ReflectionMethodsCache UnityEngine.UI.ReflectionMethodsCache::get_Singleton()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A * ReflectionMethodsCache_get_Singleton_m6C50C55DEEA425161B73545918267BB90B7FCB9B (const RuntimeMethod* method);
// System.Int32 UnityEngine.EventSystems.PhysicsRaycaster::get_finalEventMask()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsRaycaster_get_finalEventMask_m33F53EF1231123847F95DBFF865C3B19E6CD1EB6 (PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C * __this, const RuntimeMethod* method);
// UnityEngine.RaycastHit2D[] UnityEngine.UI.ReflectionMethodsCache/GetRayIntersectionAllCallback::Invoke(UnityEngine.Ray,System.Single,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* GetRayIntersectionAllCallback_Invoke_m659B47C0727BE9179B3A96FD36AEA5216E66046D (GetRayIntersectionAllCallback_t68C2581CCF05E868297EBD3F3361274954845095 * __this, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 ___r0, float ___f1, int32_t ___i2, const RuntimeMethod* method);
// System.Int32 UnityEngine.UI.ReflectionMethodsCache/GetRayIntersectionAllNonAllocCallback::Invoke(UnityEngine.Ray,UnityEngine.RaycastHit2D[],System.Single,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GetRayIntersectionAllNonAllocCallback_Invoke_m6AAA07D1E9D27E50C3C647F368AA504E2A1BFE9B (GetRayIntersectionAllNonAllocCallback_tAD7508D45DB6679B6394983579AD18D967CC2AD4 * __this, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 ___r0, RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* ___results1, float ___f2, int32_t ___i3, const RuntimeMethod* method);
// UnityEngine.Collider2D UnityEngine.RaycastHit2D::get_collider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Collider2D_tD64BE58E48B95D89D349FEAB54D0FE2EEBF83379 * RaycastHit2D_get_collider_m6A7EC53B2E179C2EFF4F29018A132B2979CBE976 (RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE * __this, const RuntimeMethod* method);
// !!0 UnityEngine.GameObject::GetComponent<UnityEngine.SpriteRenderer>()
inline SpriteRenderer_tCD51E875611195DBB91123B68434881D3441BC6F * GameObject_GetComponent_TisSpriteRenderer_tCD51E875611195DBB91123B68434881D3441BC6F_mD25CEAAA219FA1235F8E88F914D2F8AC57303538 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
return (( SpriteRenderer_tCD51E875611195DBB91123B68434881D3441BC6F * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mD4382B2843BA9A61A01A8F9D7B9813D060F9C9CA_gshared)(__this, method);
}
// System.Void UnityEngine.EventSystems.RaycastResult::set_gameObject(UnityEngine.GameObject)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void RaycastResult_set_gameObject_m5EF3316E0D32FC1B45BB2BC087EC42E436DA1C07_inline (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___value0, const RuntimeMethod* method);
// UnityEngine.Transform UnityEngine.Component::get_transform()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * Component_get_transform_m00F05BD782F920C301A7EBA480F3B7A904C07EC9 (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.Transform::get_position()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Transform_get_position_mF54C3A064F7C8E24F1C56EE128728B2E4485E294 (Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * __this, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::get_point()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D RaycastHit2D_get_point_mC567E234B1B673C3A9819023C3DC97C781443098 (RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE * __this, const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.Vector2::op_Implicit(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Vector2_op_Implicit_mD152B6A34B4DB7FFECC2844D74718568FE867D6F (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___v0, const RuntimeMethod* method);
// System.Single UnityEngine.Vector3::Distance(UnityEngine.Vector3,UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Vector3_Distance_mE316E10B9B319A5C2A29F86E028740FD528149E7 (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___a0, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___b1, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::get_normal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D RaycastHit2D_get_normal_m9F0974E4514AD56C00FCF6FF4CDF10AED62FE6E4 (RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE * __this, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::get_position()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D PointerEventData_get_position_mF25FC495A9C968C65BF34B5984616CBFB6332D55_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Renderer::get_sortingLayerID()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Renderer_get_sortingLayerID_m2E204E68869EDA3176C334AE1C62219F380A5D85 (Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Renderer::get_sortingOrder()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Renderer_get_sortingOrder_m33DD50ED293AA672FDAD862B4A4865666B5FEBAF (Renderer_t0556D67DD582620D1F495627EDE30D03284151F4 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::Add(!0)
inline void List_1_Add_m7DCB84D89B15944C08B73F13E91B780624023F37 (List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * __this, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 *, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 , const RuntimeMethod*))List_1_Add_m7DCB84D89B15944C08B73F13E91B780624023F37_gshared)(__this, ___item0, method);
}
// UnityEngine.LayerMask UnityEngine.LayerMask::op_Implicit(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 LayerMask_op_Implicit_m3F256A7D96C66548F5B62C4621B9725301850300 (int32_t ___intVal0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.BaseRaycaster::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRaycaster__ctor_m3F94FA62302E9BCB5290515C9D5C4DC1265F5C0F (BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * __this, const RuntimeMethod* method);
// !!0 UnityEngine.Component::GetComponent<UnityEngine.Camera>()
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * Component_GetComponent_TisCamera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34_mB090F51A34716700C0F4F1B08F9330C6F503DB9E (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method)
{
return (( Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * (*) (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m129DEF8A66683189ED44B21496135824743EF617_gshared)(__this, method);
}
// UnityEngine.Camera UnityEngine.Camera::get_main()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * Camera_get_main_m9256A9F84F92D7ED73F3E6C4E2694030AD8B61FA (const RuntimeMethod* method);
// System.Int32 UnityEngine.Camera::get_cullingMask()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Camera_get_cullingMask_m0992E96D87A4221E38746EBD882780CEFF7C2BCD (Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.LayerMask::op_Implicit(UnityEngine.LayerMask)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LayerMask_op_Implicit_m2AFFC7F931005437E8F356C953F439829AF4CFA5 (LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 ___mask0, const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.Display::RelativeMouseAt(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Display_RelativeMouseAt_mABDA4BAC2C1B328A2C6A205D552AA5488BFFAA93 (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___inputMouseCoordinates0, const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.Vector3::get_zero()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Vector3_get_zero_m3CDDCAE94581DF3BB16C4B40A100E28E9C6649C2 (const RuntimeMethod* method);
// System.Boolean UnityEngine.Vector3::op_Inequality(UnityEngine.Vector3,UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Vector3_op_Inequality_mFEEAA4C4BF743FB5B8A47FF4967A5E2C73273D6E (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___lhs0, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___rhs1, const RuntimeMethod* method);
// System.Int32 UnityEngine.Camera::get_targetDisplay()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Camera_get_targetDisplay_m2C318D2EB9A016FEC76B13F7F7AE382F443FB731 (Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * __this, const RuntimeMethod* method);
// UnityEngine.Rect UnityEngine.Camera::get_pixelRect()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_t35B976DE901B5423C11705E156938EA27AB402CE Camera_get_pixelRect_mBA87D6C23FD7A5E1A7F3CE0E8F9B86A9318B5317 (Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.Rect::Contains(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Rect_Contains_m5072228CE6251E7C754F227BA330F9ADA95C1495 (Rect_t35B976DE901B5423C11705E156938EA27AB402CE * __this, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___point0, const RuntimeMethod* method);
// UnityEngine.Ray UnityEngine.Camera::ScreenPointToRay(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 Camera_ScreenPointToRay_m27638E78502DB6D6D7113F81AF7C210773B828F3 (Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * __this, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___pos0, const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.Ray::get_direction()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Ray_get_direction_m9E6468CD87844B437FC4B93491E63D388322F76E (Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.Mathf::Approximately(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Mathf_Approximately_m91AF00403E0D2DEA1AAE68601AD218CFAD70DF7E (float ___a0, float ___b1, const RuntimeMethod* method);
// System.Single UnityEngine.Camera::get_farClipPlane()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Camera_get_farClipPlane_mF51F1FF5BE87719CFAC293E272B1138DC1EFFD4B (Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.Camera::get_nearClipPlane()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Camera_get_nearClipPlane_mD9D3E3D27186BBAC2CC354CE3609E6118A5BF66C (Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * __this, const RuntimeMethod* method);
// UnityEngine.RaycastHit[] UnityEngine.UI.ReflectionMethodsCache/RaycastAllCallback::Invoke(UnityEngine.Ray,System.Single,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57* RaycastAllCallback_Invoke_mCB0725E11A9E028E20E64D78BCA8D9029CAE051E (RaycastAllCallback_t751407A44270E02FAA43D0846A58EE6A8C4AE1CE * __this, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 ___r0, float ___f1, int32_t ___i2, const RuntimeMethod* method);
// System.Int32 UnityEngine.UI.ReflectionMethodsCache/GetRaycastNonAllocCallback::Invoke(UnityEngine.Ray,UnityEngine.RaycastHit[],System.Single,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GetRaycastNonAllocCallback_Invoke_mF56C0670E33CB12DF1A8C16277E26A56EE1C7E20 (GetRaycastNonAllocCallback_tC13D9767CFF00EAB26E9FCC4BDD505F0721A2B4D * __this, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 ___r0, RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57* ___results1, float ___f2, int32_t ___i3, const RuntimeMethod* method);
// System.Void System.Array::Sort<UnityEngine.RaycastHit>(!!0[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<!!0>)
inline void Array_Sort_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_mEF1012F8E1A6C51EA8DF47DEAF751056596FEB96 (RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57* ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
(( void (*) (RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))Array_Sort_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_mEF1012F8E1A6C51EA8DF47DEAF751056596FEB96_gshared)(___array0, ___index1, ___length2, ___comparer3, method);
}
// UnityEngine.Collider UnityEngine.RaycastHit::get_collider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Collider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF * RaycastHit_get_collider_mE70B84C4312B567344F60992A6067855F2C3A7A9 (RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.RaycastHit::get_distance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float RaycastHit_get_distance_m1CBA60855C35F29BBC348D374BBC76386A243543 (RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 * __this, const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.RaycastHit::get_point()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 RaycastHit_get_point_m0E564B2A72C7A744B889AE9D596F3EFA55059001 (RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 * __this, const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.RaycastHit::get_normal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 RaycastHit_get_normal_mF736A6D09D98D63AB7E5BF10F38AEBFC177A1D94 (RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.PhysicsRaycaster/RaycastHitComparer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycastHitComparer__ctor_m1039CBA952391889242A9F00EA05958986E392B2 (RaycastHitComparer_t5465A53942AAC60F5716D514946F4AB6C263CFA2 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.GameObject>::.ctor()
inline void List_1__ctor_mE0CF797BC1662A4FDFF8009E76AC0A5CD1BB1FCA (List_1_t3D4152882C54B77C712688E910390D5C8E030463 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t3D4152882C54B77C712688E910390D5C8E030463 *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method);
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_eligibleForClick(System.Boolean)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_eligibleForClick_m403F4068866F6A5CC9814729B3918C8FF1C21DBD_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.PointerEventData::set_pointerId(System.Int32)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_pointerId_m4CF9E4E445D841D14E46AE00B0B687EE3435C03E_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.PointerEventData::set_position(UnityEngine.Vector2)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_position_mD63B59E6D4EF9B2B2E26D1F4893A7C67BD04266A_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.PointerEventData::set_delta(UnityEngine.Vector2)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_delta_mDFEB23DF789E945F2CEC51C1F902CEE6AF674415_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.PointerEventData::set_pressPosition(UnityEngine.Vector2)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_pressPosition_m9DDE0BA5D6C31CBCDA926CEB62E51140F23013EA_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.PointerEventData::set_clickTime(System.Single)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_clickTime_mFB2FD722D5898826A1D57379C153B8023272653C_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, float ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.PointerEventData::set_clickCount(System.Int32)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_clickCount_mE56F748082C3D03A340345630FAC2B119451E003_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.PointerEventData::set_scrollDelta(UnityEngine.Vector2)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_scrollDelta_m2B7F400B1DD1B45C36D22F291E625B02C76F9751_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.PointerEventData::set_useDragThreshold(System.Boolean)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_useDragThreshold_mB5F06D15C2D1DB8D57F5B79CAEC3F58E4BF79684_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.PointerEventData::set_dragging(System.Boolean)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_dragging_m4A4C08AB5A2173557EA62190F47AEFF1E9332821_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.PointerEventData::set_button(UnityEngine.EventSystems.PointerEventData/InputButton)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_button_mD5D63D10CFE13D720287DD76AE0D8A852F8324CC_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, int32_t ___value0, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::get_delta()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D PointerEventData_get_delta_mC5D62E985D40A7708316C6E07B699B96D9C8184E_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::get_scrollDelta()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D PointerEventData_get_scrollDelta_mF473A122C860EC5279F6F5D085912BDA6418690B_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method);
// UnityEngine.EventSystems.RaycastResult UnityEngine.EventSystems.PointerEventData::get_pointerCurrentRaycast()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 PointerEventData_get_pointerCurrentRaycast_mE58F786484E13AF2E6C2706E20C889E7453E3A7A_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method);
// UnityEngine.EventSystems.RaycastResult UnityEngine.EventSystems.PointerEventData::get_pointerPressRaycast()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 PointerEventData_get_pointerPressRaycast_m722BCA823E0405C9DF20312CDFBBEB5B1B05B7AE_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.PointerEventData::set_lastPress(UnityEngine.GameObject)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_lastPress_m3A938CE59A47898263BE6A6F880A3B3CD21D063D_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.PointerEventData::get_eligibleForClick()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool PointerEventData_get_eligibleForClick_m2039146EE2E6940436E592D0655FBA06096DBFFA_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method);
// System.String System.Boolean::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m62D1EFD5F6D5F6B6AF0D14A07BF5741C94413301 (bool* __this, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::get_pointerPress()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * PointerEventData_get_pointerPress_m7B8C9E16E2B9E86C4DA93A2A2E3A58E56536406B_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::get_lastPress()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * PointerEventData_get_lastPress_m6B005D786FC5B30ECD8D5BC068420D0C361357F4_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::get_pointerDrag()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.PointerEventData::get_useDragThreshold()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool PointerEventData_get_useDragThreshold_mD254C2D9572E12F10EC86A21F28E4284EE29D39A_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method);
// System.String UnityEngine.EventSystems.RaycastResult::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RaycastResult_ToString_mFD0F27611425231BAF089CEBB0332FEFD7FB9E21 (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.EventSystems.PointerEventData>::TryGetValue(!0,!1&)
inline bool Dictionary_2_TryGetValue_mF1A602D73FE0DC792D8339AA812B5E0249EFD6FC (Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * __this, int32_t ___key0, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 ** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 *, int32_t, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 **, const RuntimeMethod*))Dictionary_2_TryGetValue_m867F6DA953678D0333A55270B7C6EF38EFC293FF_gshared)(__this, ___key0, ___value1, method);
}
// System.Void UnityEngine.EventSystems.PointerEventData::.ctor(UnityEngine.EventSystems.EventSystem)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData__ctor_mA2208343CA6EE41C13A6B7123322CC88B00A723B (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * ___eventSystem0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.EventSystems.PointerEventData>::Add(!0,!1)
inline void Dictionary_2_Add_m8C409976338EF0B48015E59311498B190F037C11 (Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * __this, int32_t ___key0, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 *, int32_t, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 *, const RuntimeMethod*))Dictionary_2_Add_mF7AEA0EFA07EEBC1A4B283A26A7CB720EE7A4C20_gshared)(__this, ___key0, ___value1, method);
}
// System.Int32 UnityEngine.EventSystems.PointerEventData::get_pointerId()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t PointerEventData_get_pointerId_m73B8DCE39BDCB5BD7894D192DDA7FF8817FBE6C6_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.EventSystems.PointerEventData>::Remove(!0)
inline bool Dictionary_2_Remove_m4AA48AC7DC8C51BE0539C872EFA9CB1BCC326033 (Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * __this, int32_t ___key0, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 *, int32_t, const RuntimeMethod*))Dictionary_2_Remove_m2204D6D532702FD13AB2A9AD8DB538E4E8FB1913_gshared)(__this, ___key0, method);
}
// System.Int32 UnityEngine.Touch::get_fingerId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_fingerId_m2EF0EF2E6E388C8D9D38C58EF5D03EA30E568E1D (Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.PointerInputModule::GetPointerData(System.Int32,UnityEngine.EventSystems.PointerEventData&,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerInputModule_GetPointerData_mB16DD3B9751FFEBBB1EC7802533D8EF36C9C8248 (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C * __this, int32_t ___id0, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 ** ___data1, bool ___create2, const RuntimeMethod* method);
// UnityEngine.TouchPhase UnityEngine.Touch::get_phase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_phase_m759A61477ECBBD90A57E36F1166EB9340A0FE349 (Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 * __this, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.Touch::get_position()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D Touch_get_position_m2E60676112DA3628CF2DC76418A275C7FE521D8F (Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 * __this, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.Vector2::op_Subtraction(UnityEngine.Vector2,UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D Vector2_op_Subtraction_m2B347E4311EDBBBF27573E34899D2492E6B063C0 (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___a0, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___b1, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.PointerEventData::set_pointerCurrentRaycast(UnityEngine.EventSystems.RaycastResult)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_pointerCurrentRaycast_m0B0B77AF61C5402D29574A9031AEED66AE4C8455_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.EventSystem::RaycastAll(UnityEngine.EventSystems.PointerEventData,System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_RaycastAll_mA5A53B5404EF95AE97EE81445056153ED41CBF80 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___eventData0, List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * ___raycastResults1, const RuntimeMethod* method);
// UnityEngine.EventSystems.RaycastResult UnityEngine.EventSystems.BaseInputModule::FindFirstRaycast(System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 BaseInputModule_FindFirstRaycast_m4ABCD1BCF871A87518D47C906B8F63154B6BF275 (List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * ___candidates0, const RuntimeMethod* method);
// UnityEngine.EventSystems.BaseInput UnityEngine.EventSystems.BaseInputModule::get_input()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7 (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * __this, const RuntimeMethod* method);
// UnityEngine.CursorLockMode UnityEngine.Cursor::get_lockState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cursor_get_lockState_mE0C93F496E3AA120AD168ED30371C35ED79C9DF1 (const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.PointerInputModule::CopyFromTo(UnityEngine.EventSystems.PointerEventData,UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerInputModule_CopyFromTo_mDCFE9EA1411C24FA9ABDA993CC16182C2B1AF687 (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___from0, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___to1, const RuntimeMethod* method);
// UnityEngine.EventSystems.PointerEventData/FramePressState UnityEngine.EventSystems.PointerInputModule::StateForMouseButton(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PointerInputModule_StateForMouseButton_m182B203D7CB0A9E0F39F39FAC8C0020D85C26D22 (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C * __this, int32_t ___buttonId0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.PointerInputModule/MouseState::SetButtonState(UnityEngine.EventSystems.PointerEventData/InputButton,UnityEngine.EventSystems.PointerEventData/FramePressState,UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseState_SetButtonState_mE7B149E168AC34F69B504C797B1AA9E70122AFC2 (MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * __this, int32_t ___button0, int32_t ___stateForMouseButton1, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___data2, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.BaseInputModule::HandlePointerExitAndEnter(UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule_HandlePointerExitAndEnter_mD32C0E209A19F78D07D964D162188D13762463BF (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___currentPointerData0, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___newEnterTarget1, const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.PointerEventData::IsPointerMoving()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEventData_IsPointerMoving_mDF9C046AEE3228B95BECFCF01AE4C45D318EB486 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.PointerEventData::get_dragging()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool PointerEventData_get_dragging_mA3B420FFEB0856189D7A7646AA00A981C745D4B4_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::get_pressPosition()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D PointerEventData_get_pressPosition_m7C8D5A54C81C801EB577A60718C4211DFA1A3624_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.EventSystems.EventSystem::get_pixelDragThreshold()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventSystem_get_pixelDragThreshold_m8E8607E0C4E56387677507B45455A24D4680E0D3_inline (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.PointerInputModule::ShouldStartDrag(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerInputModule_ShouldStartDrag_mE818EC5B7706E3803A4EDA09FD1D14A0ED105049 (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___pressPos0, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___currentPos1, float ___threshold2, bool ___useDragThreshold3, const RuntimeMethod* method);
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IBeginDragHandler> UnityEngine.EventSystems.ExecuteEvents::get_beginDragHandler()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 * ExecuteEvents_get_beginDragHandler_m7F238765714F73899EAFDF0BA203D9A8A57AED31_inline (const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IBeginDragHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisIBeginDragHandler_t5CBE3EF4B4A6303FA5E9AC40295295BBAD687BF4_m8BACBBD07692DE23BC8EBD4C6B99D7A9C994B44F (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 * ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *, EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 *, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDA4CD02F963B6939F8D079993DC2DCD75AB524DD_gshared)(___target0, ___eventData1, ___functor2, method);
}
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerUpHandler> UnityEngine.EventSystems.ExecuteEvents::get_pointerUpHandler()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 * ExecuteEvents_get_pointerUpHandler_m7EDDD1128DC04344CECEBCB9B6B7CD064F7FAED2_inline (const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IPointerUpHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisIPointerUpHandler_tAF005E3FEF3EA2D9DDA99FAA488955AA8B392102_mE7822304A5DF78074F7FE7B2255BCC9F70471C99 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 * ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *, EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 *, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDA4CD02F963B6939F8D079993DC2DCD75AB524DD_gshared)(___target0, ___eventData1, ___functor2, method);
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_pointerPress(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_pointerPress_mDFB3D803C9C4137799F9F1D57810DAAF08238327 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.PointerEventData::set_rawPointerPress(UnityEngine.GameObject)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_rawPointerPress_mB7E32587FD73925A689A71FCAB560F9B78A233A5_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___value0, const RuntimeMethod* method);
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDragHandler> UnityEngine.EventSystems.ExecuteEvents::get_dragHandler()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 * ExecuteEvents_get_dragHandler_m41B7D77771806788CD773C83C2E5A53D5ED5B179_inline (const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IDragHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisIDragHandler_t196F681B5B4A5BFCDEA2A93CA0A75D504908D25B_m1A1D375E476A26C2BDAF7D9599E0B1327436FFB9 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 * ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *, EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 *, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDA4CD02F963B6939F8D079993DC2DCD75AB524DD_gshared)(___target0, ___eventData1, ___functor2, method);
}
// UnityEngine.EventSystems.PointerEventData UnityEngine.EventSystems.PointerInputModule::GetLastPointerEventData(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * PointerInputModule_GetLastPointerEventData_m709537DE2BCDD6D50C4C2F39B6A48C4D9A8A27F5 (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C * __this, int32_t ___id0, const RuntimeMethod* method);
// System.Collections.Generic.Dictionary`2/ValueCollection<!0,!1> System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.EventSystems.PointerEventData>::get_Values()
inline ValueCollection_tB55394F384417AC8A8E53492B82E4C216B7FC23B * Dictionary_2_get_Values_mEBB0D41DF0AB96EC3596B5F32CD06C6AE46F1C1C (Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * __this, const RuntimeMethod* method)
{
return (( ValueCollection_tB55394F384417AC8A8E53492B82E4C216B7FC23B * (*) (Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 *, const RuntimeMethod*))Dictionary_2_get_Values_m07CB5FB90C539E49DBB6DFF53E2D791819568978_gshared)(__this, method);
}
// System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,UnityEngine.EventSystems.PointerEventData>::GetEnumerator()
inline Enumerator_t416C0E23E1A315F8494EF420F4DB9EF6C4D80871 ValueCollection_GetEnumerator_m6C97EA54EAEC8DCB5120131913AB22C6AF403234 (ValueCollection_tB55394F384417AC8A8E53492B82E4C216B7FC23B * __this, const RuntimeMethod* method)
{
return (( Enumerator_t416C0E23E1A315F8494EF420F4DB9EF6C4D80871 (*) (ValueCollection_tB55394F384417AC8A8E53492B82E4C216B7FC23B *, const RuntimeMethod*))ValueCollection_GetEnumerator_mE3FC38B611CBB8E3B330812AB32E6A9B58300C79_gshared)(__this, method);
}
// !1 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,UnityEngine.EventSystems.PointerEventData>::get_Current()
inline PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * Enumerator_get_Current_m2C40592C57A063116984E2AD5FD2553A1D5C8090_inline (Enumerator_t416C0E23E1A315F8494EF420F4DB9EF6C4D80871 * __this, const RuntimeMethod* method)
{
return (( PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * (*) (Enumerator_t416C0E23E1A315F8494EF420F4DB9EF6C4D80871 *, const RuntimeMethod*))Enumerator_get_Current_m7478A1B54D9B92E960D1E1C1E95C475E4E6627F7_gshared_inline)(__this, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,UnityEngine.EventSystems.PointerEventData>::MoveNext()
inline bool Enumerator_MoveNext_mCBA8FA361574286702638F5C0A05EE33A5F5A333 (Enumerator_t416C0E23E1A315F8494EF420F4DB9EF6C4D80871 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t416C0E23E1A315F8494EF420F4DB9EF6C4D80871 *, const RuntimeMethod*))Enumerator_MoveNext_mEC2938FD01311789888F82425F685083D1171E32_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,UnityEngine.EventSystems.PointerEventData>::Dispose()
inline void Enumerator_Dispose_m6E693B0789FE88C72E3CF1BB6B724A2CC9AF56D3 (Enumerator_t416C0E23E1A315F8494EF420F4DB9EF6C4D80871 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t416C0E23E1A315F8494EF420F4DB9EF6C4D80871 *, const RuntimeMethod*))Enumerator_Dispose_mB0A9FE8FC5264460EA74FDA394BA5952C00D5E5D_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.EventSystems.PointerEventData>::Clear()
inline void Dictionary_2_Clear_mC60D1240FB21DE148D59B55633563976EB2643EC (Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 *, const RuntimeMethod*))Dictionary_2_Clear_m0A844810F20B37C73BBE7E1B059856D5DAF18294_gshared)(__this, method);
}
// System.Void System.Text.StringBuilder::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m53E278FB62B3EAEFAF82890C97219B9B5E2A56C3 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Collections.Generic.Dictionary`2/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.EventSystems.PointerEventData>::GetEnumerator()
inline Enumerator_t4A1A39D730A903621334A87D76E39D656515D0AF Dictionary_2_GetEnumerator_m7A5852A777771426770D52346C391F7E0DB03D84 (Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * __this, const RuntimeMethod* method)
{
return (( Enumerator_t4A1A39D730A903621334A87D76E39D656515D0AF (*) (Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 *, const RuntimeMethod*))Dictionary_2_GetEnumerator_mC4CC8729DB01471BF1ABD5331EFDB28A6C278E6A_gshared)(__this, method);
}
// System.Collections.Generic.KeyValuePair`2<!0,!1> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,UnityEngine.EventSystems.PointerEventData>::get_Current()
inline KeyValuePair_2_t04EF4D50839D67939265F84585D99769CEAC8413 Enumerator_get_Current_m6F5E214054911C62D43EC8EBD8F7074009887C93_inline (Enumerator_t4A1A39D730A903621334A87D76E39D656515D0AF * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t04EF4D50839D67939265F84585D99769CEAC8413 (*) (Enumerator_t4A1A39D730A903621334A87D76E39D656515D0AF *, const RuntimeMethod*))Enumerator_get_Current_m06BE1BB610C63E4879934D506F770C25B6BBA73E_gshared_inline)(__this, method);
}
// !1 System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.EventSystems.PointerEventData>::get_Value()
inline PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * KeyValuePair_2_get_Value_m663C5445E9F124109E548E46EF10E87186BC3E5C_inline (KeyValuePair_2_t04EF4D50839D67939265F84585D99769CEAC8413 * __this, const RuntimeMethod* method)
{
return (( PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * (*) (KeyValuePair_2_t04EF4D50839D67939265F84585D99769CEAC8413 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m6A192504C64D61B2B59FF5641E62E5094F3914C1_gshared_inline)(__this, method);
}
// !0 System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.EventSystems.PointerEventData>::get_Key()
inline int32_t KeyValuePair_2_get_Key_m18DFCB801D8E1AAD81FB1D7687CEEDDC6374DB67_inline (KeyValuePair_2_t04EF4D50839D67939265F84585D99769CEAC8413 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (KeyValuePair_2_t04EF4D50839D67939265F84585D99769CEAC8413 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m3BF2B782A34C5DBE7E9F7F1D0B69F9D248B6DD94_gshared_inline)(__this, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,UnityEngine.EventSystems.PointerEventData>::MoveNext()
inline bool Enumerator_MoveNext_m9FBC1E9E4E9692134864389F3F259B5F913479D8 (Enumerator_t4A1A39D730A903621334A87D76E39D656515D0AF * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t4A1A39D730A903621334A87D76E39D656515D0AF *, const RuntimeMethod*))Enumerator_MoveNext_mB386E7259BB364D109750B49CD9572D0B7EE28A8_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,UnityEngine.EventSystems.PointerEventData>::Dispose()
inline void Enumerator_Dispose_m4DE2E93425402C7818C5064E6C5E4029C952FEBB (Enumerator_t4A1A39D730A903621334A87D76E39D656515D0AF * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t4A1A39D730A903621334A87D76E39D656515D0AF *, const RuntimeMethod*))Enumerator_Dispose_m81ED3FDA0AA1BEEA5A2C8E108347EF4D03752310_gshared)(__this, method);
}
// UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::GetEventHandler<UnityEngine.EventSystems.ISelectHandler>(UnityEngine.GameObject)
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ExecuteEvents_GetEventHandler_TisISelectHandler_t05E0943DEF2BC53023C2E4BF4C815E0EDE82C0F4_mF4CBE0CD9A57B74AD0300F5CD3F0B2CD5529CFF2 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___root0, const RuntimeMethod* method)
{
return (( GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))ExecuteEvents_GetEventHandler_TisRuntimeObject_m4A0A387AEA9C47C3DB85EAB3FE49C0689C0FFFA8_gshared)(___root0, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.EventSystems.PointerEventData>::.ctor()
inline void Dictionary_2__ctor_m72C2CB980BBBB40743CF9EFFA41F2B002CD842E4 (Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 *, const RuntimeMethod*))Dictionary_2__ctor_m7D745ADE56151C2895459668F4A4242985E526D8_gshared)(__this, method);
}
// System.Void UnityEngine.EventSystems.PointerInputModule/MouseState::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseState__ctor_m03EB3CF8C4BEA925F63C1BA8197C3FA632975F09 (MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.BaseInputModule::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule__ctor_m4D2F1DB4FA2524BCB5598111C11E5E00D4A95DC6 (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<UnityEngine.EventSystems.PointerInputModule/ButtonState>::get_Item(System.Int32)
inline ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * List_1_get_Item_m0E3505D06F1926E029213512C54F066892371459_inline (List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137 * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * (*) (List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137 *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method);
}
// UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData UnityEngine.EventSystems.PointerInputModule/ButtonState::get_eventData()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * ButtonState_get_eventData_mA9D054D526473A2481A997758CDDEB022E67351D_inline (ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData::PressedThisFrame()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseButtonEventData_PressedThisFrame_m9437D00FBF27F51132154FA11AE9463377FDF86A (MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * __this, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<UnityEngine.EventSystems.PointerInputModule/ButtonState>::get_Count()
inline int32_t List_1_get_Count_mC484E236B081F938DDD06DBD0DBF69A49238A84A_inline (List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137 *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method);
}
// System.Boolean UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData::ReleasedThisFrame()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseButtonEventData_ReleasedThisFrame_mD40162D1107F3C7EC2B560C415B20FD260051BB6 (MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * __this, const RuntimeMethod* method);
// UnityEngine.EventSystems.PointerEventData/InputButton UnityEngine.EventSystems.PointerInputModule/ButtonState::get_button()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t ButtonState_get_button_mB538B2D483C482A7E628D26BA390449A54C958A3_inline (ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * __this, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.PointerInputModule/ButtonState::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ButtonState__ctor_mECE4E89A3E0BAD4B2C1E14E142DD30893CA7267A (ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * __this, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.PointerInputModule/ButtonState::set_button(UnityEngine.EventSystems.PointerEventData/InputButton)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ButtonState_set_button_mCC7BFBDDA9AA0710CBB64C456583CDCBAD227971_inline (ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseButtonEventData__ctor_m2A5351DCA22508A2E1D85890CD69D223F4926A25 (MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.PointerInputModule/ButtonState::set_eventData(UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ButtonState_set_eventData_m844CA9F09A826E89AF0F8F137C016D96C71B30BD_inline (ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * __this, MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * ___value0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.PointerInputModule/ButtonState>::Add(!0)
inline void List_1_Add_m7323CC33C87F7796A0C0E232B6DE861E7A3B3150 (List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137 * __this, ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137 *, ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method);
}
// UnityEngine.EventSystems.PointerInputModule/ButtonState UnityEngine.EventSystems.PointerInputModule/MouseState::GetButtonState(UnityEngine.EventSystems.PointerEventData/InputButton)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * MouseState_GetButtonState_m0C2884609F720A284C72EAEF061C781F4874CCAE (MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * __this, int32_t ___button0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.PointerInputModule/ButtonState>::.ctor()
inline void List_1__ctor_mBE5B02FBBC3759FFBF8EB0BA4DCCF3D8C2875A92 (List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137 *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method);
}
// System.Boolean UnityEngine.EventSystems.RaycastResult::get_isValid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RaycastResult_get_isValid_m53278AA3529BC7B909A9AA082026D51CE6926813 (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * __this, const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.Vector3::get_up()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Vector3_get_up_m6309EBC4E42D6D0B3D28056BD23D0331275306F7 (const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.Vector2::op_Implicit(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D Vector2_op_Implicit_mEA1F75961E3D368418BA8CEB9C40E55C25BA3C28 (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___v0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.RaycastResult::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycastResult_Clear_m5C979A22E0B12FBD7BA035FE0815B4D81E82E9F7 (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseRaycaster>::Contains(!0)
inline bool List_1_Contains_m8F95394505FB39DAE82E532546756505C14CC379 (List_1_tE44A303DE85018C722D021A9716A97568780A0E1 * __this, BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_tE44A303DE85018C722D021A9716A97568780A0E1 *, BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 *, const RuntimeMethod*))List_1_Contains_mE08D561E86879A26245096C572A8593279383FDB_gshared)(__this, ___item0, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseRaycaster>::Add(!0)
inline void List_1_Add_mC1DB4C1FAE9E6A63959D08BAB319E9264B469EE0 (List_1_tE44A303DE85018C722D021A9716A97568780A0E1 * __this, BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tE44A303DE85018C722D021A9716A97568780A0E1 *, BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method);
}
// System.Boolean System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseRaycaster>::Remove(!0)
inline bool List_1_Remove_m5568E10AC94A0EA5A424CD633F6FC4D62A05D3F8 (List_1_tE44A303DE85018C722D021A9716A97568780A0E1 * __this, BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_tE44A303DE85018C722D021A9716A97568780A0E1 *, BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 *, const RuntimeMethod*))List_1_Remove_m908B647BB9F807676DACE34E3E73475C3C3751D4_gshared)(__this, ___item0, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseRaycaster>::.ctor()
inline void List_1__ctor_m0FEB7C9D74FA782CD2962232418ECC84981E0ACE (List_1_tE44A303DE85018C722D021A9716A97568780A0E1 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tE44A303DE85018C722D021A9716A97568780A0E1 *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method);
}
// System.Void UnityEngine.EventSystems.PointerInputModule::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerInputModule__ctor_m1E5E97188BEB6F225E167E5D2BA6DAEF4BFA3510 (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C * __this, const RuntimeMethod* method);
// UnityEngine.OperatingSystemFamily UnityEngine.SystemInfo::get_operatingSystemFamily()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SystemInfo_get_operatingSystemFamily_mA35FE1FF2DD6240B2880DC5F642D4A0CC2B58D8D (const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.EventSystem::get_isFocused()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool EventSystem_get_isFocused_mB7275507B3AFEC15722B1F128CACB1BA578AEC3B_inline (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.StandaloneInputModule::ShouldIgnoreEventsOnNoFocus()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_ShouldIgnoreEventsOnNoFocus_m00C2E7810D0D323B1A4A72097A75C6C2A87F0D9C (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.StandaloneInputModule::ReleaseMouse(UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_ReleaseMouse_m1EE3D0D685BB09DAAE4556477420B7D05FE3F0C1 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___pointerEvent0, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___currentOverGo1, const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::GetEventHandler<UnityEngine.EventSystems.IPointerClickHandler>(UnityEngine.GameObject)
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13_m96365BF6D04738F7FB08BF90EF5B2CB5AE01C1AD (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___root0, const RuntimeMethod* method)
{
return (( GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))ExecuteEvents_GetEventHandler_TisRuntimeObject_m4A0A387AEA9C47C3DB85EAB3FE49C0689C0FFFA8_gshared)(___root0, method);
}
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerClickHandler> UnityEngine.EventSystems.ExecuteEvents::get_pointerClickHandler()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E * ExecuteEvents_get_pointerClickHandler_mA657195AEC7D0A42036CBCAC9AD48F215C3C69E3_inline (const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IPointerClickHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisIPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13_mA58C71DF6780888ADDA65BE907FBDC323D066ADB (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E * ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *, EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E *, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDA4CD02F963B6939F8D079993DC2DCD75AB524DD_gshared)(___target0, ___eventData1, ___functor2, method);
}
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDropHandler> UnityEngine.EventSystems.ExecuteEvents::get_dropHandler()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 * ExecuteEvents_get_dropHandler_mC2362B96C6CD3628B83722F4B7C73E707C6C1EAF_inline (const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::ExecuteHierarchy<UnityEngine.EventSystems.IDropHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ExecuteEvents_ExecuteHierarchy_TisIDropHandler_t617E86EDCC6B18A39D69DFF444D5358072B524C3_m42750090DC2A40178705596286003B1346E093AE (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___root0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 * ___callbackFunction2, const RuntimeMethod* method)
{
return (( GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *, EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 *, const RuntimeMethod*))ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_mB2DEEAF3F86ED5BECA570432FD5440948D5CB3B8_gshared)(___root0, ___eventData1, ___callbackFunction2, method);
}
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IEndDragHandler> UnityEngine.EventSystems.ExecuteEvents::get_endDragHandler()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 * ExecuteEvents_get_endDragHandler_m23B60D3E3873043263069A3C3145393475690769_inline (const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IEndDragHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisIEndDragHandler_tA6045DEE83CD2C06AC9409CBE183B10E3C0B9070_m31C9832573004F91088F89FD7BB28BFA2777FBF4 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 * ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *, EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 *, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDA4CD02F963B6939F8D079993DC2DCD75AB524DD_gshared)(___target0, ___eventData1, ___functor2, method);
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_pointerDrag(UnityEngine.GameObject)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_pointerDrag_m7E4BF3CF39EF734A80FA1994310FB09A5B095AF8_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.BaseInputModule::ShouldActivateModule()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseInputModule_ShouldActivateModule_mA3CFFC349E1188C750346FC1B52F44D770104BCD (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.BaseInputModule::ActivateModule()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule_ActivateModule_m1F16D868703EBA8610E0C2DF86B4760F934631D7 (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * __this, const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.EventSystems.EventSystem::get_firstSelectedGameObject()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * EventSystem_get_firstSelectedGameObject_m8CAFDA874F89BDA34E0984860046C1C171B200E1_inline (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.BaseInputModule::DeactivateModule()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule_DeactivateModule_m02E0A94E9EBC6793439FE1ABF81F2E84B79C7249 (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.PointerInputModule::ClearSelection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerInputModule_ClearSelection_m05E527F28FB39BEBA8FA27153DAE71C8E7FDC958 (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.StandaloneInputModule::SendUpdateEventToSelectedObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_SendUpdateEventToSelectedObject_m2982A721762040935DE3835DE71FBA28650036FB (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.StandaloneInputModule::ProcessTouchEvents()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_ProcessTouchEvents_mFEED66642E804A218DD34A9C5F0F8EAA5CA3B019 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.StandaloneInputModule::ProcessMouseEvent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_ProcessMouseEvent_m54B75447C4D230F1FBB2E9A440B323403CC176C0 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.EventSystem::get_sendNavigationEvents()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool EventSystem_get_sendNavigationEvents_m38D86573D180189D107B782AD1F1ED183D45DAD3_inline (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.StandaloneInputModule::SendMoveEventToSelectedObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_SendMoveEventToSelectedObject_m45E5CAE198660284CF7DB1FA464B79F9E26D44D3 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.StandaloneInputModule::SendSubmitEventToSelectedObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_SendSubmitEventToSelectedObject_m132BF623619679A3E5871B7DA5BC5DD7B2E274DA (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method);
// UnityEngine.TouchType UnityEngine.Touch::get_type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_type_mAF919D12756ABA000A17146E82FDDFCEBFD6EEA9 (Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 * __this, const RuntimeMethod* method);
// UnityEngine.EventSystems.PointerEventData UnityEngine.EventSystems.PointerInputModule::GetTouchPointerEventData(UnityEngine.Touch,System.Boolean&,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * PointerInputModule_GetTouchPointerEventData_m630FA2AD7438552F7AF904ED42EA90FADD910055 (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C * __this, Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 ___input0, bool* ___pressed1, bool* ___released2, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.StandaloneInputModule::ProcessTouchPress(UnityEngine.EventSystems.PointerEventData,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_ProcessTouchPress_m74A52DA64B9C5EB8B5A38889F25BFEAFC284FB51 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___pointerEvent0, bool ___pressed1, bool ___released2, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.PointerInputModule::RemovePointerData(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerInputModule_RemovePointerData_mDDADB278A6A01D38C46631A9531C62C17B4DEBEA (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___data0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.PointerEventData::set_pointerPressRaycast(UnityEngine.EventSystems.RaycastResult)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_pointerPressRaycast_m559F6127EC11B0F1B5EEB7BFCA478128DE8E5536_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.PointerInputModule::DeselectIfSelectionChanged(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerInputModule_DeselectIfSelectionChanged_m3A32EDB68D6F489FD2A22CAB5A98D343E0634BDD (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___currentOverGo0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___pointerEvent1, const RuntimeMethod* method);
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerDownHandler> UnityEngine.EventSystems.ExecuteEvents::get_pointerDownHandler()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E * ExecuteEvents_get_pointerDownHandler_m8AE9CA906C86BBBEB75BA2D05F5DAB01F62519E3_inline (const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::ExecuteHierarchy<UnityEngine.EventSystems.IPointerDownHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ExecuteEvents_ExecuteHierarchy_TisIPointerDownHandler_tD9DAB9987B51AF8D4029CC24F52D17485684F4BF_m7109FC139AAD566492E6FABD873264235C450706 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___root0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E * ___callbackFunction2, const RuntimeMethod* method)
{
return (( GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *, EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E *, const RuntimeMethod*))ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_mB2DEEAF3F86ED5BECA570432FD5440948D5CB3B8_gshared)(___root0, ___eventData1, ___callbackFunction2, method);
}
// System.Single UnityEngine.Time::get_unscaledTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_unscaledTime_m57F78B855097C5BA632CF9BE60667A9DEBCAA472 (const RuntimeMethod* method);
// System.Single UnityEngine.EventSystems.PointerEventData::get_clickTime()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float PointerEventData_get_clickTime_m023B539AF9EDF3782FD9406EC79F4742C855A3AF_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.EventSystems.PointerEventData::get_clickCount()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t PointerEventData_get_clickCount_mF3A09A090E418FAAAFFE55668D9761C2F23BCE24_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::GetEventHandler<UnityEngine.EventSystems.IDragHandler>(UnityEngine.GameObject)
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ExecuteEvents_GetEventHandler_TisIDragHandler_t196F681B5B4A5BFCDEA2A93CA0A75D504908D25B_m5A727D5FF70D5140242C84BF539D7BC0C4D84D99 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___root0, const RuntimeMethod* method)
{
return (( GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))ExecuteEvents_GetEventHandler_TisRuntimeObject_m4A0A387AEA9C47C3DB85EAB3FE49C0689C0FFFA8_gshared)(___root0, method);
}
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IInitializePotentialDragHandler> UnityEngine.EventSystems.ExecuteEvents::get_initializePotentialDrag()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 * ExecuteEvents_get_initializePotentialDrag_m5B3D899EB08DA227EFBFC67778DDB98D7505C6D4_inline (const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IInitializePotentialDragHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisIInitializePotentialDragHandler_t56667A600E5BC5B8786753312DB9EDFE13455B45_m570C983BF282A5005C2BCA9BDFCDFF0805102D40 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 * ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *, EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 *, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDA4CD02F963B6939F8D079993DC2DCD75AB524DD_gshared)(___target0, ___eventData1, ___functor2, method);
}
// UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::ExecuteHierarchy<UnityEngine.EventSystems.IPointerExitHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ExecuteEvents_ExecuteHierarchy_TisIPointerExitHandler_t5D65A773A15D990BC231F7C9FE221AB4417327FF_mE5F3CB5276F1AB80CC2D0DD03F13BDC8998E71AB (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___root0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA * ___callbackFunction2, const RuntimeMethod* method)
{
return (( GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *, EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA *, const RuntimeMethod*))ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_mB2DEEAF3F86ED5BECA570432FD5440948D5CB3B8_gshared)(___root0, ___eventData1, ___callbackFunction2, method);
}
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ISubmitHandler> UnityEngine.EventSystems.ExecuteEvents::get_submitHandler()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B * ExecuteEvents_get_submitHandler_m734C2BE2F7CDA7F5C42897E3C8023D3C7E1EDF88_inline (const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.ISubmitHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisISubmitHandler_tCFAD2814817B87B883DB9E7F84EE0196C9E531C5_m323E82337667B995B90E6606FBA640AE22F34202 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B * ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *, EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B *, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDA4CD02F963B6939F8D079993DC2DCD75AB524DD_gshared)(___target0, ___eventData1, ___functor2, method);
}
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ICancelHandler> UnityEngine.EventSystems.ExecuteEvents::get_cancelHandler()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 * ExecuteEvents_get_cancelHandler_m5DB4A9513FB8B9248AE555F7D8E8043175B8D995_inline (const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.ICancelHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisICancelHandler_t868799EEEF8164176835C988494360950CFB75B3_m9AE2C1FA291D2A1AB4A4A6967944CBF342A229A5 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 * ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *, EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 *, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDA4CD02F963B6939F8D079993DC2DCD75AB524DD_gshared)(___target0, ___eventData1, ___functor2, method);
}
// UnityEngine.Vector2 UnityEngine.EventSystems.StandaloneInputModule::GetRawMoveVector()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D StandaloneInputModule_GetRawMoveVector_m36E309DADA8C0BB4CA0710FAABE0F4E9B77C2F6A (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.Vector2::Dot(UnityEngine.Vector2,UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Vector2_Dot_m34F6A75BE3FC6F728233811943AC4406C7D905BA (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___lhs0, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___rhs1, const RuntimeMethod* method);
// UnityEngine.EventSystems.MoveDirection UnityEngine.EventSystems.AxisEventData::get_moveDir()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t AxisEventData_get_moveDir_mD9CF8343509BAE60C581138D824F9C53659DBBD4_inline (AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * __this, const RuntimeMethod* method);
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IMoveHandler> UnityEngine.EventSystems.ExecuteEvents::get_moveHandler()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB * ExecuteEvents_get_moveHandler_m113A4222FC10723B2E38398E182C02F6624D6F24_inline (const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IMoveHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisIMoveHandler_tD51D5B6A4C5B3A233263107AF0020BE185647D41_m7E0B60BCAA055F013451EDB41D328355DFC204A8 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB * ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *, EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB *, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDA4CD02F963B6939F8D079993DC2DCD75AB524DD_gshared)(___target0, ___eventData1, ___functor2, method);
}
// System.Void UnityEngine.EventSystems.StandaloneInputModule::ProcessMouseEvent(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_ProcessMouseEvent_m4D1CB4E39517B014D3F81B9F0423B8FA6F8A8656 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, int32_t ___id0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.StandaloneInputModule::ProcessMousePress(UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_ProcessMousePress_m795F279F981E957475C724C010FA8A87F9BE6CF4 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * ___data0, const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::GetEventHandler<UnityEngine.EventSystems.IScrollHandler>(UnityEngine.GameObject)
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ExecuteEvents_GetEventHandler_TisIScrollHandler_t3BB7CCD821B37EBB5EA18D30D65D4075FB43198B_m862233B0489763DCCBC4FA2ADD82C50E3FAF6D04 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___root0, const RuntimeMethod* method)
{
return (( GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))ExecuteEvents_GetEventHandler_TisRuntimeObject_m4A0A387AEA9C47C3DB85EAB3FE49C0689C0FFFA8_gshared)(___root0, method);
}
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IScrollHandler> UnityEngine.EventSystems.ExecuteEvents::get_scrollHandler()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A * ExecuteEvents_get_scrollHandler_m48E5B17388986BD59EC7A7BF27E3D30A9FD057F7_inline (const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::ExecuteHierarchy<UnityEngine.EventSystems.IScrollHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ExecuteEvents_ExecuteHierarchy_TisIScrollHandler_t3BB7CCD821B37EBB5EA18D30D65D4075FB43198B_m063662829D9B670BB6A7AC7E1E3B2E15B7B5A853 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___root0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A * ___callbackFunction2, const RuntimeMethod* method)
{
return (( GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *, EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A *, const RuntimeMethod*))ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_mB2DEEAF3F86ED5BECA570432FD5440948D5CB3B8_gshared)(___root0, ___eventData1, ___callbackFunction2, method);
}
// UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IUpdateSelectedHandler> UnityEngine.EventSystems.ExecuteEvents::get_updateSelectedHandler()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 * ExecuteEvents_get_updateSelectedHandler_mE18DBB058B1EDC75D4F690A1E35003749BBC0567_inline (const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IUpdateSelectedHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>)
inline bool ExecuteEvents_Execute_TisIUpdateSelectedHandler_t460F9A1B3655B6DD49656995D451206631B4F4D0_mB329B68CB3C37B08F026C3535849785664C3444F (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 * ___functor2, const RuntimeMethod* method)
{
return (( bool (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *, EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 *, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDA4CD02F963B6939F8D079993DC2DCD75AB524DD_gshared)(___target0, ___eventData1, ___functor2, method);
}
// System.Boolean UnityEngine.EventSystems.TouchInputModule::get_forceModuleActive()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool TouchInputModule_get_forceModuleActive_m000AEC6C27D5CA88EA2B87C33C9991F4F50D007F_inline (TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.EventSystems.TouchInputModule::UseFakeInput()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchInputModule_UseFakeInput_m2DE0550826DD4CA1249AB4AC2315DCA7F3AE571A (TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.TouchInputModule::FakeTouches()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchInputModule_FakeTouches_mB10F6B25D8CFACA3FD96C1823E6E4FF6427A5663 (TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.TouchInputModule::ProcessTouchEvents()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchInputModule_ProcessTouchEvents_m6A97A06586A000FF8C4C14DEEEE64E6876A79F08 (TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.TouchInputModule::ProcessTouchPress(UnityEngine.EventSystems.PointerEventData,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchInputModule_ProcessTouchPress_m10A4854C822E110906745CFB1EEAF846F48D2949 (TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945 * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___pointerEvent0, bool ___pressed1, bool ___released2, const RuntimeMethod* method);
// System.String System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.EventSystems.PointerEventData>::ToString()
inline String_t* KeyValuePair_2_ToString_m53D0C9BBFAE30BCEBC3F3EBD0CC3554C231FA2E6 (KeyValuePair_2_t04EF4D50839D67939265F84585D99769CEAC8413 * __this, const RuntimeMethod* method)
{
return (( String_t* (*) (KeyValuePair_2_t04EF4D50839D67939265F84585D99769CEAC8413 *, const RuntimeMethod*))KeyValuePair_2_ToString_mA08653D28F24D8EEBE68DDFE8B80981F50847AD6_gshared)(__this, method);
}
// System.Boolean UnityEngine.Behaviour::get_isActiveAndEnabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Behaviour_get_isActiveAndEnabled_mC42DFCC1ECC2C94D52928FFE446CE7E266CA8B61 (Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.AspectRatioFitter/AspectMode>(T&,T)
inline bool SetPropertyUtility_SetStruct_TisAspectMode_t2D8C205891B8E63CA16B6AC3BA1D41320903C65A_mE814FB85AB8ABF881CDDE938A344CE5E97C8F8B1 (int32_t* ___currentValue0, int32_t ___newValue1, const RuntimeMethod* method)
{
return (( bool (*) (int32_t*, int32_t, const RuntimeMethod*))SetPropertyUtility_SetStruct_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m9E98202B88F58047BA33B2C7CA923AB4C93FD022_gshared)(___currentValue0, ___newValue1, method);
}
// System.Void UnityEngine.UI.AspectRatioFitter::SetDirty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AspectRatioFitter_SetDirty_mFB1E634E75B793DD239BC6E236001B6A794B1D78 (AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<System.Single>(T&,T)
inline bool SetPropertyUtility_SetStruct_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m4ACD4ED0F57868F46763D5D0BBF12FCAE1314E3A (float* ___currentValue0, float ___newValue1, const RuntimeMethod* method)
{
return (( bool (*) (float*, float, const RuntimeMethod*))SetPropertyUtility_SetStruct_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m4ACD4ED0F57868F46763D5D0BBF12FCAE1314E3A_gshared)(___currentValue0, ___newValue1, method);
}
// !!0 UnityEngine.Component::GetComponent<UnityEngine.RectTransform>()
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * Component_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_mEF939F54B6B56187EC11E16F51DCB12EB62C2103 (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method)
{
return (( RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * (*) (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m129DEF8A66683189ED44B21496135824743EF617_gshared)(__this, method);
}
// System.Void UnityEngine.DrivenRectTransformTracker::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DrivenRectTransformTracker_Clear_m328659F339A4FB519C9A208A685DDED106B6FC89 (DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 * __this, const RuntimeMethod* method);
// UnityEngine.RectTransform UnityEngine.UI.AspectRatioFitter::get_rectTransform()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * AspectRatioFitter_get_rectTransform_m10762C918EB094ED7335B938446F6537EF9E7F26 (AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.LayoutRebuilder::MarkLayoutForRebuild(UnityEngine.RectTransform)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutRebuilder_MarkLayoutForRebuild_m09DF1D1C1BFD83B8D9181E982D745F26D891343A (RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___rect0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.AspectRatioFitter::UpdateRect()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AspectRatioFitter_UpdateRect_m9C9311A3A55D5C3175E80C87944B0035DD9084E0 (AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.DrivenRectTransformTracker::Add(UnityEngine.Object,UnityEngine.RectTransform,UnityEngine.DrivenTransformProperties)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DrivenRectTransformTracker_Add_m51059F302FBD574E93820E8116283D1608D1AB5A (DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 * __this, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___driver0, RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___rectTransform1, int32_t ___drivenProperties2, const RuntimeMethod* method);
// UnityEngine.Rect UnityEngine.RectTransform::get_rect()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_t35B976DE901B5423C11705E156938EA27AB402CE RectTransform_get_rect_mE5F283FCB99A66403AC1F0607CA49C156D73A15E (RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.Rect::get_height()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Rect_get_height_m088C36990E0A255C5D7DCE36575DCE23ABB364B5 (Rect_t35B976DE901B5423C11705E156938EA27AB402CE * __this, const RuntimeMethod* method);
// System.Void UnityEngine.RectTransform::SetSizeWithCurrentAnchors(UnityEngine.RectTransform/Axis,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransform_SetSizeWithCurrentAnchors_m6F93CD5B798E4A53F2085862EA1B4021AEAA6745 (RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * __this, int32_t ___axis0, float ___size1, const RuntimeMethod* method);
// System.Single UnityEngine.Rect::get_width()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Rect_get_width_m54FF69FC2C086E2DC349ED091FD0D6576BFB1484 (Rect_t35B976DE901B5423C11705E156938EA27AB402CE * __this, const RuntimeMethod* method);
// System.Void UnityEngine.RectTransform::set_anchorMin(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A (RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.Vector2::get_one()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D Vector2_get_one_m6E01BE09CEA40781CB12CCB6AF33BBDA0F60CEED (const RuntimeMethod* method);
// System.Void UnityEngine.RectTransform::set_anchorMax(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3 (RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.RectTransform::set_anchoredPosition(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransform_set_anchoredPosition_m4DD45DB1A97734A1F3A81E5F259638ECAF35962F (RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.UI.AspectRatioFitter::GetParentSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D AspectRatioFitter_GetParentSize_m5AA652B731F6930CA9C9B342C93354D73EFB6874 (AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.UI.AspectRatioFitter::get_aspectRatio()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float AspectRatioFitter_get_aspectRatio_mCA6B68F9D4FB640574390BF43ACF3DC8D42AEF99_inline (AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.UI.AspectRatioFitter::GetSizeDeltaToProduceSize(System.Single,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float AspectRatioFitter_GetSizeDeltaToProduceSize_mCDD7A3B13A26729FD9ACE0D7AAAAD0714F4FE9AC (AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6 * __this, float ___size0, int32_t ___axis1, const RuntimeMethod* method);
// System.Void UnityEngine.RectTransform::set_sizeDelta(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302 (RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method);
// System.Single UnityEngine.Vector2::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Vector2_get_Item_m67344A67120E48C32D9419E24BA7AED29F063379 (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * __this, int32_t ___index0, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.RectTransform::get_anchorMax()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D RectTransform_get_anchorMax_m1E51C211FBB32326C884375C9F1E8E8221E5C086 (RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * __this, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.RectTransform::get_anchorMin()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D RectTransform_get_anchorMin_mB62D77CAC5A2A086320638AE7DF08135B7028744 (RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * __this, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.Rect::get_size()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D Rect_get_size_m731642B8F03F6CE372A2C9E2E4A925450630606C (Rect_t35B976DE901B5423C11705E156938EA27AB402CE * __this, const RuntimeMethod* method);
// !!0 UnityEngine.Component::GetComponent<UnityEngine.UI.Graphic>()
inline Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * Component_GetComponent_TisGraphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8_mFA58F3A4B73E992545A39ABAD4D36D0BBFAEBBAE (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method)
{
return (( Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * (*) (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m129DEF8A66683189ED44B21496135824743EF617_gshared)(__this, method);
}
// UnityEngine.UI.Graphic UnityEngine.UI.BaseMeshEffect::get_graphic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * BaseMeshEffect_get_graphic_mDD7D8CD6F220B9DE656145A1346EA9799255BE21 (BaseMeshEffect_t72759F31F9D204D7EFB6B45097873809D4524BA5 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.UIBehaviour::OnDidApplyAnimationProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnDidApplyAnimationProperties_m36C4FA9136D24E5F7EE389E17CDA2A3D581220DC (UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.VertexHelper::.ctor(UnityEngine.Mesh)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VertexHelper__ctor_m798A4537737219B31DC65597A980514488DB1C76 (VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F * __this, Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___m0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.VertexHelper::FillMesh(UnityEngine.Mesh)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VertexHelper_FillMesh_m42F81894DE19863AC187F06DFB7922A71BC29247 (VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F * __this, Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___mesh0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Button/ButtonClickedEvent::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ButtonClickedEvent__ctor_mEF3C31A6254EBAB9F98F8DAAE499700531B18681 (ButtonClickedEvent_t975D9C903BC4880557ADD7D3ACFB01CB2B3D6DDB * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Selectable::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Selectable__ctor_mDADF3659E1B861470987564058F1D0B89FF3660A (Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UISystemProfilerApi::AddMarker(System.String,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UISystemProfilerApi_AddMarker_m9193DB5B08C1B7DD35835D6F0E2DF9DD20483FFA (String_t* ___name0, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___obj1, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEvent::Invoke()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_Invoke_mB2FA1C76256FE34D5E7F84ABE528AC61CE8A0325 (UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * __this, const RuntimeMethod* method);
// UnityEngine.EventSystems.PointerEventData/InputButton UnityEngine.EventSystems.PointerEventData::get_button()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t PointerEventData_get_button_mC662D5DAC02F0ED6AE9205259116CC91BB92BD3E_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Button::Press()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Button_Press_m58210E36B74902AC4667E5A75B4ADB891D1596C2 (Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * __this, const RuntimeMethod* method);
// System.Collections.IEnumerator UnityEngine.UI.Button::OnFinishSubmit()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Button_OnFinishSubmit_m89D3F073EF025FE5DE11FAC04E41025685AAE20F (Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * __this, const RuntimeMethod* method);
// UnityEngine.Coroutine UnityEngine.MonoBehaviour::StartCoroutine(System.Collections.IEnumerator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_tAE7DB2FC70A0AE6477F896F852057CB0754F06EC * MonoBehaviour_StartCoroutine_mBF8044CE06A35D76A69669ADD8977D05956616B7 (MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429 * __this, RuntimeObject* ___routine0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Button/<OnFinishSubmit>d__9::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3COnFinishSubmitU3Ed__9__ctor_m7ADCF9803F4A2AD6F3555209BCF182C603989A6F (U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method);
// UnityEngine.UI.ColorBlock UnityEngine.UI.Selectable::get_colors()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA Selectable_get_colors_m9E63E13A7B6C40CB0F20414FFBE15873BE5F3E4E_inline (Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * __this, const RuntimeMethod* method);
// System.Single UnityEngine.UI.ColorBlock::get_fadeDuration()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float ColorBlock_get_fadeDuration_mD5EA922E1FA90C1BA224652C1DFC25FEE93830D5_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, const RuntimeMethod* method);
// System.Single UnityEngine.Time::get_unscaledDeltaTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_unscaledDeltaTime_mA0AE7A144C88AE8AABB42DF17B0F3F0714BA06B2 (const RuntimeMethod* method);
// UnityEngine.UI.Selectable/SelectionState UnityEngine.UI.Selectable::get_currentSelectionState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Selectable_get_currentSelectionState_m37B79D51884A49924B92D1AE1BAA354C55CA1FD0 (Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * __this, const RuntimeMethod* method);
// System.Void System.NotSupportedException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33 (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEvent::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent__ctor_m2F8C02F28E289CA65598FF4FA8EAB84D955FF028 (UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * __this, const RuntimeMethod* method);
// System.Single UnityEngine.Mathf::Max(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Mathf_Max_m670AE0EC1B09ED1A56FF9606B0F954670319CB65 (float ___a0, float ___b1, const RuntimeMethod* method);
// System.Single UnityEngine.Mathf::Sign(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Mathf_Sign_m6FA1D12786BEE0419D4B9426E5E4955F286BC8D3 (float ___f0, const RuntimeMethod* method);
// !!0 UnityEngine.Component::GetComponent<UnityEngine.Canvas>()
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * Component_GetComponent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_mAD461B8F1BB5C616749FAA2B63155D710C3CD21C (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method)
{
return (( Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * (*) (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m129DEF8A66683189ED44B21496135824743EF617_gshared)(__this, method);
}
// System.Void UnityEngine.UI.CanvasScaler::SetScaleFactor(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasScaler_SetScaleFactor_m2FA24C807078ECFCCA188F8C92B3B5E11409151B (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, float ___scaleFactor0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.CanvasScaler::SetReferencePixelsPerUnit(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasScaler_SetReferencePixelsPerUnit_m2C7B8AB6515B8B3CFB22B7511907F0063163212A (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, float ___referencePixelsPerUnit0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Canvas::get_isRootCanvas()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Canvas_get_isRootCanvas_mA4ADE90017884B88AF7A9DD3114FDD4FEB73918A (Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * __this, const RuntimeMethod* method);
// UnityEngine.RenderMode UnityEngine.Canvas::get_renderMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Canvas_get_renderMode_mAF68701B143F01C7D19B6C7D3033E3B34ECB2FC8 (Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Screen::get_width()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Screen_get_width_m8ECCEF7FF17395D1237BC0193D7A6640A3FEEAD3 (const RuntimeMethod* method);
// System.Int32 UnityEngine.Screen::get_height()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Screen_get_height_mF5B64EBC4CDE0EAAA5713C1452ED2CE475F25150 (const RuntimeMethod* method);
// System.Int32 UnityEngine.Canvas::get_targetDisplay()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Canvas_get_targetDisplay_m80D9D93CA075084BDD3B05AF5F880698D7BB235D (Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Display::get_renderingWidth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Display_get_renderingWidth_mA02F65BF724686D7A0CD0C192954CA22592C3B12 (Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Display::get_renderingHeight()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Display_get_renderingHeight_m1496BF9D66501280B4F75A31A515D8CF416838B0 (Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.Mathf::Log(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Mathf_Log_mD0CFD1242805BD697B5156AA46FBB43E7636A19B (float ___f0, float ___p1, const RuntimeMethod* method);
// System.Single UnityEngine.Mathf::Lerp(System.Single,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Mathf_Lerp_m9A74C5A0C37D0CDF45EE66E7774D12A9B93B1364 (float ___a0, float ___b1, float ___t2, const RuntimeMethod* method);
// System.Single UnityEngine.Mathf::Min(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Mathf_Min_mCF9BE0E9CAC9F18D207692BB2DAC7F3E1D4E1CB7 (float ___a0, float ___b1, const RuntimeMethod* method);
// System.Single UnityEngine.Screen::get_dpi()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Screen_get_dpi_m92A755DE9E23ABA717B5594F4F52AFB0FBEAC1D3 (const RuntimeMethod* method);
// System.Void UnityEngine.Canvas::set_scaleFactor(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Canvas_set_scaleFactor_m40359EE941E1573107542A2377E87BEB17C10163 (Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * __this, float ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Canvas::set_referencePixelsPerUnit(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Canvas_set_referencePixelsPerUnit_m16AF69DA4801579FD03A220D3D6293421671F341 (Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * __this, float ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.ICanvasElement>::.ctor()
inline void IndexedSet_1__ctor_m1717E2CA1404D41499D0D08BC76E2F4DD7B2E047 (IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * __this, const RuntimeMethod* method)
{
(( void (*) (IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 *, const RuntimeMethod*))IndexedSet_1__ctor_mA9E3CAA05341D4863E3080C31170AB64AAED0573_gshared)(__this, method);
}
// System.Void UnityEngine.Canvas/WillRenderCanvases::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WillRenderCanvases__ctor_m9AB0D8B934BE573C4B3ABBAA313984B054B4B885 (WillRenderCanvases_tBD5AD090B5938021DEAA679A5AEEA790F60A8BEE * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Void UnityEngine.Canvas::add_willRenderCanvases(UnityEngine.Canvas/WillRenderCanvases)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Canvas_add_willRenderCanvases_mACABFF4EAFB7DCFF4B9A33357D496EC3010D7E6B (WillRenderCanvases_tBD5AD090B5938021DEAA679A5AEEA790F60A8BEE * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.CanvasUpdateRegistry::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasUpdateRegistry__ctor_m86AC7F2BD30DF9ABEA5CA8C74BA28367D5325E9A (CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.ICanvasElement>::get_Count()
inline int32_t IndexedSet_1_get_Count_m1CB8C29C8118B6846AAB3A4A1430A00907E480D0 (IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 *, const RuntimeMethod*))IndexedSet_1_get_Count_mA8B3EBDB71AD001C6D39FA35D79D7516C1C267E4_gshared)(__this, method);
}
// T UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.ICanvasElement>::get_Item(System.Int32)
inline RuntimeObject* IndexedSet_1_get_Item_m657F3612726374420908A01DEB93BFF92F80A64A (IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 *, int32_t, const RuntimeMethod*))IndexedSet_1_get_Item_m982CBDB4CDA1A497EC25A60EC17AB8F7B2D51BC0_gshared)(__this, ___index0, method);
}
// System.Void UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.ICanvasElement>::RemoveAt(System.Int32)
inline void IndexedSet_1_RemoveAt_m88515EA7DB5AE71B53CE24A810DE0323264D8384 (IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * __this, int32_t ___index0, const RuntimeMethod* method)
{
(( void (*) (IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 *, int32_t, const RuntimeMethod*))IndexedSet_1_RemoveAt_mBFCEF1CBBC140206B5DFCAE8205161429441E0EA_gshared)(__this, ___index0, method);
}
// System.Void UnityEngine.UISystemProfilerApi::BeginSample(UnityEngine.UISystemProfilerApi/SampleType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UISystemProfilerApi_BeginSample_m43EF1B2F9606D5F0C99DF84505C5498AA0CDBB1B (int32_t ___type0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.CanvasUpdateRegistry::CleanInvalidItems()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasUpdateRegistry_CleanInvalidItems_m033AB2A5652116F351F3287C37E0910AE78506D0 (CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.ICanvasElement>::Sort(System.Comparison`1<T>)
inline void IndexedSet_1_Sort_m338A4FC9AF72E60401382F58002B10E2AB979A3D (IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * __this, Comparison_1_tE7E69DEDE3A7782BEEADFF223EE57D6F7F626AEC * ___sortLayoutFunction0, const RuntimeMethod* method)
{
(( void (*) (IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 *, Comparison_1_tE7E69DEDE3A7782BEEADFF223EE57D6F7F626AEC *, const RuntimeMethod*))IndexedSet_1_Sort_m0365BC9CE6449DBD358C479FB244D07FE72F36E7_gshared)(__this, ___sortLayoutFunction0, method);
}
// UnityEngine.UI.CanvasUpdateRegistry UnityEngine.UI.CanvasUpdateRegistry::get_instance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * CanvasUpdateRegistry_get_instance_m6A2150EA4C8C74AF18E53B3CF22BF6EAF70FF927 (const RuntimeMethod* method);
// System.Boolean UnityEngine.UI.CanvasUpdateRegistry::ObjectValidForUpdate(UnityEngine.UI.ICanvasElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CanvasUpdateRegistry_ObjectValidForUpdate_m0A572FA254D152E92FD6D6DC63B4B0FA66B88250 (CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * __this, RuntimeObject* ___element0, const RuntimeMethod* method);
// System.Void UnityEngine.Debug::LogException(System.Exception,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogException_m3CC9A37CD398E5B7F2305896F0969939F1BD1E3E (Exception_t * ___exception0, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___context1, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.ICanvasElement>::Clear()
inline void IndexedSet_1_Clear_mE65E26890CD37A447B016CFE3348AD0E24E40238 (IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * __this, const RuntimeMethod* method)
{
(( void (*) (IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 *, const RuntimeMethod*))IndexedSet_1_Clear_m689CFB50CED51E5F519BEEF51B8D8C6FFBF41FB9_gshared)(__this, method);
}
// System.Void UnityEngine.UISystemProfilerApi::EndSample(UnityEngine.UISystemProfilerApi/SampleType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UISystemProfilerApi_EndSample_mB7DD865D72832D3558931B4E6801999B23F0429A (int32_t ___type0, const RuntimeMethod* method);
// UnityEngine.UI.ClipperRegistry UnityEngine.UI.ClipperRegistry::get_instance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F * ClipperRegistry_get_instance_mE4E214237577A08B2A6C8AF9DD7CDAE1B75E387B (const RuntimeMethod* method);
// System.Void UnityEngine.UI.ClipperRegistry::Cull()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClipperRegistry_Cull_mBCB5139DD0FBCC6436ABA8F014E455DF219ADB18 (ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.UI.CanvasUpdateRegistry::ParentCount(UnityEngine.Transform)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CanvasUpdateRegistry_ParentCount_m41ED796F144AF2FF40F97F45687086942FE09776 (Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___child0, const RuntimeMethod* method);
// System.Boolean UnityEngine.UI.CanvasUpdateRegistry::InternalRegisterCanvasElementForLayoutRebuild(UnityEngine.UI.ICanvasElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CanvasUpdateRegistry_InternalRegisterCanvasElementForLayoutRebuild_m4B27D53D884E8281D102493C216A85402702B02B (CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * __this, RuntimeObject* ___element0, const RuntimeMethod* method);
// System.Boolean UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.ICanvasElement>::Contains(T)
inline bool IndexedSet_1_Contains_m32C5F79FCDC99990211CBB191DFAA6A2591804D9 (IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 *, RuntimeObject*, const RuntimeMethod*))IndexedSet_1_Contains_mCA290D982CEDEE20068188B38AC28A45CDDC9D13_gshared)(__this, ___item0, method);
}
// System.Boolean UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.ICanvasElement>::AddUnique(T)
inline bool IndexedSet_1_AddUnique_mC7E7DF6E2912B691DFB7939E6843A767EB94E994 (IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 *, RuntimeObject*, const RuntimeMethod*))IndexedSet_1_AddUnique_m90A07ACAD8A4E562C11674ED9598E5DE3AFE5F48_gshared)(__this, ___item0, method);
}
// System.Boolean UnityEngine.UI.CanvasUpdateRegistry::InternalRegisterCanvasElementForGraphicRebuild(UnityEngine.UI.ICanvasElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CanvasUpdateRegistry_InternalRegisterCanvasElementForGraphicRebuild_m21F2CD6F08EA106A9B7CB61836836E67D9AD014A (CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * __this, RuntimeObject* ___element0, const RuntimeMethod* method);
// System.String System.String::Format(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA (String_t* ___format0, RuntimeObject * ___arg01, const RuntimeMethod* method);
// System.Void UnityEngine.UI.CanvasUpdateRegistry::InternalUnRegisterCanvasElementForLayoutRebuild(UnityEngine.UI.ICanvasElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasUpdateRegistry_InternalUnRegisterCanvasElementForLayoutRebuild_m257D195226FDF05E9A9723745094408E556A165E (CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * __this, RuntimeObject* ___element0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.CanvasUpdateRegistry::InternalUnRegisterCanvasElementForGraphicRebuild(UnityEngine.UI.ICanvasElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasUpdateRegistry_InternalUnRegisterCanvasElementForGraphicRebuild_mE9C5DB7632C213651671F55119B385984FDA52BB (CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * __this, RuntimeObject* ___element0, const RuntimeMethod* method);
// System.Boolean UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.ICanvasElement>::Remove(T)
inline bool IndexedSet_1_Remove_m2FB9F291535ED37DBF0E9DBB42F8B63E8B7AE980 (IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 *, RuntimeObject*, const RuntimeMethod*))IndexedSet_1_Remove_m8C62E0808CB2D9452B58F1CB736C431F04CA1F4B_gshared)(__this, ___item0, method);
}
// System.Void System.Comparison`1<UnityEngine.UI.ICanvasElement>::.ctor(System.Object,System.IntPtr)
inline void Comparison_1__ctor_m10B32226B56D355E5503821149C904BCF9F17DAC (Comparison_1_tE7E69DEDE3A7782BEEADFF223EE57D6F7F626AEC * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Comparison_1_tE7E69DEDE3A7782BEEADFF223EE57D6F7F626AEC *, RuntimeObject *, intptr_t, const RuntimeMethod*))Comparison_1__ctor_m3445CDEBFFF4A3A9EAED69CBCC2D247630CA5BD4_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.IClipper>::.ctor()
inline void IndexedSet_1__ctor_m6229A7FC4962EA11D9BF02A057A80A0718898001 (IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A * __this, const RuntimeMethod* method)
{
(( void (*) (IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A *, const RuntimeMethod*))IndexedSet_1__ctor_mA9E3CAA05341D4863E3080C31170AB64AAED0573_gshared)(__this, method);
}
// System.Void UnityEngine.UI.ClipperRegistry::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClipperRegistry__ctor_mBE6A18696846AD82B4C069BEA3C4318777A59521 (ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F * __this, const RuntimeMethod* method);
// T UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.IClipper>::get_Item(System.Int32)
inline RuntimeObject* IndexedSet_1_get_Item_m6711F92D6FD706E80DFD8F4F367C165F5902BC15 (IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A *, int32_t, const RuntimeMethod*))IndexedSet_1_get_Item_m982CBDB4CDA1A497EC25A60EC17AB8F7B2D51BC0_gshared)(__this, ___index0, method);
}
// System.Int32 UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.IClipper>::get_Count()
inline int32_t IndexedSet_1_get_Count_m7E2FD722ACDC5D81B708B075E212803D092D8B68 (IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A *, const RuntimeMethod*))IndexedSet_1_get_Count_mA8B3EBDB71AD001C6D39FA35D79D7516C1C267E4_gshared)(__this, method);
}
// System.Boolean UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.IClipper>::AddUnique(T)
inline bool IndexedSet_1_AddUnique_mC24738E494850E9893B7D7FD5969B097EF1D0C93 (IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A * __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A *, RuntimeObject*, const RuntimeMethod*))IndexedSet_1_AddUnique_m90A07ACAD8A4E562C11674ED9598E5DE3AFE5F48_gshared)(__this, ___item0, method);
}
// System.Boolean UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.IClipper>::Remove(T)
inline bool IndexedSet_1_Remove_m187CB1B44A3F31785213A5CB7506D91ECD8CCCEF (IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A * __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A *, RuntimeObject*, const RuntimeMethod*))IndexedSet_1_Remove_m8C62E0808CB2D9452B58F1CB736C431F04CA1F4B_gshared)(__this, ___item0, method);
}
// System.Int32 System.Collections.Generic.List`1<UnityEngine.UI.RectMask2D>::get_Count()
inline int32_t List_1_get_Count_mFC002F15947CA8F0F0D6ABE5C6273E357E160AE8_inline (List_1_tFE915F05C1A0D10E751CEC3F24F229A6C57E375C * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tFE915F05C1A0D10E751CEC3F24F229A6C57E375C *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method);
}
// !0 System.Collections.Generic.List`1<UnityEngine.UI.RectMask2D>::get_Item(System.Int32)
inline RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B * List_1_get_Item_m568CF9C5AC5F5D02D8414E6F6C62F0B2D93115C4_inline (List_1_tFE915F05C1A0D10E751CEC3F24F229A6C57E375C * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B * (*) (List_1_tFE915F05C1A0D10E751CEC3F24F229A6C57E375C *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method);
}
// UnityEngine.Rect UnityEngine.UI.RectMask2D::get_canvasRect()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_t35B976DE901B5423C11705E156938EA27AB402CE RectMask2D_get_canvasRect_m2CFEAC92FBAE3C1E500CAD0BDB3D6CDD263558BA (RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B * __this, const RuntimeMethod* method);
// UnityEngine.Vector4 UnityEngine.UI.RectMask2D::get_padding()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E RectMask2D_get_padding_mAE70AF9C0ABD28AD225A2BFD4965C45883B31E20_inline (RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B * __this, const RuntimeMethod* method);
// System.Single UnityEngine.Rect::get_xMin()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Rect_get_xMin_mFDFA74F66595FD2B8CE360183D1A92B575F0A76E (Rect_t35B976DE901B5423C11705E156938EA27AB402CE * __this, const RuntimeMethod* method);
// System.Single UnityEngine.Rect::get_xMax()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Rect_get_xMax_mA16D7C3C2F30F8608719073ED79028C11CE90983 (Rect_t35B976DE901B5423C11705E156938EA27AB402CE * __this, const RuntimeMethod* method);
// System.Single UnityEngine.Rect::get_yMin()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Rect_get_yMin_m31EDC3262BE39D2F6464B15397F882237E6158C3 (Rect_t35B976DE901B5423C11705E156938EA27AB402CE * __this, const RuntimeMethod* method);
// System.Single UnityEngine.Rect::get_yMax()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Rect_get_yMax_m8AA5E92C322AF3FF571330F00579DA864F33341B (Rect_t35B976DE901B5423C11705E156938EA27AB402CE * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Rect::.ctor(System.Single,System.Single,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rect__ctor_m50B92C75005C9C5A0D05E6E0EBB43AFAF7C66280 (Rect_t35B976DE901B5423C11705E156938EA27AB402CE * __this, float ___x0, float ___y1, float ___width2, float ___height3, const RuntimeMethod* method);
// UnityEngine.Color UnityEngine.UI.ColorBlock::get_normalColor()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorBlock_get_normalColor_mE0A4EBADEFB7A6F245F590B0A5DBB59F289C0905_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.ColorBlock::set_normalColor(UnityEngine.Color)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ColorBlock_set_normalColor_mF36865F66914F3902ACAF7E64B3E6C664EA81911_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method);
// UnityEngine.Color UnityEngine.UI.ColorBlock::get_highlightedColor()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorBlock_get_highlightedColor_m779349828B304DB2551C3A3CCDDD69861A21EDFF_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.ColorBlock::set_highlightedColor(UnityEngine.Color)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ColorBlock_set_highlightedColor_mAE0BF4A697744D841048D8BE9A0C8963226B4B3A_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method);
// UnityEngine.Color UnityEngine.UI.ColorBlock::get_pressedColor()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorBlock_get_pressedColor_m19AA95DCC2519975D93202C997EECB3E06CE96E5_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.ColorBlock::set_pressedColor(UnityEngine.Color)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ColorBlock_set_pressedColor_mAE69CAEBA8CA45E089F6C7CA2F1B8C530705E70B_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method);
// UnityEngine.Color UnityEngine.UI.ColorBlock::get_selectedColor()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorBlock_get_selectedColor_mE6DDB9D2D3466CCFFFF000286619BEC4AB60F83D_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.ColorBlock::set_selectedColor(UnityEngine.Color)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ColorBlock_set_selectedColor_mA8B032467C571D28563D91766B0E956FB265ACC9_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method);
// UnityEngine.Color UnityEngine.UI.ColorBlock::get_disabledColor()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorBlock_get_disabledColor_mD865FC8BCFE7B8535A51A68E78130409F3C97FC8_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.ColorBlock::set_disabledColor(UnityEngine.Color)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ColorBlock_set_disabledColor_m530D0573E0257BAB82F2FFEA0E22C743911B4588_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method);
// System.Single UnityEngine.UI.ColorBlock::get_colorMultiplier()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float ColorBlock_get_colorMultiplier_m8B3021855566FCCBD41100EB2B70B18172064DC5_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.ColorBlock::set_colorMultiplier(System.Single)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ColorBlock_set_colorMultiplier_m815DE55D842A1480A11D1051D559D9B63EE34672_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, float ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.ColorBlock::set_fadeDuration(System.Single)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ColorBlock_set_fadeDuration_mE31362D1331C613F27505EB7581A734A2E58C917_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, float ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Color32::.ctor(System.Byte,System.Byte,System.Byte,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Color32__ctor_m1AEF46FBBBE4B522E6984D081A3D158198E10AA2 (Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * __this, uint8_t ___r0, uint8_t ___g1, uint8_t ___b2, uint8_t ___a3, const RuntimeMethod* method);
// UnityEngine.Color UnityEngine.Color32::op_Implicit(UnityEngine.Color32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 Color32_op_Implicit_mA89CAD76E78975F51DF7374A67D18A5F6EF8DA61 (Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___c0, const RuntimeMethod* method);
// System.Boolean UnityEngine.UI.ColorBlock::Equals(UnityEngine.UI.ColorBlock)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ColorBlock_Equals_m3768CE3E85F9FD55FCA305EA20FF33983B4DB26C (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.UI.ColorBlock::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ColorBlock_Equals_mCA2055CA21C85A585504A447B3B048480BB7AB21 (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Color::op_Equality(UnityEngine.Color,UnityEngine.Color)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Color_op_Equality_m71B1A2F64AD6228F10E20149EF6440460D2C748E (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___lhs0, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___rhs1, const RuntimeMethod* method);
// System.Int32 System.ValueType::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueType_GetHashCode_m48E9FA7FFC7C27D876E764A94E3CF2039ED6C9F9 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.UI.ColorBlock::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ColorBlock_GetHashCode_m1F4A5EC52681DEE9C205F4A5C5A60051DAF71111 (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.ContentSizeFitter/FitMode>(T&,T)
inline bool SetPropertyUtility_SetStruct_TisFitMode_tBF783E77415F7063B468C18E758F738D83D60A08_mAB5FD1502245CDD21A16BD16A2E61ECEA23297CA (int32_t* ___currentValue0, int32_t ___newValue1, const RuntimeMethod* method)
{
return (( bool (*) (int32_t*, int32_t, const RuntimeMethod*))SetPropertyUtility_SetStruct_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m9E98202B88F58047BA33B2C7CA923AB4C93FD022_gshared)(___currentValue0, ___newValue1, method);
}
// System.Void UnityEngine.UI.ContentSizeFitter::SetDirty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentSizeFitter_SetDirty_m018F67222A9B6CB351DB14625794E9508A153670 (ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8 * __this, const RuntimeMethod* method);
// UnityEngine.RectTransform UnityEngine.UI.ContentSizeFitter::get_rectTransform()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ContentSizeFitter_get_rectTransform_mE7FD5F977E954B6D54B9C1CCD112A4A70840CF56 (ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8 * __this, const RuntimeMethod* method);
// UnityEngine.UI.ContentSizeFitter/FitMode UnityEngine.UI.ContentSizeFitter::get_verticalFit()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t ContentSizeFitter_get_verticalFit_m937F784A1D950E72A561B7DF96206ADA5F1FC490_inline (ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8 * __this, const RuntimeMethod* method);
// UnityEngine.UI.ContentSizeFitter/FitMode UnityEngine.UI.ContentSizeFitter::get_horizontalFit()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t ContentSizeFitter_get_horizontalFit_mB775F652AC10946108F7D44BB52C57413086F524_inline (ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.UI.LayoutUtility::GetMinSize(UnityEngine.RectTransform,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LayoutUtility_GetMinSize_m8A7CF1EB3F3D1CDC9FFA33F34761322F42701CB3 (RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___rect0, int32_t ___axis1, const RuntimeMethod* method);
// System.Single UnityEngine.UI.LayoutUtility::GetPreferredSize(UnityEngine.RectTransform,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LayoutUtility_GetPreferredSize_mC035133B1A561870CB8FE14212D8E71BFF1742F6 (RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___rect0, int32_t ___axis1, const RuntimeMethod* method);
// System.Void UnityEngine.UI.ContentSizeFitter::HandleSelfFittingAlongAxis(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentSizeFitter_HandleSelfFittingAlongAxis_m6CB47EDA5C86EB609586AC0EA09289063A5E8E21 (ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8 * __this, int32_t ___axis0, const RuntimeMethod* method);
// UnityEngine.Color UnityEngine.UI.CoroutineTween.ColorTween::get_startColor()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorTween_get_startColor_mA979B663DFD611DAC95F4A7B98AA36E24EE5E3D6_inline (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.CoroutineTween.ColorTween::set_startColor(UnityEngine.Color)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ColorTween_set_startColor_mA57B5D1E4C2FA32133D13E91D9B07253CCF3BFD8_inline (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method);
// UnityEngine.Color UnityEngine.UI.CoroutineTween.ColorTween::get_targetColor()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorTween_get_targetColor_m2620FDCF03617764286DCDF8000AA3BE59C9E7AF_inline (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.CoroutineTween.ColorTween::set_targetColor(UnityEngine.Color)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ColorTween_set_targetColor_mB57B42752260A735D6F174F925822756088DAD26_inline (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method);
// UnityEngine.UI.CoroutineTween.ColorTween/ColorTweenMode UnityEngine.UI.CoroutineTween.ColorTween::get_tweenMode()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t ColorTween_get_tweenMode_m908DEFB153497AC18AD08CB73AFF655C1F6D05FB_inline (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.CoroutineTween.ColorTween::set_tweenMode(UnityEngine.UI.CoroutineTween.ColorTween/ColorTweenMode)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ColorTween_set_tweenMode_m2C089877F55E0D82F68BFC3EEC33737F7D3D9E54_inline (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Single UnityEngine.UI.CoroutineTween.ColorTween::get_duration()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float ColorTween_get_duration_m7E952A00A8A606D7886422812EFB24A6D5BFB508_inline (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.CoroutineTween.ColorTween::set_duration(System.Single)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ColorTween_set_duration_mA6144F511A40F04787D3BEEAB4A0C0EBD66ADB5C_inline (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, float ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.UI.CoroutineTween.ColorTween::get_ignoreTimeScale()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool ColorTween_get_ignoreTimeScale_mF935C53CA27D67D47AE0021A0DB8D92C392EF56B_inline (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.CoroutineTween.ColorTween::set_ignoreTimeScale(System.Boolean)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ColorTween_set_ignoreTimeScale_m4B2110395267132EB58541D4355630D0DB466512_inline (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.UI.CoroutineTween.ColorTween::ValidTarget()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ColorTween_ValidTarget_mA5469658CB631C87CF97FC5AE2B9089A06678696 (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, const RuntimeMethod* method);
// UnityEngine.Color UnityEngine.Color::Lerp(UnityEngine.Color,UnityEngine.Color,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 Color_Lerp_mD37EF718F1BAC65A7416655F0BC902CE76559C46 (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___a0, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___b1, float ___t2, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::Invoke(!0)
inline void UnityEvent_1_Invoke_mB755E72B8F7D26CFA94C8B9B145F6019FB5932CC (UnityEvent_1_tFB475F569CC8852B004B3F2DE7536E67324C2AF8 * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___arg00, const RuntimeMethod* method)
{
(( void (*) (UnityEvent_1_tFB475F569CC8852B004B3F2DE7536E67324C2AF8 *, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 , const RuntimeMethod*))UnityEvent_1_Invoke_mB755E72B8F7D26CFA94C8B9B145F6019FB5932CC_gshared)(__this, ___arg00, method);
}
// System.Void UnityEngine.UI.CoroutineTween.ColorTween::TweenValue(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorTween_TweenValue_m4EF3CDDDDC3986BA6D06D4DB785310B131958749 (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, float ___floatPercentage0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.CoroutineTween.ColorTween/ColorTweenCallback::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorTweenCallback__ctor_m7F7918E559131B5A1480199E6DC9B03A533D644D (ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::AddListener(UnityEngine.Events.UnityAction`1<!0>)
inline void UnityEvent_1_AddListener_mF7F87D2B61E38F1FE1C8328F7125F4F129011AB1 (UnityEvent_1_tFB475F569CC8852B004B3F2DE7536E67324C2AF8 * __this, UnityAction_1_t8523D5D21ADA168AED3BD9CFFCED8FF87199DE9D * ___call0, const RuntimeMethod* method)
{
(( void (*) (UnityEvent_1_tFB475F569CC8852B004B3F2DE7536E67324C2AF8 *, UnityAction_1_t8523D5D21ADA168AED3BD9CFFCED8FF87199DE9D *, const RuntimeMethod*))UnityEvent_1_AddListener_mF7F87D2B61E38F1FE1C8328F7125F4F129011AB1_gshared)(__this, ___call0, method);
}
// System.Void UnityEngine.UI.CoroutineTween.ColorTween::AddOnChangedCallback(UnityEngine.Events.UnityAction`1<UnityEngine.Color>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorTween_AddOnChangedCallback_mF516F2C835133EB59CB28895961716360131D82D (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, UnityAction_1_t8523D5D21ADA168AED3BD9CFFCED8FF87199DE9D * ___callback0, const RuntimeMethod* method);
// System.Boolean UnityEngine.UI.CoroutineTween.ColorTween::GetIgnoreTimescale()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool ColorTween_GetIgnoreTimescale_m1F87CC0531F370154DF63095DA34F0F88E1DDAF6_inline (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.UI.CoroutineTween.ColorTween::GetDuration()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float ColorTween_GetDuration_mFE7A52AFDCA53B1CCB79D1E3577037A0E44F17C5_inline (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::.ctor()
inline void UnityEvent_1__ctor_m488AA12DF55CA69BD2FEF7750B745B4C04452553 (UnityEvent_1_tFB475F569CC8852B004B3F2DE7536E67324C2AF8 * __this, const RuntimeMethod* method)
{
(( void (*) (UnityEvent_1_tFB475F569CC8852B004B3F2DE7536E67324C2AF8 *, const RuntimeMethod*))UnityEvent_1__ctor_m488AA12DF55CA69BD2FEF7750B745B4C04452553_gshared)(__this, method);
}
// System.Single UnityEngine.UI.CoroutineTween.FloatTween::get_startValue()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float FloatTween_get_startValue_m90C461E4383568718E362BF3CB14F14D45585B0A_inline (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.CoroutineTween.FloatTween::set_startValue(System.Single)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void FloatTween_set_startValue_m281ACCD10E8DCB7ADED2B25EB093EE5DCFFF57D8_inline (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, float ___value0, const RuntimeMethod* method);
// System.Single UnityEngine.UI.CoroutineTween.FloatTween::get_targetValue()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float FloatTween_get_targetValue_mAC9AD7101F181AA03EEA21EBE047376A27B18DC2_inline (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.CoroutineTween.FloatTween::set_targetValue(System.Single)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void FloatTween_set_targetValue_m948DD0F17FE536F38BFA213D13711B781934165F_inline (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, float ___value0, const RuntimeMethod* method);
// System.Single UnityEngine.UI.CoroutineTween.FloatTween::get_duration()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float FloatTween_get_duration_m17CD4518038CD642D714B3633236133D309EF13B_inline (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.CoroutineTween.FloatTween::set_duration(System.Single)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void FloatTween_set_duration_m81021898C4F8F1F4D434CA46EAC596E0CC0F200B_inline (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, float ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.UI.CoroutineTween.FloatTween::get_ignoreTimeScale()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool FloatTween_get_ignoreTimeScale_m8281CB2B12F1697A512D2E2515F5DA058B429FD0_inline (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.CoroutineTween.FloatTween::set_ignoreTimeScale(System.Boolean)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void FloatTween_set_ignoreTimeScale_mC586D01F34D6C88892AB3C70A3298C4C7C45EA4D_inline (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.UI.CoroutineTween.FloatTween::ValidTarget()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FloatTween_ValidTarget_m7DFE9AC7C8C0EBEF441D80472635CF4F38632E5E (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEvent`1<System.Single>::Invoke(!0)
inline void UnityEvent_1_Invoke_m2B015F1AE7FEA9E2D9E2621E5179AB752B5469CD (UnityEvent_1_t655F4ECDA62E804A34CC8737AC30B836ABD3D2DA * __this, float ___arg00, const RuntimeMethod* method)
{
(( void (*) (UnityEvent_1_t655F4ECDA62E804A34CC8737AC30B836ABD3D2DA *, float, const RuntimeMethod*))UnityEvent_1_Invoke_m2B015F1AE7FEA9E2D9E2621E5179AB752B5469CD_gshared)(__this, ___arg00, method);
}
// System.Void UnityEngine.UI.CoroutineTween.FloatTween::TweenValue(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatTween_TweenValue_m78FEB902E18BE0882BC487BC29B6EA3905E4F05C (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, float ___floatPercentage0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.CoroutineTween.FloatTween/FloatTweenCallback::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatTweenCallback__ctor_mE8AC174FE27E1A12832510D461316FEA939BD2F3 (FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEvent`1<System.Single>::AddListener(UnityEngine.Events.UnityAction`1<!0>)
inline void UnityEvent_1_AddListener_mCCF08CC8634A4987236EA3C100FFCA94A18C7CC8 (UnityEvent_1_t655F4ECDA62E804A34CC8737AC30B836ABD3D2DA * __this, UnityAction_1_t0064196FB7635B812E65BA9FD08D39F68C75DCD9 * ___call0, const RuntimeMethod* method)
{
(( void (*) (UnityEvent_1_t655F4ECDA62E804A34CC8737AC30B836ABD3D2DA *, UnityAction_1_t0064196FB7635B812E65BA9FD08D39F68C75DCD9 *, const RuntimeMethod*))UnityEvent_1_AddListener_mCCF08CC8634A4987236EA3C100FFCA94A18C7CC8_gshared)(__this, ___call0, method);
}
// System.Void UnityEngine.UI.CoroutineTween.FloatTween::AddOnChangedCallback(UnityEngine.Events.UnityAction`1<System.Single>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatTween_AddOnChangedCallback_mADD5FACCDFA9E77C08CA65B8E5D33AE06DB79D50 (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, UnityAction_1_t0064196FB7635B812E65BA9FD08D39F68C75DCD9 * ___callback0, const RuntimeMethod* method);
// System.Boolean UnityEngine.UI.CoroutineTween.FloatTween::GetIgnoreTimescale()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool FloatTween_GetIgnoreTimescale_m8FDD9D59F72DBC2CDEDD71A522ADD6DAD1438BE8_inline (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, const RuntimeMethod* method);
// System.Single UnityEngine.UI.CoroutineTween.FloatTween::GetDuration()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float FloatTween_GetDuration_m1022A6824C91E5C51E1F7FCD27B9D60D6E83EDB7_inline (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEvent`1<System.Single>::.ctor()
inline void UnityEvent_1__ctor_m90CD771D0B50926E7B8624F1E0697F1FF539098D (UnityEvent_1_t655F4ECDA62E804A34CC8737AC30B836ABD3D2DA * __this, const RuntimeMethod* method)
{
(( void (*) (UnityEvent_1_t655F4ECDA62E804A34CC8737AC30B836ABD3D2DA *, const RuntimeMethod*))UnityEvent_1__ctor_m90CD771D0B50926E7B8624F1E0697F1FF539098D_gshared)(__this, method);
}
// UnityEngine.UI.DefaultControls/IFactoryControls UnityEngine.UI.DefaultControls::get_factory()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject* DefaultControls_get_factory_m616056407908402EFF7E24BC02D0A1B0CDED98B2_inline (const RuntimeMethod* method);
// !!0 UnityEngine.GameObject::GetComponent<UnityEngine.RectTransform>()
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
return (( RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mD4382B2843BA9A61A01A8F9D7B9813D060F9C9CA_gshared)(__this, method);
}
// System.Void UnityEngine.UI.DefaultControls::SetParentAndAlign(UnityEngine.GameObject,UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultControls_SetParentAndAlign_m4176E84A699CD8A68747888300DC651B765A512A (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___child0, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___parent1, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Text::AssignDefaultFont()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Text_AssignDefaultFont_m6667512908BFA6FCAF388E44993574590990212A (Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Color::.ctor(System.Single,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Color__ctor_mC9AEEB3931D5B8C37483A884DD8EB40DC8946369 (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * __this, float ___r0, float ___g1, float ___b2, const RuntimeMethod* method);
// System.Void UnityEngine.Transform::SetParent(UnityEngine.Transform,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_SetParent_m268E3814921D90882EFECE244A797264DE2A5E35 (Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * __this, Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___parent0, bool ___worldPositionStays1, const RuntimeMethod* method);
// System.Int32 UnityEngine.GameObject::get_layer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GameObject_get_layer_m0DE90D8A3D3AA80497A3A80FBEAC2D207C16B9C8 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.DefaultControls::SetLayerRecursively(UnityEngine.GameObject,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultControls_SetLayerRecursively_m090900DE7A3FFC976E3DBE9B54C11769EE126BF1 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___go0, int32_t ___layer1, const RuntimeMethod* method);
// System.Void UnityEngine.GameObject::set_layer(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GameObject_set_layer_mDAC8037FCFD0CE62DB66004C4342EA20CF604907 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, int32_t ___value0, const RuntimeMethod* method);
// UnityEngine.Transform UnityEngine.Transform::GetChild(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * Transform_GetChild_mC86B9B61E4EC086A571B09EA7A33FFBF50DF52D3 (Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Int32 UnityEngine.Transform::get_childCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Transform_get_childCount_m7665D779DCDB6B175FB52A254276CDF0C384A724 (Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * __this, const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.UI.DefaultControls::CreateUIElementRoot(System.String,UnityEngine.Vector2,System.Type[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * DefaultControls_CreateUIElementRoot_m6B5271F0FD59538B62BD2A81C972F919A8F2F184 (String_t* ___name0, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___size1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___components2, const RuntimeMethod* method);
// !!0 UnityEngine.GameObject::GetComponent<UnityEngine.UI.Image>()
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
return (( Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mD4382B2843BA9A61A01A8F9D7B9813D060F9C9CA_gshared)(__this, method);
}
// System.Void UnityEngine.UI.Image::set_sprite(UnityEngine.Sprite)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Image_set_sprite_m77F8D681D4EE6D58F4F235AFF704C3EB165A9646 (Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * __this, Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Image::set_type(UnityEngine.UI.Image/Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Image_set_type_mB5B2391926DA2F7326A98B2A847877C6CB8F0E2B (Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * __this, int32_t ___value0, const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.UI.DefaultControls::CreateUIObject(System.String,UnityEngine.GameObject,System.Type[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988 (String_t* ___name0, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___parent1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___components2, const RuntimeMethod* method);
// !!0 UnityEngine.GameObject::GetComponent<UnityEngine.UI.Button>()
inline Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * GameObject_GetComponent_TisButton_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B_m04725F873F765AF3EA906137A60CD58809FE1C80 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
return (( Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mD4382B2843BA9A61A01A8F9D7B9813D060F9C9CA_gshared)(__this, method);
}
// System.Void UnityEngine.UI.DefaultControls::SetDefaultColorTransitionValues(UnityEngine.UI.Selectable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultControls_SetDefaultColorTransitionValues_mA5D98948B9EB25EFC8EB302A63EDA5FC239F9B02 (Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___slider0, const RuntimeMethod* method);
// !!0 UnityEngine.GameObject::GetComponent<UnityEngine.UI.Text>()
inline Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * GameObject_GetComponent_TisText_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_m24A42DAE3900B867697FFD9DFB6E448D6978CD4A (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
return (( Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mD4382B2843BA9A61A01A8F9D7B9813D060F9C9CA_gshared)(__this, method);
}
// System.Void UnityEngine.UI.Text::set_alignment(UnityEngine.TextAnchor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Text_set_alignment_m7C6F240D274640BFBCDAEDACB08684939900CB29 (Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.DefaultControls::SetDefaultTextValues(UnityEngine.UI.Text)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultControls_SetDefaultTextValues_mA1638BD65C2A72207A3E3EA7D1D8A8485D108A1A (Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___lbl0, const RuntimeMethod* method);
// !!0 UnityEngine.GameObject::GetComponent<UnityEngine.UI.Slider>()
inline Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09 * GameObject_GetComponent_TisSlider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09_m688424BCA2C09954B36F15A3C82F17CAECEB91A7 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
return (( Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09 * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mD4382B2843BA9A61A01A8F9D7B9813D060F9C9CA_gshared)(__this, method);
}
// System.Void UnityEngine.UI.Slider::set_fillRect(UnityEngine.RectTransform)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Slider_set_fillRect_m7055CC8682DDB328A754116BDAE0AF6DFFF437AF (Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09 * __this, RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Slider::set_handleRect(UnityEngine.RectTransform)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Slider_set_handleRect_m25A60ED142D621A5243E48AEDE097986FA3B2E10 (Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09 * __this, RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Selectable::set_targetGraphic(UnityEngine.UI.Graphic)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Selectable_set_targetGraphic_m69C71056F05A767EC0D2ED14E80ABCA15B5E2FDE (Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * __this, Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Slider::set_direction(UnityEngine.UI.Slider/Direction)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Slider_set_direction_m804216132A017C3D68832C8941B49B4038B5A72E (Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09 * __this, int32_t ___value0, const RuntimeMethod* method);
// !!0 UnityEngine.GameObject::GetComponent<UnityEngine.UI.Scrollbar>()
inline Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * GameObject_GetComponent_TisScrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389_m100E1B7CD3A739F07F5E190A8C25AE41512BD8A6 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
return (( Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mD4382B2843BA9A61A01A8F9D7B9813D060F9C9CA_gshared)(__this, method);
}
// System.Void UnityEngine.UI.Scrollbar::set_handleRect(UnityEngine.RectTransform)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scrollbar_set_handleRect_mF48210CE73FD1F67BAC1CAD76FA07132FDBA5C40 (Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * __this, RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___value0, const RuntimeMethod* method);
// !!0 UnityEngine.GameObject::GetComponent<UnityEngine.UI.Toggle>()
inline Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * GameObject_GetComponent_TisToggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106_m9F98F777EFF307DC0F6FEA2C006044097874BE11 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
return (( Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mD4382B2843BA9A61A01A8F9D7B9813D060F9C9CA_gshared)(__this, method);
}
// System.Void UnityEngine.UI.Toggle::set_isOn(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Toggle_set_isOn_mCAA660F49688DBA29E896B961E0054154C42EA2B (Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.RectTransform::set_offsetMin(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransform_set_offsetMin_m7455ED64FF16C597E648E022BA768CFDCF4531AC (RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.RectTransform::set_offsetMax(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransform_set_offsetMax_mD55D44AD4740C79B5C2C83C60B0C38BF1090501C (RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method);
// !!0 UnityEngine.GameObject::GetComponent<UnityEngine.UI.InputField>()
inline InputField_t533609195B110760BCFF00B746C87D81969CB005 * GameObject_GetComponent_TisInputField_t533609195B110760BCFF00B746C87D81969CB005_mA51516D144F85CAE471A6A68DF98CFB88FCE87AA (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
return (( InputField_t533609195B110760BCFF00B746C87D81969CB005 * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mD4382B2843BA9A61A01A8F9D7B9813D060F9C9CA_gshared)(__this, method);
}
// System.Void UnityEngine.UI.Text::set_supportRichText(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Text_set_supportRichText_mE34FE6932EE7B93912E760AB30DC5F48DD8F98FB (Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Text::set_fontStyle(UnityEngine.FontStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Text_set_fontStyle_mF63C76D954DB1E7BC689FE3BE02E14FABECAADF1 (Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.InputField::set_textComponent(UnityEngine.UI.Text)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputField_set_textComponent_m6706EFF9E1F112E923041792E86515FB0E9A0661 (InputField_t533609195B110760BCFF00B746C87D81969CB005 * __this, Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.InputField::set_placeholder(UnityEngine.UI.Graphic)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputField_set_placeholder_m1DBBD3A9F82F0660B33CE7B08CE62BD2CCA5E859 (InputField_t533609195B110760BCFF00B746C87D81969CB005 * __this, Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * ___value0, const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.UI.DefaultControls::CreateScrollbar(UnityEngine.UI.DefaultControls/Resources)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * DefaultControls_CreateScrollbar_m876785B77922E7A0918137096FE9CEEC4BBCA1C6 (Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 ___resources0, const RuntimeMethod* method);
// System.Void UnityEngine.Object::set_name(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_set_name_m538711B144CDE30F929376BCF72D0DC8F85D0826 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Scrollbar::SetDirection(UnityEngine.UI.Scrollbar/Direction,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scrollbar_SetDirection_mA9024B104537EDF63AFF1C437A8F0D193CA562F8 (Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * __this, int32_t ___direction0, bool ___includeRectLayouts1, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.Vector2::get_right()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D Vector2_get_right_mB4BD67462D579461853F297C0DE85D81E07E911E (const RuntimeMethod* method);
// System.Void UnityEngine.RectTransform::set_pivot(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransform_set_pivot_mB791A383B3C870B9CBD7BC51B2C95711C88E9DCF (RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.RectTransform::get_sizeDelta()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D RectTransform_get_sizeDelta_mDA0A3E73679143B1B52CE2F9A417F90CB9F3DAFF (RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * __this, const RuntimeMethod* method);
// !!0 UnityEngine.GameObject::GetComponent<UnityEngine.UI.ScrollRect>()
inline ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * GameObject_GetComponent_TisScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51_m86F516439BCE4785DEF4C19316FF222CD6DD91E7 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
return (( ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mD4382B2843BA9A61A01A8F9D7B9813D060F9C9CA_gshared)(__this, method);
}
// System.Void UnityEngine.UI.ScrollRect::set_content(UnityEngine.RectTransform)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ScrollRect_set_content_m1D59059E32D0563BDF511A547978965B2C4F81F7_inline (ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * __this, RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.ScrollRect::set_viewport(UnityEngine.RectTransform)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScrollRect_set_viewport_mBBD71C770D85A0C3B131B919255CEE568EA48506 (ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * __this, RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.ScrollRect::set_horizontal(System.Boolean)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ScrollRect_set_horizontal_m62275F56268C9EF22F5E71F68BC8026779A60B7E_inline (ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.ScrollRect::set_movementType(UnityEngine.UI.ScrollRect/MovementType)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ScrollRect_set_movementType_m2953F8BC5ABFDD067D5DDC54AE15953DBD754942_inline (ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.ScrollRect::set_verticalScrollbar(UnityEngine.UI.Scrollbar)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScrollRect_set_verticalScrollbar_mF02C8BDC24D4FB53A5B25ACFC61B9134BC5ABB61 (ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * __this, Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.ScrollRect::set_verticalScrollbarVisibility(UnityEngine.UI.ScrollRect/ScrollbarVisibility)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScrollRect_set_verticalScrollbarVisibility_m20B34375553122E7EEA5BEEDBFD80E87E18177F6 (ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.ScrollRect::set_verticalScrollbarSpacing(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScrollRect_set_verticalScrollbarSpacing_m782C4FC20B2D4C50D151344F6E501BD03BBBD8B5 (ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * __this, float ___value0, const RuntimeMethod* method);
// !!0 UnityEngine.GameObject::GetComponent<UnityEngine.UI.Mask>()
inline Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB * GameObject_GetComponent_TisMask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB_mC09F1E3135566B979D6505E5F69268E8DDE16D47 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
return (( Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mD4382B2843BA9A61A01A8F9D7B9813D060F9C9CA_gshared)(__this, method);
}
// System.Void UnityEngine.UI.Mask::set_showMaskGraphic(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Mask_set_showMaskGraphic_m26E107B60ECE971C8EC07A92755F3DB5308CF568 (Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB * __this, bool ___value0, const RuntimeMethod* method);
// !!0 UnityEngine.GameObject::GetComponent<UnityEngine.UI.Dropdown>()
inline Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * GameObject_GetComponent_TisDropdown_tF6331401084B1213CAB10587A6EC81461501930F_mCEDADB496C533D2B1022FE5C0B5D68493866A5E2 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
return (( Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mD4382B2843BA9A61A01A8F9D7B9813D060F9C9CA_gshared)(__this, method);
}
// System.Void UnityEngine.UI.Dropdown::set_template(UnityEngine.RectTransform)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_set_template_m2B92A6B03345CAFB7C987C648B6FC075420DF85A (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Dropdown::set_captionText(UnityEngine.UI.Text)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_set_captionText_mFF1957B5BFA13D2295B54A092E863D0F582A3054 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Dropdown::set_itemText(UnityEngine.UI.Text)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_set_itemText_m3FA2FA21BFB8D097F11F642B4061544FE97A250D (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___value0, const RuntimeMethod* method);
// System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/OptionData> UnityEngine.UI.Dropdown::get_options()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * Dropdown_get_options_mE95E87D4EA905E9769CE8AC1CD1D9DB86A34F823 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Dropdown/OptionData::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OptionData__ctor_m45CB705FD6717ECEBDDA3E6F137BCC38C388CA1F (OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Dropdown/OptionData::set_text(System.String)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void OptionData_set_text_mED7FEA5D1C3CB30CD7B8878CE86CE57D8E68C735_inline (OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/OptionData>::Add(!0)
inline void List_1_Add_mE0B46236A82E92B7F76C0F3A94ABBD0F4625A77C (List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * __this, OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 *, OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method);
}
// System.Void UnityEngine.UI.Dropdown::RefreshShownValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_RefreshShownValue_m310DF4ABCFE31C74153AAE3874B40DDF3D6959E1 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method);
// System.Void UnityEngine.GameObject::SetActive(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GameObject_SetActive_m25A39F6D9FB68C51F13313F9804E85ACC937BC04 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, bool ___value0, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.Vector2::get_up()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D Vector2_get_up_mC4548731D5E7C71164D18C390A1AC32501DAE441 (const RuntimeMethod* method);
// System.Void UnityEngine.UI.ScrollRect::set_horizontalScrollbar(UnityEngine.UI.Scrollbar)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScrollRect_set_horizontalScrollbar_mA67D54C0D2CE7E492F6E58190EE00BB1A46BFC3A (ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * __this, Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.ScrollRect::set_horizontalScrollbarVisibility(UnityEngine.UI.ScrollRect/ScrollbarVisibility)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScrollRect_set_horizontalScrollbarVisibility_m2D6DB4D340121E55942254C331B5EA343D0ED082 (ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.ScrollRect::set_horizontalScrollbarSpacing(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScrollRect_set_horizontalScrollbarSpacing_m22675D0F7497561D02FC4171023BD297688D445F (ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * __this, float ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Color::.ctor(System.Single,System.Single,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Color__ctor_m20DF490CEB364C4FC36D7EE392640DF5B7420D7C (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * __this, float ___r0, float ___g1, float ___b2, float ___a3, const RuntimeMethod* method);
// System.Void UnityEngine.GameObject::.ctor(System.String,System.Type[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GameObject__ctor_m20BE06980A232E1D64016957059A9DD834173F68 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, String_t* ___name0, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___components1, const RuntimeMethod* method);
// System.Void UnityEngine.UI.DefaultControls/DefaultRuntimeFactory::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultRuntimeFactory__ctor_mC84BC30364958D9A5EEE040D5D4BE254393809CF (DefaultRuntimeFactory_t220869A7714E77F38D078944261214EF14D509F2 * __this, const RuntimeMethod* method);
// System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/OptionData> UnityEngine.UI.Dropdown/OptionDataList::get_options()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * OptionDataList_get_options_mEA305423DD1C0F201310F97CFD3FD1B89F063ED0_inline (OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Dropdown/OptionDataList::set_options(System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/OptionData>)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void OptionDataList_set_options_m674C45F57F90F85B6E33EF4C05BD0F0E236BF823_inline (OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D * __this, List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Dropdown::Set(System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_Set_mB556E466A427314DC78F38EA38DB4462672B2A49 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, int32_t ___value0, bool ___sendCallback1, const RuntimeMethod* method);
// System.Boolean UnityEngine.Application::get_isPlaying()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Application_get_isPlaying_mF43B519662E7433DD90D883E5AE22EC3CFB65CA5 (const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/OptionData>::get_Count()
inline int32_t List_1_get_Count_m2D6E8205805CC637E4E517EE4EDF52B89D70AB51_inline (List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method);
}
// System.Int32 UnityEngine.Mathf::Clamp(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Mathf_Clamp_mE1EA15D719BF2F632741D42DF96F0BC797A20389 (int32_t ___value0, int32_t ___min1, int32_t ___max2, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEvent`1<System.Int32>::Invoke(!0)
inline void UnityEvent_1_Invoke_mAC9BEEF287D58E79A447A57E28D3679F9B199D70 (UnityEvent_1_t6DD758393B13FC2A58BE44E647D9EBEA4F27D914 * __this, int32_t ___arg00, const RuntimeMethod* method)
{
(( void (*) (UnityEvent_1_t6DD758393B13FC2A58BE44E647D9EBEA4F27D914 *, int32_t, const RuntimeMethod*))UnityEvent_1_Invoke_mAC9BEEF287D58E79A447A57E28D3679F9B199D70_gshared)(__this, ___arg00, method);
}
// System.Void UnityEngine.UI.Dropdown/OptionDataList::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OptionDataList__ctor_m658891495892A98D411AC971EE3EF96C01560F73 (OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Dropdown/DropdownEvent::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DropdownEvent__ctor_m9E61AABA58765E640C5044E5C82574ED362D2875 (DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/DropdownItem>::.ctor()
inline void List_1__ctor_m845B01994938B8BFB0C5DD50966CFAF8986EB7E4 (List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method);
}
// System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>::.ctor()
inline void TweenRunner_1__ctor_mBCECADAAC67B34851BF7AE7F23AAA7BEDD17CDAE (TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF * __this, const RuntimeMethod* method)
{
(( void (*) (TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF *, const RuntimeMethod*))TweenRunner_1__ctor_mBCECADAAC67B34851BF7AE7F23AAA7BEDD17CDAE_gshared)(__this, method);
}
// System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>::Init(UnityEngine.MonoBehaviour)
inline void TweenRunner_1_Init_m36554C1037EC37B2D67A1BDE9B4D2407FE2C7657_inline (TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF * __this, MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429 * ___coroutineContainer0, const RuntimeMethod* method)
{
(( void (*) (TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF *, MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429 *, const RuntimeMethod*))TweenRunner_1_Init_m36554C1037EC37B2D67A1BDE9B4D2407FE2C7657_gshared_inline)(__this, ___coroutineContainer0, method);
}
// UnityEngine.Sprite UnityEngine.UI.Image::get_sprite()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * Image_get_sprite_m642D753672A8CBCEB67950914B44EF34C62DD137_inline (Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Behaviour::set_enabled(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Behaviour_set_enabled_m9755D3B17D7022D23D1E4C618BD9A6B66A5ADC6B (Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.EventSystems.UIBehaviour::Start()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_Start_m9717CD32EA9B3C678EB0D73CCF59C801C5E5207C (UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Dropdown::ImmediateDestroyDropdownList()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_ImmediateDestroyDropdownList_mB3CE7E1B2B95662433A48B5BA20A51755AAE677E (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Selectable::OnDisable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Selectable_OnDisable_m258B5CEC8D2EA2F2FF1225CB76970EF089BF6349 (Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/OptionData>::get_Item(System.Int32)
inline OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * List_1_get_Item_m82892B79752B36DB7663E25E080C6FFAA0C125BD_inline (List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * (*) (List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method);
}
// System.String UnityEngine.UI.Dropdown/OptionData::get_text()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* OptionData_get_text_m3AA3E93AC9264EB140F873BEFF0A6FCB48FB1BFF_inline (OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * __this, const RuntimeMethod* method);
// UnityEngine.Sprite UnityEngine.UI.Dropdown/OptionData::get_image()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * OptionData_get_image_m0BF991D02528EE3C67FE841C3AA87EC1AE7D8E31_inline (OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/OptionData>::AddRange(System.Collections.Generic.IEnumerable`1<!0>)
inline void List_1_AddRange_m7D0134D50AC3C08AD30A14C602366AF88E5B9164 (List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
(( void (*) (List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 *, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m629B40CD4286736C328FA496AAFC388F697CF984_gshared)(__this, ___collection0, method);
}
// !0 System.Collections.Generic.List`1<System.String>::get_Item(System.Int32)
inline String_t* List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_inline (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( String_t* (*) (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method);
}
// System.Void UnityEngine.UI.Dropdown/OptionData::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OptionData__ctor_m8AA4FDEB8771F714C90DF651743B77E0C75DEC00 (OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * __this, String_t* ___text0, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<System.String>::get_Count()
inline int32_t List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_inline (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method);
}
// !0 System.Collections.Generic.List`1<UnityEngine.Sprite>::get_Item(System.Int32)
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * List_1_get_Item_m03F4D33FFA4A999ED58836C70404EDFFA0AF3C21_inline (List_1_tF23BA9E080B0770882049C6DC281D5C589990D67 * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * (*) (List_1_tF23BA9E080B0770882049C6DC281D5C589990D67 *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method);
}
// System.Void UnityEngine.UI.Dropdown/OptionData::.ctor(UnityEngine.Sprite)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OptionData__ctor_m024A52D2CDF4A551D94A861B1D5255D528BC6FF2 (OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * __this, Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___image0, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<UnityEngine.Sprite>::get_Count()
inline int32_t List_1_get_Count_m9345B2AB981B955CA4FB16F0D1EE6CCF01E5115E_inline (List_1_tF23BA9E080B0770882049C6DC281D5C589990D67 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tF23BA9E080B0770882049C6DC281D5C589990D67 *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/OptionData>::Clear()
inline void List_1_Clear_m0F6A2806D11105299DC8E4D83E06D49BAABB8ABE (List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 *, const RuntimeMethod*))List_1_Clear_mC5CFC6C9F3007FC24FE020198265D4B5B0659FFC_gshared)(__this, method);
}
// System.Void UnityEngine.Debug::LogError(System.Object,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogError_m97139CB2EE76D5CD8308C1AD0499A5F163FC7F51 (RuntimeObject * ___message0, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___context1, const RuntimeMethod* method);
// !!0 UnityEngine.Component::GetComponentInChildren<UnityEngine.UI.Toggle>()
inline Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * Component_GetComponentInChildren_TisToggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106_mF1F1602C88EB98A9831EEC9AFCFD142E3EE781AC (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method)
{
return (( Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * (*) (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *, const RuntimeMethod*))Component_GetComponentInChildren_TisRuntimeObject_m06B65DD1CC6DFB48DB4DEE2CC185788D42837D30_gshared)(__this, method);
}
// UnityEngine.RectTransform UnityEngine.UI.Dropdown::get_template()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * Dropdown_get_template_m9C83BB0CFD2BA72F08ACC8B0FA9A274FAD0FC9C4_inline (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method);
// UnityEngine.UI.Text UnityEngine.UI.Dropdown::get_itemText()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * Dropdown_get_itemText_m1AEEFE1ACF751CD3483659F5E5B703239C28C7D5_inline (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.Transform::IsChildOf(UnityEngine.Transform)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Transform_IsChildOf_mCB98BA14F7FB82B6AF6AE961E84C47AE1D99AA80 (Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * __this, Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___parent0, const RuntimeMethod* method);
// UnityEngine.UI.Image UnityEngine.UI.Dropdown::get_itemImage()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * Dropdown_get_itemImage_m3B115ACA023FC279CAE1757FD4AB0DF91242BA50_inline (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method);
// !!0 UnityEngine.GameObject::AddComponent<UnityEngine.UI.Dropdown/DropdownItem>()
inline DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * GameObject_AddComponent_TisDropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46_m3FC7D1DDC3117BA73A6208371C6A4896FF21FC83 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
return (( DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))GameObject_AddComponent_TisRuntimeObject_m80EDFEAC4927F588A7A702F81524EDBFA8603FE2_gshared)(__this, method);
}
// System.Void UnityEngine.UI.Dropdown/DropdownItem::set_text(UnityEngine.UI.Text)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void DropdownItem_set_text_m2F87962E683F7DCF4CCD6CEA4E4E4562E89F939E_inline (DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * __this, Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Dropdown/DropdownItem::set_image(UnityEngine.UI.Image)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void DropdownItem_set_image_mEACD24E324362E50180808DEF29E160E52C81BDC_inline (DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * __this, Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Dropdown/DropdownItem::set_toggle(UnityEngine.UI.Toggle)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void DropdownItem_set_toggle_m4D3247AE384827C5F3C49FFDADECED4A91B3B5CE_inline (DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * __this, Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Dropdown/DropdownItem::set_rectTransform(UnityEngine.RectTransform)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void DropdownItem_set_rectTransform_mEDEAE741CC3B0473F332D9B55B413EA290889240_inline (DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * __this, RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___value0, const RuntimeMethod* method);
// T UnityEngine.UI.Dropdown::GetOrAddComponent<UnityEngine.Canvas>(UnityEngine.GameObject)
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * Dropdown_GetOrAddComponent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_m64A328B1FAA7DE95B776B343E70B913984E4BE3C (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___go0, const RuntimeMethod* method)
{
return (( Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))Dropdown_GetOrAddComponent_TisRuntimeObject_mAEDB727D813C41FFCB6E8556119504E270F2E755_gshared)(___go0, method);
}
// System.Void UnityEngine.Canvas::set_overrideSorting(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Canvas_set_overrideSorting_m446842097ED576AB8706B9980E85AECC24C13015 (Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Canvas::set_sortingOrder(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Canvas_set_sortingOrder_m4387540EBDF2716DFAE26F27074DBF15F32382E7 (Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * __this, int32_t ___value0, const RuntimeMethod* method);
// !!0[] UnityEngine.Component::GetComponents<UnityEngine.EventSystems.BaseRaycaster>()
inline BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6* Component_GetComponents_TisBaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966_mC5D7B6F2AF3B637F8CF0F1DEF4E96FEADB5C6814 (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * __this, const RuntimeMethod* method)
{
return (( BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6* (*) (Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 *, const RuntimeMethod*))Component_GetComponents_TisRuntimeObject_mDC1D023FE07F73E1E8433D1E896D5F1250180C10_gshared)(__this, method);
}
// UnityEngine.Component UnityEngine.GameObject::GetComponent(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * GameObject_GetComponent_mECB756C7EB39F6BB79F8C065AB0013354763B151 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, Type_t * ___type0, const RuntimeMethod* method);
// UnityEngine.Component UnityEngine.GameObject::AddComponent(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * GameObject_AddComponent_m489C9D5426F2050795FA696CD478BB49AAE4BD70 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, Type_t * ___componentType0, const RuntimeMethod* method);
// T UnityEngine.UI.Dropdown::GetOrAddComponent<UnityEngine.UI.GraphicRaycaster>(UnityEngine.GameObject)
inline GraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83 * Dropdown_GetOrAddComponent_TisGraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83_m9B1D258B962FAF4A5D69605ED9910224F26E7294 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___go0, const RuntimeMethod* method)
{
return (( GraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83 * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))Dropdown_GetOrAddComponent_TisRuntimeObject_mAEDB727D813C41FFCB6E8556119504E270F2E755_gshared)(___go0, method);
}
// T UnityEngine.UI.Dropdown::GetOrAddComponent<UnityEngine.CanvasGroup>(UnityEngine.GameObject)
inline CanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90 * Dropdown_GetOrAddComponent_TisCanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90_mC688692DBB92788BACDED774AD6D005B6EC5F838 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___go0, const RuntimeMethod* method)
{
return (( CanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90 * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))Dropdown_GetOrAddComponent_TisRuntimeObject_mAEDB727D813C41FFCB6E8556119504E270F2E755_gshared)(___go0, method);
}
// System.Void UnityEngine.UI.Dropdown::Show()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_Show_m996910C935BA7D778E35EBAA55F1AC7299A0B3D9 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Dropdown::Hide()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_Hide_m396A627BAA21433514959C71BD8B13A31B7B99A8 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method);
// System.Collections.Generic.List`1<T> UnityEngine.UI.ListPool`1<UnityEngine.Canvas>::Get()
inline List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14 * ListPool_1_Get_m569D7CB2B16135A09E11EA59285A1AF81E3FA294 (const RuntimeMethod* method)
{
return (( List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14 * (*) (const RuntimeMethod*))ListPool_1_Get_mEE963F0CFA2D9BE7F593624F2825F9C8E326217D_gshared)(method);
}
// System.Void UnityEngine.GameObject::GetComponentsInParent<UnityEngine.Canvas>(System.Boolean,System.Collections.Generic.List`1<!!0>)
inline void GameObject_GetComponentsInParent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_mB625178DAF7A6B4A9380DCA09EB411F65B24569A (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, bool ___includeInactive0, List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14 * ___results1, const RuntimeMethod* method)
{
(( void (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, bool, List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14 *, const RuntimeMethod*))GameObject_GetComponentsInParent_TisRuntimeObject_m8E934276B44FBF476F4215C21957EB22DD6D6F4E_gshared)(__this, ___includeInactive0, ___results1, method);
}
// System.Int32 System.Collections.Generic.List`1<UnityEngine.Canvas>::get_Count()
inline int32_t List_1_get_Count_mC0AFF39B43A58B72EE46643C311C0292B1272966_inline (List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14 *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method);
}
// !0 System.Collections.Generic.List`1<UnityEngine.Canvas>::get_Item(System.Int32)
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * List_1_get_Item_m5B8C7F9E17F03DAC2C891DFAFEF7BE2F1B4BDFAE_inline (List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14 * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * (*) (List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14 *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method);
}
// System.Void UnityEngine.UI.ListPool`1<UnityEngine.Canvas>::Release(System.Collections.Generic.List`1<T>)
inline void ListPool_1_Release_m6F9B015A45FC521BC50CB2103FD6F7816609F2A3 (List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14 * ___toRelease0, const RuntimeMethod* method)
{
(( void (*) (List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14 *, const RuntimeMethod*))ListPool_1_Release_mA153831D5786A134340D88D3C5C14451A188C6B6_gshared)(___toRelease0, method);
}
// System.Void UnityEngine.UI.Dropdown::SetupTemplate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_SetupTemplate_m3F4C22ABEF75FEC05E3D42D277EF2299A7934E0C (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Canvas::get_sortingLayerID()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Canvas_get_sortingLayerID_mD0EB8964D1C7E68F429F83B5C5AF58426D354C75 (Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Canvas::set_sortingLayerID(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Canvas_set_sortingLayerID_m9FE5A69A22DB3316964C9D5CD49E5B4352550747 (Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * __this, int32_t ___value0, const RuntimeMethod* method);
// !!0 UnityEngine.GameObject::GetComponentInChildren<UnityEngine.UI.Dropdown/DropdownItem>()
inline DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * GameObject_GetComponentInChildren_TisDropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46_m9193A9BC92DC89CED4377A4B8719AB4F79D12E56 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
return (( DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))GameObject_GetComponentInChildren_TisRuntimeObject_mF2869D54987BDCEE9F39FF2F62D1FB1016744718_gshared)(__this, method);
}
// UnityEngine.RectTransform UnityEngine.UI.Dropdown/DropdownItem::get_rectTransform()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * DropdownItem_get_rectTransform_mADBE4D843FE38C832CC1C9CFE03DC4D55B18E897_inline (DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * __this, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.Rect::get_min()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D Rect_get_min_m17345668569CF57C5F1D2B2DADD05DD4220A5950 (Rect_t35B976DE901B5423C11705E156938EA27AB402CE * __this, const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.Transform::get_localPosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Transform_get_localPosition_m812D43318E05BDCB78310EB7308785A13D85EFD8 (Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * __this, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.Vector2::op_Addition(UnityEngine.Vector2,UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D Vector2_op_Addition_m81A4D928B8E399DA3A4E3ACD8937EDFDCB014682 (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___a0, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___b1, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.Rect::get_max()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D Rect_get_max_m3BFB033D741F205FB04EF163A9D5785E7E020756 (Rect_t35B976DE901B5423C11705E156938EA27AB402CE * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/DropdownItem>::Clear()
inline void List_1_Clear_mDBBCE26B5F5EC83363B9BA4E83C11CCBD8731A6B (List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 *, const RuntimeMethod*))List_1_Clear_mC5CFC6C9F3007FC24FE020198265D4B5B0659FFC_gshared)(__this, method);
}
// System.Void UnityEngine.UI.Dropdown/<>c__DisplayClass62_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass62_0__ctor_mE4628B27FE0F4517EFB2699040AFEB957D6A5FA8 (U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.UI.Dropdown::get_value()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Dropdown_get_value_mF388FA389F2A050264AA87E61D4F9AFC41F48873_inline (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method);
// UnityEngine.UI.Dropdown/DropdownItem UnityEngine.UI.Dropdown::AddItem(UnityEngine.UI.Dropdown/OptionData,System.Boolean,UnityEngine.UI.Dropdown/DropdownItem,System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/DropdownItem>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * Dropdown_AddItem_m0E0D9C4C7C73622BC2E7AC785BD4CEA48FE952EF (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * ___data0, bool ___selected1, DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * ___itemTemplate2, List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * ___items3, const RuntimeMethod* method);
// UnityEngine.UI.Toggle UnityEngine.UI.Dropdown/DropdownItem::get_toggle()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * DropdownItem_get_toggle_m6DAC29FD2E711343DBCDF240B3218BD6211886DE_inline (DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityAction`1<System.Boolean>::.ctor(System.Object,System.IntPtr)
inline void UnityAction_1__ctor_mBB2754F539A754A4BA916AF035A54BCEC7A00CA5 (UnityAction_1_tB994D127B02789CE2010397AEF756615E5F84FDC * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (UnityAction_1_tB994D127B02789CE2010397AEF756615E5F84FDC *, RuntimeObject *, intptr_t, const RuntimeMethod*))UnityAction_1__ctor_mBB2754F539A754A4BA916AF035A54BCEC7A00CA5_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.Events.UnityEvent`1<System.Boolean>::AddListener(UnityEngine.Events.UnityAction`1<!0>)
inline void UnityEvent_1_AddListener_m5A6D7B15EFC39EFA12721981E727CBD81E3051AF (UnityEvent_1_tE1EF042798523847EEBB2A12FA37C4003C1B1299 * __this, UnityAction_1_tB994D127B02789CE2010397AEF756615E5F84FDC * ___call0, const RuntimeMethod* method)
{
(( void (*) (UnityEvent_1_tE1EF042798523847EEBB2A12FA37C4003C1B1299 *, UnityAction_1_tB994D127B02789CE2010397AEF756615E5F84FDC *, const RuntimeMethod*))UnityEvent_1_AddListener_m5A6D7B15EFC39EFA12721981E727CBD81E3051AF_gshared)(__this, ___call0, method);
}
// System.Boolean UnityEngine.UI.Toggle::get_isOn()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Toggle_get_isOn_mA34B03BED48C7189F0AB8498F986485B4CD6B44A_inline (Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * __this, const RuntimeMethod* method);
// UnityEngine.UI.Navigation UnityEngine.UI.Selectable::get_navigation()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 Selectable_get_navigation_mE0FE811B11269EFDEE21C98701059F786580FB50_inline (Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Navigation::set_mode(UnityEngine.UI.Navigation/Mode)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Navigation_set_mode_m35D711F016E4F41230C710882696279BA04399D2_inline (Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Navigation::set_selectOnDown(UnityEngine.UI.Selectable)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Navigation_set_selectOnDown_m0EEC959195918EDDBF71B0D640D42BB85061D0A5_inline (Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 * __this, Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Navigation::set_selectOnRight(UnityEngine.UI.Selectable)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Navigation_set_selectOnRight_m3429A471ECA0295B871C161960FB3F8C1D1D3571_inline (Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 * __this, Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Navigation::set_selectOnLeft(UnityEngine.UI.Selectable)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Navigation_set_selectOnLeft_m51D5BC3AE8C05E4233269B961ADA98BB3FBF9D53_inline (Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 * __this, Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Navigation::set_selectOnUp(UnityEngine.UI.Selectable)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Navigation_set_selectOnUp_mB61F72B8B577FB9424150F42EC57767A8F3B4453_inline (Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 * __this, Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Selectable::set_navigation(UnityEngine.UI.Navigation)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Selectable_set_navigation_m9680DCFEEBF25F70A64BF24B5890A429CB389029 (Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * __this, Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 ___value0, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/DropdownItem>::get_Count()
inline int32_t List_1_get_Count_mDC92CDF088A4BBE454D68D038801327048A187E9_inline (List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method);
}
// System.Void UnityEngine.RectTransform::GetWorldCorners(UnityEngine.Vector3[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransform_GetWorldCorners_m073AA4D13C51C5654A5983EE3FE7E2E60F7761B6 (RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * __this, Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___fourCornersArray0, const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.Transform::InverseTransformPoint(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Transform_InverseTransformPoint_mB6E3145F20B531B4A781C194BAC43A8255C96C47 (Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * __this, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position0, const RuntimeMethod* method);
// System.Single UnityEngine.Vector3::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Vector3_get_Item_mC3B9D35C070A91D7CA5C5B47280BD0EA3E148AC6 (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Void UnityEngine.RectTransformUtility::FlipLayoutOnAxis(UnityEngine.RectTransform,System.Int32,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransformUtility_FlipLayoutOnAxis_mFECCA330C80845D0B75829C7DD242688911006AE (RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___rect0, int32_t ___axis1, bool ___keepPositioning2, bool ___recursive3, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/DropdownItem>::get_Item(System.Int32)
inline DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * List_1_get_Item_m82CCD5EC107FD608ACAAE67A6ED50F1076469157_inline (List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * (*) (List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method);
}
// UnityEngine.Vector2 UnityEngine.RectTransform::get_anchoredPosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D RectTransform_get_anchoredPosition_mCB2171DBADBC572F354CCFE3ACA19F9506F97907 (RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * __this, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.RectTransform::get_pivot()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D RectTransform_get_pivot_mA5BEEE2069ACA7C0C717530EED3E7D811D46C463 (RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Dropdown::AlphaFadeList(System.Single,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_AlphaFadeList_m86254B5CBD02903E1D9AF108EB1E86234DCE45E2 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, float ___duration0, float ___start1, float ___end2, const RuntimeMethod* method);
// System.Void UnityEngine.GameObject::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GameObject__ctor_mBB454E679AD9CF0B84D3609A01E6A9753ACF4686 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, String_t* ___name0, const RuntimeMethod* method);
// !!0 UnityEngine.GameObject::AddComponent<UnityEngine.RectTransform>()
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * GameObject_AddComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_mBCFCAB2CB522FEE3E8160D6B53776131804C0B25 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
return (( RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))GameObject_AddComponent_TisRuntimeObject_m80EDFEAC4927F588A7A702F81524EDBFA8603FE2_gshared)(__this, method);
}
// UnityEngine.Vector3 UnityEngine.Vector3::get_one()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Vector3_get_one_mA11B83037CB269C6076CBCF754E24C8F3ACEC2AB (const RuntimeMethod* method);
// !!0 UnityEngine.GameObject::AddComponent<UnityEngine.Canvas>()
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * GameObject_AddComponent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_m474E23A3E8CBCA25DD03C7614EEF1E47AD566618 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
return (( Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))GameObject_AddComponent_TisRuntimeObject_m80EDFEAC4927F588A7A702F81524EDBFA8603FE2_gshared)(__this, method);
}
// !!0 UnityEngine.GameObject::GetComponent<UnityEngine.Canvas>()
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * GameObject_GetComponent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_m5EA55BE80E8E0FB0551D6C16C2BC57A726758C9A (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
return (( Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mD4382B2843BA9A61A01A8F9D7B9813D060F9C9CA_gshared)(__this, method);
}
// System.Int32 UnityEngine.Canvas::get_sortingOrder()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Canvas_get_sortingOrder_mA3FC1159A6594B522A7B682F5792845E2DC7C540 (Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * __this, const RuntimeMethod* method);
// !!0 UnityEngine.GameObject::AddComponent<UnityEngine.UI.Image>()
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * GameObject_AddComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_mD30135D66AFB92E25180A1358319B74A4621D79F (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
return (( Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))GameObject_AddComponent_TisRuntimeObject_m80EDFEAC4927F588A7A702F81524EDBFA8603FE2_gshared)(__this, method);
}
// UnityEngine.Color UnityEngine.Color::get_clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 Color_get_clear_m419239BDAEB3D3C4B4291BF2C6EF09A7D7D81360 (const RuntimeMethod* method);
// !!0 UnityEngine.GameObject::AddComponent<UnityEngine.UI.Button>()
inline Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * GameObject_AddComponent_TisButton_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B_m36473E834D5F26A115FB3A704AC6A86C8C95FD95 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
return (( Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))GameObject_AddComponent_TisRuntimeObject_m80EDFEAC4927F588A7A702F81524EDBFA8603FE2_gshared)(__this, method);
}
// UnityEngine.UI.Button/ButtonClickedEvent UnityEngine.UI.Button::get_onClick()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ButtonClickedEvent_t975D9C903BC4880557ADD7D3ACFB01CB2B3D6DDB * Button_get_onClick_m77E8CA6917881760CC7900930F4C789F3E2F8817_inline (Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityAction::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction__ctor_mEFC4B92529CE83DF72501F92E07EC5598C54BDAC (UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityEvent::AddListener(UnityEngine.Events.UnityAction)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_AddListener_m31973FDDC5BB0B2828AB6EF519EC4FD6563499C9 (UnityEvent_t5C6DDC2FCDF7F5C1808F1DDFBAD27A383F5FE65F * __this, UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * ___call0, const RuntimeMethod* method);
// System.Void UnityEngine.Object::Destroy(UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Destroy_m23B4562495BA35A74266D4372D45368F8C05109A (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___obj0, const RuntimeMethod* method);
// !!0 UnityEngine.Object::Instantiate<UnityEngine.GameObject>(!!0)
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * Object_Instantiate_TisGameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F_mC4AB712D7F18E0991E1542CE53F11385E21E7B90 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___original0, const RuntimeMethod* method)
{
return (( GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))Object_Instantiate_TisRuntimeObject_mFBEB99FAFA7C81868D18C2A17C94AF512CD872EC_gshared)(___original0, method);
}
// !!0 UnityEngine.Object::Instantiate<UnityEngine.UI.Dropdown/DropdownItem>(!!0)
inline DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * Object_Instantiate_TisDropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46_m5063405ACD5422343C447BB6F01EA28525635C50 (DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * ___original0, const RuntimeMethod* method)
{
return (( DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * (*) (DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 *, const RuntimeMethod*))Object_Instantiate_TisRuntimeObject_mFBEB99FAFA7C81868D18C2A17C94AF512CD872EC_gshared)(___original0, method);
}
// UnityEngine.UI.Text UnityEngine.UI.Dropdown/DropdownItem::get_text()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * DropdownItem_get_text_mABB014D2DEE9F6B24515DE71A08EBFA82BB44829_inline (DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * __this, const RuntimeMethod* method);
// UnityEngine.UI.Image UnityEngine.UI.Dropdown/DropdownItem::get_image()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * DropdownItem_get_image_m2879EEFCAB097FBA79BC4DA41ECBA4EBE3CB6185_inline (DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/DropdownItem>::Add(!0)
inline void List_1_Add_m8575648623727491C638FB4E8D7F5E1A1E4863F7 (List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * __this, DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 *, DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method);
}
// !!0 UnityEngine.GameObject::GetComponent<UnityEngine.CanvasGroup>()
inline CanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90 * GameObject_GetComponent_TisCanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90_m1E62EC28BAFB3FD20C659FFCDADD4A12105219E0 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * __this, const RuntimeMethod* method)
{
return (( CanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90 * (*) (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mD4382B2843BA9A61A01A8F9D7B9813D060F9C9CA_gshared)(__this, method);
}
// System.Single UnityEngine.CanvasGroup::get_alpha()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float CanvasGroup_get_alpha_mF6AFB387E643765758F1461369A65F59BA06D26E (CanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90 * __this, const RuntimeMethod* method);
// System.Boolean System.Single::Equals(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Single_Equals_mCDFA927E712FBA83D076864E16C77E39A6E66FE7 (float* __this, float ___obj0, const RuntimeMethod* method);
// System.Void UnityEngine.Events.UnityAction`1<System.Single>::.ctor(System.Object,System.IntPtr)
inline void UnityAction_1__ctor_mDF0761DC432ADAE690B100D381AAEE87CD2C3DCB (UnityAction_1_t0064196FB7635B812E65BA9FD08D39F68C75DCD9 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (UnityAction_1_t0064196FB7635B812E65BA9FD08D39F68C75DCD9 *, RuntimeObject *, intptr_t, const RuntimeMethod*))UnityAction_1__ctor_mDF0761DC432ADAE690B100D381AAEE87CD2C3DCB_gshared)(__this, ___object0, ___method1, method);
}
// System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>::StartTween(T)
inline void TweenRunner_1_StartTween_mCD6A38F2A78EADA8BFD4D710333E6263D32DAEFE (TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF * __this, FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A ___info0, const RuntimeMethod* method)
{
(( void (*) (TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF *, FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A , const RuntimeMethod*))TweenRunner_1_StartTween_mCD6A38F2A78EADA8BFD4D710333E6263D32DAEFE_gshared)(__this, ___info0, method);
}
// System.Void UnityEngine.CanvasGroup::set_alpha(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasGroup_set_alpha_m7E3C4DCD13E6B1FD43C797EFF9698BACA1FBEC3D (CanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90 * __this, float ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Dropdown::AlphaFadeList(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_AlphaFadeList_m7E0D67E3ED4F3578B5850B47E4A6F9CFF19A49BB (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, float ___duration0, float ___alpha1, const RuntimeMethod* method);
// System.Collections.IEnumerator UnityEngine.UI.Dropdown::DelayedDestroyDropdownList(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dropdown_DelayedDestroyDropdownList_m09235010EDBDA0A0341350E1D34BC0BA9A326CBF (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, float ___delay0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Dropdown/<DelayedDestroyDropdownList>d__74::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CDelayedDestroyDropdownListU3Ed__74__ctor_mAD9EFC641FEA13E4B5E4BE5013C1784223CAEC3E (U3CDelayedDestroyDropdownListU3Ed__74_tE1C8F40CDF9DE52D3A9F431CB712B752DE9F6D69 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method);
// System.Void UnityEngine.UI.Dropdown::set_value(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_set_value_m155A45649AB62AC1B7AB10213EA556F22E8E91F3 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_mBA2AF20A35144E0C43CD721A22EAC9FCA15D6550 (const RuntimeMethod* method);
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.EventSystems.AbstractEventData::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AbstractEventData_Reset_mF1DD0330808CADC4720AF29F268500B5B2905489 (AbstractEventData_t636F385820C291DAE25897BCEB4FBCADDA3B75F6 * __this, const RuntimeMethod* method)
{
{
// m_Used = false;
__this->set_m_Used_0((bool)0);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.AbstractEventData::Use()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AbstractEventData_Use_mF5CFA55F6C0995C78C1975842F503F2A321CCB45 (AbstractEventData_t636F385820C291DAE25897BCEB4FBCADDA3B75F6 * __this, const RuntimeMethod* method)
{
{
// m_Used = true;
__this->set_m_Used_0((bool)1);
// }
return;
}
}
// System.Boolean UnityEngine.EventSystems.AbstractEventData::get_used()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AbstractEventData_get_used_m8B10645CCCD75CAE08799E835150E4009D64CDC8 (AbstractEventData_t636F385820C291DAE25897BCEB4FBCADDA3B75F6 * __this, const RuntimeMethod* method)
{
{
// get { return m_Used; }
bool L_0 = __this->get_m_Used_0();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.AbstractEventData::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AbstractEventData__ctor_mE768723F461440691FA9218643BEC7692B816B36 (AbstractEventData_t636F385820C291DAE25897BCEB4FBCADDA3B75F6 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Vector2 UnityEngine.EventSystems.AxisEventData::get_moveVector()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D AxisEventData_get_moveVector_mCB9151FF8AFE8DC43886E715AD4B9932644DC171 (AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * __this, const RuntimeMethod* method)
{
{
// public Vector2 moveVector { get; set; }
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = __this->get_U3CmoveVectorU3Ek__BackingField_2();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.AxisEventData::set_moveVector(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AxisEventData_set_moveVector_m863F26BE1230CBCCA2DEF5651CE0FC8B8F1D45A3 (AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method)
{
{
// public Vector2 moveVector { get; set; }
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = ___value0;
__this->set_U3CmoveVectorU3Ek__BackingField_2(L_0);
return;
}
}
// UnityEngine.EventSystems.MoveDirection UnityEngine.EventSystems.AxisEventData::get_moveDir()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AxisEventData_get_moveDir_mD9CF8343509BAE60C581138D824F9C53659DBBD4 (AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * __this, const RuntimeMethod* method)
{
{
// public MoveDirection moveDir { get; set; }
int32_t L_0 = __this->get_U3CmoveDirU3Ek__BackingField_3();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.AxisEventData::set_moveDir(UnityEngine.EventSystems.MoveDirection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AxisEventData_set_moveDir_m6C647B27688638E9C02A98E47BEC5292C07465EE (AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public MoveDirection moveDir { get; set; }
int32_t L_0 = ___value0;
__this->set_U3CmoveDirU3Ek__BackingField_3(L_0);
return;
}
}
// System.Void UnityEngine.EventSystems.AxisEventData::.ctor(UnityEngine.EventSystems.EventSystem)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AxisEventData__ctor_m9694BD920E181114C1A079141D07BD092E05B27D (AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * __this, EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * ___eventSystem0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AxisEventData__ctor_m9694BD920E181114C1A079141D07BD092E05B27D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// : base(eventSystem)
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_0 = ___eventSystem0;
BaseEventData__ctor_m4A8184F01D2CA8B2DE6BB752F486CF7DEF7A56AE(__this, L_0, /*hidden argument*/NULL);
// moveVector = Vector2.zero;
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_1 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
AxisEventData_set_moveVector_m863F26BE1230CBCCA2DEF5651CE0FC8B8F1D45A3_inline(__this, L_1, /*hidden argument*/NULL);
// moveDir = MoveDirection.None;
AxisEventData_set_moveDir_m6C647B27688638E9C02A98E47BEC5292C07465EE_inline(__this, 4, /*hidden argument*/NULL);
// }
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.EventSystems.BaseEventData::.ctor(UnityEngine.EventSystems.EventSystem)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseEventData__ctor_m4A8184F01D2CA8B2DE6BB752F486CF7DEF7A56AE (BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * __this, EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * ___eventSystem0, const RuntimeMethod* method)
{
{
// public BaseEventData(EventSystem eventSystem)
AbstractEventData__ctor_mE768723F461440691FA9218643BEC7692B816B36(__this, /*hidden argument*/NULL);
// m_EventSystem = eventSystem;
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_0 = ___eventSystem0;
__this->set_m_EventSystem_1(L_0);
// }
return;
}
}
// UnityEngine.EventSystems.BaseInputModule UnityEngine.EventSystems.BaseEventData::get_currentInputModule()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * BaseEventData_get_currentInputModule_m0887B0CB20374A4AA10D4C1B480E305581533512 (BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * __this, const RuntimeMethod* method)
{
{
// get { return m_EventSystem.currentInputModule; }
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_0 = __this->get_m_EventSystem_1();
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_1 = EventSystem_get_currentInputModule_mAA917C940E32ECAC4324D6824A9E0A951F16D891_inline(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// UnityEngine.GameObject UnityEngine.EventSystems.BaseEventData::get_selectedObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * BaseEventData_get_selectedObject_m234C3A09897246D2BF97D43017C9AE476BD91770 (BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * __this, const RuntimeMethod* method)
{
{
// get { return m_EventSystem.currentSelectedGameObject; }
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_0 = __this->get_m_EventSystem_1();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_1 = EventSystem_get_currentSelectedGameObject_mE28E78D268403602DE1FB6F059EE3E9CDB7325A4_inline(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Void UnityEngine.EventSystems.BaseEventData::set_selectedObject(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseEventData_set_selectedObject_m8B7E784D728FE3078625FF45A1B5859E37092A2D (BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___value0, const RuntimeMethod* method)
{
{
// set { m_EventSystem.SetSelectedGameObject(value, this); }
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_0 = __this->get_m_EventSystem_1();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_1 = ___value0;
EventSystem_SetSelectedGameObject_m532EE7D0346462EDBB56E5BCD048CB3BEFB84E3A(L_0, L_1, __this, /*hidden argument*/NULL);
// set { m_EventSystem.SetSelectedGameObject(value, this); }
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String UnityEngine.EventSystems.BaseInput::get_compositionString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BaseInput_get_compositionString_m55FC44652CE283EC56A7E07186F6EF6160B0A122 (BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * __this, const RuntimeMethod* method)
{
{
// get { return Input.compositionString; }
String_t* L_0 = Input_get_compositionString_mA2BEBDED6F15265EDDB37D9E7160FE7580D7617C(/*hidden argument*/NULL);
return L_0;
}
}
// UnityEngine.IMECompositionMode UnityEngine.EventSystems.BaseInput::get_imeCompositionMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseInput_get_imeCompositionMode_mC26A90D1DDE30CEE508412D8F1FEA5AD37671DA8 (BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * __this, const RuntimeMethod* method)
{
{
// get { return Input.imeCompositionMode; }
int32_t L_0 = Input_get_imeCompositionMode_mAE9FA70DAEF3BE429C51FC48001368428FB2CA10(/*hidden argument*/NULL);
return L_0;
}
}
// System.Void UnityEngine.EventSystems.BaseInput::set_imeCompositionMode(UnityEngine.IMECompositionMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInput_set_imeCompositionMode_mC83B4474B044D31D81FF18CD35AE6E9CEC5A6BC3 (BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set { Input.imeCompositionMode = value; }
int32_t L_0 = ___value0;
Input_set_imeCompositionMode_m28AAFBFFD38640C3E0F15809C5D0C165B1EEA9A6(L_0, /*hidden argument*/NULL);
// set { Input.imeCompositionMode = value; }
return;
}
}
// UnityEngine.Vector2 UnityEngine.EventSystems.BaseInput::get_compositionCursorPos()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D BaseInput_get_compositionCursorPos_m08E6856B2A7240E1FEF880323757BDF8A4917046 (BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * __this, const RuntimeMethod* method)
{
{
// get { return Input.compositionCursorPos; }
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = Input_get_compositionCursorPos_mCCF0BB765BC2668E19AD2832DEE7A3D1882777D8(/*hidden argument*/NULL);
return L_0;
}
}
// System.Void UnityEngine.EventSystems.BaseInput::set_compositionCursorPos(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInput_set_compositionCursorPos_m48AAACE26E07BE130D5533F1BAA26741FD8B0F82 (BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method)
{
{
// set { Input.compositionCursorPos = value; }
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = ___value0;
Input_set_compositionCursorPos_m39EB58D705F1E2D30D45480AF918CA098189F326(L_0, /*hidden argument*/NULL);
// set { Input.compositionCursorPos = value; }
return;
}
}
// System.Boolean UnityEngine.EventSystems.BaseInput::get_mousePresent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseInput_get_mousePresent_mFA34ADCAE87E52208D112B46C1F8ABCEC60D585C (BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * __this, const RuntimeMethod* method)
{
{
// get { return Input.mousePresent; }
bool L_0 = Input_get_mousePresent_m84357E5B596CD17272874EF83E2D2F2864580E05(/*hidden argument*/NULL);
return L_0;
}
}
// System.Boolean UnityEngine.EventSystems.BaseInput::GetMouseButtonDown(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseInput_GetMouseButtonDown_m5891841C7252506A8A6BDBD2DAC6A60A234E7CC5 (BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * __this, int32_t ___button0, const RuntimeMethod* method)
{
{
// return Input.GetMouseButtonDown(button);
int32_t L_0 = ___button0;
bool L_1 = Input_GetMouseButtonDown_m5AD76E22AA839706219AD86A4E0BE5276AF8E28A(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Boolean UnityEngine.EventSystems.BaseInput::GetMouseButtonUp(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseInput_GetMouseButtonUp_mEAADD66C40FDBE90A787E6892081B89A816B7768 (BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * __this, int32_t ___button0, const RuntimeMethod* method)
{
{
// return Input.GetMouseButtonUp(button);
int32_t L_0 = ___button0;
bool L_1 = Input_GetMouseButtonUp_m4899272EB31D43EC4A3A1A115843CD3D9AA2C4EC(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Boolean UnityEngine.EventSystems.BaseInput::GetMouseButton(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseInput_GetMouseButton_m2F512EB6088BEB4D69F3FF07115653C4E4E62A77 (BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * __this, int32_t ___button0, const RuntimeMethod* method)
{
{
// return Input.GetMouseButton(button);
int32_t L_0 = ___button0;
bool L_1 = Input_GetMouseButton_m43C68DE93C7D990E875BA53C4DEC9CA6230C8B79(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// UnityEngine.Vector2 UnityEngine.EventSystems.BaseInput::get_mousePosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D BaseInput_get_mousePosition_m020D1FB7D27B45D19303B7B9E05038F2C7DA02ED (BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * __this, const RuntimeMethod* method)
{
{
// get { return MultipleDisplayUtilities.GetMousePositionRelativeToMainDisplayResolution(); }
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = MultipleDisplayUtilities_GetMousePositionRelativeToMainDisplayResolution_m2D3CB08174B28122E201011E77C0A1BE762C948C(/*hidden argument*/NULL);
return L_0;
}
}
// UnityEngine.Vector2 UnityEngine.EventSystems.BaseInput::get_mouseScrollDelta()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D BaseInput_get_mouseScrollDelta_mBF6C6F5DD4C626413DEB5081A34D58C2F178389F (BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * __this, const RuntimeMethod* method)
{
{
// get { return Input.mouseScrollDelta; }
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = Input_get_mouseScrollDelta_m66F785090C429CE7DCDEF09C92CDBDD08FCDE98D(/*hidden argument*/NULL);
return L_0;
}
}
// System.Boolean UnityEngine.EventSystems.BaseInput::get_touchSupported()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseInput_get_touchSupported_mDDDA5078A3F2B0E8B3B5181C9B8DC4D10C9B57D9 (BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * __this, const RuntimeMethod* method)
{
{
// get { return Input.touchSupported; }
bool L_0 = Input_get_touchSupported_m59811A353627249C934E8FF7A6F3C4A7883978E9(/*hidden argument*/NULL);
return L_0;
}
}
// System.Int32 UnityEngine.EventSystems.BaseInput::get_touchCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseInput_get_touchCount_m81840E0A652F5C646D18F6E0E13B4D6D4319435F (BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * __this, const RuntimeMethod* method)
{
{
// get { return Input.touchCount; }
int32_t L_0 = Input_get_touchCount_m497E19AA4FA22DB659F631B20FAEF65572D1B44E(/*hidden argument*/NULL);
return L_0;
}
}
// UnityEngine.Touch UnityEngine.EventSystems.BaseInput::GetTouch(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 BaseInput_GetTouch_m156C4B5ADC8DE91BADE25D16422FDBB1B7B052A5 (BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
// return Input.GetTouch(index);
int32_t L_0 = ___index0;
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 L_1 = Input_GetTouch_m8082D8EE3A187488373CE6AC66A70B0AAD7CC23F(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Single UnityEngine.EventSystems.BaseInput::GetAxisRaw(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float BaseInput_GetAxisRaw_mB6FE3749F8E040C6C86EDBBB8F0DC9E9B8A3D5B8 (BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * __this, String_t* ___axisName0, const RuntimeMethod* method)
{
{
// return Input.GetAxisRaw(axisName);
String_t* L_0 = ___axisName0;
float L_1 = Input_GetAxisRaw_mC68301A9D93702F0C393E45C6337348062EACE21(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Boolean UnityEngine.EventSystems.BaseInput::GetButtonDown(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseInput_GetButtonDown_m3EBF9A26EF50036386640FE5089DAB8EFF7B48BA (BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * __this, String_t* ___buttonName0, const RuntimeMethod* method)
{
{
// return Input.GetButtonDown(buttonName);
String_t* L_0 = ___buttonName0;
bool L_1 = Input_GetButtonDown_m1E80BAC5CCBE9E0151491B8F8F5FFD6AB050BBF0(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Void UnityEngine.EventSystems.BaseInput::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInput__ctor_m33F85C42EA9300A022A8328A83D1CB9FCEC6F042 (BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * __this, const RuntimeMethod* method)
{
{
UIBehaviour__ctor_m1B44EE4BDA3604F96C48379524B9907FEB15EB53(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.EventSystems.BaseInput UnityEngine.EventSystems.BaseInputModule::get_input()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7 (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
BaseInputU5BU5D_t8D390CDD3C58D992EDA010E5AF94B42F4C73E6E3* V_0 = NULL;
int32_t V_1 = 0;
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * V_2 = NULL;
{
// if (m_InputOverride != null)
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_0 = __this->get_m_InputOverride_8();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0015;
}
}
{
// return m_InputOverride;
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_2 = __this->get_m_InputOverride_8();
return L_2;
}
IL_0015:
{
// if (m_DefaultInput == null)
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_3 = __this->get_m_DefaultInput_9();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_4 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_3, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0084;
}
}
{
// var inputs = GetComponents<BaseInput>();
BaseInputU5BU5D_t8D390CDD3C58D992EDA010E5AF94B42F4C73E6E3* L_5 = Component_GetComponents_TisBaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82_m6F23E3795BE7E17A40BCA0064E9BFA4892670874(__this, /*hidden argument*/Component_GetComponents_TisBaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82_m6F23E3795BE7E17A40BCA0064E9BFA4892670874_RuntimeMethod_var);
// foreach (var baseInput in inputs)
V_0 = L_5;
V_1 = 0;
goto IL_005f;
}
IL_002e:
{
// foreach (var baseInput in inputs)
BaseInputU5BU5D_t8D390CDD3C58D992EDA010E5AF94B42F4C73E6E3* L_6 = V_0;
int32_t L_7 = V_1;
int32_t L_8 = L_7;
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_9 = (L_6)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_8));
V_2 = L_9;
// if (baseInput != null && baseInput.GetType() == typeof(BaseInput))
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_10 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_11 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_10, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_005b;
}
}
{
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_12 = V_2;
Type_t * L_13 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_12, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_14, /*hidden argument*/NULL);
bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_13, L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_005b;
}
}
{
// m_DefaultInput = baseInput;
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_17 = V_2;
__this->set_m_DefaultInput_9(L_17);
// break;
goto IL_0065;
}
IL_005b:
{
int32_t L_18 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1));
}
IL_005f:
{
// foreach (var baseInput in inputs)
int32_t L_19 = V_1;
BaseInputU5BU5D_t8D390CDD3C58D992EDA010E5AF94B42F4C73E6E3* L_20 = V_0;
if ((((int32_t)L_19) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length)))))))
{
goto IL_002e;
}
}
IL_0065:
{
// if (m_DefaultInput == null)
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_21 = __this->get_m_DefaultInput_9();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_22 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_21, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_0084;
}
}
{
// m_DefaultInput = gameObject.AddComponent<BaseInput>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_23 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(__this, /*hidden argument*/NULL);
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_24 = GameObject_AddComponent_TisBaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82_m1712CB24202FFDF87FC820B58224D773637E860A(L_23, /*hidden argument*/GameObject_AddComponent_TisBaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82_m1712CB24202FFDF87FC820B58224D773637E860A_RuntimeMethod_var);
__this->set_m_DefaultInput_9(L_24);
}
IL_0084:
{
// return m_DefaultInput;
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_25 = __this->get_m_DefaultInput_9();
return L_25;
}
}
// UnityEngine.EventSystems.BaseInput UnityEngine.EventSystems.BaseInputModule::get_inputOverride()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * BaseInputModule_get_inputOverride_m3C63C410A33009ACB7EAFB776066F734110391B8 (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * __this, const RuntimeMethod* method)
{
{
// get { return m_InputOverride; }
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_0 = __this->get_m_InputOverride_8();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.BaseInputModule::set_inputOverride(UnityEngine.EventSystems.BaseInput)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule_set_inputOverride_mE88337B26EC069A3866174887FF59B1CD5C7EB85 (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * __this, BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * ___value0, const RuntimeMethod* method)
{
{
// set { m_InputOverride = value; }
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_0 = ___value0;
__this->set_m_InputOverride_8(L_0);
// set { m_InputOverride = value; }
return;
}
}
// UnityEngine.EventSystems.EventSystem UnityEngine.EventSystems.BaseInputModule::get_eventSystem()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * __this, const RuntimeMethod* method)
{
{
// get { return m_EventSystem; }
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_0 = __this->get_m_EventSystem_6();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.BaseInputModule::OnEnable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule_OnEnable_mD8CAA2DE8AEC7907D84C40DEA7A0A83A8C530D5E (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BaseInputModule_OnEnable_mD8CAA2DE8AEC7907D84C40DEA7A0A83A8C530D5E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// base.OnEnable();
UIBehaviour_OnEnable_m4FF74AADA5E101F59DC5C19DCA82110F7482CB56(__this, /*hidden argument*/NULL);
// m_EventSystem = GetComponent<EventSystem>();
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_0 = Component_GetComponent_TisEventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_m72CF57F3AD96E6CADECF5DDE79D3592A4D5E09A7(__this, /*hidden argument*/Component_GetComponent_TisEventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_m72CF57F3AD96E6CADECF5DDE79D3592A4D5E09A7_RuntimeMethod_var);
__this->set_m_EventSystem_6(L_0);
// m_EventSystem.UpdateModules();
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_1 = __this->get_m_EventSystem_6();
EventSystem_UpdateModules_m9E90C6FD7A4202BD6E4801C6AF109D859167FE8A(L_1, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.BaseInputModule::OnDisable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule_OnDisable_m22FEF0A66345808B69CDDCFE47E506645EB1013C (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * __this, const RuntimeMethod* method)
{
{
// m_EventSystem.UpdateModules();
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_0 = __this->get_m_EventSystem_6();
EventSystem_UpdateModules_m9E90C6FD7A4202BD6E4801C6AF109D859167FE8A(L_0, /*hidden argument*/NULL);
// base.OnDisable();
UIBehaviour_OnDisable_m43F5502A18FCFFD355381A95175DC71E0D4005EC(__this, /*hidden argument*/NULL);
// }
return;
}
}
// UnityEngine.EventSystems.RaycastResult UnityEngine.EventSystems.BaseInputModule::FindFirstRaycast(System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 BaseInputModule_FindFirstRaycast_m4ABCD1BCF871A87518D47C906B8F63154B6BF275 (List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * ___candidates0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BaseInputModule_FindFirstRaycast_m4ABCD1BCF871A87518D47C906B8F63154B6BF275_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 V_1;
memset((&V_1), 0, sizeof(V_1));
{
// for (var i = 0; i < candidates.Count; ++i)
V_0 = 0;
goto IL_0027;
}
IL_0004:
{
// if (candidates[i].gameObject == null)
List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * L_0 = ___candidates0;
int32_t L_1 = V_0;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_2 = List_1_get_Item_m2A56C2A02EB54A7A40292117D706176EB29A9CF6_inline(L_0, L_1, /*hidden argument*/List_1_get_Item_m2A56C2A02EB54A7A40292117D706176EB29A9CF6_RuntimeMethod_var);
V_1 = L_2;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_3 = RaycastResult_get_gameObject_m9D77DEDFF498BAFE29A5F88E9F238400D04C8FDD_inline((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)(&V_1), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_4 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_3, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (L_4)
{
goto IL_0023;
}
}
{
// return candidates[i];
List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * L_5 = ___candidates0;
int32_t L_6 = V_0;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_7 = List_1_get_Item_m2A56C2A02EB54A7A40292117D706176EB29A9CF6_inline(L_5, L_6, /*hidden argument*/List_1_get_Item_m2A56C2A02EB54A7A40292117D706176EB29A9CF6_RuntimeMethod_var);
return L_7;
}
IL_0023:
{
// for (var i = 0; i < candidates.Count; ++i)
int32_t L_8 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0027:
{
// for (var i = 0; i < candidates.Count; ++i)
int32_t L_9 = V_0;
List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * L_10 = ___candidates0;
int32_t L_11 = List_1_get_Count_m3CE6A18703ABFF7312511F654475662716BF8F51_inline(L_10, /*hidden argument*/List_1_get_Count_m3CE6A18703ABFF7312511F654475662716BF8F51_RuntimeMethod_var);
if ((((int32_t)L_9) < ((int32_t)L_11)))
{
goto IL_0004;
}
}
{
// return new RaycastResult();
il2cpp_codegen_initobj((&V_1), sizeof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ));
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_12 = V_1;
return L_12;
}
}
// UnityEngine.EventSystems.MoveDirection UnityEngine.EventSystems.BaseInputModule::DetermineMoveDirection(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseInputModule_DetermineMoveDirection_mF99EA376D26F543AF0C3B10CC67AB9493054AA53 (float ___x0, float ___y1, const RuntimeMethod* method)
{
{
// return DetermineMoveDirection(x, y, 0.6f);
float L_0 = ___x0;
float L_1 = ___y1;
int32_t L_2 = BaseInputModule_DetermineMoveDirection_mC1D1D145996C9A384D865FAE4B02FDF9D106EA52(L_0, L_1, (0.6f), /*hidden argument*/NULL);
return L_2;
}
}
// UnityEngine.EventSystems.MoveDirection UnityEngine.EventSystems.BaseInputModule::DetermineMoveDirection(System.Single,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseInputModule_DetermineMoveDirection_mC1D1D145996C9A384D865FAE4B02FDF9D106EA52 (float ___x0, float ___y1, float ___deadZone2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BaseInputModule_DetermineMoveDirection_mC1D1D145996C9A384D865FAE4B02FDF9D106EA52_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_0;
memset((&V_0), 0, sizeof(V_0));
{
// if (new Vector2(x, y).sqrMagnitude < deadZone * deadZone)
float L_0 = ___x0;
float L_1 = ___y1;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_2;
memset((&L_2), 0, sizeof(L_2));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_2), L_0, L_1, /*hidden argument*/NULL);
V_0 = L_2;
float L_3 = Vector2_get_sqrMagnitude_mAEE10A8ECE7D5754E10727BA8C9068A759AD7002((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&V_0), /*hidden argument*/NULL);
float L_4 = ___deadZone2;
float L_5 = ___deadZone2;
if ((!(((float)L_3) < ((float)((float)il2cpp_codegen_multiply((float)L_4, (float)L_5))))))
{
goto IL_0016;
}
}
{
// return MoveDirection.None;
return (int32_t)(4);
}
IL_0016:
{
// if (Mathf.Abs(x) > Mathf.Abs(y))
float L_6 = ___x0;
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_7 = fabsf(L_6);
float L_8 = ___y1;
float L_9 = fabsf(L_8);
if ((!(((float)L_7) > ((float)L_9))))
{
goto IL_0030;
}
}
{
// if (x > 0)
float L_10 = ___x0;
if ((!(((float)L_10) > ((float)(0.0f)))))
{
goto IL_002e;
}
}
{
// return MoveDirection.Right;
return (int32_t)(2);
}
IL_002e:
{
// return MoveDirection.Left;
return (int32_t)(0);
}
IL_0030:
{
// if (y > 0)
float L_11 = ___y1;
if ((!(((float)L_11) > ((float)(0.0f)))))
{
goto IL_003a;
}
}
{
// return MoveDirection.Up;
return (int32_t)(1);
}
IL_003a:
{
// return MoveDirection.Down;
return (int32_t)(3);
}
}
// UnityEngine.GameObject UnityEngine.EventSystems.BaseInputModule::FindCommonRoot(UnityEngine.GameObject,UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * BaseInputModule_FindCommonRoot_m1995190ADC1341F180811C5213F1CA522B6282A5 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___g10, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___g21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BaseInputModule_FindCommonRoot_m1995190ADC1341F180811C5213F1CA522B6282A5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * V_0 = NULL;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * V_1 = NULL;
{
// if (g1 == null || g2 == null)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___g10;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0012;
}
}
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_2 = ___g21;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_3 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_2, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0014;
}
}
IL_0012:
{
// return null;
return (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL;
}
IL_0014:
{
// var t1 = g1.transform;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_4 = ___g10;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_5 = GameObject_get_transform_mA5C38857137F137CB96C69FAA624199EB1C2FB2C(L_4, /*hidden argument*/NULL);
V_0 = L_5;
goto IL_004d;
}
IL_001d:
{
// var t2 = g2.transform;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_6 = ___g21;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_7 = GameObject_get_transform_mA5C38857137F137CB96C69FAA624199EB1C2FB2C(L_6, /*hidden argument*/NULL);
V_1 = L_7;
goto IL_003d;
}
IL_0026:
{
// if (t1 == t2)
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_8 = V_0;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_9 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_10 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_8, L_9, /*hidden argument*/NULL);
if (!L_10)
{
goto IL_0036;
}
}
{
// return t1.gameObject;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_11 = V_0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_12 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(L_11, /*hidden argument*/NULL);
return L_12;
}
IL_0036:
{
// t2 = t2.parent;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_13 = V_1;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_14 = Transform_get_parent_m8FA24E38A1FA29D90CBF3CDC9F9F017C65BB3403(L_13, /*hidden argument*/NULL);
V_1 = L_14;
}
IL_003d:
{
// while (t2 != null)
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_15 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_16 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_15, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (L_16)
{
goto IL_0026;
}
}
{
// t1 = t1.parent;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_17 = V_0;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_18 = Transform_get_parent_m8FA24E38A1FA29D90CBF3CDC9F9F017C65BB3403(L_17, /*hidden argument*/NULL);
V_0 = L_18;
}
IL_004d:
{
// while (t1 != null)
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_19 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_20 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_19, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (L_20)
{
goto IL_001d;
}
}
{
// return null;
return (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL;
}
}
// System.Void UnityEngine.EventSystems.BaseInputModule::HandlePointerExitAndEnter(UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule_HandlePointerExitAndEnter_mD32C0E209A19F78D07D964D162188D13762463BF (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___currentPointerData0, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___newEnterTarget1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BaseInputModule_HandlePointerExitAndEnter_mD32C0E209A19F78D07D964D162188D13762463BF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_0 = NULL;
int32_t V_1 = 0;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * V_2 = NULL;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * V_3 = NULL;
{
// if (newEnterTarget == null || currentPointerData.pointerEnter == null)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___newEnterTarget1;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0017;
}
}
{
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_2 = ___currentPointerData0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_3 = PointerEventData_get_pointerEnter_m47E87ACB1557B6380D0E66F57C2F9FFFD5E86DC2_inline(L_2, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_4 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_3, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0061;
}
}
IL_0017:
{
// for (var i = 0; i < currentPointerData.hovered.Count; ++i)
V_1 = 0;
goto IL_0037;
}
IL_001b:
{
// ExecuteEvents.Execute(currentPointerData.hovered[i], currentPointerData, ExecuteEvents.pointerExitHandler);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_5 = ___currentPointerData0;
List_1_t3D4152882C54B77C712688E910390D5C8E030463 * L_6 = L_5->get_hovered_9();
int32_t L_7 = V_1;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_8 = List_1_get_Item_mF3CFF4FB71CEEDC038A8826D6AE1A226B7CF22A6_inline(L_6, L_7, /*hidden argument*/List_1_get_Item_mF3CFF4FB71CEEDC038A8826D6AE1A226B7CF22A6_RuntimeMethod_var);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_9 = ___currentPointerData0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA * L_10 = ExecuteEvents_get_pointerExitHandler_mE5EC9537676A055EEE178A4E6B58D96F9B4AC301_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisIPointerExitHandler_t5D65A773A15D990BC231F7C9FE221AB4417327FF_m8444DB648260AACF886B84ADCB4F43871EFA8B4E(L_8, L_9, L_10, /*hidden argument*/ExecuteEvents_Execute_TisIPointerExitHandler_t5D65A773A15D990BC231F7C9FE221AB4417327FF_m8444DB648260AACF886B84ADCB4F43871EFA8B4E_RuntimeMethod_var);
// for (var i = 0; i < currentPointerData.hovered.Count; ++i)
int32_t L_11 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1));
}
IL_0037:
{
// for (var i = 0; i < currentPointerData.hovered.Count; ++i)
int32_t L_12 = V_1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_13 = ___currentPointerData0;
List_1_t3D4152882C54B77C712688E910390D5C8E030463 * L_14 = L_13->get_hovered_9();
int32_t L_15 = List_1_get_Count_mA61C8F11E4F47F828FC3E31E04C25BF06F23B2A4_inline(L_14, /*hidden argument*/List_1_get_Count_mA61C8F11E4F47F828FC3E31E04C25BF06F23B2A4_RuntimeMethod_var);
if ((((int32_t)L_12) < ((int32_t)L_15)))
{
goto IL_001b;
}
}
{
// currentPointerData.hovered.Clear();
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_16 = ___currentPointerData0;
List_1_t3D4152882C54B77C712688E910390D5C8E030463 * L_17 = L_16->get_hovered_9();
List_1_Clear_m328812EE6BE89C6594EFCA34543A2F011D1452C8(L_17, /*hidden argument*/List_1_Clear_m328812EE6BE89C6594EFCA34543A2F011D1452C8_RuntimeMethod_var);
// if (newEnterTarget == null)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_18 = ___newEnterTarget1;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_19 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_18, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_0061;
}
}
{
// currentPointerData.pointerEnter = null;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_20 = ___currentPointerData0;
PointerEventData_set_pointerEnter_mCA947226697EEC596FD611B31C10D7CE981026CC_inline(L_20, (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL, /*hidden argument*/NULL);
// return;
return;
}
IL_0061:
{
// if (currentPointerData.pointerEnter == newEnterTarget && newEnterTarget)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_21 = ___currentPointerData0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_22 = PointerEventData_get_pointerEnter_m47E87ACB1557B6380D0E66F57C2F9FFFD5E86DC2_inline(L_21, /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_23 = ___newEnterTarget1;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_24 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_22, L_23, /*hidden argument*/NULL);
if (!L_24)
{
goto IL_0078;
}
}
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_25 = ___newEnterTarget1;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_26 = Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534(L_25, /*hidden argument*/NULL);
if (!L_26)
{
goto IL_0078;
}
}
{
// return;
return;
}
IL_0078:
{
// GameObject commonRoot = FindCommonRoot(currentPointerData.pointerEnter, newEnterTarget);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_27 = ___currentPointerData0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_28 = PointerEventData_get_pointerEnter_m47E87ACB1557B6380D0E66F57C2F9FFFD5E86DC2_inline(L_27, /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_29 = ___newEnterTarget1;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_30 = BaseInputModule_FindCommonRoot_m1995190ADC1341F180811C5213F1CA522B6282A5(L_28, L_29, /*hidden argument*/NULL);
V_0 = L_30;
// if (currentPointerData.pointerEnter != null)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_31 = ___currentPointerData0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_32 = PointerEventData_get_pointerEnter_m47E87ACB1557B6380D0E66F57C2F9FFFD5E86DC2_inline(L_31, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_33 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_32, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_33)
{
goto IL_00ec;
}
}
{
// Transform t = currentPointerData.pointerEnter.transform;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_34 = ___currentPointerData0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_35 = PointerEventData_get_pointerEnter_m47E87ACB1557B6380D0E66F57C2F9FFFD5E86DC2_inline(L_34, /*hidden argument*/NULL);
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_36 = GameObject_get_transform_mA5C38857137F137CB96C69FAA624199EB1C2FB2C(L_35, /*hidden argument*/NULL);
V_2 = L_36;
goto IL_00e3;
}
IL_00a1:
{
// if (commonRoot != null && commonRoot.transform == t)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_37 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_38 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_37, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_38)
{
goto IL_00b8;
}
}
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_39 = V_0;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_40 = GameObject_get_transform_mA5C38857137F137CB96C69FAA624199EB1C2FB2C(L_39, /*hidden argument*/NULL);
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_41 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_42 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_40, L_41, /*hidden argument*/NULL);
if (L_42)
{
goto IL_00ec;
}
}
IL_00b8:
{
// ExecuteEvents.Execute(t.gameObject, currentPointerData, ExecuteEvents.pointerExitHandler);
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_43 = V_2;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_44 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(L_43, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_45 = ___currentPointerData0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA * L_46 = ExecuteEvents_get_pointerExitHandler_mE5EC9537676A055EEE178A4E6B58D96F9B4AC301_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisIPointerExitHandler_t5D65A773A15D990BC231F7C9FE221AB4417327FF_m8444DB648260AACF886B84ADCB4F43871EFA8B4E(L_44, L_45, L_46, /*hidden argument*/ExecuteEvents_Execute_TisIPointerExitHandler_t5D65A773A15D990BC231F7C9FE221AB4417327FF_m8444DB648260AACF886B84ADCB4F43871EFA8B4E_RuntimeMethod_var);
// currentPointerData.hovered.Remove(t.gameObject);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_47 = ___currentPointerData0;
List_1_t3D4152882C54B77C712688E910390D5C8E030463 * L_48 = L_47->get_hovered_9();
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_49 = V_2;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_50 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(L_49, /*hidden argument*/NULL);
List_1_Remove_m808D4519EDCDCA2258E80F2B86286A2C2CCBEA3B(L_48, L_50, /*hidden argument*/List_1_Remove_m808D4519EDCDCA2258E80F2B86286A2C2CCBEA3B_RuntimeMethod_var);
// t = t.parent;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_51 = V_2;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_52 = Transform_get_parent_m8FA24E38A1FA29D90CBF3CDC9F9F017C65BB3403(L_51, /*hidden argument*/NULL);
V_2 = L_52;
}
IL_00e3:
{
// while (t != null)
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_53 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_54 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_53, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (L_54)
{
goto IL_00a1;
}
}
IL_00ec:
{
// currentPointerData.pointerEnter = newEnterTarget;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_55 = ___currentPointerData0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_56 = ___newEnterTarget1;
PointerEventData_set_pointerEnter_mCA947226697EEC596FD611B31C10D7CE981026CC_inline(L_55, L_56, /*hidden argument*/NULL);
// if (newEnterTarget != null)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_57 = ___newEnterTarget1;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_58 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_57, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_58)
{
goto IL_0146;
}
}
{
// Transform t = newEnterTarget.transform;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_59 = ___newEnterTarget1;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_60 = GameObject_get_transform_mA5C38857137F137CB96C69FAA624199EB1C2FB2C(L_59, /*hidden argument*/NULL);
V_3 = L_60;
goto IL_012f;
}
IL_0105:
{
// ExecuteEvents.Execute(t.gameObject, currentPointerData, ExecuteEvents.pointerEnterHandler);
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_61 = V_3;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_62 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(L_61, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_63 = ___currentPointerData0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 * L_64 = ExecuteEvents_get_pointerEnterHandler_mFD5296E38EB1C5EB6D16CB83913430FEEBF889A5_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisIPointerEnterHandler_tD4E3109B19B18A39FE89A2386C453D3F5019026B_m37CC44F6AF7FA4A3448507B54778B986B83C1A88(L_62, L_63, L_64, /*hidden argument*/ExecuteEvents_Execute_TisIPointerEnterHandler_tD4E3109B19B18A39FE89A2386C453D3F5019026B_m37CC44F6AF7FA4A3448507B54778B986B83C1A88_RuntimeMethod_var);
// currentPointerData.hovered.Add(t.gameObject);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_65 = ___currentPointerData0;
List_1_t3D4152882C54B77C712688E910390D5C8E030463 * L_66 = L_65->get_hovered_9();
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_67 = V_3;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_68 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(L_67, /*hidden argument*/NULL);
List_1_Add_mB466FEDA88AB72CA7331450A36E50D916A6C3BB6(L_66, L_68, /*hidden argument*/List_1_Add_mB466FEDA88AB72CA7331450A36E50D916A6C3BB6_RuntimeMethod_var);
// t = t.parent;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_69 = V_3;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_70 = Transform_get_parent_m8FA24E38A1FA29D90CBF3CDC9F9F017C65BB3403(L_69, /*hidden argument*/NULL);
V_3 = L_70;
}
IL_012f:
{
// while (t != null && t.gameObject != commonRoot)
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_71 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_72 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_71, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_72)
{
goto IL_0146;
}
}
{
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_73 = V_3;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_74 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(L_73, /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_75 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_76 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_74, L_75, /*hidden argument*/NULL);
if (L_76)
{
goto IL_0105;
}
}
IL_0146:
{
// }
return;
}
}
// UnityEngine.EventSystems.AxisEventData UnityEngine.EventSystems.BaseInputModule::GetAxisEventData(System.Single,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * BaseInputModule_GetAxisEventData_m920ACD6398A0B3FD82E6990DF89B2A50DEE25990 (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * __this, float ___x0, float ___y1, float ___moveDeadZone2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BaseInputModule_GetAxisEventData_m920ACD6398A0B3FD82E6990DF89B2A50DEE25990_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (m_AxisEventData == null)
AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * L_0 = __this->get_m_AxisEventData_5();
if (L_0)
{
goto IL_0019;
}
}
{
// m_AxisEventData = new AxisEventData(eventSystem);
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_1 = BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline(__this, /*hidden argument*/NULL);
AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * L_2 = (AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 *)il2cpp_codegen_object_new(AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442_il2cpp_TypeInfo_var);
AxisEventData__ctor_m9694BD920E181114C1A079141D07BD092E05B27D(L_2, L_1, /*hidden argument*/NULL);
__this->set_m_AxisEventData_5(L_2);
}
IL_0019:
{
// m_AxisEventData.Reset();
AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * L_3 = __this->get_m_AxisEventData_5();
VirtActionInvoker0::Invoke(4 /* System.Void UnityEngine.EventSystems.AbstractEventData::Reset() */, L_3);
// m_AxisEventData.moveVector = new Vector2(x, y);
AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * L_4 = __this->get_m_AxisEventData_5();
float L_5 = ___x0;
float L_6 = ___y1;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_7;
memset((&L_7), 0, sizeof(L_7));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_7), L_5, L_6, /*hidden argument*/NULL);
AxisEventData_set_moveVector_m863F26BE1230CBCCA2DEF5651CE0FC8B8F1D45A3_inline(L_4, L_7, /*hidden argument*/NULL);
// m_AxisEventData.moveDir = DetermineMoveDirection(x, y, moveDeadZone);
AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * L_8 = __this->get_m_AxisEventData_5();
float L_9 = ___x0;
float L_10 = ___y1;
float L_11 = ___moveDeadZone2;
int32_t L_12 = BaseInputModule_DetermineMoveDirection_mC1D1D145996C9A384D865FAE4B02FDF9D106EA52(L_9, L_10, L_11, /*hidden argument*/NULL);
AxisEventData_set_moveDir_m6C647B27688638E9C02A98E47BEC5292C07465EE_inline(L_8, L_12, /*hidden argument*/NULL);
// return m_AxisEventData;
AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * L_13 = __this->get_m_AxisEventData_5();
return L_13;
}
}
// UnityEngine.EventSystems.BaseEventData UnityEngine.EventSystems.BaseInputModule::GetBaseEventData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * BaseInputModule_GetBaseEventData_mB945B5DF7A5C2B825C7D542D944A7795D8F5F93F (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BaseInputModule_GetBaseEventData_mB945B5DF7A5C2B825C7D542D944A7795D8F5F93F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (m_BaseEventData == null)
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_0 = __this->get_m_BaseEventData_7();
if (L_0)
{
goto IL_0019;
}
}
{
// m_BaseEventData = new BaseEventData(eventSystem);
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_1 = BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline(__this, /*hidden argument*/NULL);
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_2 = (BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *)il2cpp_codegen_object_new(BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5_il2cpp_TypeInfo_var);
BaseEventData__ctor_m4A8184F01D2CA8B2DE6BB752F486CF7DEF7A56AE(L_2, L_1, /*hidden argument*/NULL);
__this->set_m_BaseEventData_7(L_2);
}
IL_0019:
{
// m_BaseEventData.Reset();
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_3 = __this->get_m_BaseEventData_7();
VirtActionInvoker0::Invoke(4 /* System.Void UnityEngine.EventSystems.AbstractEventData::Reset() */, L_3);
// return m_BaseEventData;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_4 = __this->get_m_BaseEventData_7();
return L_4;
}
}
// System.Boolean UnityEngine.EventSystems.BaseInputModule::IsPointerOverGameObject(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseInputModule_IsPointerOverGameObject_m4255E7C2D628B5E4524D02A2E26158DDE8640CF5 (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * __this, int32_t ___pointerId0, const RuntimeMethod* method)
{
{
// return false;
return (bool)0;
}
}
// System.Boolean UnityEngine.EventSystems.BaseInputModule::ShouldActivateModule()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseInputModule_ShouldActivateModule_mA3CFFC349E1188C750346FC1B52F44D770104BCD (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * __this, const RuntimeMethod* method)
{
{
// return enabled && gameObject.activeInHierarchy;
bool L_0 = Behaviour_get_enabled_mAA0C9ED5A3D1589C1C8AA22636543528DB353CFB(__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_0014;
}
}
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_1 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(__this, /*hidden argument*/NULL);
bool L_2 = GameObject_get_activeInHierarchy_mDEE60F1B28281974BA9880EC448682F3DAABB1EF(L_1, /*hidden argument*/NULL);
return L_2;
}
IL_0014:
{
return (bool)0;
}
}
// System.Void UnityEngine.EventSystems.BaseInputModule::DeactivateModule()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule_DeactivateModule_m02E0A94E9EBC6793439FE1ABF81F2E84B79C7249 (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * __this, const RuntimeMethod* method)
{
{
// {}
return;
}
}
// System.Void UnityEngine.EventSystems.BaseInputModule::ActivateModule()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule_ActivateModule_m1F16D868703EBA8610E0C2DF86B4760F934631D7 (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * __this, const RuntimeMethod* method)
{
{
// {}
return;
}
}
// System.Void UnityEngine.EventSystems.BaseInputModule::UpdateModule()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule_UpdateModule_m8A5973C39616DF6C34041F93014C2469DC667DE2 (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * __this, const RuntimeMethod* method)
{
{
// {}
return;
}
}
// System.Boolean UnityEngine.EventSystems.BaseInputModule::IsModuleSupported()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseInputModule_IsModuleSupported_mD2BB3DD4CF96C31549AED158F0753AE345C01647 (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * __this, const RuntimeMethod* method)
{
{
// return true;
return (bool)1;
}
}
// System.Void UnityEngine.EventSystems.BaseInputModule::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule__ctor_m4D2F1DB4FA2524BCB5598111C11E5E00D4A95DC6 (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BaseInputModule__ctor_m4D2F1DB4FA2524BCB5598111C11E5E00D4A95DC6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// protected List<RaycastResult> m_RaycastResultCache = new List<RaycastResult>();
List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * L_0 = (List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 *)il2cpp_codegen_object_new(List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098_il2cpp_TypeInfo_var);
List_1__ctor_m348AEDFD8CF39B720D58C70279BABA7CF0364A6C(L_0, /*hidden argument*/List_1__ctor_m348AEDFD8CF39B720D58C70279BABA7CF0364A6C_RuntimeMethod_var);
__this->set_m_RaycastResultCache_4(L_0);
UIBehaviour__ctor_m1B44EE4BDA3604F96C48379524B9907FEB15EB53(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 UnityEngine.EventSystems.BaseRaycaster::get_priority()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseRaycaster_get_priority_mF085F1BF77E4D69D84A8ACCFF61FBD80EB55AF50 (BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * __this, const RuntimeMethod* method)
{
{
// get { return 0; }
return 0;
}
}
// System.Int32 UnityEngine.EventSystems.BaseRaycaster::get_sortOrderPriority()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseRaycaster_get_sortOrderPriority_m03BB34962FDC88F04B94A160138EC8C49BB50595 (BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * __this, const RuntimeMethod* method)
{
{
// get { return int.MinValue; }
return ((int32_t)-2147483648LL);
}
}
// System.Int32 UnityEngine.EventSystems.BaseRaycaster::get_renderOrderPriority()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseRaycaster_get_renderOrderPriority_mEF4CA94A52D130A2546E094C2C492B7DEAD6F3C4 (BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * __this, const RuntimeMethod* method)
{
{
// get { return int.MinValue; }
return ((int32_t)-2147483648LL);
}
}
// UnityEngine.EventSystems.BaseRaycaster UnityEngine.EventSystems.BaseRaycaster::get_rootRaycaster()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * BaseRaycaster_get_rootRaycaster_m4DF6B023C195A4E8E9AF8D8E411379A9052D80A5 (BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BaseRaycaster_get_rootRaycaster_m4DF6B023C195A4E8E9AF8D8E411379A9052D80A5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6* V_0 = NULL;
{
// if (m_RootRaycaster == null)
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_0 = __this->get_m_RootRaycaster_4();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0026;
}
}
{
// var baseRaycasters = GetComponentsInParent<BaseRaycaster>();
BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6* L_2 = Component_GetComponentsInParent_TisBaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966_mA53CA3BE4D53DA7CB02AD9E8D078821E2DD8F3EB(__this, /*hidden argument*/Component_GetComponentsInParent_TisBaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966_mA53CA3BE4D53DA7CB02AD9E8D078821E2DD8F3EB_RuntimeMethod_var);
V_0 = L_2;
// if (baseRaycasters.Length != 0)
BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6* L_3 = V_0;
if (!(((RuntimeArray*)L_3)->max_length))
{
goto IL_0026;
}
}
{
// m_RootRaycaster = baseRaycasters[baseRaycasters.Length - 1];
BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6* L_4 = V_0;
BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6* L_5 = V_0;
int32_t L_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))), (int32_t)1));
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_7 = (L_4)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_6));
__this->set_m_RootRaycaster_4(L_7);
}
IL_0026:
{
// return m_RootRaycaster;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_8 = __this->get_m_RootRaycaster_4();
return L_8;
}
}
// System.String UnityEngine.EventSystems.BaseRaycaster::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BaseRaycaster_ToString_mED39E4461F0C708B924FC87DB5A2949917FF42F1 (BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BaseRaycaster_ToString_mED39E4461F0C708B924FC87DB5A2949917FF42F1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// return "Name: " + gameObject + "\n" +
// "eventCamera: " + eventCamera + "\n" +
// "sortOrderPriority: " + sortOrderPriority + "\n" +
// "renderOrderPriority: " + renderOrderPriority;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)8);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0;
ArrayElementTypeCheck (L_1, _stringLiteralB3F69F1983924ED9EB2751F7152C86B163972C18);
(L_1)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralB3F69F1983924ED9EB2751F7152C86B163972C18);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_3 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(__this, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_2, L_3);
(L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_3);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = L_2;
ArrayElementTypeCheck (L_4, _stringLiteralA53DA7D7D636A66DEDDF02BF5FB029B23420855D);
(L_4)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteralA53DA7D7D636A66DEDDF02BF5FB029B23420855D);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = L_4;
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_6 = VirtFuncInvoker0< Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * >::Invoke(18 /* UnityEngine.Camera UnityEngine.EventSystems.BaseRaycaster::get_eventCamera() */, __this);
ArrayElementTypeCheck (L_5, L_6);
(L_5)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_6);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = L_5;
ArrayElementTypeCheck (L_7, _stringLiteralFE5D4890220D7DE3BF590AAA7D90B77F91BF18C6);
(L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)_stringLiteralFE5D4890220D7DE3BF590AAA7D90B77F91BF18C6);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = L_7;
int32_t L_9 = VirtFuncInvoker0< int32_t >::Invoke(20 /* System.Int32 UnityEngine.EventSystems.BaseRaycaster::get_sortOrderPriority() */, __this);
int32_t L_10 = L_9;
RuntimeObject * L_11 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_10);
ArrayElementTypeCheck (L_8, L_11);
(L_8)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_11);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = L_8;
ArrayElementTypeCheck (L_12, _stringLiteralE91EE57CA5E869F09C37997152F0455B45223508);
(L_12)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(6), (RuntimeObject *)_stringLiteralE91EE57CA5E869F09C37997152F0455B45223508);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = L_12;
int32_t L_14 = VirtFuncInvoker0< int32_t >::Invoke(21 /* System.Int32 UnityEngine.EventSystems.BaseRaycaster::get_renderOrderPriority() */, __this);
int32_t L_15 = L_14;
RuntimeObject * L_16 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_15);
ArrayElementTypeCheck (L_13, L_16);
(L_13)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(7), (RuntimeObject *)L_16);
String_t* L_17 = String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07(L_13, /*hidden argument*/NULL);
return L_17;
}
}
// System.Void UnityEngine.EventSystems.BaseRaycaster::OnEnable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRaycaster_OnEnable_m31B91C059934DAB7FEA26D8D5A030CCF469778C1 (BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BaseRaycaster_OnEnable_m31B91C059934DAB7FEA26D8D5A030CCF469778C1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// base.OnEnable();
UIBehaviour_OnEnable_m4FF74AADA5E101F59DC5C19DCA82110F7482CB56(__this, /*hidden argument*/NULL);
// RaycasterManager.AddRaycaster(this);
IL2CPP_RUNTIME_CLASS_INIT(RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_il2cpp_TypeInfo_var);
RaycasterManager_AddRaycaster_mB93CFBBCE344327BF96AC11CB500219FD1873B9A(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.BaseRaycaster::OnDisable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRaycaster_OnDisable_m0FA75817BD8DADDF85C10E02B0067E835C80EE0C (BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BaseRaycaster_OnDisable_m0FA75817BD8DADDF85C10E02B0067E835C80EE0C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// RaycasterManager.RemoveRaycasters(this);
IL2CPP_RUNTIME_CLASS_INIT(RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_il2cpp_TypeInfo_var);
RaycasterManager_RemoveRaycasters_m26668BA781D690D83E3417436D2D9AE577004624(__this, /*hidden argument*/NULL);
// base.OnDisable();
UIBehaviour_OnDisable_m43F5502A18FCFFD355381A95175DC71E0D4005EC(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.BaseRaycaster::OnCanvasHierarchyChanged()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRaycaster_OnCanvasHierarchyChanged_m4DBBF545F6C74CFC7C375D7A7C42AD7F1B3CE17F (BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * __this, const RuntimeMethod* method)
{
{
// base.OnCanvasHierarchyChanged();
UIBehaviour_OnCanvasHierarchyChanged_m5A9FF86F647810726B4AE9F8C15862F353FBDAFD(__this, /*hidden argument*/NULL);
// m_RootRaycaster = null;
__this->set_m_RootRaycaster_4((BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 *)NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.BaseRaycaster::OnTransformParentChanged()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRaycaster_OnTransformParentChanged_mD98668AF752E710CB0A8A863695E3957B2972083 (BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * __this, const RuntimeMethod* method)
{
{
// base.OnTransformParentChanged();
UIBehaviour_OnTransformParentChanged_mBB0F5D46FF7791D80FE6E4EE1932433246D5B7CB(__this, /*hidden argument*/NULL);
// m_RootRaycaster = null;
__this->set_m_RootRaycaster_4((BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 *)NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.BaseRaycaster::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRaycaster__ctor_m3F94FA62302E9BCB5290515C9D5C4DC1265F5C0F (BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * __this, const RuntimeMethod* method)
{
{
UIBehaviour__ctor_m1B44EE4BDA3604F96C48379524B9907FEB15EB53(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.EventSystems.EventSystem UnityEngine.EventSystems.EventSystem::get_current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * EventSystem_get_current_m3151477735829089F66A3E46AD6DAB14CFDDE7BD (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EventSystem_get_current_m3151477735829089F66A3E46AD6DAB14CFDDE7BD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return m_EventSystems.Count > 0 ? m_EventSystems[0] : null; }
IL2CPP_RUNTIME_CLASS_INIT(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_il2cpp_TypeInfo_var);
List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B * L_0 = ((EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_il2cpp_TypeInfo_var))->get_m_EventSystems_6();
int32_t L_1 = List_1_get_Count_m5617F346AC79B187A6C78EC59B4F34DE3101C348_inline(L_0, /*hidden argument*/List_1_get_Count_m5617F346AC79B187A6C78EC59B4F34DE3101C348_RuntimeMethod_var);
if ((((int32_t)L_1) > ((int32_t)0)))
{
goto IL_000f;
}
}
{
return (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 *)NULL;
}
IL_000f:
{
IL2CPP_RUNTIME_CLASS_INIT(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_il2cpp_TypeInfo_var);
List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B * L_2 = ((EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_il2cpp_TypeInfo_var))->get_m_EventSystems_6();
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_3 = List_1_get_Item_m63E24FAB51E3F8F1B68E34D15BF21A95848FEEC4_inline(L_2, 0, /*hidden argument*/List_1_get_Item_m63E24FAB51E3F8F1B68E34D15BF21A95848FEEC4_RuntimeMethod_var);
return L_3;
}
}
// System.Void UnityEngine.EventSystems.EventSystem::set_current(UnityEngine.EventSystems.EventSystem)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_set_current_mADC79D2345234F851DA554EF79746D43CC6B6951 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EventSystem_set_current_mADC79D2345234F851DA554EF79746D43CC6B6951_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
// int index = m_EventSystems.IndexOf(value);
IL2CPP_RUNTIME_CLASS_INIT(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_il2cpp_TypeInfo_var);
List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B * L_0 = ((EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_il2cpp_TypeInfo_var))->get_m_EventSystems_6();
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_1 = ___value0;
int32_t L_2 = List_1_IndexOf_m114E5C45A23B126D2EE6F1E02C56589B9F45E712(L_0, L_1, /*hidden argument*/List_1_IndexOf_m114E5C45A23B126D2EE6F1E02C56589B9F45E712_RuntimeMethod_var);
V_0 = L_2;
// if (index >= 0)
int32_t L_3 = V_0;
if ((((int32_t)L_3) < ((int32_t)0)))
{
goto IL_0027;
}
}
{
// m_EventSystems.RemoveAt(index);
IL2CPP_RUNTIME_CLASS_INIT(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_il2cpp_TypeInfo_var);
List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B * L_4 = ((EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_il2cpp_TypeInfo_var))->get_m_EventSystems_6();
int32_t L_5 = V_0;
List_1_RemoveAt_mE1B3271323D65C9D54BEC41CB54787BADF789A5B(L_4, L_5, /*hidden argument*/List_1_RemoveAt_mE1B3271323D65C9D54BEC41CB54787BADF789A5B_RuntimeMethod_var);
// m_EventSystems.Insert(0, value);
List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B * L_6 = ((EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_il2cpp_TypeInfo_var))->get_m_EventSystems_6();
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_7 = ___value0;
List_1_Insert_m3873559B095B71CCF01AEF43F569E58103296787(L_6, 0, L_7, /*hidden argument*/List_1_Insert_m3873559B095B71CCF01AEF43F569E58103296787_RuntimeMethod_var);
}
IL_0027:
{
// }
return;
}
}
// System.Boolean UnityEngine.EventSystems.EventSystem::get_sendNavigationEvents()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventSystem_get_sendNavigationEvents_m38D86573D180189D107B782AD1F1ED183D45DAD3 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method)
{
{
// get { return m_sendNavigationEvents; }
bool L_0 = __this->get_m_sendNavigationEvents_8();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.EventSystem::set_sendNavigationEvents(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_set_sendNavigationEvents_m211BD472505E223CD056E46DFB3D53BBFCE9F02B (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// set { m_sendNavigationEvents = value; }
bool L_0 = ___value0;
__this->set_m_sendNavigationEvents_8(L_0);
// set { m_sendNavigationEvents = value; }
return;
}
}
// System.Int32 UnityEngine.EventSystems.EventSystem::get_pixelDragThreshold()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EventSystem_get_pixelDragThreshold_m8E8607E0C4E56387677507B45455A24D4680E0D3 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method)
{
{
// get { return m_DragThreshold; }
int32_t L_0 = __this->get_m_DragThreshold_9();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.EventSystem::set_pixelDragThreshold(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_set_pixelDragThreshold_m71146B09FD2FDC1CC2BD228AFCCB424007DAB269 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set { m_DragThreshold = value; }
int32_t L_0 = ___value0;
__this->set_m_DragThreshold_9(L_0);
// set { m_DragThreshold = value; }
return;
}
}
// UnityEngine.EventSystems.BaseInputModule UnityEngine.EventSystems.EventSystem::get_currentInputModule()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * EventSystem_get_currentInputModule_mAA917C940E32ECAC4324D6824A9E0A951F16D891 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method)
{
{
// get { return m_CurrentInputModule; }
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_0 = __this->get_m_CurrentInputModule_5();
return L_0;
}
}
// UnityEngine.GameObject UnityEngine.EventSystems.EventSystem::get_firstSelectedGameObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * EventSystem_get_firstSelectedGameObject_m8CAFDA874F89BDA34E0984860046C1C171B200E1 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method)
{
{
// get { return m_FirstSelected; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = __this->get_m_FirstSelected_7();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.EventSystem::set_firstSelectedGameObject(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_set_firstSelectedGameObject_m3B6CA2C6EDC32EAE5FAF1F7B6A52F5B00A882381 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___value0, const RuntimeMethod* method)
{
{
// set { m_FirstSelected = value; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___value0;
__this->set_m_FirstSelected_7(L_0);
// set { m_FirstSelected = value; }
return;
}
}
// UnityEngine.GameObject UnityEngine.EventSystems.EventSystem::get_currentSelectedGameObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * EventSystem_get_currentSelectedGameObject_mE28E78D268403602DE1FB6F059EE3E9CDB7325A4 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method)
{
{
// get { return m_CurrentSelected; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = __this->get_m_CurrentSelected_10();
return L_0;
}
}
// UnityEngine.GameObject UnityEngine.EventSystems.EventSystem::get_lastSelectedGameObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * EventSystem_get_lastSelectedGameObject_m761188B5E33641891010B7BBBEEDDB1F267A6A29 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method)
{
{
// get { return null; }
return (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL;
}
}
// System.Boolean UnityEngine.EventSystems.EventSystem::get_isFocused()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventSystem_get_isFocused_mB7275507B3AFEC15722B1F128CACB1BA578AEC3B (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method)
{
{
// get { return m_HasFocus; }
bool L_0 = __this->get_m_HasFocus_11();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.EventSystem::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem__ctor_m7DCB0D2525B2EBA3458C5B6911231DCDFBB21104 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EventSystem__ctor_m7DCB0D2525B2EBA3458C5B6911231DCDFBB21104_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// private List<BaseInputModule> m_SystemInputModules = new List<BaseInputModule>();
List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 * L_0 = (List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 *)il2cpp_codegen_object_new(List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176_il2cpp_TypeInfo_var);
List_1__ctor_m783AB36DF511851F4803E3E611E1F880054B61E4(L_0, /*hidden argument*/List_1__ctor_m783AB36DF511851F4803E3E611E1F880054B61E4_RuntimeMethod_var);
__this->set_m_SystemInputModules_4(L_0);
// private bool m_sendNavigationEvents = true;
__this->set_m_sendNavigationEvents_8((bool)1);
// private int m_DragThreshold = 10;
__this->set_m_DragThreshold_9(((int32_t)10));
// private bool m_HasFocus = true;
__this->set_m_HasFocus_11((bool)1);
// protected EventSystem()
UIBehaviour__ctor_m1B44EE4BDA3604F96C48379524B9907FEB15EB53(__this, /*hidden argument*/NULL);
// {}
return;
}
}
// System.Void UnityEngine.EventSystems.EventSystem::UpdateModules()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_UpdateModules_m9E90C6FD7A4202BD6E4801C6AF109D859167FE8A (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EventSystem_UpdateModules_m9E90C6FD7A4202BD6E4801C6AF109D859167FE8A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
// GetComponents(m_SystemInputModules);
List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 * L_0 = __this->get_m_SystemInputModules_4();
Component_GetComponents_TisBaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939_mECBA4532FE12C928961128EA2CA791C03D4820E7(__this, L_0, /*hidden argument*/Component_GetComponents_TisBaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939_mECBA4532FE12C928961128EA2CA791C03D4820E7_RuntimeMethod_var);
// for (int i = m_SystemInputModules.Count - 1; i >= 0; i--)
List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 * L_1 = __this->get_m_SystemInputModules_4();
int32_t L_2 = List_1_get_Count_m7C1FFC5C91DC37F0D0C71D737C9BA7081E0722F0_inline(L_1, /*hidden argument*/List_1_get_Count_m7C1FFC5C91DC37F0D0C71D737C9BA7081E0722F0_RuntimeMethod_var);
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1));
goto IL_0052;
}
IL_001c:
{
// if (m_SystemInputModules[i] && m_SystemInputModules[i].IsActive())
List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 * L_3 = __this->get_m_SystemInputModules_4();
int32_t L_4 = V_0;
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_5 = List_1_get_Item_m6556A45DA0ECCB9FFCA9717755E39559BD1679EF_inline(L_3, L_4, /*hidden argument*/List_1_get_Item_m6556A45DA0ECCB9FFCA9717755E39559BD1679EF_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_6 = Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534(L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0042;
}
}
{
List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 * L_7 = __this->get_m_SystemInputModules_4();
int32_t L_8 = V_0;
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_9 = List_1_get_Item_m6556A45DA0ECCB9FFCA9717755E39559BD1679EF_inline(L_7, L_8, /*hidden argument*/List_1_get_Item_m6556A45DA0ECCB9FFCA9717755E39559BD1679EF_RuntimeMethod_var);
bool L_10 = VirtFuncInvoker0< bool >::Invoke(9 /* System.Boolean UnityEngine.EventSystems.UIBehaviour::IsActive() */, L_9);
if (L_10)
{
goto IL_004e;
}
}
IL_0042:
{
// m_SystemInputModules.RemoveAt(i);
List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 * L_11 = __this->get_m_SystemInputModules_4();
int32_t L_12 = V_0;
List_1_RemoveAt_m1418F643EC903CD091DC3C6F0A64D260959A4DE7(L_11, L_12, /*hidden argument*/List_1_RemoveAt_m1418F643EC903CD091DC3C6F0A64D260959A4DE7_RuntimeMethod_var);
}
IL_004e:
{
// for (int i = m_SystemInputModules.Count - 1; i >= 0; i--)
int32_t L_13 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)1));
}
IL_0052:
{
// for (int i = m_SystemInputModules.Count - 1; i >= 0; i--)
int32_t L_14 = V_0;
if ((((int32_t)L_14) >= ((int32_t)0)))
{
goto IL_001c;
}
}
{
// }
return;
}
}
// System.Boolean UnityEngine.EventSystems.EventSystem::get_alreadySelecting()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventSystem_get_alreadySelecting_m419F4730CDDE5B742056F931D7445F6E4AD92B7D (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method)
{
{
// get { return m_SelectionGuard; }
bool L_0 = __this->get_m_SelectionGuard_12();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.EventSystem::SetSelectedGameObject(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_SetSelectedGameObject_m532EE7D0346462EDBB56E5BCD048CB3BEFB84E3A (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___selected0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___pointer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EventSystem_SetSelectedGameObject_m532EE7D0346462EDBB56E5BCD048CB3BEFB84E3A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (m_SelectionGuard)
bool L_0 = __this->get_m_SelectionGuard_12();
if (!L_0)
{
goto IL_001e;
}
}
{
// Debug.LogError("Attempting to select " + selected + "while already selecting an object.");
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_1 = ___selected0;
String_t* L_2 = String_Concat_m2E1F71C491D2429CC80A28745488FEA947BB7AAC(_stringLiteral010E6E29C1AD8B2F96ACE95AC05261B4DD7464BF, L_1, _stringLiteralD183B328807554B505B1663986ABE7300574A46F, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var);
Debug_LogError_m3BCF9B78263152261565DCA9DB7D55F0C391ED29(L_2, /*hidden argument*/NULL);
// return;
return;
}
IL_001e:
{
// m_SelectionGuard = true;
__this->set_m_SelectionGuard_12((bool)1);
// if (selected == m_CurrentSelected)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_3 = ___selected0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_4 = __this->get_m_CurrentSelected_10();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_5 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_3, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_003b;
}
}
{
// m_SelectionGuard = false;
__this->set_m_SelectionGuard_12((bool)0);
// return;
return;
}
IL_003b:
{
// ExecuteEvents.Execute(m_CurrentSelected, pointer, ExecuteEvents.deselectHandler);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_6 = __this->get_m_CurrentSelected_10();
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_7 = ___pointer1;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 * L_8 = ExecuteEvents_get_deselectHandler_mEAA9E3701CC972EFDD20B30E9B3CD9302B2FD668_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisIDeselectHandler_t7A98A4E16B7F39F827584A16F120FD4FC001997D_mF1C0F17C5C072DFC5BED07B25EA0190CF9A53603(L_6, L_7, L_8, /*hidden argument*/ExecuteEvents_Execute_TisIDeselectHandler_t7A98A4E16B7F39F827584A16F120FD4FC001997D_mF1C0F17C5C072DFC5BED07B25EA0190CF9A53603_RuntimeMethod_var);
// m_CurrentSelected = selected;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_9 = ___selected0;
__this->set_m_CurrentSelected_10(L_9);
// ExecuteEvents.Execute(m_CurrentSelected, pointer, ExecuteEvents.selectHandler);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_10 = __this->get_m_CurrentSelected_10();
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_11 = ___pointer1;
EventFunction_1_t7521247C87411935E8A2CA38683533083459473F * L_12 = ExecuteEvents_get_selectHandler_m26186C0D78CA4A8AFA0789A09F488F7E186BE1C8_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisISelectHandler_t05E0943DEF2BC53023C2E4BF4C815E0EDE82C0F4_m92C6BEB40DB31218269EA1F37D122227306823BC(L_10, L_11, L_12, /*hidden argument*/ExecuteEvents_Execute_TisISelectHandler_t05E0943DEF2BC53023C2E4BF4C815E0EDE82C0F4_m92C6BEB40DB31218269EA1F37D122227306823BC_RuntimeMethod_var);
// m_SelectionGuard = false;
__this->set_m_SelectionGuard_12((bool)0);
// }
return;
}
}
// UnityEngine.EventSystems.BaseEventData UnityEngine.EventSystems.EventSystem::get_baseEventDataCache()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * EventSystem_get_baseEventDataCache_m2B14076E5EF918BE1A94F16DE1A827AC1401BC89 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EventSystem_get_baseEventDataCache_m2B14076E5EF918BE1A94F16DE1A827AC1401BC89_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (m_DummyData == null)
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_0 = __this->get_m_DummyData_13();
if (L_0)
{
goto IL_0014;
}
}
{
// m_DummyData = new BaseEventData(this);
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_1 = (BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 *)il2cpp_codegen_object_new(BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5_il2cpp_TypeInfo_var);
BaseEventData__ctor_m4A8184F01D2CA8B2DE6BB752F486CF7DEF7A56AE(L_1, __this, /*hidden argument*/NULL);
__this->set_m_DummyData_13(L_1);
}
IL_0014:
{
// return m_DummyData;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_2 = __this->get_m_DummyData_13();
return L_2;
}
}
// System.Void UnityEngine.EventSystems.EventSystem::SetSelectedGameObject(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_SetSelectedGameObject_mBAD02D750DCDEFFE322C9373646E28396084ABE1 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___selected0, const RuntimeMethod* method)
{
{
// SetSelectedGameObject(selected, baseEventDataCache);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___selected0;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_1 = EventSystem_get_baseEventDataCache_m2B14076E5EF918BE1A94F16DE1A827AC1401BC89(__this, /*hidden argument*/NULL);
EventSystem_SetSelectedGameObject_m532EE7D0346462EDBB56E5BCD048CB3BEFB84E3A(__this, L_0, L_1, /*hidden argument*/NULL);
// }
return;
}
}
// System.Int32 UnityEngine.EventSystems.EventSystem::RaycastComparer(UnityEngine.EventSystems.RaycastResult,UnityEngine.EventSystems.RaycastResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EventSystem_RaycastComparer_mECA916E0B66A65018A1E7544E51C6D77BC52F1CA (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___lhs0, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___rhs1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EventSystem_RaycastComparer_mECA916E0B66A65018A1E7544E51C6D77BC52F1CA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * V_0 = NULL;
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
{
// if (lhs.module != rhs.module)
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_0 = ___lhs0;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_1 = L_0.get_module_1();
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_2 = ___rhs1;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_3 = L_2.get_module_1();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_4 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_1, L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_00de;
}
}
{
// var lhsEventCamera = lhs.module.eventCamera;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_5 = ___lhs0;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_6 = L_5.get_module_1();
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_7 = VirtFuncInvoker0< Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * >::Invoke(18 /* UnityEngine.Camera UnityEngine.EventSystems.BaseRaycaster::get_eventCamera() */, L_6);
V_0 = L_7;
// var rhsEventCamera = rhs.module.eventCamera;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_8 = ___rhs1;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_9 = L_8.get_module_1();
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_10 = VirtFuncInvoker0< Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * >::Invoke(18 /* UnityEngine.Camera UnityEngine.EventSystems.BaseRaycaster::get_eventCamera() */, L_9);
V_1 = L_10;
// if (lhsEventCamera != null && rhsEventCamera != null && lhsEventCamera.depth != rhsEventCamera.depth)
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_11 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_12 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_11, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0070;
}
}
{
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_13 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_14 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_13, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_0070;
}
}
{
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_15 = V_0;
float L_16 = Camera_get_depth_m436C49A1C7669E4AD5665A1F1107BDFBA38742CD(L_15, /*hidden argument*/NULL);
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_17 = V_1;
float L_18 = Camera_get_depth_m436C49A1C7669E4AD5665A1F1107BDFBA38742CD(L_17, /*hidden argument*/NULL);
if ((((float)L_16) == ((float)L_18)))
{
goto IL_0070;
}
}
{
// if (lhsEventCamera.depth < rhsEventCamera.depth)
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_19 = V_0;
float L_20 = Camera_get_depth_m436C49A1C7669E4AD5665A1F1107BDFBA38742CD(L_19, /*hidden argument*/NULL);
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_21 = V_1;
float L_22 = Camera_get_depth_m436C49A1C7669E4AD5665A1F1107BDFBA38742CD(L_21, /*hidden argument*/NULL);
if ((!(((float)L_20) < ((float)L_22))))
{
goto IL_005e;
}
}
{
// return 1;
return 1;
}
IL_005e:
{
// if (lhsEventCamera.depth == rhsEventCamera.depth)
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_23 = V_0;
float L_24 = Camera_get_depth_m436C49A1C7669E4AD5665A1F1107BDFBA38742CD(L_23, /*hidden argument*/NULL);
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_25 = V_1;
float L_26 = Camera_get_depth_m436C49A1C7669E4AD5665A1F1107BDFBA38742CD(L_25, /*hidden argument*/NULL);
if ((!(((float)L_24) == ((float)L_26))))
{
goto IL_006e;
}
}
{
// return 0;
return 0;
}
IL_006e:
{
// return -1;
return (-1);
}
IL_0070:
{
// if (lhs.module.sortOrderPriority != rhs.module.sortOrderPriority)
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_27 = ___lhs0;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_28 = L_27.get_module_1();
int32_t L_29 = VirtFuncInvoker0< int32_t >::Invoke(20 /* System.Int32 UnityEngine.EventSystems.BaseRaycaster::get_sortOrderPriority() */, L_28);
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_30 = ___rhs1;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_31 = L_30.get_module_1();
int32_t L_32 = VirtFuncInvoker0< int32_t >::Invoke(20 /* System.Int32 UnityEngine.EventSystems.BaseRaycaster::get_sortOrderPriority() */, L_31);
if ((((int32_t)L_29) == ((int32_t)L_32)))
{
goto IL_00a7;
}
}
{
// return rhs.module.sortOrderPriority.CompareTo(lhs.module.sortOrderPriority);
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_33 = ___rhs1;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_34 = L_33.get_module_1();
int32_t L_35 = VirtFuncInvoker0< int32_t >::Invoke(20 /* System.Int32 UnityEngine.EventSystems.BaseRaycaster::get_sortOrderPriority() */, L_34);
V_2 = L_35;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_36 = ___lhs0;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_37 = L_36.get_module_1();
int32_t L_38 = VirtFuncInvoker0< int32_t >::Invoke(20 /* System.Int32 UnityEngine.EventSystems.BaseRaycaster::get_sortOrderPriority() */, L_37);
int32_t L_39 = Int32_CompareTo_m2EB2B72F9095FF3438D830118D57E32E1CC67195((int32_t*)(&V_2), L_38, /*hidden argument*/NULL);
return L_39;
}
IL_00a7:
{
// if (lhs.module.renderOrderPriority != rhs.module.renderOrderPriority)
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_40 = ___lhs0;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_41 = L_40.get_module_1();
int32_t L_42 = VirtFuncInvoker0< int32_t >::Invoke(21 /* System.Int32 UnityEngine.EventSystems.BaseRaycaster::get_renderOrderPriority() */, L_41);
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_43 = ___rhs1;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_44 = L_43.get_module_1();
int32_t L_45 = VirtFuncInvoker0< int32_t >::Invoke(21 /* System.Int32 UnityEngine.EventSystems.BaseRaycaster::get_renderOrderPriority() */, L_44);
if ((((int32_t)L_42) == ((int32_t)L_45)))
{
goto IL_00de;
}
}
{
// return rhs.module.renderOrderPriority.CompareTo(lhs.module.renderOrderPriority);
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_46 = ___rhs1;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_47 = L_46.get_module_1();
int32_t L_48 = VirtFuncInvoker0< int32_t >::Invoke(21 /* System.Int32 UnityEngine.EventSystems.BaseRaycaster::get_renderOrderPriority() */, L_47);
V_2 = L_48;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_49 = ___lhs0;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_50 = L_49.get_module_1();
int32_t L_51 = VirtFuncInvoker0< int32_t >::Invoke(21 /* System.Int32 UnityEngine.EventSystems.BaseRaycaster::get_renderOrderPriority() */, L_50);
int32_t L_52 = Int32_CompareTo_m2EB2B72F9095FF3438D830118D57E32E1CC67195((int32_t*)(&V_2), L_51, /*hidden argument*/NULL);
return L_52;
}
IL_00de:
{
// if (lhs.sortingLayer != rhs.sortingLayer)
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_53 = ___lhs0;
int32_t L_54 = L_53.get_sortingLayer_5();
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_55 = ___rhs1;
int32_t L_56 = L_55.get_sortingLayer_5();
if ((((int32_t)L_54) == ((int32_t)L_56)))
{
goto IL_010f;
}
}
{
// var rid = SortingLayer.GetLayerValueFromID(rhs.sortingLayer);
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_57 = ___rhs1;
int32_t L_58 = L_57.get_sortingLayer_5();
int32_t L_59 = SortingLayer_GetLayerValueFromID_m564F9C83200E5EC3E9578A75854CB943CE5546F8(L_58, /*hidden argument*/NULL);
V_3 = L_59;
// var lid = SortingLayer.GetLayerValueFromID(lhs.sortingLayer);
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_60 = ___lhs0;
int32_t L_61 = L_60.get_sortingLayer_5();
int32_t L_62 = SortingLayer_GetLayerValueFromID_m564F9C83200E5EC3E9578A75854CB943CE5546F8(L_61, /*hidden argument*/NULL);
V_4 = L_62;
// return rid.CompareTo(lid);
int32_t L_63 = V_4;
int32_t L_64 = Int32_CompareTo_m2EB2B72F9095FF3438D830118D57E32E1CC67195((int32_t*)(&V_3), L_63, /*hidden argument*/NULL);
return L_64;
}
IL_010f:
{
// if (lhs.sortingOrder != rhs.sortingOrder)
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_65 = ___lhs0;
int32_t L_66 = L_65.get_sortingOrder_6();
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_67 = ___rhs1;
int32_t L_68 = L_67.get_sortingOrder_6();
if ((((int32_t)L_66) == ((int32_t)L_68)))
{
goto IL_0130;
}
}
{
// return rhs.sortingOrder.CompareTo(lhs.sortingOrder);
int32_t* L_69 = (&___rhs1)->get_address_of_sortingOrder_6();
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_70 = ___lhs0;
int32_t L_71 = L_70.get_sortingOrder_6();
int32_t L_72 = Int32_CompareTo_m2EB2B72F9095FF3438D830118D57E32E1CC67195((int32_t*)L_69, L_71, /*hidden argument*/NULL);
return L_72;
}
IL_0130:
{
// if (lhs.depth != rhs.depth && lhs.module.rootRaycaster == rhs.module.rootRaycaster)
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_73 = ___lhs0;
int32_t L_74 = L_73.get_depth_4();
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_75 = ___rhs1;
int32_t L_76 = L_75.get_depth_4();
if ((((int32_t)L_74) == ((int32_t)L_76)))
{
goto IL_016e;
}
}
{
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_77 = ___lhs0;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_78 = L_77.get_module_1();
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_79 = BaseRaycaster_get_rootRaycaster_m4DF6B023C195A4E8E9AF8D8E411379A9052D80A5(L_78, /*hidden argument*/NULL);
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_80 = ___rhs1;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_81 = L_80.get_module_1();
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_82 = BaseRaycaster_get_rootRaycaster_m4DF6B023C195A4E8E9AF8D8E411379A9052D80A5(L_81, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_83 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_79, L_82, /*hidden argument*/NULL);
if (!L_83)
{
goto IL_016e;
}
}
{
// return rhs.depth.CompareTo(lhs.depth);
int32_t* L_84 = (&___rhs1)->get_address_of_depth_4();
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_85 = ___lhs0;
int32_t L_86 = L_85.get_depth_4();
int32_t L_87 = Int32_CompareTo_m2EB2B72F9095FF3438D830118D57E32E1CC67195((int32_t*)L_84, L_86, /*hidden argument*/NULL);
return L_87;
}
IL_016e:
{
// if (lhs.distance != rhs.distance)
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_88 = ___lhs0;
float L_89 = L_88.get_distance_2();
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_90 = ___rhs1;
float L_91 = L_90.get_distance_2();
if ((((float)L_89) == ((float)L_91)))
{
goto IL_018f;
}
}
{
// return lhs.distance.CompareTo(rhs.distance);
float* L_92 = (&___lhs0)->get_address_of_distance_2();
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_93 = ___rhs1;
float L_94 = L_93.get_distance_2();
int32_t L_95 = Single_CompareTo_mFBF2345D81E00F834E558A4ACFD4E5137582DBBC((float*)L_92, L_94, /*hidden argument*/NULL);
return L_95;
}
IL_018f:
{
// return lhs.index.CompareTo(rhs.index);
float* L_96 = (&___lhs0)->get_address_of_index_3();
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_97 = ___rhs1;
float L_98 = L_97.get_index_3();
int32_t L_99 = Single_CompareTo_mFBF2345D81E00F834E558A4ACFD4E5137582DBBC((float*)L_96, L_98, /*hidden argument*/NULL);
return L_99;
}
}
// System.Void UnityEngine.EventSystems.EventSystem::RaycastAll(UnityEngine.EventSystems.PointerEventData,System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_RaycastAll_mA5A53B5404EF95AE97EE81445056153ED41CBF80 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___eventData0, List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * ___raycastResults1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EventSystem_RaycastAll_mA5A53B5404EF95AE97EE81445056153ED41CBF80_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_tE44A303DE85018C722D021A9716A97568780A0E1 * V_0 = NULL;
int32_t V_1 = 0;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * V_2 = NULL;
{
// raycastResults.Clear();
List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * L_0 = ___raycastResults1;
List_1_Clear_mD6A4F201FB5F0713480F9CAF35A9646F08B56CB2(L_0, /*hidden argument*/List_1_Clear_mD6A4F201FB5F0713480F9CAF35A9646F08B56CB2_RuntimeMethod_var);
// var modules = RaycasterManager.GetRaycasters();
IL2CPP_RUNTIME_CLASS_INIT(RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_il2cpp_TypeInfo_var);
List_1_tE44A303DE85018C722D021A9716A97568780A0E1 * L_1 = RaycasterManager_GetRaycasters_mA2491B7F058FB2DA88179C0BDE0EFB0B0E28B740_inline(/*hidden argument*/NULL);
V_0 = L_1;
// for (int i = 0; i < modules.Count; ++i)
V_1 = 0;
goto IL_0035;
}
IL_0010:
{
// var module = modules[i];
List_1_tE44A303DE85018C722D021A9716A97568780A0E1 * L_2 = V_0;
int32_t L_3 = V_1;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_4 = List_1_get_Item_mF73D6D74056683643E15167BE983AB1873857A1C_inline(L_2, L_3, /*hidden argument*/List_1_get_Item_mF73D6D74056683643E15167BE983AB1873857A1C_RuntimeMethod_var);
V_2 = L_4;
// if (module == null || !module.IsActive())
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_5 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_6 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_5, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (L_6)
{
goto IL_0031;
}
}
{
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_7 = V_2;
bool L_8 = VirtFuncInvoker0< bool >::Invoke(9 /* System.Boolean UnityEngine.EventSystems.UIBehaviour::IsActive() */, L_7);
if (!L_8)
{
goto IL_0031;
}
}
{
// module.Raycast(eventData, raycastResults);
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_9 = V_2;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_10 = ___eventData0;
List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * L_11 = ___raycastResults1;
VirtActionInvoker2< PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 *, List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * >::Invoke(17 /* System.Void UnityEngine.EventSystems.BaseRaycaster::Raycast(UnityEngine.EventSystems.PointerEventData,System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>) */, L_9, L_10, L_11);
}
IL_0031:
{
// for (int i = 0; i < modules.Count; ++i)
int32_t L_12 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
}
IL_0035:
{
// for (int i = 0; i < modules.Count; ++i)
int32_t L_13 = V_1;
List_1_tE44A303DE85018C722D021A9716A97568780A0E1 * L_14 = V_0;
int32_t L_15 = List_1_get_Count_m1559446010537D733C618DF42A7F0A1DD309E6F5_inline(L_14, /*hidden argument*/List_1_get_Count_m1559446010537D733C618DF42A7F0A1DD309E6F5_RuntimeMethod_var);
if ((((int32_t)L_13) < ((int32_t)L_15)))
{
goto IL_0010;
}
}
{
// raycastResults.Sort(s_RaycastComparer);
List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * L_16 = ___raycastResults1;
IL2CPP_RUNTIME_CLASS_INIT(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_il2cpp_TypeInfo_var);
Comparison_1_t80059259E2DC99461F7DF9B43BA93054613AE703 * L_17 = ((EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_il2cpp_TypeInfo_var))->get_s_RaycastComparer_14();
List_1_Sort_mB19A87C63B177C6E8357C56CC64779D069191737(L_16, L_17, /*hidden argument*/List_1_Sort_mB19A87C63B177C6E8357C56CC64779D069191737_RuntimeMethod_var);
// }
return;
}
}
// System.Boolean UnityEngine.EventSystems.EventSystem::IsPointerOverGameObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventSystem_IsPointerOverGameObject_m6E12F740DD96F03F15AC324D6426C475A48506D0 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method)
{
{
// return IsPointerOverGameObject(PointerInputModule.kMouseLeftId);
bool L_0 = EventSystem_IsPointerOverGameObject_mF2B40021727C8285F99201995760659C2A53E513(__this, (-1), /*hidden argument*/NULL);
return L_0;
}
}
// System.Boolean UnityEngine.EventSystems.EventSystem::IsPointerOverGameObject(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventSystem_IsPointerOverGameObject_mF2B40021727C8285F99201995760659C2A53E513 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, int32_t ___pointerId0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EventSystem_IsPointerOverGameObject_mF2B40021727C8285F99201995760659C2A53E513_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (m_CurrentInputModule == null)
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_0 = __this->get_m_CurrentInputModule_5();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0010;
}
}
{
// return false;
return (bool)0;
}
IL_0010:
{
// return m_CurrentInputModule.IsPointerOverGameObject(pointerId);
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_2 = __this->get_m_CurrentInputModule_5();
int32_t L_3 = ___pointerId0;
bool L_4 = VirtFuncInvoker1< bool, int32_t >::Invoke(20 /* System.Boolean UnityEngine.EventSystems.BaseInputModule::IsPointerOverGameObject(System.Int32) */, L_2, L_3);
return L_4;
}
}
// System.Void UnityEngine.EventSystems.EventSystem::OnEnable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_OnEnable_mE18ECC7BE60F739FEE9ABA731010E46A965894ED (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EventSystem_OnEnable_mE18ECC7BE60F739FEE9ABA731010E46A965894ED_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// base.OnEnable();
UIBehaviour_OnEnable_m4FF74AADA5E101F59DC5C19DCA82110F7482CB56(__this, /*hidden argument*/NULL);
// m_EventSystems.Add(this);
IL2CPP_RUNTIME_CLASS_INIT(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_il2cpp_TypeInfo_var);
List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B * L_0 = ((EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_il2cpp_TypeInfo_var))->get_m_EventSystems_6();
List_1_Add_mA5146A0CC8A8EEB674C317F028E1E6FC12DC2C6D(L_0, __this, /*hidden argument*/List_1_Add_mA5146A0CC8A8EEB674C317F028E1E6FC12DC2C6D_RuntimeMethod_var);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.EventSystem::OnDisable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_OnDisable_m35EE11C87000577B20D754B063E0B5C6849FA7E4 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EventSystem_OnDisable_m35EE11C87000577B20D754B063E0B5C6849FA7E4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (m_CurrentInputModule != null)
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_0 = __this->get_m_CurrentInputModule_5();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0020;
}
}
{
// m_CurrentInputModule.DeactivateModule();
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_2 = __this->get_m_CurrentInputModule_5();
VirtActionInvoker0::Invoke(22 /* System.Void UnityEngine.EventSystems.BaseInputModule::DeactivateModule() */, L_2);
// m_CurrentInputModule = null;
__this->set_m_CurrentInputModule_5((BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 *)NULL);
}
IL_0020:
{
// m_EventSystems.Remove(this);
IL2CPP_RUNTIME_CLASS_INIT(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_il2cpp_TypeInfo_var);
List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B * L_3 = ((EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_il2cpp_TypeInfo_var))->get_m_EventSystems_6();
List_1_Remove_m6E634BFACEA61C45680BA483504C730DD799A19A(L_3, __this, /*hidden argument*/List_1_Remove_m6E634BFACEA61C45680BA483504C730DD799A19A_RuntimeMethod_var);
// base.OnDisable();
UIBehaviour_OnDisable_m43F5502A18FCFFD355381A95175DC71E0D4005EC(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.EventSystem::TickModules()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_TickModules_m0A74957A4FF307FF480D2103AD225640693EB8C3 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EventSystem_TickModules_m0A74957A4FF307FF480D2103AD225640693EB8C3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
// for (var i = 0; i < m_SystemInputModules.Count; i++)
V_0 = 0;
goto IL_002d;
}
IL_0004:
{
// if (m_SystemInputModules[i] != null)
List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 * L_0 = __this->get_m_SystemInputModules_4();
int32_t L_1 = V_0;
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_2 = List_1_get_Item_m6556A45DA0ECCB9FFCA9717755E39559BD1679EF_inline(L_0, L_1, /*hidden argument*/List_1_get_Item_m6556A45DA0ECCB9FFCA9717755E39559BD1679EF_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_3 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_2, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0029;
}
}
{
// m_SystemInputModules[i].UpdateModule();
List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 * L_4 = __this->get_m_SystemInputModules_4();
int32_t L_5 = V_0;
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_6 = List_1_get_Item_m6556A45DA0ECCB9FFCA9717755E39559BD1679EF_inline(L_4, L_5, /*hidden argument*/List_1_get_Item_m6556A45DA0ECCB9FFCA9717755E39559BD1679EF_RuntimeMethod_var);
VirtActionInvoker0::Invoke(24 /* System.Void UnityEngine.EventSystems.BaseInputModule::UpdateModule() */, L_6);
}
IL_0029:
{
// for (var i = 0; i < m_SystemInputModules.Count; i++)
int32_t L_7 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
}
IL_002d:
{
// for (var i = 0; i < m_SystemInputModules.Count; i++)
int32_t L_8 = V_0;
List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 * L_9 = __this->get_m_SystemInputModules_4();
int32_t L_10 = List_1_get_Count_m7C1FFC5C91DC37F0D0C71D737C9BA7081E0722F0_inline(L_9, /*hidden argument*/List_1_get_Count_m7C1FFC5C91DC37F0D0C71D737C9BA7081E0722F0_RuntimeMethod_var);
if ((((int32_t)L_8) < ((int32_t)L_10)))
{
goto IL_0004;
}
}
{
// }
return;
}
}
// System.Void UnityEngine.EventSystems.EventSystem::OnApplicationFocus(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_OnApplicationFocus_m9DC07EB33D438D53366AC8EA989AA8325A1BE276 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, bool ___hasFocus0, const RuntimeMethod* method)
{
{
// m_HasFocus = hasFocus;
bool L_0 = ___hasFocus0;
__this->set_m_HasFocus_11(L_0);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.EventSystem::Update()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_Update_m62B9E3C3F69A8A22EE9BE644E9B44221140754ED (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EventSystem_Update_m62B9E3C3F69A8A22EE9BE644E9B44221140754ED_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * V_2 = NULL;
int32_t V_3 = 0;
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * V_4 = NULL;
{
// if (current != this)
IL2CPP_RUNTIME_CLASS_INIT(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_il2cpp_TypeInfo_var);
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_0 = EventSystem_get_current_m3151477735829089F66A3E46AD6DAB14CFDDE7BD(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_0, __this, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_000e;
}
}
{
// return;
return;
}
IL_000e:
{
// TickModules();
EventSystem_TickModules_m0A74957A4FF307FF480D2103AD225640693EB8C3(__this, /*hidden argument*/NULL);
// bool changedModule = false;
V_0 = (bool)0;
// for (var i = 0; i < m_SystemInputModules.Count; i++)
V_1 = 0;
goto IL_0054;
}
IL_001a:
{
// var module = m_SystemInputModules[i];
List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 * L_2 = __this->get_m_SystemInputModules_4();
int32_t L_3 = V_1;
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_4 = List_1_get_Item_m6556A45DA0ECCB9FFCA9717755E39559BD1679EF_inline(L_2, L_3, /*hidden argument*/List_1_get_Item_m6556A45DA0ECCB9FFCA9717755E39559BD1679EF_RuntimeMethod_var);
V_2 = L_4;
// if (module.IsModuleSupported() && module.ShouldActivateModule())
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_5 = V_2;
bool L_6 = VirtFuncInvoker0< bool >::Invoke(25 /* System.Boolean UnityEngine.EventSystems.BaseInputModule::IsModuleSupported() */, L_5);
if (!L_6)
{
goto IL_0050;
}
}
{
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_7 = V_2;
bool L_8 = VirtFuncInvoker0< bool >::Invoke(21 /* System.Boolean UnityEngine.EventSystems.BaseInputModule::ShouldActivateModule() */, L_7);
if (!L_8)
{
goto IL_0050;
}
}
{
// if (m_CurrentInputModule != module)
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_9 = __this->get_m_CurrentInputModule_5();
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_10 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_11 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_9, L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0062;
}
}
{
// ChangeEventModule(module);
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_12 = V_2;
EventSystem_ChangeEventModule_mE2CF924DE5717273AA345F5A52C46BA98C8ED662(__this, L_12, /*hidden argument*/NULL);
// changedModule = true;
V_0 = (bool)1;
// break;
goto IL_0062;
}
IL_0050:
{
// for (var i = 0; i < m_SystemInputModules.Count; i++)
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
}
IL_0054:
{
// for (var i = 0; i < m_SystemInputModules.Count; i++)
int32_t L_14 = V_1;
List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 * L_15 = __this->get_m_SystemInputModules_4();
int32_t L_16 = List_1_get_Count_m7C1FFC5C91DC37F0D0C71D737C9BA7081E0722F0_inline(L_15, /*hidden argument*/List_1_get_Count_m7C1FFC5C91DC37F0D0C71D737C9BA7081E0722F0_RuntimeMethod_var);
if ((((int32_t)L_14) < ((int32_t)L_16)))
{
goto IL_001a;
}
}
IL_0062:
{
// if (m_CurrentInputModule == null)
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_17 = __this->get_m_CurrentInputModule_5();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_18 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_17, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_18)
{
goto IL_00a9;
}
}
{
// for (var i = 0; i < m_SystemInputModules.Count; i++)
V_3 = 0;
goto IL_009b;
}
IL_0074:
{
// var module = m_SystemInputModules[i];
List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 * L_19 = __this->get_m_SystemInputModules_4();
int32_t L_20 = V_3;
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_21 = List_1_get_Item_m6556A45DA0ECCB9FFCA9717755E39559BD1679EF_inline(L_19, L_20, /*hidden argument*/List_1_get_Item_m6556A45DA0ECCB9FFCA9717755E39559BD1679EF_RuntimeMethod_var);
V_4 = L_21;
// if (module.IsModuleSupported())
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_22 = V_4;
bool L_23 = VirtFuncInvoker0< bool >::Invoke(25 /* System.Boolean UnityEngine.EventSystems.BaseInputModule::IsModuleSupported() */, L_22);
if (!L_23)
{
goto IL_0097;
}
}
{
// ChangeEventModule(module);
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_24 = V_4;
EventSystem_ChangeEventModule_mE2CF924DE5717273AA345F5A52C46BA98C8ED662(__this, L_24, /*hidden argument*/NULL);
// changedModule = true;
V_0 = (bool)1;
// break;
goto IL_00a9;
}
IL_0097:
{
// for (var i = 0; i < m_SystemInputModules.Count; i++)
int32_t L_25 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_009b:
{
// for (var i = 0; i < m_SystemInputModules.Count; i++)
int32_t L_26 = V_3;
List_1_t98E943F59530FD83B2F4B730F9C62B6A2F204176 * L_27 = __this->get_m_SystemInputModules_4();
int32_t L_28 = List_1_get_Count_m7C1FFC5C91DC37F0D0C71D737C9BA7081E0722F0_inline(L_27, /*hidden argument*/List_1_get_Count_m7C1FFC5C91DC37F0D0C71D737C9BA7081E0722F0_RuntimeMethod_var);
if ((((int32_t)L_26) < ((int32_t)L_28)))
{
goto IL_0074;
}
}
IL_00a9:
{
// if (!changedModule && m_CurrentInputModule != null)
bool L_29 = V_0;
if (L_29)
{
goto IL_00c5;
}
}
{
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_30 = __this->get_m_CurrentInputModule_5();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_31 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_30, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_31)
{
goto IL_00c5;
}
}
{
// m_CurrentInputModule.Process();
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_32 = __this->get_m_CurrentInputModule_5();
VirtActionInvoker0::Invoke(17 /* System.Void UnityEngine.EventSystems.BaseInputModule::Process() */, L_32);
}
IL_00c5:
{
// }
return;
}
}
// System.Void UnityEngine.EventSystems.EventSystem::ChangeEventModule(UnityEngine.EventSystems.BaseInputModule)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_ChangeEventModule_mE2CF924DE5717273AA345F5A52C46BA98C8ED662 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * ___module0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EventSystem_ChangeEventModule_mE2CF924DE5717273AA345F5A52C46BA98C8ED662_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (m_CurrentInputModule == module)
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_0 = __this->get_m_CurrentInputModule_5();
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_1 = ___module0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_2 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_0, L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_000f;
}
}
{
// return;
return;
}
IL_000f:
{
// if (m_CurrentInputModule != null)
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_3 = __this->get_m_CurrentInputModule_5();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_4 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_3, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0028;
}
}
{
// m_CurrentInputModule.DeactivateModule();
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_5 = __this->get_m_CurrentInputModule_5();
VirtActionInvoker0::Invoke(22 /* System.Void UnityEngine.EventSystems.BaseInputModule::DeactivateModule() */, L_5);
}
IL_0028:
{
// if (module != null)
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_6 = ___module0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_7 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_6, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0037;
}
}
{
// module.ActivateModule();
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_8 = ___module0;
VirtActionInvoker0::Invoke(23 /* System.Void UnityEngine.EventSystems.BaseInputModule::ActivateModule() */, L_8);
}
IL_0037:
{
// m_CurrentInputModule = module;
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_9 = ___module0;
__this->set_m_CurrentInputModule_5(L_9);
// }
return;
}
}
// System.String UnityEngine.EventSystems.EventSystem::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EventSystem_ToString_mAD8804AA87C37BF28EE8712110C185E7135C15B5 (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EventSystem_ToString_mAD8804AA87C37BF28EE8712110C185E7135C15B5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * G_B2_0 = NULL;
StringBuilder_t * G_B2_1 = NULL;
StringBuilder_t * G_B1_0 = NULL;
StringBuilder_t * G_B1_1 = NULL;
String_t* G_B3_0 = NULL;
StringBuilder_t * G_B3_1 = NULL;
StringBuilder_t * G_B3_2 = NULL;
{
// var sb = new StringBuilder();
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL);
// sb.AppendLine("<b>Selected:</b>" + currentSelectedGameObject);
StringBuilder_t * L_1 = L_0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_2 = EventSystem_get_currentSelectedGameObject_mE28E78D268403602DE1FB6F059EE3E9CDB7325A4_inline(__this, /*hidden argument*/NULL);
String_t* L_3 = String_Concat_mBB19C73816BDD1C3519F248E1ADC8E11A6FDB495(_stringLiteralAD737CBF90EFA86DCA21CC004A5DCE55F06D4646, L_2, /*hidden argument*/NULL);
StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_1, L_3, /*hidden argument*/NULL);
// sb.AppendLine();
StringBuilder_t * L_4 = L_1;
StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_4, /*hidden argument*/NULL);
// sb.AppendLine();
StringBuilder_t * L_5 = L_4;
StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_5, /*hidden argument*/NULL);
// sb.AppendLine(m_CurrentInputModule != null ? m_CurrentInputModule.ToString() : "No module");
StringBuilder_t * L_6 = L_5;
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_7 = __this->get_m_CurrentInputModule_5();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_8 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_7, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
G_B1_0 = L_6;
G_B1_1 = L_6;
if (L_8)
{
G_B2_0 = L_6;
G_B2_1 = L_6;
goto IL_0040;
}
}
{
G_B3_0 = _stringLiteralF12C9C9C288DFB90FCEBA6E6D47A236F536DED95;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
goto IL_004b;
}
IL_0040:
{
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_9 = __this->get_m_CurrentInputModule_5();
String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_9);
G_B3_0 = L_10;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
}
IL_004b:
{
StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(G_B3_1, G_B3_0, /*hidden argument*/NULL);
// return sb.ToString();
String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B3_2);
return L_11;
}
}
// System.Void UnityEngine.EventSystems.EventSystem::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem__cctor_m97E5871EEF081006E2793E916D0723D59DBE6EAD (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EventSystem__cctor_m97E5871EEF081006E2793E916D0723D59DBE6EAD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// private static List<EventSystem> m_EventSystems = new List<EventSystem>();
List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B * L_0 = (List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B *)il2cpp_codegen_object_new(List_1_t3C875794A24E26E7DE2FDFBC9CE1D5CF6813519B_il2cpp_TypeInfo_var);
List_1__ctor_m539C5079C5B2DA574B65303E09CD83C60752A64D(L_0, /*hidden argument*/List_1__ctor_m539C5079C5B2DA574B65303E09CD83C60752A64D_RuntimeMethod_var);
((EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_il2cpp_TypeInfo_var))->set_m_EventSystems_6(L_0);
// private static readonly Comparison<RaycastResult> s_RaycastComparer = RaycastComparer;
Comparison_1_t80059259E2DC99461F7DF9B43BA93054613AE703 * L_1 = (Comparison_1_t80059259E2DC99461F7DF9B43BA93054613AE703 *)il2cpp_codegen_object_new(Comparison_1_t80059259E2DC99461F7DF9B43BA93054613AE703_il2cpp_TypeInfo_var);
Comparison_1__ctor_mBCDF46BEA3D67AC2D1A438AC8D3480AE34293374(L_1, NULL, (intptr_t)((intptr_t)EventSystem_RaycastComparer_mECA916E0B66A65018A1E7544E51C6D77BC52F1CA_RuntimeMethod_var), /*hidden argument*/Comparison_1__ctor_mBCDF46BEA3D67AC2D1A438AC8D3480AE34293374_RuntimeMethod_var);
((EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77_il2cpp_TypeInfo_var))->set_s_RaycastComparer_14(L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<UnityEngine.EventSystems.EventTrigger_Entry> UnityEngine.EventSystems.EventTrigger::get_delegates()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 * EventTrigger_get_delegates_mA3A792558AA5B16BB51CDF02BDDF8E9DCFED158C (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, const RuntimeMethod* method)
{
{
// public List<Entry> delegates { get { return triggers; } set { triggers = value; } }
List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 * L_0 = EventTrigger_get_triggers_m16CC3F855662E6CEE23031B7787DA8CB4ADDF28A(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Void UnityEngine.EventSystems.EventTrigger::set_delegates(System.Collections.Generic.List`1<UnityEngine.EventSystems.EventTrigger_Entry>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_set_delegates_mCDACA955115E5F10D9C077A4CE5A2F25D5D38AED (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 * ___value0, const RuntimeMethod* method)
{
{
// public List<Entry> delegates { get { return triggers; } set { triggers = value; } }
List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 * L_0 = ___value0;
EventTrigger_set_triggers_mF70F72B1E143AEE94E07B032C3E057A22625467C_inline(__this, L_0, /*hidden argument*/NULL);
// public List<Entry> delegates { get { return triggers; } set { triggers = value; } }
return;
}
}
// System.Void UnityEngine.EventSystems.EventTrigger::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger__ctor_mE62DEDD1565721A55B77AEE673402A3F23A1A795 (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, const RuntimeMethod* method)
{
{
// protected EventTrigger()
MonoBehaviour__ctor_mEAEC84B222C60319D593E456D769B3311DFCEF97(__this, /*hidden argument*/NULL);
// {}
return;
}
}
// System.Collections.Generic.List`1<UnityEngine.EventSystems.EventTrigger_Entry> UnityEngine.EventSystems.EventTrigger::get_triggers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 * EventTrigger_get_triggers_m16CC3F855662E6CEE23031B7787DA8CB4ADDF28A (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EventTrigger_get_triggers_m16CC3F855662E6CEE23031B7787DA8CB4ADDF28A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (m_Delegates == null)
List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 * L_0 = __this->get_m_Delegates_4();
if (L_0)
{
goto IL_0013;
}
}
{
// m_Delegates = new List<Entry>();
List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 * L_1 = (List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 *)il2cpp_codegen_object_new(List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2_il2cpp_TypeInfo_var);
List_1__ctor_m300B9D7AF854D5BD0495EC1DAF799C3E4637F733(L_1, /*hidden argument*/List_1__ctor_m300B9D7AF854D5BD0495EC1DAF799C3E4637F733_RuntimeMethod_var);
__this->set_m_Delegates_4(L_1);
}
IL_0013:
{
// return m_Delegates;
List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 * L_2 = __this->get_m_Delegates_4();
return L_2;
}
}
// System.Void UnityEngine.EventSystems.EventTrigger::set_triggers(System.Collections.Generic.List`1<UnityEngine.EventSystems.EventTrigger_Entry>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_set_triggers_mF70F72B1E143AEE94E07B032C3E057A22625467C (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 * ___value0, const RuntimeMethod* method)
{
{
// set { m_Delegates = value; }
List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 * L_0 = ___value0;
__this->set_m_Delegates_4(L_0);
// set { m_Delegates = value; }
return;
}
}
// System.Void UnityEngine.EventSystems.EventTrigger::Execute(UnityEngine.EventSystems.EventTriggerType,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_Execute_m012E5ACD13CF24C4CEC5C3C9E508185A57EF2890 (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, int32_t ___id0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EventTrigger_Execute_m012E5ACD13CF24C4CEC5C3C9E508185A57EF2890_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t58989269D924DCD15F196DDEDAB84B85ED4D734E * V_2 = NULL;
{
// for (int i = 0, imax = triggers.Count; i < imax; ++i)
V_0 = 0;
// for (int i = 0, imax = triggers.Count; i < imax; ++i)
List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 * L_0 = EventTrigger_get_triggers_m16CC3F855662E6CEE23031B7787DA8CB4ADDF28A(__this, /*hidden argument*/NULL);
int32_t L_1 = List_1_get_Count_m16394594C6ADDE04FA98C299373EF131332A29F4_inline(L_0, /*hidden argument*/List_1_get_Count_m16394594C6ADDE04FA98C299373EF131332A29F4_RuntimeMethod_var);
V_1 = L_1;
goto IL_003e;
}
IL_0010:
{
// var ent = triggers[i];
List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 * L_2 = EventTrigger_get_triggers_m16CC3F855662E6CEE23031B7787DA8CB4ADDF28A(__this, /*hidden argument*/NULL);
int32_t L_3 = V_0;
Entry_t58989269D924DCD15F196DDEDAB84B85ED4D734E * L_4 = List_1_get_Item_m74325398BEC7FE110512D57346D985A1C0D7DD25_inline(L_2, L_3, /*hidden argument*/List_1_get_Item_m74325398BEC7FE110512D57346D985A1C0D7DD25_RuntimeMethod_var);
V_2 = L_4;
// if (ent.eventID == id && ent.callback != null)
Entry_t58989269D924DCD15F196DDEDAB84B85ED4D734E * L_5 = V_2;
int32_t L_6 = L_5->get_eventID_0();
int32_t L_7 = ___id0;
if ((!(((uint32_t)L_6) == ((uint32_t)L_7))))
{
goto IL_003a;
}
}
{
Entry_t58989269D924DCD15F196DDEDAB84B85ED4D734E * L_8 = V_2;
TriggerEvent_tF73252408C49CDE2F1A05AA75FE09086C53A9793 * L_9 = L_8->get_callback_1();
if (!L_9)
{
goto IL_003a;
}
}
{
// ent.callback.Invoke(eventData);
Entry_t58989269D924DCD15F196DDEDAB84B85ED4D734E * L_10 = V_2;
TriggerEvent_tF73252408C49CDE2F1A05AA75FE09086C53A9793 * L_11 = L_10->get_callback_1();
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_12 = ___eventData1;
UnityEvent_1_Invoke_mC579EE94CDB01C1CA945F652FD710CB64895FA9E(L_11, L_12, /*hidden argument*/UnityEvent_1_Invoke_mC579EE94CDB01C1CA945F652FD710CB64895FA9E_RuntimeMethod_var);
}
IL_003a:
{
// for (int i = 0, imax = triggers.Count; i < imax; ++i)
int32_t L_13 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
}
IL_003e:
{
// for (int i = 0, imax = triggers.Count; i < imax; ++i)
int32_t L_14 = V_0;
int32_t L_15 = V_1;
if ((((int32_t)L_14) < ((int32_t)L_15)))
{
goto IL_0010;
}
}
{
// }
return;
}
}
// System.Void UnityEngine.EventSystems.EventTrigger::OnPointerEnter(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnPointerEnter_m04B452EA2C2516F98483F6EC242B6E321D6B5B40 (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___eventData0, const RuntimeMethod* method)
{
{
// Execute(EventTriggerType.PointerEnter, eventData);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_0 = ___eventData0;
EventTrigger_Execute_m012E5ACD13CF24C4CEC5C3C9E508185A57EF2890(__this, 0, L_0, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.EventTrigger::OnPointerExit(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnPointerExit_mF5EF9969978928D43D54F521F5D4F376D2339A7E (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___eventData0, const RuntimeMethod* method)
{
{
// Execute(EventTriggerType.PointerExit, eventData);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_0 = ___eventData0;
EventTrigger_Execute_m012E5ACD13CF24C4CEC5C3C9E508185A57EF2890(__this, 1, L_0, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.EventTrigger::OnDrag(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnDrag_m5D9429B4EBFA5D7F759959B907DA492703B861C7 (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___eventData0, const RuntimeMethod* method)
{
{
// Execute(EventTriggerType.Drag, eventData);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_0 = ___eventData0;
EventTrigger_Execute_m012E5ACD13CF24C4CEC5C3C9E508185A57EF2890(__this, 5, L_0, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.EventTrigger::OnDrop(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnDrop_m790E82403AB8D54A0EA5FE1DF9C95D14870125C4 (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___eventData0, const RuntimeMethod* method)
{
{
// Execute(EventTriggerType.Drop, eventData);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_0 = ___eventData0;
EventTrigger_Execute_m012E5ACD13CF24C4CEC5C3C9E508185A57EF2890(__this, 6, L_0, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.EventTrigger::OnPointerDown(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnPointerDown_mA287796A4055EB6364E660BE570206FC6F1DF46E (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___eventData0, const RuntimeMethod* method)
{
{
// Execute(EventTriggerType.PointerDown, eventData);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_0 = ___eventData0;
EventTrigger_Execute_m012E5ACD13CF24C4CEC5C3C9E508185A57EF2890(__this, 2, L_0, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.EventTrigger::OnPointerUp(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnPointerUp_m6DE8F821DED7D2DB1DB37374D4898B6141AF4689 (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___eventData0, const RuntimeMethod* method)
{
{
// Execute(EventTriggerType.PointerUp, eventData);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_0 = ___eventData0;
EventTrigger_Execute_m012E5ACD13CF24C4CEC5C3C9E508185A57EF2890(__this, 3, L_0, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.EventTrigger::OnPointerClick(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnPointerClick_m5246E16B5764AB16420082BF7ECA58F6C06F622F (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___eventData0, const RuntimeMethod* method)
{
{
// Execute(EventTriggerType.PointerClick, eventData);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_0 = ___eventData0;
EventTrigger_Execute_m012E5ACD13CF24C4CEC5C3C9E508185A57EF2890(__this, 4, L_0, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.EventTrigger::OnSelect(UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnSelect_mA9FDA907A6286FFA9F5BD9FB63D627B39B7591B9 (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData0, const RuntimeMethod* method)
{
{
// Execute(EventTriggerType.Select, eventData);
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_0 = ___eventData0;
EventTrigger_Execute_m012E5ACD13CF24C4CEC5C3C9E508185A57EF2890(__this, ((int32_t)9), L_0, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.EventTrigger::OnDeselect(UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnDeselect_mCBB9E32B7B8319CDE1D4199F3205C949D2A588B0 (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData0, const RuntimeMethod* method)
{
{
// Execute(EventTriggerType.Deselect, eventData);
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_0 = ___eventData0;
EventTrigger_Execute_m012E5ACD13CF24C4CEC5C3C9E508185A57EF2890(__this, ((int32_t)10), L_0, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.EventTrigger::OnScroll(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnScroll_mF20D72F4751F7F184B0916BB3C198418D0C08AFA (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___eventData0, const RuntimeMethod* method)
{
{
// Execute(EventTriggerType.Scroll, eventData);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_0 = ___eventData0;
EventTrigger_Execute_m012E5ACD13CF24C4CEC5C3C9E508185A57EF2890(__this, 7, L_0, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.EventTrigger::OnMove(UnityEngine.EventSystems.AxisEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnMove_m9D1B943ADA57BC17D5E38259D58513D8A7AF04A6 (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * ___eventData0, const RuntimeMethod* method)
{
{
// Execute(EventTriggerType.Move, eventData);
AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * L_0 = ___eventData0;
EventTrigger_Execute_m012E5ACD13CF24C4CEC5C3C9E508185A57EF2890(__this, ((int32_t)11), L_0, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.EventTrigger::OnUpdateSelected(UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnUpdateSelected_mE19A22DB72549942C6E8E935D73846E364D05587 (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData0, const RuntimeMethod* method)
{
{
// Execute(EventTriggerType.UpdateSelected, eventData);
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_0 = ___eventData0;
EventTrigger_Execute_m012E5ACD13CF24C4CEC5C3C9E508185A57EF2890(__this, 8, L_0, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.EventTrigger::OnInitializePotentialDrag(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnInitializePotentialDrag_mD1299225787F1132CE52885AA6EFB1609348AB39 (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___eventData0, const RuntimeMethod* method)
{
{
// Execute(EventTriggerType.InitializePotentialDrag, eventData);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_0 = ___eventData0;
EventTrigger_Execute_m012E5ACD13CF24C4CEC5C3C9E508185A57EF2890(__this, ((int32_t)12), L_0, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.EventTrigger::OnBeginDrag(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnBeginDrag_m4B64A8BBE2C33FB05920E9166D205EBE471AC7FE (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___eventData0, const RuntimeMethod* method)
{
{
// Execute(EventTriggerType.BeginDrag, eventData);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_0 = ___eventData0;
EventTrigger_Execute_m012E5ACD13CF24C4CEC5C3C9E508185A57EF2890(__this, ((int32_t)13), L_0, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.EventTrigger::OnEndDrag(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnEndDrag_mB7B2D7B3602649D660633584CCFEAC5B23D29EEB (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___eventData0, const RuntimeMethod* method)
{
{
// Execute(EventTriggerType.EndDrag, eventData);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_0 = ___eventData0;
EventTrigger_Execute_m012E5ACD13CF24C4CEC5C3C9E508185A57EF2890(__this, ((int32_t)14), L_0, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.EventTrigger::OnSubmit(UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnSubmit_m27A7419DF201835D24B4FE2FA1EA771D03B19DC3 (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData0, const RuntimeMethod* method)
{
{
// Execute(EventTriggerType.Submit, eventData);
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_0 = ___eventData0;
EventTrigger_Execute_m012E5ACD13CF24C4CEC5C3C9E508185A57EF2890(__this, ((int32_t)15), L_0, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.EventTrigger::OnCancel(UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnCancel_mF2EFE2A47874BF335F9BED5C583F1F32667CA20C (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData0, const RuntimeMethod* method)
{
{
// Execute(EventTriggerType.Cancel, eventData);
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_0 = ___eventData0;
EventTrigger_Execute_m012E5ACD13CF24C4CEC5C3C9E508185A57EF2890(__this, ((int32_t)16), L_0, /*hidden argument*/NULL);
// }
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.EventSystems.EventTrigger_Entry::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Entry__ctor_m646E309104AA1D549A0C07B948BE183013A927BF (Entry_t58989269D924DCD15F196DDEDAB84B85ED4D734E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Entry__ctor_m646E309104AA1D549A0C07B948BE183013A927BF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// public EventTriggerType eventID = EventTriggerType.PointerClick;
__this->set_eventID_0(4);
// public TriggerEvent callback = new TriggerEvent();
TriggerEvent_tF73252408C49CDE2F1A05AA75FE09086C53A9793 * L_0 = (TriggerEvent_tF73252408C49CDE2F1A05AA75FE09086C53A9793 *)il2cpp_codegen_object_new(TriggerEvent_tF73252408C49CDE2F1A05AA75FE09086C53A9793_il2cpp_TypeInfo_var);
TriggerEvent__ctor_m5FA4AD9F5E1671A1F7F4C45AB1620624FEFC5F13(L_0, /*hidden argument*/NULL);
__this->set_callback_1(L_0);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.EventSystems.EventTrigger_TriggerEvent::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TriggerEvent__ctor_m5FA4AD9F5E1671A1F7F4C45AB1620624FEFC5F13 (TriggerEvent_tF73252408C49CDE2F1A05AA75FE09086C53A9793 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TriggerEvent__ctor_m5FA4AD9F5E1671A1F7F4C45AB1620624FEFC5F13_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
UnityEvent_1__ctor_mE99456F65F6796D9B37A8FC6CD31A598367DF68A(__this, /*hidden argument*/UnityEvent_1__ctor_mE99456F65F6796D9B37A8FC6CD31A598367DF68A_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.EventSystems.ExecuteEvents::Execute(UnityEngine.EventSystems.IPointerEnterHandler,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_mFB517B969B21E23CB5EAD0E9D4DB09A357727233 (RuntimeObject* ___handler0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_Execute_mFB517B969B21E23CB5EAD0E9D4DB09A357727233_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// handler.OnPointerEnter(ValidateEventData<PointerEventData>(eventData));
RuntimeObject* L_0 = ___handler0;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_1 = ___eventData1;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_2 = ExecuteEvents_ValidateEventData_TisPointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_mDBD5031ADC7CB64D9BD1DCDF00C8C4B927CF0A18(L_1, /*hidden argument*/ExecuteEvents_ValidateEventData_TisPointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_mDBD5031ADC7CB64D9BD1DCDF00C8C4B927CF0A18_RuntimeMethod_var);
InterfaceActionInvoker1< PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * >::Invoke(0 /* System.Void UnityEngine.EventSystems.IPointerEnterHandler::OnPointerEnter(UnityEngine.EventSystems.PointerEventData) */, IPointerEnterHandler_tD4E3109B19B18A39FE89A2386C453D3F5019026B_il2cpp_TypeInfo_var, L_0, L_2);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.ExecuteEvents::Execute(UnityEngine.EventSystems.IPointerExitHandler,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_mE64EB9BA625A97760C7A43F67DC976C6F7A8D0F8 (RuntimeObject* ___handler0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_Execute_mE64EB9BA625A97760C7A43F67DC976C6F7A8D0F8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// handler.OnPointerExit(ValidateEventData<PointerEventData>(eventData));
RuntimeObject* L_0 = ___handler0;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_1 = ___eventData1;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_2 = ExecuteEvents_ValidateEventData_TisPointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_mDBD5031ADC7CB64D9BD1DCDF00C8C4B927CF0A18(L_1, /*hidden argument*/ExecuteEvents_ValidateEventData_TisPointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_mDBD5031ADC7CB64D9BD1DCDF00C8C4B927CF0A18_RuntimeMethod_var);
InterfaceActionInvoker1< PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * >::Invoke(0 /* System.Void UnityEngine.EventSystems.IPointerExitHandler::OnPointerExit(UnityEngine.EventSystems.PointerEventData) */, IPointerExitHandler_t5D65A773A15D990BC231F7C9FE221AB4417327FF_il2cpp_TypeInfo_var, L_0, L_2);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.ExecuteEvents::Execute(UnityEngine.EventSystems.IPointerDownHandler,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_m177896660F17B1D4CC55DD2AEB8A2C783B582DC7 (RuntimeObject* ___handler0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_Execute_m177896660F17B1D4CC55DD2AEB8A2C783B582DC7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// handler.OnPointerDown(ValidateEventData<PointerEventData>(eventData));
RuntimeObject* L_0 = ___handler0;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_1 = ___eventData1;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_2 = ExecuteEvents_ValidateEventData_TisPointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_mDBD5031ADC7CB64D9BD1DCDF00C8C4B927CF0A18(L_1, /*hidden argument*/ExecuteEvents_ValidateEventData_TisPointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_mDBD5031ADC7CB64D9BD1DCDF00C8C4B927CF0A18_RuntimeMethod_var);
InterfaceActionInvoker1< PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * >::Invoke(0 /* System.Void UnityEngine.EventSystems.IPointerDownHandler::OnPointerDown(UnityEngine.EventSystems.PointerEventData) */, IPointerDownHandler_tD9DAB9987B51AF8D4029CC24F52D17485684F4BF_il2cpp_TypeInfo_var, L_0, L_2);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.ExecuteEvents::Execute(UnityEngine.EventSystems.IPointerUpHandler,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_mDFB526FB6BE7B2C5266937D471D15F9D25C1DD8F (RuntimeObject* ___handler0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_Execute_mDFB526FB6BE7B2C5266937D471D15F9D25C1DD8F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// handler.OnPointerUp(ValidateEventData<PointerEventData>(eventData));
RuntimeObject* L_0 = ___handler0;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_1 = ___eventData1;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_2 = ExecuteEvents_ValidateEventData_TisPointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_mDBD5031ADC7CB64D9BD1DCDF00C8C4B927CF0A18(L_1, /*hidden argument*/ExecuteEvents_ValidateEventData_TisPointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_mDBD5031ADC7CB64D9BD1DCDF00C8C4B927CF0A18_RuntimeMethod_var);
InterfaceActionInvoker1< PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * >::Invoke(0 /* System.Void UnityEngine.EventSystems.IPointerUpHandler::OnPointerUp(UnityEngine.EventSystems.PointerEventData) */, IPointerUpHandler_tAF005E3FEF3EA2D9DDA99FAA488955AA8B392102_il2cpp_TypeInfo_var, L_0, L_2);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.ExecuteEvents::Execute(UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_mA47467EEFB5EB9632375D95D39D2ED878AF286A2 (RuntimeObject* ___handler0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_Execute_mA47467EEFB5EB9632375D95D39D2ED878AF286A2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// handler.OnPointerClick(ValidateEventData<PointerEventData>(eventData));
RuntimeObject* L_0 = ___handler0;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_1 = ___eventData1;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_2 = ExecuteEvents_ValidateEventData_TisPointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_mDBD5031ADC7CB64D9BD1DCDF00C8C4B927CF0A18(L_1, /*hidden argument*/ExecuteEvents_ValidateEventData_TisPointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_mDBD5031ADC7CB64D9BD1DCDF00C8C4B927CF0A18_RuntimeMethod_var);
InterfaceActionInvoker1< PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * >::Invoke(0 /* System.Void UnityEngine.EventSystems.IPointerClickHandler::OnPointerClick(UnityEngine.EventSystems.PointerEventData) */, IPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13_il2cpp_TypeInfo_var, L_0, L_2);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.ExecuteEvents::Execute(UnityEngine.EventSystems.IInitializePotentialDragHandler,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_m5AB8EA95A58AFC2614E9921F16B0603D0EA8ADA6 (RuntimeObject* ___handler0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_Execute_m5AB8EA95A58AFC2614E9921F16B0603D0EA8ADA6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// handler.OnInitializePotentialDrag(ValidateEventData<PointerEventData>(eventData));
RuntimeObject* L_0 = ___handler0;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_1 = ___eventData1;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_2 = ExecuteEvents_ValidateEventData_TisPointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_mDBD5031ADC7CB64D9BD1DCDF00C8C4B927CF0A18(L_1, /*hidden argument*/ExecuteEvents_ValidateEventData_TisPointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_mDBD5031ADC7CB64D9BD1DCDF00C8C4B927CF0A18_RuntimeMethod_var);
InterfaceActionInvoker1< PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * >::Invoke(0 /* System.Void UnityEngine.EventSystems.IInitializePotentialDragHandler::OnInitializePotentialDrag(UnityEngine.EventSystems.PointerEventData) */, IInitializePotentialDragHandler_t56667A600E5BC5B8786753312DB9EDFE13455B45_il2cpp_TypeInfo_var, L_0, L_2);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.ExecuteEvents::Execute(UnityEngine.EventSystems.IBeginDragHandler,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_m1C2C7DA0379E8A119C415FAFF3B613C9D5278E5A (RuntimeObject* ___handler0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_Execute_m1C2C7DA0379E8A119C415FAFF3B613C9D5278E5A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// handler.OnBeginDrag(ValidateEventData<PointerEventData>(eventData));
RuntimeObject* L_0 = ___handler0;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_1 = ___eventData1;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_2 = ExecuteEvents_ValidateEventData_TisPointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_mDBD5031ADC7CB64D9BD1DCDF00C8C4B927CF0A18(L_1, /*hidden argument*/ExecuteEvents_ValidateEventData_TisPointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_mDBD5031ADC7CB64D9BD1DCDF00C8C4B927CF0A18_RuntimeMethod_var);
InterfaceActionInvoker1< PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * >::Invoke(0 /* System.Void UnityEngine.EventSystems.IBeginDragHandler::OnBeginDrag(UnityEngine.EventSystems.PointerEventData) */, IBeginDragHandler_t5CBE3EF4B4A6303FA5E9AC40295295BBAD687BF4_il2cpp_TypeInfo_var, L_0, L_2);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.ExecuteEvents::Execute(UnityEngine.EventSystems.IDragHandler,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_mDE9458FFE6DB4E5446D9B92FD59A9282EF0E26F1 (RuntimeObject* ___handler0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_Execute_mDE9458FFE6DB4E5446D9B92FD59A9282EF0E26F1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// handler.OnDrag(ValidateEventData<PointerEventData>(eventData));
RuntimeObject* L_0 = ___handler0;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_1 = ___eventData1;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_2 = ExecuteEvents_ValidateEventData_TisPointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_mDBD5031ADC7CB64D9BD1DCDF00C8C4B927CF0A18(L_1, /*hidden argument*/ExecuteEvents_ValidateEventData_TisPointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_mDBD5031ADC7CB64D9BD1DCDF00C8C4B927CF0A18_RuntimeMethod_var);
InterfaceActionInvoker1< PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * >::Invoke(0 /* System.Void UnityEngine.EventSystems.IDragHandler::OnDrag(UnityEngine.EventSystems.PointerEventData) */, IDragHandler_t196F681B5B4A5BFCDEA2A93CA0A75D504908D25B_il2cpp_TypeInfo_var, L_0, L_2);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.ExecuteEvents::Execute(UnityEngine.EventSystems.IEndDragHandler,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_m046FB8ED863B38BD15281E9EED004E9686B87184 (RuntimeObject* ___handler0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_Execute_m046FB8ED863B38BD15281E9EED004E9686B87184_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// handler.OnEndDrag(ValidateEventData<PointerEventData>(eventData));
RuntimeObject* L_0 = ___handler0;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_1 = ___eventData1;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_2 = ExecuteEvents_ValidateEventData_TisPointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_mDBD5031ADC7CB64D9BD1DCDF00C8C4B927CF0A18(L_1, /*hidden argument*/ExecuteEvents_ValidateEventData_TisPointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_mDBD5031ADC7CB64D9BD1DCDF00C8C4B927CF0A18_RuntimeMethod_var);
InterfaceActionInvoker1< PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * >::Invoke(0 /* System.Void UnityEngine.EventSystems.IEndDragHandler::OnEndDrag(UnityEngine.EventSystems.PointerEventData) */, IEndDragHandler_tA6045DEE83CD2C06AC9409CBE183B10E3C0B9070_il2cpp_TypeInfo_var, L_0, L_2);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.ExecuteEvents::Execute(UnityEngine.EventSystems.IDropHandler,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_mEF9FBBA3E2BDF08B51E80190C3BC9C0E0204C417 (RuntimeObject* ___handler0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_Execute_mEF9FBBA3E2BDF08B51E80190C3BC9C0E0204C417_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// handler.OnDrop(ValidateEventData<PointerEventData>(eventData));
RuntimeObject* L_0 = ___handler0;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_1 = ___eventData1;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_2 = ExecuteEvents_ValidateEventData_TisPointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_mDBD5031ADC7CB64D9BD1DCDF00C8C4B927CF0A18(L_1, /*hidden argument*/ExecuteEvents_ValidateEventData_TisPointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_mDBD5031ADC7CB64D9BD1DCDF00C8C4B927CF0A18_RuntimeMethod_var);
InterfaceActionInvoker1< PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * >::Invoke(0 /* System.Void UnityEngine.EventSystems.IDropHandler::OnDrop(UnityEngine.EventSystems.PointerEventData) */, IDropHandler_t617E86EDCC6B18A39D69DFF444D5358072B524C3_il2cpp_TypeInfo_var, L_0, L_2);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.ExecuteEvents::Execute(UnityEngine.EventSystems.IScrollHandler,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_m00514A1B45480BC9D55FA88B66914ED163B6A6CC (RuntimeObject* ___handler0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_Execute_m00514A1B45480BC9D55FA88B66914ED163B6A6CC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// handler.OnScroll(ValidateEventData<PointerEventData>(eventData));
RuntimeObject* L_0 = ___handler0;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_1 = ___eventData1;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_2 = ExecuteEvents_ValidateEventData_TisPointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_mDBD5031ADC7CB64D9BD1DCDF00C8C4B927CF0A18(L_1, /*hidden argument*/ExecuteEvents_ValidateEventData_TisPointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_mDBD5031ADC7CB64D9BD1DCDF00C8C4B927CF0A18_RuntimeMethod_var);
InterfaceActionInvoker1< PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * >::Invoke(0 /* System.Void UnityEngine.EventSystems.IScrollHandler::OnScroll(UnityEngine.EventSystems.PointerEventData) */, IScrollHandler_t3BB7CCD821B37EBB5EA18D30D65D4075FB43198B_il2cpp_TypeInfo_var, L_0, L_2);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.ExecuteEvents::Execute(UnityEngine.EventSystems.IUpdateSelectedHandler,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_m2D4B7103DCEA057526CDF142A4D4C70136CC8233 (RuntimeObject* ___handler0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_Execute_m2D4B7103DCEA057526CDF142A4D4C70136CC8233_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// handler.OnUpdateSelected(eventData);
RuntimeObject* L_0 = ___handler0;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_1 = ___eventData1;
InterfaceActionInvoker1< BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * >::Invoke(0 /* System.Void UnityEngine.EventSystems.IUpdateSelectedHandler::OnUpdateSelected(UnityEngine.EventSystems.BaseEventData) */, IUpdateSelectedHandler_t460F9A1B3655B6DD49656995D451206631B4F4D0_il2cpp_TypeInfo_var, L_0, L_1);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.ExecuteEvents::Execute(UnityEngine.EventSystems.ISelectHandler,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_m00C0AAED23C33309955E60AB6319863A3052AE61 (RuntimeObject* ___handler0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_Execute_m00C0AAED23C33309955E60AB6319863A3052AE61_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// handler.OnSelect(eventData);
RuntimeObject* L_0 = ___handler0;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_1 = ___eventData1;
InterfaceActionInvoker1< BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * >::Invoke(0 /* System.Void UnityEngine.EventSystems.ISelectHandler::OnSelect(UnityEngine.EventSystems.BaseEventData) */, ISelectHandler_t05E0943DEF2BC53023C2E4BF4C815E0EDE82C0F4_il2cpp_TypeInfo_var, L_0, L_1);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.ExecuteEvents::Execute(UnityEngine.EventSystems.IDeselectHandler,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_m8B55F40246FBF954F2C9981BEEEA0828A770A697 (RuntimeObject* ___handler0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_Execute_m8B55F40246FBF954F2C9981BEEEA0828A770A697_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// handler.OnDeselect(eventData);
RuntimeObject* L_0 = ___handler0;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_1 = ___eventData1;
InterfaceActionInvoker1< BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * >::Invoke(0 /* System.Void UnityEngine.EventSystems.IDeselectHandler::OnDeselect(UnityEngine.EventSystems.BaseEventData) */, IDeselectHandler_t7A98A4E16B7F39F827584A16F120FD4FC001997D_il2cpp_TypeInfo_var, L_0, L_1);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.ExecuteEvents::Execute(UnityEngine.EventSystems.IMoveHandler,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_m7CCC77D770D79991096597CD2FE892267BA7BA4B (RuntimeObject* ___handler0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_Execute_m7CCC77D770D79991096597CD2FE892267BA7BA4B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// handler.OnMove(ValidateEventData<AxisEventData>(eventData));
RuntimeObject* L_0 = ___handler0;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_1 = ___eventData1;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * L_2 = ExecuteEvents_ValidateEventData_TisAxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442_mBBF734D77FCE3114EB1831C662BD8FB7A9CB1505(L_1, /*hidden argument*/ExecuteEvents_ValidateEventData_TisAxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442_mBBF734D77FCE3114EB1831C662BD8FB7A9CB1505_RuntimeMethod_var);
InterfaceActionInvoker1< AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * >::Invoke(0 /* System.Void UnityEngine.EventSystems.IMoveHandler::OnMove(UnityEngine.EventSystems.AxisEventData) */, IMoveHandler_tD51D5B6A4C5B3A233263107AF0020BE185647D41_il2cpp_TypeInfo_var, L_0, L_2);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.ExecuteEvents::Execute(UnityEngine.EventSystems.ISubmitHandler,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_m5354ABE381C181AA8B3514D1849E7788758E8505 (RuntimeObject* ___handler0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_Execute_m5354ABE381C181AA8B3514D1849E7788758E8505_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// handler.OnSubmit(eventData);
RuntimeObject* L_0 = ___handler0;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_1 = ___eventData1;
InterfaceActionInvoker1< BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * >::Invoke(0 /* System.Void UnityEngine.EventSystems.ISubmitHandler::OnSubmit(UnityEngine.EventSystems.BaseEventData) */, ISubmitHandler_tCFAD2814817B87B883DB9E7F84EE0196C9E531C5_il2cpp_TypeInfo_var, L_0, L_1);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.ExecuteEvents::Execute(UnityEngine.EventSystems.ICancelHandler,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_m66FD7F4E4DE2617EE432AD9DA0D3A258C5F1FBFB (RuntimeObject* ___handler0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_Execute_m66FD7F4E4DE2617EE432AD9DA0D3A258C5F1FBFB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// handler.OnCancel(eventData);
RuntimeObject* L_0 = ___handler0;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_1 = ___eventData1;
InterfaceActionInvoker1< BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * >::Invoke(0 /* System.Void UnityEngine.EventSystems.ICancelHandler::OnCancel(UnityEngine.EventSystems.BaseEventData) */, ICancelHandler_t868799EEEF8164176835C988494360950CFB75B3_il2cpp_TypeInfo_var, L_0, L_1);
// }
return;
}
}
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerEnterHandler> UnityEngine.EventSystems.ExecuteEvents::get_pointerEnterHandler()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 * ExecuteEvents_get_pointerEnterHandler_mFD5296E38EB1C5EB6D16CB83913430FEEBF889A5 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_pointerEnterHandler_mFD5296E38EB1C5EB6D16CB83913430FEEBF889A5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_PointerEnterHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_PointerEnterHandler_0();
return L_0;
}
}
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerExitHandler> UnityEngine.EventSystems.ExecuteEvents::get_pointerExitHandler()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA * ExecuteEvents_get_pointerExitHandler_mE5EC9537676A055EEE178A4E6B58D96F9B4AC301 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_pointerExitHandler_mE5EC9537676A055EEE178A4E6B58D96F9B4AC301_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_PointerExitHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_PointerExitHandler_1();
return L_0;
}
}
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerDownHandler> UnityEngine.EventSystems.ExecuteEvents::get_pointerDownHandler()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E * ExecuteEvents_get_pointerDownHandler_m8AE9CA906C86BBBEB75BA2D05F5DAB01F62519E3 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_pointerDownHandler_m8AE9CA906C86BBBEB75BA2D05F5DAB01F62519E3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_PointerDownHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_PointerDownHandler_2();
return L_0;
}
}
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerUpHandler> UnityEngine.EventSystems.ExecuteEvents::get_pointerUpHandler()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 * ExecuteEvents_get_pointerUpHandler_m7EDDD1128DC04344CECEBCB9B6B7CD064F7FAED2 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_pointerUpHandler_m7EDDD1128DC04344CECEBCB9B6B7CD064F7FAED2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_PointerUpHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_PointerUpHandler_3();
return L_0;
}
}
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IPointerClickHandler> UnityEngine.EventSystems.ExecuteEvents::get_pointerClickHandler()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E * ExecuteEvents_get_pointerClickHandler_mA657195AEC7D0A42036CBCAC9AD48F215C3C69E3 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_pointerClickHandler_mA657195AEC7D0A42036CBCAC9AD48F215C3C69E3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_PointerClickHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_PointerClickHandler_4();
return L_0;
}
}
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IInitializePotentialDragHandler> UnityEngine.EventSystems.ExecuteEvents::get_initializePotentialDrag()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 * ExecuteEvents_get_initializePotentialDrag_m5B3D899EB08DA227EFBFC67778DDB98D7505C6D4 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_initializePotentialDrag_m5B3D899EB08DA227EFBFC67778DDB98D7505C6D4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_InitializePotentialDragHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_InitializePotentialDragHandler_5();
return L_0;
}
}
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IBeginDragHandler> UnityEngine.EventSystems.ExecuteEvents::get_beginDragHandler()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 * ExecuteEvents_get_beginDragHandler_m7F238765714F73899EAFDF0BA203D9A8A57AED31 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_beginDragHandler_m7F238765714F73899EAFDF0BA203D9A8A57AED31_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_BeginDragHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_BeginDragHandler_6();
return L_0;
}
}
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IDragHandler> UnityEngine.EventSystems.ExecuteEvents::get_dragHandler()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 * ExecuteEvents_get_dragHandler_m41B7D77771806788CD773C83C2E5A53D5ED5B179 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_dragHandler_m41B7D77771806788CD773C83C2E5A53D5ED5B179_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_DragHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_DragHandler_7();
return L_0;
}
}
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IEndDragHandler> UnityEngine.EventSystems.ExecuteEvents::get_endDragHandler()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 * ExecuteEvents_get_endDragHandler_m23B60D3E3873043263069A3C3145393475690769 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_endDragHandler_m23B60D3E3873043263069A3C3145393475690769_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_EndDragHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_EndDragHandler_8();
return L_0;
}
}
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IDropHandler> UnityEngine.EventSystems.ExecuteEvents::get_dropHandler()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 * ExecuteEvents_get_dropHandler_mC2362B96C6CD3628B83722F4B7C73E707C6C1EAF (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_dropHandler_mC2362B96C6CD3628B83722F4B7C73E707C6C1EAF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_DropHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_DropHandler_9();
return L_0;
}
}
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IScrollHandler> UnityEngine.EventSystems.ExecuteEvents::get_scrollHandler()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A * ExecuteEvents_get_scrollHandler_m48E5B17388986BD59EC7A7BF27E3D30A9FD057F7 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_scrollHandler_m48E5B17388986BD59EC7A7BF27E3D30A9FD057F7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_ScrollHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_ScrollHandler_10();
return L_0;
}
}
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IUpdateSelectedHandler> UnityEngine.EventSystems.ExecuteEvents::get_updateSelectedHandler()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 * ExecuteEvents_get_updateSelectedHandler_mE18DBB058B1EDC75D4F690A1E35003749BBC0567 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_updateSelectedHandler_mE18DBB058B1EDC75D4F690A1E35003749BBC0567_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_UpdateSelectedHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_UpdateSelectedHandler_11();
return L_0;
}
}
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.ISelectHandler> UnityEngine.EventSystems.ExecuteEvents::get_selectHandler()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t7521247C87411935E8A2CA38683533083459473F * ExecuteEvents_get_selectHandler_m26186C0D78CA4A8AFA0789A09F488F7E186BE1C8 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_selectHandler_m26186C0D78CA4A8AFA0789A09F488F7E186BE1C8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_SelectHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t7521247C87411935E8A2CA38683533083459473F * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_SelectHandler_12();
return L_0;
}
}
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IDeselectHandler> UnityEngine.EventSystems.ExecuteEvents::get_deselectHandler()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 * ExecuteEvents_get_deselectHandler_mEAA9E3701CC972EFDD20B30E9B3CD9302B2FD668 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_deselectHandler_mEAA9E3701CC972EFDD20B30E9B3CD9302B2FD668_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_DeselectHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_DeselectHandler_13();
return L_0;
}
}
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.IMoveHandler> UnityEngine.EventSystems.ExecuteEvents::get_moveHandler()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB * ExecuteEvents_get_moveHandler_m113A4222FC10723B2E38398E182C02F6624D6F24 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_moveHandler_m113A4222FC10723B2E38398E182C02F6624D6F24_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_MoveHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_MoveHandler_14();
return L_0;
}
}
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.ISubmitHandler> UnityEngine.EventSystems.ExecuteEvents::get_submitHandler()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B * ExecuteEvents_get_submitHandler_m734C2BE2F7CDA7F5C42897E3C8023D3C7E1EDF88 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_submitHandler_m734C2BE2F7CDA7F5C42897E3C8023D3C7E1EDF88_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_SubmitHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_SubmitHandler_15();
return L_0;
}
}
// UnityEngine.EventSystems.ExecuteEvents_EventFunction`1<UnityEngine.EventSystems.ICancelHandler> UnityEngine.EventSystems.ExecuteEvents::get_cancelHandler()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 * ExecuteEvents_get_cancelHandler_m5DB4A9513FB8B9248AE555F7D8E8043175B8D995 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_cancelHandler_m5DB4A9513FB8B9248AE555F7D8E8043175B8D995_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_CancelHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_CancelHandler_16();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.ExecuteEvents::GetEventChain(UnityEngine.GameObject,System.Collections.Generic.IList`1<UnityEngine.Transform>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_GetEventChain_mD90FFC4A70E16AFA81AC6C9CFF174630F77C608C (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___root0, RuntimeObject* ___eventChain1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_GetEventChain_mD90FFC4A70E16AFA81AC6C9CFF174630F77C608C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * V_0 = NULL;
{
// eventChain.Clear();
RuntimeObject* L_0 = ___eventChain1;
InterfaceActionInvoker0::Invoke(3 /* System.Void System.Collections.Generic.ICollection`1<UnityEngine.Transform>::Clear() */, ICollection_1_t21607AC8487026EFE9C161F3D741B37145799D41_il2cpp_TypeInfo_var, L_0);
// if (root == null)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_1 = ___root0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_2 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_1, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0010;
}
}
{
// return;
return;
}
IL_0010:
{
// var t = root.transform;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_3 = ___root0;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_4 = GameObject_get_transform_mA5C38857137F137CB96C69FAA624199EB1C2FB2C(L_3, /*hidden argument*/NULL);
V_0 = L_4;
goto IL_0027;
}
IL_0019:
{
// eventChain.Add(t);
RuntimeObject* L_5 = ___eventChain1;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_6 = V_0;
InterfaceActionInvoker1< Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<UnityEngine.Transform>::Add(!0) */, ICollection_1_t21607AC8487026EFE9C161F3D741B37145799D41_il2cpp_TypeInfo_var, L_5, L_6);
// t = t.parent;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_7 = V_0;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_8 = Transform_get_parent_m8FA24E38A1FA29D90CBF3CDC9F9F017C65BB3403(L_7, /*hidden argument*/NULL);
V_0 = L_8;
}
IL_0027:
{
// while (t != null)
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_9 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_10 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_9, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (L_10)
{
goto IL_0019;
}
}
{
// }
return;
}
}
// System.Void UnityEngine.EventSystems.ExecuteEvents::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents__cctor_mCD47C80D80A3C5F1D3AEEF3ACD31AD1EE197A883 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents__cctor_mCD47C80D80A3C5F1D3AEEF3ACD31AD1EE197A883_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// private static readonly EventFunction<IPointerEnterHandler> s_PointerEnterHandler = Execute;
EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 * L_0 = (EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 *)il2cpp_codegen_object_new(EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4_il2cpp_TypeInfo_var);
EventFunction_1__ctor_m6FA291143C1BF5B88A1D2C10C544E0969B71A8F7(L_0, NULL, (intptr_t)((intptr_t)ExecuteEvents_Execute_mFB517B969B21E23CB5EAD0E9D4DB09A357727233_RuntimeMethod_var), /*hidden argument*/EventFunction_1__ctor_m6FA291143C1BF5B88A1D2C10C544E0969B71A8F7_RuntimeMethod_var);
((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->set_s_PointerEnterHandler_0(L_0);
// private static readonly EventFunction<IPointerExitHandler> s_PointerExitHandler = Execute;
EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA * L_1 = (EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA *)il2cpp_codegen_object_new(EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA_il2cpp_TypeInfo_var);
EventFunction_1__ctor_m5281F4464037C9AF749C2A1919996899A6BA3B5E(L_1, NULL, (intptr_t)((intptr_t)ExecuteEvents_Execute_mE64EB9BA625A97760C7A43F67DC976C6F7A8D0F8_RuntimeMethod_var), /*hidden argument*/EventFunction_1__ctor_m5281F4464037C9AF749C2A1919996899A6BA3B5E_RuntimeMethod_var);
((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->set_s_PointerExitHandler_1(L_1);
// private static readonly EventFunction<IPointerDownHandler> s_PointerDownHandler = Execute;
EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E * L_2 = (EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E *)il2cpp_codegen_object_new(EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E_il2cpp_TypeInfo_var);
EventFunction_1__ctor_m77A9FC421BDD9D44985C87EF84ACBCF13B12D82E(L_2, NULL, (intptr_t)((intptr_t)ExecuteEvents_Execute_m177896660F17B1D4CC55DD2AEB8A2C783B582DC7_RuntimeMethod_var), /*hidden argument*/EventFunction_1__ctor_m77A9FC421BDD9D44985C87EF84ACBCF13B12D82E_RuntimeMethod_var);
((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->set_s_PointerDownHandler_2(L_2);
// private static readonly EventFunction<IPointerUpHandler> s_PointerUpHandler = Execute;
EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 * L_3 = (EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 *)il2cpp_codegen_object_new(EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6_il2cpp_TypeInfo_var);
EventFunction_1__ctor_m69B3E21354A94EE0919766B0321D303CECA1805C(L_3, NULL, (intptr_t)((intptr_t)ExecuteEvents_Execute_mDFB526FB6BE7B2C5266937D471D15F9D25C1DD8F_RuntimeMethod_var), /*hidden argument*/EventFunction_1__ctor_m69B3E21354A94EE0919766B0321D303CECA1805C_RuntimeMethod_var);
((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->set_s_PointerUpHandler_3(L_3);
// private static readonly EventFunction<IPointerClickHandler> s_PointerClickHandler = Execute;
EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E * L_4 = (EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E *)il2cpp_codegen_object_new(EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E_il2cpp_TypeInfo_var);
EventFunction_1__ctor_mF4D4AD6CB742214096B85593D5DA21ED876829CB(L_4, NULL, (intptr_t)((intptr_t)ExecuteEvents_Execute_mA47467EEFB5EB9632375D95D39D2ED878AF286A2_RuntimeMethod_var), /*hidden argument*/EventFunction_1__ctor_mF4D4AD6CB742214096B85593D5DA21ED876829CB_RuntimeMethod_var);
((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->set_s_PointerClickHandler_4(L_4);
// private static readonly EventFunction<IInitializePotentialDragHandler> s_InitializePotentialDragHandler = Execute;
EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 * L_5 = (EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 *)il2cpp_codegen_object_new(EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418_il2cpp_TypeInfo_var);
EventFunction_1__ctor_mBAFFA18A69E64D5C9068384BF21C45113F637F27(L_5, NULL, (intptr_t)((intptr_t)ExecuteEvents_Execute_m5AB8EA95A58AFC2614E9921F16B0603D0EA8ADA6_RuntimeMethod_var), /*hidden argument*/EventFunction_1__ctor_mBAFFA18A69E64D5C9068384BF21C45113F637F27_RuntimeMethod_var);
((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->set_s_InitializePotentialDragHandler_5(L_5);
// private static readonly EventFunction<IBeginDragHandler> s_BeginDragHandler = Execute;
EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 * L_6 = (EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 *)il2cpp_codegen_object_new(EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27_il2cpp_TypeInfo_var);
EventFunction_1__ctor_mED551E6AA06C64C21357489D75BAAB42E1CD6257(L_6, NULL, (intptr_t)((intptr_t)ExecuteEvents_Execute_m1C2C7DA0379E8A119C415FAFF3B613C9D5278E5A_RuntimeMethod_var), /*hidden argument*/EventFunction_1__ctor_mED551E6AA06C64C21357489D75BAAB42E1CD6257_RuntimeMethod_var);
((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->set_s_BeginDragHandler_6(L_6);
// private static readonly EventFunction<IDragHandler> s_DragHandler = Execute;
EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 * L_7 = (EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 *)il2cpp_codegen_object_new(EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1_il2cpp_TypeInfo_var);
EventFunction_1__ctor_m18B8DFD4D5DF50CA371B85A92A3F046A146593DE(L_7, NULL, (intptr_t)((intptr_t)ExecuteEvents_Execute_mDE9458FFE6DB4E5446D9B92FD59A9282EF0E26F1_RuntimeMethod_var), /*hidden argument*/EventFunction_1__ctor_m18B8DFD4D5DF50CA371B85A92A3F046A146593DE_RuntimeMethod_var);
((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->set_s_DragHandler_7(L_7);
// private static readonly EventFunction<IEndDragHandler> s_EndDragHandler = Execute;
EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 * L_8 = (EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 *)il2cpp_codegen_object_new(EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20_il2cpp_TypeInfo_var);
EventFunction_1__ctor_mCB3347FCC983F5C6B949627182607D985560D788(L_8, NULL, (intptr_t)((intptr_t)ExecuteEvents_Execute_m046FB8ED863B38BD15281E9EED004E9686B87184_RuntimeMethod_var), /*hidden argument*/EventFunction_1__ctor_mCB3347FCC983F5C6B949627182607D985560D788_RuntimeMethod_var);
((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->set_s_EndDragHandler_8(L_8);
// private static readonly EventFunction<IDropHandler> s_DropHandler = Execute;
EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 * L_9 = (EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 *)il2cpp_codegen_object_new(EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5_il2cpp_TypeInfo_var);
EventFunction_1__ctor_m4BC3155388ED9FF927E205C83B670BDA98C72A5A(L_9, NULL, (intptr_t)((intptr_t)ExecuteEvents_Execute_mEF9FBBA3E2BDF08B51E80190C3BC9C0E0204C417_RuntimeMethod_var), /*hidden argument*/EventFunction_1__ctor_m4BC3155388ED9FF927E205C83B670BDA98C72A5A_RuntimeMethod_var);
((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->set_s_DropHandler_9(L_9);
// private static readonly EventFunction<IScrollHandler> s_ScrollHandler = Execute;
EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A * L_10 = (EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A *)il2cpp_codegen_object_new(EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A_il2cpp_TypeInfo_var);
EventFunction_1__ctor_mC08F78F3D7554EF5CD324CF27F62ECF0385C9D49(L_10, NULL, (intptr_t)((intptr_t)ExecuteEvents_Execute_m00514A1B45480BC9D55FA88B66914ED163B6A6CC_RuntimeMethod_var), /*hidden argument*/EventFunction_1__ctor_mC08F78F3D7554EF5CD324CF27F62ECF0385C9D49_RuntimeMethod_var);
((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->set_s_ScrollHandler_10(L_10);
// private static readonly EventFunction<IUpdateSelectedHandler> s_UpdateSelectedHandler = Execute;
EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 * L_11 = (EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 *)il2cpp_codegen_object_new(EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173_il2cpp_TypeInfo_var);
EventFunction_1__ctor_m49C054B972DF862CE16C45653EA83C81F925DA74(L_11, NULL, (intptr_t)((intptr_t)ExecuteEvents_Execute_m2D4B7103DCEA057526CDF142A4D4C70136CC8233_RuntimeMethod_var), /*hidden argument*/EventFunction_1__ctor_m49C054B972DF862CE16C45653EA83C81F925DA74_RuntimeMethod_var);
((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->set_s_UpdateSelectedHandler_11(L_11);
// private static readonly EventFunction<ISelectHandler> s_SelectHandler = Execute;
EventFunction_1_t7521247C87411935E8A2CA38683533083459473F * L_12 = (EventFunction_1_t7521247C87411935E8A2CA38683533083459473F *)il2cpp_codegen_object_new(EventFunction_1_t7521247C87411935E8A2CA38683533083459473F_il2cpp_TypeInfo_var);
EventFunction_1__ctor_mB4A3B970F27316B13C218A49BD275F08D1E86839(L_12, NULL, (intptr_t)((intptr_t)ExecuteEvents_Execute_m00C0AAED23C33309955E60AB6319863A3052AE61_RuntimeMethod_var), /*hidden argument*/EventFunction_1__ctor_mB4A3B970F27316B13C218A49BD275F08D1E86839_RuntimeMethod_var);
((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->set_s_SelectHandler_12(L_12);
// private static readonly EventFunction<IDeselectHandler> s_DeselectHandler = Execute;
EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 * L_13 = (EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 *)il2cpp_codegen_object_new(EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8_il2cpp_TypeInfo_var);
EventFunction_1__ctor_m30B6E6749F2449F7852C7FF7A67CA6C6D4AFFD08(L_13, NULL, (intptr_t)((intptr_t)ExecuteEvents_Execute_m8B55F40246FBF954F2C9981BEEEA0828A770A697_RuntimeMethod_var), /*hidden argument*/EventFunction_1__ctor_m30B6E6749F2449F7852C7FF7A67CA6C6D4AFFD08_RuntimeMethod_var);
((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->set_s_DeselectHandler_13(L_13);
// private static readonly EventFunction<IMoveHandler> s_MoveHandler = Execute;
EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB * L_14 = (EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB *)il2cpp_codegen_object_new(EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB_il2cpp_TypeInfo_var);
EventFunction_1__ctor_m7C9972B79205176E3C7A236B1D9A9C2466CDD2BE(L_14, NULL, (intptr_t)((intptr_t)ExecuteEvents_Execute_m7CCC77D770D79991096597CD2FE892267BA7BA4B_RuntimeMethod_var), /*hidden argument*/EventFunction_1__ctor_m7C9972B79205176E3C7A236B1D9A9C2466CDD2BE_RuntimeMethod_var);
((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->set_s_MoveHandler_14(L_14);
// private static readonly EventFunction<ISubmitHandler> s_SubmitHandler = Execute;
EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B * L_15 = (EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B *)il2cpp_codegen_object_new(EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B_il2cpp_TypeInfo_var);
EventFunction_1__ctor_mF1D69EE07782C6E23EE270A9E061267772CCDC93(L_15, NULL, (intptr_t)((intptr_t)ExecuteEvents_Execute_m5354ABE381C181AA8B3514D1849E7788758E8505_RuntimeMethod_var), /*hidden argument*/EventFunction_1__ctor_mF1D69EE07782C6E23EE270A9E061267772CCDC93_RuntimeMethod_var);
((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->set_s_SubmitHandler_15(L_15);
// private static readonly EventFunction<ICancelHandler> s_CancelHandler = Execute;
EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 * L_16 = (EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 *)il2cpp_codegen_object_new(EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258_il2cpp_TypeInfo_var);
EventFunction_1__ctor_m3F50D0030FB2223DA3D47E0421818923D0D41932(L_16, NULL, (intptr_t)((intptr_t)ExecuteEvents_Execute_m66FD7F4E4DE2617EE432AD9DA0D3A258C5F1FBFB_RuntimeMethod_var), /*hidden argument*/EventFunction_1__ctor_m3F50D0030FB2223DA3D47E0421818923D0D41932_RuntimeMethod_var);
((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->set_s_CancelHandler_16(L_16);
// private static readonly ObjectPool<List<IEventSystemHandler>> s_HandlerListPool = new ObjectPool<List<IEventSystemHandler>>(null, l => l.Clear());
IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t91DA84DB86FD18E664B2FBDACCB1B7A5E2A0849C_il2cpp_TypeInfo_var);
U3CU3Ec_t91DA84DB86FD18E664B2FBDACCB1B7A5E2A0849C * L_17 = ((U3CU3Ec_t91DA84DB86FD18E664B2FBDACCB1B7A5E2A0849C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t91DA84DB86FD18E664B2FBDACCB1B7A5E2A0849C_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
UnityAction_1_t3B6DA5D18F5A6D34776438B5CD187C01229E969A * L_18 = (UnityAction_1_t3B6DA5D18F5A6D34776438B5CD187C01229E969A *)il2cpp_codegen_object_new(UnityAction_1_t3B6DA5D18F5A6D34776438B5CD187C01229E969A_il2cpp_TypeInfo_var);
UnityAction_1__ctor_m4C2CD24BD9D5930174895BE29AC306AE8675706C(L_18, L_17, (intptr_t)((intptr_t)U3CU3Ec_U3C_cctorU3Eb__79_0_mC9A9AAD60D24FC76EFD98E83E9DAF5EECAABCD56_RuntimeMethod_var), /*hidden argument*/UnityAction_1__ctor_m4C2CD24BD9D5930174895BE29AC306AE8675706C_RuntimeMethod_var);
ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC * L_19 = (ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC *)il2cpp_codegen_object_new(ObjectPool_1_t374B58F94BA7C0BCA89D9C26B26A9994139B89EC_il2cpp_TypeInfo_var);
ObjectPool_1__ctor_m321803B809C165BCDCCF7D73EAD285EFDD638B44(L_19, (UnityAction_1_t3B6DA5D18F5A6D34776438B5CD187C01229E969A *)NULL, L_18, /*hidden argument*/ObjectPool_1__ctor_m321803B809C165BCDCCF7D73EAD285EFDD638B44_RuntimeMethod_var);
((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->set_s_HandlerListPool_17(L_19);
// private static readonly List<Transform> s_InternalTransformList = new List<Transform>(30);
List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE * L_20 = (List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE *)il2cpp_codegen_object_new(List_1_t4DBFD85DCFB946888856DBE52AC08C2AF69C4DBE_il2cpp_TypeInfo_var);
List_1__ctor_mC1ED9A460A050E673D3EF1200D4C15FF2AAA1732(L_20, ((int32_t)30), /*hidden argument*/List_1__ctor_mC1ED9A460A050E673D3EF1200D4C15FF2AAA1732_RuntimeMethod_var);
((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->set_s_InternalTransformList_18(L_20);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.EventSystems.ExecuteEvents_<>c::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m61F9115D2905902E74081C1270593040BE0D9F4B (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec__cctor_m61F9115D2905902E74081C1270593040BE0D9F4B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
U3CU3Ec_t91DA84DB86FD18E664B2FBDACCB1B7A5E2A0849C * L_0 = (U3CU3Ec_t91DA84DB86FD18E664B2FBDACCB1B7A5E2A0849C *)il2cpp_codegen_object_new(U3CU3Ec_t91DA84DB86FD18E664B2FBDACCB1B7A5E2A0849C_il2cpp_TypeInfo_var);
U3CU3Ec__ctor_mA3946064CEB17BF67A4B63F6E1716F3F7F27803A(L_0, /*hidden argument*/NULL);
((U3CU3Ec_t91DA84DB86FD18E664B2FBDACCB1B7A5E2A0849C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t91DA84DB86FD18E664B2FBDACCB1B7A5E2A0849C_il2cpp_TypeInfo_var))->set_U3CU3E9_0(L_0);
return;
}
}
// System.Void UnityEngine.EventSystems.ExecuteEvents_<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mA3946064CEB17BF67A4B63F6E1716F3F7F27803A (U3CU3Ec_t91DA84DB86FD18E664B2FBDACCB1B7A5E2A0849C * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.EventSystems.ExecuteEvents_<>c::<.cctor>b__79_0(System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3C_cctorU3Eb__79_0_mC9A9AAD60D24FC76EFD98E83E9DAF5EECAABCD56 (U3CU3Ec_t91DA84DB86FD18E664B2FBDACCB1B7A5E2A0849C * __this, List_1_tE1B02DF614CD9F94F541033562E5F649C88F18A2 * ___l0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__79_0_mC9A9AAD60D24FC76EFD98E83E9DAF5EECAABCD56_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// private static readonly ObjectPool<List<IEventSystemHandler>> s_HandlerListPool = new ObjectPool<List<IEventSystemHandler>>(null, l => l.Clear());
List_1_tE1B02DF614CD9F94F541033562E5F649C88F18A2 * L_0 = ___l0;
List_1_Clear_m402EA165A7440B0C93CCA7645DFD483F4239FC89(L_0, /*hidden argument*/List_1_Clear_m402EA165A7440B0C93CCA7645DFD483F4239FC89_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.EventSystems.Physics2DRaycaster::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Physics2DRaycaster__ctor_m460236B9F5697BA8777DF3D770AC0D394497748D (Physics2DRaycaster_t5D190F0825AA5F9E76892B852D6A5437D9981972 * __this, const RuntimeMethod* method)
{
{
// protected Physics2DRaycaster()
PhysicsRaycaster__ctor_m1A3C04070C6C1E3C4449D3BB4AD7C880D336D4CA(__this, /*hidden argument*/NULL);
// {}
return;
}
}
// System.Void UnityEngine.EventSystems.Physics2DRaycaster::Raycast(UnityEngine.EventSystems.PointerEventData,System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Physics2DRaycaster_Raycast_m3CEA59B484E46F41A6F62B923AC23FB140DE8DF3 (Physics2DRaycaster_t5D190F0825AA5F9E76892B852D6A5437D9981972 * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___eventData0, List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * ___resultAppendList1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Physics2DRaycaster_Raycast_m3CEA59B484E46F41A6F62B923AC23FB140DE8DF3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 V_0;
memset((&V_0), 0, sizeof(V_0));
float V_1 = 0.0f;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
SpriteRenderer_tCD51E875611195DBB91123B68434881D3441BC6F * V_6 = NULL;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 V_7;
memset((&V_7), 0, sizeof(V_7));
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 V_8;
memset((&V_8), 0, sizeof(V_8));
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * G_B15_0 = NULL;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * G_B14_0 = NULL;
int32_t G_B16_0 = 0;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * G_B16_1 = NULL;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * G_B18_0 = NULL;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * G_B17_0 = NULL;
int32_t G_B19_0 = 0;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * G_B19_1 = NULL;
{
// Ray ray = new Ray();
il2cpp_codegen_initobj((&V_0), sizeof(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 ));
// float distanceToClipPlane = 0;
V_1 = (0.0f);
// int displayIndex = 0;
V_2 = 0;
// if (!ComputeRayAndDistance(eventData, ref ray, ref displayIndex, ref distanceToClipPlane))
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_0 = ___eventData0;
bool L_1 = PhysicsRaycaster_ComputeRayAndDistance_m92EFFE5A5287CC625EA6B66853DE2959985AFE7D(__this, L_0, (Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)(&V_0), (int32_t*)(&V_2), (float*)(&V_1), /*hidden argument*/NULL);
if (L_1)
{
goto IL_0020;
}
}
{
// return;
return;
}
IL_0020:
{
// int hitCount = 0;
V_3 = 0;
// if (maxRayIntersections == 0)
int32_t L_2 = PhysicsRaycaster_get_maxRayIntersections_m473112CC291635C45D0590CC4B03C07D652FB69A_inline(__this, /*hidden argument*/NULL);
if (L_2)
{
goto IL_005f;
}
}
{
// if (ReflectionMethodsCache.Singleton.getRayIntersectionAll == null)
IL2CPP_RUNTIME_CLASS_INIT(ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A_il2cpp_TypeInfo_var);
ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A * L_3 = ReflectionMethodsCache_get_Singleton_m6C50C55DEEA425161B73545918267BB90B7FCB9B(/*hidden argument*/NULL);
GetRayIntersectionAllCallback_t68C2581CCF05E868297EBD3F3361274954845095 * L_4 = L_3->get_getRayIntersectionAll_4();
if (L_4)
{
goto IL_0037;
}
}
{
// return;
return;
}
IL_0037:
{
// m_Hits = ReflectionMethodsCache.Singleton.getRayIntersectionAll(ray, distanceToClipPlane, finalEventMask);
IL2CPP_RUNTIME_CLASS_INIT(ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A_il2cpp_TypeInfo_var);
ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A * L_5 = ReflectionMethodsCache_get_Singleton_m6C50C55DEEA425161B73545918267BB90B7FCB9B(/*hidden argument*/NULL);
GetRayIntersectionAllCallback_t68C2581CCF05E868297EBD3F3361274954845095 * L_6 = L_5->get_getRayIntersectionAll_4();
Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 L_7 = V_0;
float L_8 = V_1;
int32_t L_9 = PhysicsRaycaster_get_finalEventMask_m33F53EF1231123847F95DBFF865C3B19E6CD1EB6(__this, /*hidden argument*/NULL);
RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* L_10 = GetRayIntersectionAllCallback_Invoke_m659B47C0727BE9179B3A96FD36AEA5216E66046D(L_6, L_7, L_8, L_9, /*hidden argument*/NULL);
__this->set_m_Hits_11(L_10);
// hitCount = m_Hits.Length;
RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* L_11 = __this->get_m_Hits_11();
V_3 = (((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length))));
// }
goto IL_00b5;
}
IL_005f:
{
// if (ReflectionMethodsCache.Singleton.getRayIntersectionAllNonAlloc == null)
IL2CPP_RUNTIME_CLASS_INIT(ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A_il2cpp_TypeInfo_var);
ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A * L_12 = ReflectionMethodsCache_get_Singleton_m6C50C55DEEA425161B73545918267BB90B7FCB9B(/*hidden argument*/NULL);
GetRayIntersectionAllNonAllocCallback_tAD7508D45DB6679B6394983579AD18D967CC2AD4 * L_13 = L_12->get_getRayIntersectionAllNonAlloc_5();
if (L_13)
{
goto IL_006c;
}
}
{
// return;
return;
}
IL_006c:
{
// if (m_LastMaxRayIntersections != m_MaxRayIntersections)
int32_t L_14 = ((PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C *)__this)->get_m_LastMaxRayIntersections_9();
int32_t L_15 = ((PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C *)__this)->get_m_MaxRayIntersections_8();
if ((((int32_t)L_14) == ((int32_t)L_15)))
{
goto IL_0097;
}
}
{
// m_Hits = new RaycastHit2D[maxRayIntersections];
int32_t L_16 = PhysicsRaycaster_get_maxRayIntersections_m473112CC291635C45D0590CC4B03C07D652FB69A_inline(__this, /*hidden argument*/NULL);
RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* L_17 = (RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165*)(RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165*)SZArrayNew(RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165_il2cpp_TypeInfo_var, (uint32_t)L_16);
__this->set_m_Hits_11(L_17);
// m_LastMaxRayIntersections = m_MaxRayIntersections;
int32_t L_18 = ((PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C *)__this)->get_m_MaxRayIntersections_8();
((PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C *)__this)->set_m_LastMaxRayIntersections_9(L_18);
}
IL_0097:
{
// hitCount = ReflectionMethodsCache.Singleton.getRayIntersectionAllNonAlloc(ray, m_Hits, distanceToClipPlane, finalEventMask);
IL2CPP_RUNTIME_CLASS_INIT(ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A_il2cpp_TypeInfo_var);
ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A * L_19 = ReflectionMethodsCache_get_Singleton_m6C50C55DEEA425161B73545918267BB90B7FCB9B(/*hidden argument*/NULL);
GetRayIntersectionAllNonAllocCallback_tAD7508D45DB6679B6394983579AD18D967CC2AD4 * L_20 = L_19->get_getRayIntersectionAllNonAlloc_5();
Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 L_21 = V_0;
RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* L_22 = __this->get_m_Hits_11();
float L_23 = V_1;
int32_t L_24 = PhysicsRaycaster_get_finalEventMask_m33F53EF1231123847F95DBFF865C3B19E6CD1EB6(__this, /*hidden argument*/NULL);
int32_t L_25 = GetRayIntersectionAllNonAllocCallback_Invoke_m6AAA07D1E9D27E50C3C647F368AA504E2A1BFE9B(L_20, L_21, L_22, L_23, L_24, /*hidden argument*/NULL);
V_3 = L_25;
}
IL_00b5:
{
// if (hitCount != 0)
int32_t L_26 = V_3;
if (!L_26)
{
goto IL_01f5;
}
}
{
// for (int b = 0, bmax = hitCount; b < bmax; ++b)
V_4 = 0;
// for (int b = 0, bmax = hitCount; b < bmax; ++b)
int32_t L_27 = V_3;
V_5 = L_27;
goto IL_01ec;
}
IL_00c6:
{
// var sr = m_Hits[b].collider.gameObject.GetComponent<SpriteRenderer>();
RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* L_28 = __this->get_m_Hits_11();
int32_t L_29 = V_4;
Collider2D_tD64BE58E48B95D89D349FEAB54D0FE2EEBF83379 * L_30 = RaycastHit2D_get_collider_m6A7EC53B2E179C2EFF4F29018A132B2979CBE976((RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)((L_28)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_29))), /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_31 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(L_30, /*hidden argument*/NULL);
SpriteRenderer_tCD51E875611195DBB91123B68434881D3441BC6F * L_32 = GameObject_GetComponent_TisSpriteRenderer_tCD51E875611195DBB91123B68434881D3441BC6F_mD25CEAAA219FA1235F8E88F914D2F8AC57303538(L_31, /*hidden argument*/GameObject_GetComponent_TisSpriteRenderer_tCD51E875611195DBB91123B68434881D3441BC6F_mD25CEAAA219FA1235F8E88F914D2F8AC57303538_RuntimeMethod_var);
V_6 = L_32;
// var result = new RaycastResult
// {
// gameObject = m_Hits[b].collider.gameObject,
// module = this,
// distance = Vector3.Distance(eventCamera.transform.position, m_Hits[b].point),
// worldPosition = m_Hits[b].point,
// worldNormal = m_Hits[b].normal,
// screenPosition = eventData.position,
// displayIndex = displayIndex,
// index = resultAppendList.Count,
// sortingLayer = sr != null ? sr.sortingLayerID : 0,
// sortingOrder = sr != null ? sr.sortingOrder : 0
// };
il2cpp_codegen_initobj((&V_8), sizeof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ));
RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* L_33 = __this->get_m_Hits_11();
int32_t L_34 = V_4;
Collider2D_tD64BE58E48B95D89D349FEAB54D0FE2EEBF83379 * L_35 = RaycastHit2D_get_collider_m6A7EC53B2E179C2EFF4F29018A132B2979CBE976((RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)((L_33)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_34))), /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_36 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(L_35, /*hidden argument*/NULL);
RaycastResult_set_gameObject_m5EF3316E0D32FC1B45BB2BC087EC42E436DA1C07_inline((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)(&V_8), L_36, /*hidden argument*/NULL);
(&V_8)->set_module_1(__this);
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_37 = VirtFuncInvoker0< Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * >::Invoke(18 /* UnityEngine.Camera UnityEngine.EventSystems.BaseRaycaster::get_eventCamera() */, __this);
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_38 = Component_get_transform_m00F05BD782F920C301A7EBA480F3B7A904C07EC9(L_37, /*hidden argument*/NULL);
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_39 = Transform_get_position_mF54C3A064F7C8E24F1C56EE128728B2E4485E294(L_38, /*hidden argument*/NULL);
RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* L_40 = __this->get_m_Hits_11();
int32_t L_41 = V_4;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_42 = RaycastHit2D_get_point_mC567E234B1B673C3A9819023C3DC97C781443098((RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)((L_40)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_41))), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_43 = Vector2_op_Implicit_mD152B6A34B4DB7FFECC2844D74718568FE867D6F(L_42, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_il2cpp_TypeInfo_var);
float L_44 = Vector3_Distance_mE316E10B9B319A5C2A29F86E028740FD528149E7(L_39, L_43, /*hidden argument*/NULL);
(&V_8)->set_distance_2(L_44);
RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* L_45 = __this->get_m_Hits_11();
int32_t L_46 = V_4;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_47 = RaycastHit2D_get_point_mC567E234B1B673C3A9819023C3DC97C781443098((RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)((L_45)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_46))), /*hidden argument*/NULL);
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_48 = Vector2_op_Implicit_mD152B6A34B4DB7FFECC2844D74718568FE867D6F(L_47, /*hidden argument*/NULL);
(&V_8)->set_worldPosition_7(L_48);
RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* L_49 = __this->get_m_Hits_11();
int32_t L_50 = V_4;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_51 = RaycastHit2D_get_normal_m9F0974E4514AD56C00FCF6FF4CDF10AED62FE6E4((RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)((L_49)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_50))), /*hidden argument*/NULL);
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_52 = Vector2_op_Implicit_mD152B6A34B4DB7FFECC2844D74718568FE867D6F(L_51, /*hidden argument*/NULL);
(&V_8)->set_worldNormal_8(L_52);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_53 = ___eventData0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_54 = PointerEventData_get_position_mF25FC495A9C968C65BF34B5984616CBFB6332D55_inline(L_53, /*hidden argument*/NULL);
(&V_8)->set_screenPosition_9(L_54);
int32_t L_55 = V_2;
(&V_8)->set_displayIndex_10(L_55);
List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * L_56 = ___resultAppendList1;
int32_t L_57 = List_1_get_Count_m3CE6A18703ABFF7312511F654475662716BF8F51_inline(L_56, /*hidden argument*/List_1_get_Count_m3CE6A18703ABFF7312511F654475662716BF8F51_RuntimeMethod_var);
(&V_8)->set_index_3((((float)((float)L_57))));
SpriteRenderer_tCD51E875611195DBB91123B68434881D3441BC6F * L_58 = V_6;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_59 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_58, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
G_B14_0 = (&V_8);
if (L_59)
{
G_B15_0 = (&V_8);
goto IL_01b3;
}
}
{
G_B16_0 = 0;
G_B16_1 = G_B14_0;
goto IL_01ba;
}
IL_01b3:
{
SpriteRenderer_tCD51E875611195DBB91123B68434881D3441BC6F * L_60 = V_6;
int32_t L_61 = Renderer_get_sortingLayerID_m2E204E68869EDA3176C334AE1C62219F380A5D85(L_60, /*hidden argument*/NULL);
G_B16_0 = L_61;
G_B16_1 = G_B15_0;
}
IL_01ba:
{
G_B16_1->set_sortingLayer_5(G_B16_0);
SpriteRenderer_tCD51E875611195DBB91123B68434881D3441BC6F * L_62 = V_6;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_63 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_62, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
G_B17_0 = (&V_8);
if (L_63)
{
G_B18_0 = (&V_8);
goto IL_01ce;
}
}
{
G_B19_0 = 0;
G_B19_1 = G_B17_0;
goto IL_01d5;
}
IL_01ce:
{
SpriteRenderer_tCD51E875611195DBB91123B68434881D3441BC6F * L_64 = V_6;
int32_t L_65 = Renderer_get_sortingOrder_m33DD50ED293AA672FDAD862B4A4865666B5FEBAF(L_64, /*hidden argument*/NULL);
G_B19_0 = L_65;
G_B19_1 = G_B18_0;
}
IL_01d5:
{
G_B19_1->set_sortingOrder_6(G_B19_0);
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_66 = V_8;
V_7 = L_66;
// resultAppendList.Add(result);
List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * L_67 = ___resultAppendList1;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_68 = V_7;
List_1_Add_m7DCB84D89B15944C08B73F13E91B780624023F37(L_67, L_68, /*hidden argument*/List_1_Add_m7DCB84D89B15944C08B73F13E91B780624023F37_RuntimeMethod_var);
// for (int b = 0, bmax = hitCount; b < bmax; ++b)
int32_t L_69 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_69, (int32_t)1));
}
IL_01ec:
{
// for (int b = 0, bmax = hitCount; b < bmax; ++b)
int32_t L_70 = V_4;
int32_t L_71 = V_5;
if ((((int32_t)L_70) < ((int32_t)L_71)))
{
goto IL_00c6;
}
}
IL_01f5:
{
// }
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.EventSystems.PhysicsRaycaster::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PhysicsRaycaster__ctor_m1A3C04070C6C1E3C4449D3BB4AD7C880D336D4CA (PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C * __this, const RuntimeMethod* method)
{
{
// protected LayerMask m_EventMask = kNoEventMaskSet;
LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 L_0 = LayerMask_op_Implicit_m3F256A7D96C66548F5B62C4621B9725301850300((-1), /*hidden argument*/NULL);
__this->set_m_EventMask_7(L_0);
// protected PhysicsRaycaster()
BaseRaycaster__ctor_m3F94FA62302E9BCB5290515C9D5C4DC1265F5C0F(__this, /*hidden argument*/NULL);
// {}
return;
}
}
// UnityEngine.Camera UnityEngine.EventSystems.PhysicsRaycaster::get_eventCamera()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * PhysicsRaycaster_get_eventCamera_mA4D0809E09657E6B635FF54EA8178CA5280C297E (PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PhysicsRaycaster_get_eventCamera_mA4D0809E09657E6B635FF54EA8178CA5280C297E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * G_B4_0 = NULL;
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * G_B3_0 = NULL;
{
// if (m_EventCamera == null)
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_0 = __this->get_m_EventCamera_6();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_001a;
}
}
{
// m_EventCamera = GetComponent<Camera>();
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_2 = Component_GetComponent_TisCamera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34_mB090F51A34716700C0F4F1B08F9330C6F503DB9E(__this, /*hidden argument*/Component_GetComponent_TisCamera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34_mB090F51A34716700C0F4F1B08F9330C6F503DB9E_RuntimeMethod_var);
__this->set_m_EventCamera_6(L_2);
}
IL_001a:
{
// return m_EventCamera ?? Camera.main;
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_3 = __this->get_m_EventCamera_6();
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_4 = L_3;
G_B3_0 = L_4;
if (L_4)
{
G_B4_0 = L_4;
goto IL_0029;
}
}
{
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_5 = Camera_get_main_m9256A9F84F92D7ED73F3E6C4E2694030AD8B61FA(/*hidden argument*/NULL);
G_B4_0 = L_5;
}
IL_0029:
{
return G_B4_0;
}
}
// System.Int32 UnityEngine.EventSystems.PhysicsRaycaster::get_depth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsRaycaster_get_depth_mFEEAAEECAF9522513EC430D6AED0C4FE64354708 (PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PhysicsRaycaster_get_depth_mFEEAAEECAF9522513EC430D6AED0C4FE64354708_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return (eventCamera != null) ? (int)eventCamera.depth : 0xFFFFFF; }
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_0 = VirtFuncInvoker0< Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * >::Invoke(18 /* UnityEngine.Camera UnityEngine.EventSystems.BaseRaycaster::get_eventCamera() */, __this);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0014;
}
}
{
return ((int32_t)16777215);
}
IL_0014:
{
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_2 = VirtFuncInvoker0< Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * >::Invoke(18 /* UnityEngine.Camera UnityEngine.EventSystems.BaseRaycaster::get_eventCamera() */, __this);
float L_3 = Camera_get_depth_m436C49A1C7669E4AD5665A1F1107BDFBA38742CD(L_2, /*hidden argument*/NULL);
return (((int32_t)((int32_t)L_3)));
}
}
// System.Int32 UnityEngine.EventSystems.PhysicsRaycaster::get_finalEventMask()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsRaycaster_get_finalEventMask_m33F53EF1231123847F95DBFF865C3B19E6CD1EB6 (PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PhysicsRaycaster_get_finalEventMask_m33F53EF1231123847F95DBFF865C3B19E6CD1EB6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return (eventCamera != null) ? eventCamera.cullingMask & m_EventMask : kNoEventMaskSet; }
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_0 = VirtFuncInvoker0< Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * >::Invoke(18 /* UnityEngine.Camera UnityEngine.EventSystems.BaseRaycaster::get_eventCamera() */, __this);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0010;
}
}
{
return (-1);
}
IL_0010:
{
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_2 = VirtFuncInvoker0< Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * >::Invoke(18 /* UnityEngine.Camera UnityEngine.EventSystems.BaseRaycaster::get_eventCamera() */, __this);
int32_t L_3 = Camera_get_cullingMask_m0992E96D87A4221E38746EBD882780CEFF7C2BCD(L_2, /*hidden argument*/NULL);
LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 L_4 = __this->get_m_EventMask_7();
int32_t L_5 = LayerMask_op_Implicit_m2AFFC7F931005437E8F356C953F439829AF4CFA5(L_4, /*hidden argument*/NULL);
return ((int32_t)((int32_t)L_3&(int32_t)L_5));
}
}
// UnityEngine.LayerMask UnityEngine.EventSystems.PhysicsRaycaster::get_eventMask()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 PhysicsRaycaster_get_eventMask_m11D96704635B15FCD194B02B421807362676BE98 (PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C * __this, const RuntimeMethod* method)
{
{
// get { return m_EventMask; }
LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 L_0 = __this->get_m_EventMask_7();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.PhysicsRaycaster::set_eventMask(UnityEngine.LayerMask)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PhysicsRaycaster_set_eventMask_m59EAB6D3AA1F0FF53AAA32A0F62E240C60EAD7CB (PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C * __this, LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 ___value0, const RuntimeMethod* method)
{
{
// set { m_EventMask = value; }
LayerMask_tBB9173D8B6939D476E67E849280AC9F4EC4D93B0 L_0 = ___value0;
__this->set_m_EventMask_7(L_0);
// set { m_EventMask = value; }
return;
}
}
// System.Int32 UnityEngine.EventSystems.PhysicsRaycaster::get_maxRayIntersections()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsRaycaster_get_maxRayIntersections_m473112CC291635C45D0590CC4B03C07D652FB69A (PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C * __this, const RuntimeMethod* method)
{
{
// get { return m_MaxRayIntersections; }
int32_t L_0 = __this->get_m_MaxRayIntersections_8();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.PhysicsRaycaster::set_maxRayIntersections(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PhysicsRaycaster_set_maxRayIntersections_m730A3F32F27E041B9AC49012E4B954C6152DC3D4 (PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set { m_MaxRayIntersections = value; }
int32_t L_0 = ___value0;
__this->set_m_MaxRayIntersections_8(L_0);
// set { m_MaxRayIntersections = value; }
return;
}
}
// System.Boolean UnityEngine.EventSystems.PhysicsRaycaster::ComputeRayAndDistance(UnityEngine.EventSystems.PointerEventData,UnityEngine.Ray&,System.Int32&,System.Single&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PhysicsRaycaster_ComputeRayAndDistance_m92EFFE5A5287CC625EA6B66853DE2959985AFE7D (PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___eventData0, Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 * ___ray1, int32_t* ___eventDisplayIndex2, float* ___distanceToClipPlane3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PhysicsRaycaster_ComputeRayAndDistance_m92EFFE5A5287CC625EA6B66853DE2959985AFE7D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 V_0;
memset((&V_0), 0, sizeof(V_0));
float V_1 = 0.0f;
Rect_t35B976DE901B5423C11705E156938EA27AB402CE V_2;
memset((&V_2), 0, sizeof(V_2));
float* G_B10_0 = NULL;
float* G_B9_0 = NULL;
float G_B11_0 = 0.0f;
float* G_B11_1 = NULL;
{
// if (eventCamera == null)
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_0 = VirtFuncInvoker0< Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * >::Invoke(18 /* UnityEngine.Camera UnityEngine.EventSystems.BaseRaycaster::get_eventCamera() */, __this);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0010;
}
}
{
// return false;
return (bool)0;
}
IL_0010:
{
// var eventPosition = Display.RelativeMouseAt(eventData.position);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_2 = ___eventData0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_3 = PointerEventData_get_position_mF25FC495A9C968C65BF34B5984616CBFB6332D55_inline(L_2, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_4 = Vector2_op_Implicit_mD152B6A34B4DB7FFECC2844D74718568FE867D6F(L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57_il2cpp_TypeInfo_var);
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_5 = Display_RelativeMouseAt_mABDA4BAC2C1B328A2C6A205D552AA5488BFFAA93(L_4, /*hidden argument*/NULL);
V_0 = L_5;
// if (eventPosition != Vector3.zero)
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_6 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_il2cpp_TypeInfo_var);
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_7 = Vector3_get_zero_m3CDDCAE94581DF3BB16C4B40A100E28E9C6649C2(/*hidden argument*/NULL);
bool L_8 = Vector3_op_Inequality_mFEEAA4C4BF743FB5B8A47FF4967A5E2C73273D6E(L_6, L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_0048;
}
}
{
// eventDisplayIndex = (int)eventPosition.z;
int32_t* L_9 = ___eventDisplayIndex2;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_10 = V_0;
float L_11 = L_10.get_z_4();
*((int32_t*)L_9) = (int32_t)(((int32_t)((int32_t)L_11)));
// if (eventDisplayIndex != eventCamera.targetDisplay)
int32_t* L_12 = ___eventDisplayIndex2;
int32_t L_13 = *((int32_t*)L_12);
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_14 = VirtFuncInvoker0< Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * >::Invoke(18 /* UnityEngine.Camera UnityEngine.EventSystems.BaseRaycaster::get_eventCamera() */, __this);
int32_t L_15 = Camera_get_targetDisplay_m2C318D2EB9A016FEC76B13F7F7AE382F443FB731(L_14, /*hidden argument*/NULL);
if ((((int32_t)L_13) == ((int32_t)L_15)))
{
goto IL_0054;
}
}
{
// return false;
return (bool)0;
}
IL_0048:
{
// eventPosition = eventData.position;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_16 = ___eventData0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_17 = PointerEventData_get_position_mF25FC495A9C968C65BF34B5984616CBFB6332D55_inline(L_16, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_18 = Vector2_op_Implicit_mD152B6A34B4DB7FFECC2844D74718568FE867D6F(L_17, /*hidden argument*/NULL);
V_0 = L_18;
}
IL_0054:
{
// if (!eventCamera.pixelRect.Contains(eventPosition))
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_19 = VirtFuncInvoker0< Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * >::Invoke(18 /* UnityEngine.Camera UnityEngine.EventSystems.BaseRaycaster::get_eventCamera() */, __this);
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_20 = Camera_get_pixelRect_mBA87D6C23FD7A5E1A7F3CE0E8F9B86A9318B5317(L_19, /*hidden argument*/NULL);
V_2 = L_20;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_21 = V_0;
bool L_22 = Rect_Contains_m5072228CE6251E7C754F227BA330F9ADA95C1495((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_2), L_21, /*hidden argument*/NULL);
if (L_22)
{
goto IL_006c;
}
}
{
// return false;
return (bool)0;
}
IL_006c:
{
// ray = eventCamera.ScreenPointToRay(eventPosition);
Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 * L_23 = ___ray1;
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_24 = VirtFuncInvoker0< Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * >::Invoke(18 /* UnityEngine.Camera UnityEngine.EventSystems.BaseRaycaster::get_eventCamera() */, __this);
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_25 = V_0;
Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 L_26 = Camera_ScreenPointToRay_m27638E78502DB6D6D7113F81AF7C210773B828F3(L_24, L_25, /*hidden argument*/NULL);
*(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)L_23 = L_26;
// float projectionDirection = ray.direction.z;
Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 * L_27 = ___ray1;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_28 = Ray_get_direction_m9E6468CD87844B437FC4B93491E63D388322F76E((Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)L_27, /*hidden argument*/NULL);
float L_29 = L_28.get_z_4();
V_1 = L_29;
// distanceToClipPlane = Mathf.Approximately(0.0f, projectionDirection)
// ? Mathf.Infinity
// : Mathf.Abs((eventCamera.farClipPlane - eventCamera.nearClipPlane) / projectionDirection);
float* L_30 = ___distanceToClipPlane3;
float L_31 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
bool L_32 = Mathf_Approximately_m91AF00403E0D2DEA1AAE68601AD218CFAD70DF7E((0.0f), L_31, /*hidden argument*/NULL);
G_B9_0 = L_30;
if (L_32)
{
G_B10_0 = L_30;
goto IL_00b9;
}
}
{
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_33 = VirtFuncInvoker0< Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * >::Invoke(18 /* UnityEngine.Camera UnityEngine.EventSystems.BaseRaycaster::get_eventCamera() */, __this);
float L_34 = Camera_get_farClipPlane_mF51F1FF5BE87719CFAC293E272B1138DC1EFFD4B(L_33, /*hidden argument*/NULL);
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_35 = VirtFuncInvoker0< Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * >::Invoke(18 /* UnityEngine.Camera UnityEngine.EventSystems.BaseRaycaster::get_eventCamera() */, __this);
float L_36 = Camera_get_nearClipPlane_mD9D3E3D27186BBAC2CC354CE3609E6118A5BF66C(L_35, /*hidden argument*/NULL);
float L_37 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_38 = fabsf(((float)((float)((float)il2cpp_codegen_subtract((float)L_34, (float)L_36))/(float)L_37)));
G_B11_0 = L_38;
G_B11_1 = G_B9_0;
goto IL_00be;
}
IL_00b9:
{
G_B11_0 = (std::numeric_limits<float>::infinity());
G_B11_1 = G_B10_0;
}
IL_00be:
{
*((float*)G_B11_1) = (float)G_B11_0;
// return true;
return (bool)1;
}
}
// System.Void UnityEngine.EventSystems.PhysicsRaycaster::Raycast(UnityEngine.EventSystems.PointerEventData,System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PhysicsRaycaster_Raycast_m790F8B5B886500FF2C7D8E966DA72400A4C2B55C (PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___eventData0, List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * ___resultAppendList1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PhysicsRaycaster_Raycast_m790F8B5B886500FF2C7D8E966DA72400A4C2B55C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
float V_2 = 0.0f;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 V_6;
memset((&V_6), 0, sizeof(V_6));
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 V_7;
memset((&V_7), 0, sizeof(V_7));
{
// Ray ray = new Ray();
il2cpp_codegen_initobj((&V_0), sizeof(Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 ));
// int displayIndex = 0;
V_1 = 0;
// float distanceToClipPlane = 0;
V_2 = (0.0f);
// if (!ComputeRayAndDistance(eventData, ref ray, ref displayIndex, ref distanceToClipPlane))
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_0 = ___eventData0;
bool L_1 = PhysicsRaycaster_ComputeRayAndDistance_m92EFFE5A5287CC625EA6B66853DE2959985AFE7D(__this, L_0, (Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 *)(&V_0), (int32_t*)(&V_1), (float*)(&V_2), /*hidden argument*/NULL);
if (L_1)
{
goto IL_0020;
}
}
{
// return;
return;
}
IL_0020:
{
// int hitCount = 0;
V_3 = 0;
// if (m_MaxRayIntersections == 0)
int32_t L_2 = __this->get_m_MaxRayIntersections_8();
if (L_2)
{
goto IL_005f;
}
}
{
// if (ReflectionMethodsCache.Singleton.raycast3DAll == null)
IL2CPP_RUNTIME_CLASS_INIT(ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A_il2cpp_TypeInfo_var);
ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A * L_3 = ReflectionMethodsCache_get_Singleton_m6C50C55DEEA425161B73545918267BB90B7FCB9B(/*hidden argument*/NULL);
RaycastAllCallback_t751407A44270E02FAA43D0846A58EE6A8C4AE1CE * L_4 = L_3->get_raycast3DAll_1();
if (L_4)
{
goto IL_0037;
}
}
{
// return;
return;
}
IL_0037:
{
// m_Hits = ReflectionMethodsCache.Singleton.raycast3DAll(ray, distanceToClipPlane, finalEventMask);
IL2CPP_RUNTIME_CLASS_INIT(ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A_il2cpp_TypeInfo_var);
ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A * L_5 = ReflectionMethodsCache_get_Singleton_m6C50C55DEEA425161B73545918267BB90B7FCB9B(/*hidden argument*/NULL);
RaycastAllCallback_t751407A44270E02FAA43D0846A58EE6A8C4AE1CE * L_6 = L_5->get_raycast3DAll_1();
Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 L_7 = V_0;
float L_8 = V_2;
int32_t L_9 = PhysicsRaycaster_get_finalEventMask_m33F53EF1231123847F95DBFF865C3B19E6CD1EB6(__this, /*hidden argument*/NULL);
RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57* L_10 = RaycastAllCallback_Invoke_mCB0725E11A9E028E20E64D78BCA8D9029CAE051E(L_6, L_7, L_8, L_9, /*hidden argument*/NULL);
__this->set_m_Hits_10(L_10);
// hitCount = m_Hits.Length;
RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57* L_11 = __this->get_m_Hits_10();
V_3 = (((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length))));
// }
goto IL_00b5;
}
IL_005f:
{
// if (ReflectionMethodsCache.Singleton.getRaycastNonAlloc == null)
IL2CPP_RUNTIME_CLASS_INIT(ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A_il2cpp_TypeInfo_var);
ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A * L_12 = ReflectionMethodsCache_get_Singleton_m6C50C55DEEA425161B73545918267BB90B7FCB9B(/*hidden argument*/NULL);
GetRaycastNonAllocCallback_tC13D9767CFF00EAB26E9FCC4BDD505F0721A2B4D * L_13 = L_12->get_getRaycastNonAlloc_2();
if (L_13)
{
goto IL_006c;
}
}
{
// return;
return;
}
IL_006c:
{
// if (m_LastMaxRayIntersections != m_MaxRayIntersections)
int32_t L_14 = __this->get_m_LastMaxRayIntersections_9();
int32_t L_15 = __this->get_m_MaxRayIntersections_8();
if ((((int32_t)L_14) == ((int32_t)L_15)))
{
goto IL_0097;
}
}
{
// m_Hits = new RaycastHit[m_MaxRayIntersections];
int32_t L_16 = __this->get_m_MaxRayIntersections_8();
RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57* L_17 = (RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57*)(RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57*)SZArrayNew(RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57_il2cpp_TypeInfo_var, (uint32_t)L_16);
__this->set_m_Hits_10(L_17);
// m_LastMaxRayIntersections = m_MaxRayIntersections;
int32_t L_18 = __this->get_m_MaxRayIntersections_8();
__this->set_m_LastMaxRayIntersections_9(L_18);
}
IL_0097:
{
// hitCount = ReflectionMethodsCache.Singleton.getRaycastNonAlloc(ray, m_Hits, distanceToClipPlane, finalEventMask);
IL2CPP_RUNTIME_CLASS_INIT(ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A_il2cpp_TypeInfo_var);
ReflectionMethodsCache_tBDADDC80D50C5F10BD00965217980B9A8D24BE8A * L_19 = ReflectionMethodsCache_get_Singleton_m6C50C55DEEA425161B73545918267BB90B7FCB9B(/*hidden argument*/NULL);
GetRaycastNonAllocCallback_tC13D9767CFF00EAB26E9FCC4BDD505F0721A2B4D * L_20 = L_19->get_getRaycastNonAlloc_2();
Ray_tE2163D4CB3E6B267E29F8ABE41684490E4A614B2 L_21 = V_0;
RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57* L_22 = __this->get_m_Hits_10();
float L_23 = V_2;
int32_t L_24 = PhysicsRaycaster_get_finalEventMask_m33F53EF1231123847F95DBFF865C3B19E6CD1EB6(__this, /*hidden argument*/NULL);
int32_t L_25 = GetRaycastNonAllocCallback_Invoke_mF56C0670E33CB12DF1A8C16277E26A56EE1C7E20(L_20, L_21, L_22, L_23, L_24, /*hidden argument*/NULL);
V_3 = L_25;
}
IL_00b5:
{
// if (hitCount != 0)
int32_t L_26 = V_3;
if (!L_26)
{
goto IL_01a3;
}
}
{
// if (hitCount > 1)
int32_t L_27 = V_3;
if ((((int32_t)L_27) <= ((int32_t)1)))
{
goto IL_00d1;
}
}
{
// System.Array.Sort(m_Hits, 0, hitCount, RaycastHitComparer.instance);
RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57* L_28 = __this->get_m_Hits_10();
int32_t L_29 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(RaycastHitComparer_t5465A53942AAC60F5716D514946F4AB6C263CFA2_il2cpp_TypeInfo_var);
RaycastHitComparer_t5465A53942AAC60F5716D514946F4AB6C263CFA2 * L_30 = ((RaycastHitComparer_t5465A53942AAC60F5716D514946F4AB6C263CFA2_StaticFields*)il2cpp_codegen_static_fields_for(RaycastHitComparer_t5465A53942AAC60F5716D514946F4AB6C263CFA2_il2cpp_TypeInfo_var))->get_instance_0();
Array_Sort_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_mEF1012F8E1A6C51EA8DF47DEAF751056596FEB96(L_28, 0, L_29, L_30, /*hidden argument*/Array_Sort_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_mEF1012F8E1A6C51EA8DF47DEAF751056596FEB96_RuntimeMethod_var);
}
IL_00d1:
{
// for (int b = 0, bmax = hitCount; b < bmax; ++b)
V_4 = 0;
// for (int b = 0, bmax = hitCount; b < bmax; ++b)
int32_t L_31 = V_3;
V_5 = L_31;
goto IL_019a;
}
IL_00dc:
{
// var result = new RaycastResult
// {
// gameObject = m_Hits[b].collider.gameObject,
// module = this,
// distance = m_Hits[b].distance,
// worldPosition = m_Hits[b].point,
// worldNormal = m_Hits[b].normal,
// screenPosition = eventData.position,
// displayIndex = displayIndex,
// index = resultAppendList.Count,
// sortingLayer = 0,
// sortingOrder = 0
// };
il2cpp_codegen_initobj((&V_7), sizeof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ));
RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57* L_32 = __this->get_m_Hits_10();
int32_t L_33 = V_4;
Collider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF * L_34 = RaycastHit_get_collider_mE70B84C4312B567344F60992A6067855F2C3A7A9((RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)((L_32)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_33))), /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_35 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(L_34, /*hidden argument*/NULL);
RaycastResult_set_gameObject_m5EF3316E0D32FC1B45BB2BC087EC42E436DA1C07_inline((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)(&V_7), L_35, /*hidden argument*/NULL);
(&V_7)->set_module_1(__this);
RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57* L_36 = __this->get_m_Hits_10();
int32_t L_37 = V_4;
float L_38 = RaycastHit_get_distance_m1CBA60855C35F29BBC348D374BBC76386A243543((RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)((L_36)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_37))), /*hidden argument*/NULL);
(&V_7)->set_distance_2(L_38);
RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57* L_39 = __this->get_m_Hits_10();
int32_t L_40 = V_4;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_41 = RaycastHit_get_point_m0E564B2A72C7A744B889AE9D596F3EFA55059001((RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)((L_39)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_40))), /*hidden argument*/NULL);
(&V_7)->set_worldPosition_7(L_41);
RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57* L_42 = __this->get_m_Hits_10();
int32_t L_43 = V_4;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_44 = RaycastHit_get_normal_mF736A6D09D98D63AB7E5BF10F38AEBFC177A1D94((RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)((L_42)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_43))), /*hidden argument*/NULL);
(&V_7)->set_worldNormal_8(L_44);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_45 = ___eventData0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_46 = PointerEventData_get_position_mF25FC495A9C968C65BF34B5984616CBFB6332D55_inline(L_45, /*hidden argument*/NULL);
(&V_7)->set_screenPosition_9(L_46);
int32_t L_47 = V_1;
(&V_7)->set_displayIndex_10(L_47);
List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * L_48 = ___resultAppendList1;
int32_t L_49 = List_1_get_Count_m3CE6A18703ABFF7312511F654475662716BF8F51_inline(L_48, /*hidden argument*/List_1_get_Count_m3CE6A18703ABFF7312511F654475662716BF8F51_RuntimeMethod_var);
(&V_7)->set_index_3((((float)((float)L_49))));
(&V_7)->set_sortingLayer_5(0);
(&V_7)->set_sortingOrder_6(0);
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_50 = V_7;
V_6 = L_50;
// resultAppendList.Add(result);
List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * L_51 = ___resultAppendList1;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_52 = V_6;
List_1_Add_m7DCB84D89B15944C08B73F13E91B780624023F37(L_51, L_52, /*hidden argument*/List_1_Add_m7DCB84D89B15944C08B73F13E91B780624023F37_RuntimeMethod_var);
// for (int b = 0, bmax = hitCount; b < bmax; ++b)
int32_t L_53 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_53, (int32_t)1));
}
IL_019a:
{
// for (int b = 0, bmax = hitCount; b < bmax; ++b)
int32_t L_54 = V_4;
int32_t L_55 = V_5;
if ((((int32_t)L_54) < ((int32_t)L_55)))
{
goto IL_00dc;
}
}
IL_01a3:
{
// }
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 UnityEngine.EventSystems.PhysicsRaycaster_RaycastHitComparer::Compare(UnityEngine.RaycastHit,UnityEngine.RaycastHit)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RaycastHitComparer_Compare_m5A17D56D0EF75419CCCAEFE522E86A44C1EFD46B (RaycastHitComparer_t5465A53942AAC60F5716D514946F4AB6C263CFA2 * __this, RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 ___x0, RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 ___y1, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
// return x.distance.CompareTo(y.distance);
float L_0 = RaycastHit_get_distance_m1CBA60855C35F29BBC348D374BBC76386A243543((RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)(&___x0), /*hidden argument*/NULL);
V_0 = L_0;
float L_1 = RaycastHit_get_distance_m1CBA60855C35F29BBC348D374BBC76386A243543((RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)(&___y1), /*hidden argument*/NULL);
int32_t L_2 = Single_CompareTo_mFBF2345D81E00F834E558A4ACFD4E5137582DBBC((float*)(&V_0), L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Void UnityEngine.EventSystems.PhysicsRaycaster_RaycastHitComparer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycastHitComparer__ctor_m1039CBA952391889242A9F00EA05958986E392B2 (RaycastHitComparer_t5465A53942AAC60F5716D514946F4AB6C263CFA2 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.EventSystems.PhysicsRaycaster_RaycastHitComparer::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycastHitComparer__cctor_m1CEECC8D87DDE7315C8F0845658FC13E34CD4A31 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RaycastHitComparer__cctor_m1CEECC8D87DDE7315C8F0845658FC13E34CD4A31_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// public static RaycastHitComparer instance = new RaycastHitComparer();
RaycastHitComparer_t5465A53942AAC60F5716D514946F4AB6C263CFA2 * L_0 = (RaycastHitComparer_t5465A53942AAC60F5716D514946F4AB6C263CFA2 *)il2cpp_codegen_object_new(RaycastHitComparer_t5465A53942AAC60F5716D514946F4AB6C263CFA2_il2cpp_TypeInfo_var);
RaycastHitComparer__ctor_m1039CBA952391889242A9F00EA05958986E392B2(L_0, /*hidden argument*/NULL);
((RaycastHitComparer_t5465A53942AAC60F5716D514946F4AB6C263CFA2_StaticFields*)il2cpp_codegen_static_fields_for(RaycastHitComparer_t5465A53942AAC60F5716D514946F4AB6C263CFA2_il2cpp_TypeInfo_var))->set_instance_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::get_pointerEnter()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * PointerEventData_get_pointerEnter_m47E87ACB1557B6380D0E66F57C2F9FFFD5E86DC2 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public GameObject pointerEnter { get; set; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = __this->get_U3CpointerEnterU3Ek__BackingField_2();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_pointerEnter(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_pointerEnter_mCA947226697EEC596FD611B31C10D7CE981026CC (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___value0, const RuntimeMethod* method)
{
{
// public GameObject pointerEnter { get; set; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___value0;
__this->set_U3CpointerEnterU3Ek__BackingField_2(L_0);
return;
}
}
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::get_lastPress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * PointerEventData_get_lastPress_m6B005D786FC5B30ECD8D5BC068420D0C361357F4 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public GameObject lastPress { get; private set; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = __this->get_U3ClastPressU3Ek__BackingField_4();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_lastPress(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_lastPress_m3A938CE59A47898263BE6A6F880A3B3CD21D063D (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___value0, const RuntimeMethod* method)
{
{
// public GameObject lastPress { get; private set; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___value0;
__this->set_U3ClastPressU3Ek__BackingField_4(L_0);
return;
}
}
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::get_rawPointerPress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * PointerEventData_get_rawPointerPress_m6CECEFBAD7C50F04BD65172000B0BB916578B494 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public GameObject rawPointerPress { get; set; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = __this->get_U3CrawPointerPressU3Ek__BackingField_5();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_rawPointerPress(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_rawPointerPress_mB7E32587FD73925A689A71FCAB560F9B78A233A5 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___value0, const RuntimeMethod* method)
{
{
// public GameObject rawPointerPress { get; set; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___value0;
__this->set_U3CrawPointerPressU3Ek__BackingField_5(L_0);
return;
}
}
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::get_pointerDrag()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public GameObject pointerDrag { get; set; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = __this->get_U3CpointerDragU3Ek__BackingField_6();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_pointerDrag(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_pointerDrag_m7E4BF3CF39EF734A80FA1994310FB09A5B095AF8 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___value0, const RuntimeMethod* method)
{
{
// public GameObject pointerDrag { get; set; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___value0;
__this->set_U3CpointerDragU3Ek__BackingField_6(L_0);
return;
}
}
// UnityEngine.EventSystems.RaycastResult UnityEngine.EventSystems.PointerEventData::get_pointerCurrentRaycast()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 PointerEventData_get_pointerCurrentRaycast_mE58F786484E13AF2E6C2706E20C889E7453E3A7A (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public RaycastResult pointerCurrentRaycast { get; set; }
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_0 = __this->get_U3CpointerCurrentRaycastU3Ek__BackingField_7();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_pointerCurrentRaycast(UnityEngine.EventSystems.RaycastResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_pointerCurrentRaycast_m0B0B77AF61C5402D29574A9031AEED66AE4C8455 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___value0, const RuntimeMethod* method)
{
{
// public RaycastResult pointerCurrentRaycast { get; set; }
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_0 = ___value0;
__this->set_U3CpointerCurrentRaycastU3Ek__BackingField_7(L_0);
return;
}
}
// UnityEngine.EventSystems.RaycastResult UnityEngine.EventSystems.PointerEventData::get_pointerPressRaycast()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 PointerEventData_get_pointerPressRaycast_m722BCA823E0405C9DF20312CDFBBEB5B1B05B7AE (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public RaycastResult pointerPressRaycast { get; set; }
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_0 = __this->get_U3CpointerPressRaycastU3Ek__BackingField_8();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_pointerPressRaycast(UnityEngine.EventSystems.RaycastResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_pointerPressRaycast_m559F6127EC11B0F1B5EEB7BFCA478128DE8E5536 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___value0, const RuntimeMethod* method)
{
{
// public RaycastResult pointerPressRaycast { get; set; }
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_0 = ___value0;
__this->set_U3CpointerPressRaycastU3Ek__BackingField_8(L_0);
return;
}
}
// System.Boolean UnityEngine.EventSystems.PointerEventData::get_eligibleForClick()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEventData_get_eligibleForClick_m2039146EE2E6940436E592D0655FBA06096DBFFA (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public bool eligibleForClick { get; set; }
bool L_0 = __this->get_U3CeligibleForClickU3Ek__BackingField_10();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_eligibleForClick(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_eligibleForClick_m403F4068866F6A5CC9814729B3918C8FF1C21DBD (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool eligibleForClick { get; set; }
bool L_0 = ___value0;
__this->set_U3CeligibleForClickU3Ek__BackingField_10(L_0);
return;
}
}
// System.Int32 UnityEngine.EventSystems.PointerEventData::get_pointerId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PointerEventData_get_pointerId_m73B8DCE39BDCB5BD7894D192DDA7FF8817FBE6C6 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public int pointerId { get; set; }
int32_t L_0 = __this->get_U3CpointerIdU3Ek__BackingField_11();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_pointerId(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_pointerId_m4CF9E4E445D841D14E46AE00B0B687EE3435C03E (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public int pointerId { get; set; }
int32_t L_0 = ___value0;
__this->set_U3CpointerIdU3Ek__BackingField_11(L_0);
return;
}
}
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::get_position()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D PointerEventData_get_position_mF25FC495A9C968C65BF34B5984616CBFB6332D55 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public Vector2 position { get; set; }
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = __this->get_U3CpositionU3Ek__BackingField_12();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_position(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_position_mD63B59E6D4EF9B2B2E26D1F4893A7C67BD04266A (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method)
{
{
// public Vector2 position { get; set; }
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = ___value0;
__this->set_U3CpositionU3Ek__BackingField_12(L_0);
return;
}
}
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::get_delta()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D PointerEventData_get_delta_mC5D62E985D40A7708316C6E07B699B96D9C8184E (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public Vector2 delta { get; set; }
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = __this->get_U3CdeltaU3Ek__BackingField_13();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_delta(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_delta_mDFEB23DF789E945F2CEC51C1F902CEE6AF674415 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method)
{
{
// public Vector2 delta { get; set; }
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = ___value0;
__this->set_U3CdeltaU3Ek__BackingField_13(L_0);
return;
}
}
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::get_pressPosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D PointerEventData_get_pressPosition_m7C8D5A54C81C801EB577A60718C4211DFA1A3624 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public Vector2 pressPosition { get; set; }
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = __this->get_U3CpressPositionU3Ek__BackingField_14();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_pressPosition(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_pressPosition_m9DDE0BA5D6C31CBCDA926CEB62E51140F23013EA (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method)
{
{
// public Vector2 pressPosition { get; set; }
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = ___value0;
__this->set_U3CpressPositionU3Ek__BackingField_14(L_0);
return;
}
}
// UnityEngine.Vector3 UnityEngine.EventSystems.PointerEventData::get_worldPosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 PointerEventData_get_worldPosition_mF0DC1B57F31BB6FB8FFDD666603FF0909940EFA8 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public Vector3 worldPosition { get; set; }
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_0 = __this->get_U3CworldPositionU3Ek__BackingField_15();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_worldPosition(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_worldPosition_mFF9BABD0B8DC58FC94CE7C775EA7BD1A72177EB6 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___value0, const RuntimeMethod* method)
{
{
// public Vector3 worldPosition { get; set; }
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_0 = ___value0;
__this->set_U3CworldPositionU3Ek__BackingField_15(L_0);
return;
}
}
// UnityEngine.Vector3 UnityEngine.EventSystems.PointerEventData::get_worldNormal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 PointerEventData_get_worldNormal_m310D7AC52A1EBD88080267B39ADA66A6EC778D26 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public Vector3 worldNormal { get; set; }
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_0 = __this->get_U3CworldNormalU3Ek__BackingField_16();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_worldNormal(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_worldNormal_m1D2167440E774418D7F59F1A0E0D8E637C398519 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___value0, const RuntimeMethod* method)
{
{
// public Vector3 worldNormal { get; set; }
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_0 = ___value0;
__this->set_U3CworldNormalU3Ek__BackingField_16(L_0);
return;
}
}
// System.Single UnityEngine.EventSystems.PointerEventData::get_clickTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float PointerEventData_get_clickTime_m023B539AF9EDF3782FD9406EC79F4742C855A3AF (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public float clickTime { get; set; }
float L_0 = __this->get_U3CclickTimeU3Ek__BackingField_17();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_clickTime(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_clickTime_mFB2FD722D5898826A1D57379C153B8023272653C (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, float ___value0, const RuntimeMethod* method)
{
{
// public float clickTime { get; set; }
float L_0 = ___value0;
__this->set_U3CclickTimeU3Ek__BackingField_17(L_0);
return;
}
}
// System.Int32 UnityEngine.EventSystems.PointerEventData::get_clickCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PointerEventData_get_clickCount_mF3A09A090E418FAAAFFE55668D9761C2F23BCE24 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public int clickCount { get; set; }
int32_t L_0 = __this->get_U3CclickCountU3Ek__BackingField_18();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_clickCount(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_clickCount_mE56F748082C3D03A340345630FAC2B119451E003 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public int clickCount { get; set; }
int32_t L_0 = ___value0;
__this->set_U3CclickCountU3Ek__BackingField_18(L_0);
return;
}
}
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::get_scrollDelta()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D PointerEventData_get_scrollDelta_mF473A122C860EC5279F6F5D085912BDA6418690B (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public Vector2 scrollDelta { get; set; }
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = __this->get_U3CscrollDeltaU3Ek__BackingField_19();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_scrollDelta(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_scrollDelta_m2B7F400B1DD1B45C36D22F291E625B02C76F9751 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method)
{
{
// public Vector2 scrollDelta { get; set; }
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = ___value0;
__this->set_U3CscrollDeltaU3Ek__BackingField_19(L_0);
return;
}
}
// System.Boolean UnityEngine.EventSystems.PointerEventData::get_useDragThreshold()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEventData_get_useDragThreshold_mD254C2D9572E12F10EC86A21F28E4284EE29D39A (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public bool useDragThreshold { get; set; }
bool L_0 = __this->get_U3CuseDragThresholdU3Ek__BackingField_20();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_useDragThreshold(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_useDragThreshold_mB5F06D15C2D1DB8D57F5B79CAEC3F58E4BF79684 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool useDragThreshold { get; set; }
bool L_0 = ___value0;
__this->set_U3CuseDragThresholdU3Ek__BackingField_20(L_0);
return;
}
}
// System.Boolean UnityEngine.EventSystems.PointerEventData::get_dragging()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEventData_get_dragging_mA3B420FFEB0856189D7A7646AA00A981C745D4B4 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public bool dragging { get; set; }
bool L_0 = __this->get_U3CdraggingU3Ek__BackingField_21();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_dragging(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_dragging_m4A4C08AB5A2173557EA62190F47AEFF1E9332821 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool dragging { get; set; }
bool L_0 = ___value0;
__this->set_U3CdraggingU3Ek__BackingField_21(L_0);
return;
}
}
// UnityEngine.EventSystems.PointerEventData_InputButton UnityEngine.EventSystems.PointerEventData::get_button()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PointerEventData_get_button_mC662D5DAC02F0ED6AE9205259116CC91BB92BD3E (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public InputButton button { get; set; }
int32_t L_0 = __this->get_U3CbuttonU3Ek__BackingField_22();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_button(UnityEngine.EventSystems.PointerEventData_InputButton)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_button_mD5D63D10CFE13D720287DD76AE0D8A852F8324CC (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public InputButton button { get; set; }
int32_t L_0 = ___value0;
__this->set_U3CbuttonU3Ek__BackingField_22(L_0);
return;
}
}
// System.Void UnityEngine.EventSystems.PointerEventData::.ctor(UnityEngine.EventSystems.EventSystem)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData__ctor_mA2208343CA6EE41C13A6B7123322CC88B00A723B (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * ___eventSystem0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PointerEventData__ctor_mA2208343CA6EE41C13A6B7123322CC88B00A723B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// public List<GameObject> hovered = new List<GameObject>();
List_1_t3D4152882C54B77C712688E910390D5C8E030463 * L_0 = (List_1_t3D4152882C54B77C712688E910390D5C8E030463 *)il2cpp_codegen_object_new(List_1_t3D4152882C54B77C712688E910390D5C8E030463_il2cpp_TypeInfo_var);
List_1__ctor_mE0CF797BC1662A4FDFF8009E76AC0A5CD1BB1FCA(L_0, /*hidden argument*/List_1__ctor_mE0CF797BC1662A4FDFF8009E76AC0A5CD1BB1FCA_RuntimeMethod_var);
__this->set_hovered_9(L_0);
// public PointerEventData(EventSystem eventSystem) : base(eventSystem)
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_1 = ___eventSystem0;
BaseEventData__ctor_m4A8184F01D2CA8B2DE6BB752F486CF7DEF7A56AE(__this, L_1, /*hidden argument*/NULL);
// eligibleForClick = false;
PointerEventData_set_eligibleForClick_m403F4068866F6A5CC9814729B3918C8FF1C21DBD_inline(__this, (bool)0, /*hidden argument*/NULL);
// pointerId = -1;
PointerEventData_set_pointerId_m4CF9E4E445D841D14E46AE00B0B687EE3435C03E_inline(__this, (-1), /*hidden argument*/NULL);
// position = Vector2.zero;
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_2 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
PointerEventData_set_position_mD63B59E6D4EF9B2B2E26D1F4893A7C67BD04266A_inline(__this, L_2, /*hidden argument*/NULL);
// delta = Vector2.zero;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_3 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
PointerEventData_set_delta_mDFEB23DF789E945F2CEC51C1F902CEE6AF674415_inline(__this, L_3, /*hidden argument*/NULL);
// pressPosition = Vector2.zero;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_4 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
PointerEventData_set_pressPosition_m9DDE0BA5D6C31CBCDA926CEB62E51140F23013EA_inline(__this, L_4, /*hidden argument*/NULL);
// clickTime = 0.0f;
PointerEventData_set_clickTime_mFB2FD722D5898826A1D57379C153B8023272653C_inline(__this, (0.0f), /*hidden argument*/NULL);
// clickCount = 0;
PointerEventData_set_clickCount_mE56F748082C3D03A340345630FAC2B119451E003_inline(__this, 0, /*hidden argument*/NULL);
// scrollDelta = Vector2.zero;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_5 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
PointerEventData_set_scrollDelta_m2B7F400B1DD1B45C36D22F291E625B02C76F9751_inline(__this, L_5, /*hidden argument*/NULL);
// useDragThreshold = true;
PointerEventData_set_useDragThreshold_mB5F06D15C2D1DB8D57F5B79CAEC3F58E4BF79684_inline(__this, (bool)1, /*hidden argument*/NULL);
// dragging = false;
PointerEventData_set_dragging_m4A4C08AB5A2173557EA62190F47AEFF1E9332821_inline(__this, (bool)0, /*hidden argument*/NULL);
// button = InputButton.Left;
PointerEventData_set_button_mD5D63D10CFE13D720287DD76AE0D8A852F8324CC_inline(__this, 0, /*hidden argument*/NULL);
// }
return;
}
}
// System.Boolean UnityEngine.EventSystems.PointerEventData::IsPointerMoving()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEventData_IsPointerMoving_mDF9C046AEE3228B95BECFCF01AE4C45D318EB486 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_0;
memset((&V_0), 0, sizeof(V_0));
{
// return delta.sqrMagnitude > 0.0f;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = PointerEventData_get_delta_mC5D62E985D40A7708316C6E07B699B96D9C8184E_inline(__this, /*hidden argument*/NULL);
V_0 = L_0;
float L_1 = Vector2_get_sqrMagnitude_mAEE10A8ECE7D5754E10727BA8C9068A759AD7002((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&V_0), /*hidden argument*/NULL);
return (bool)((((float)L_1) > ((float)(0.0f)))? 1 : 0);
}
}
// System.Boolean UnityEngine.EventSystems.PointerEventData::IsScrolling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEventData_IsScrolling_m16BCB03C28009700C2F8AF6FF159E532D7DB0D1D (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_0;
memset((&V_0), 0, sizeof(V_0));
{
// return scrollDelta.sqrMagnitude > 0.0f;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = PointerEventData_get_scrollDelta_mF473A122C860EC5279F6F5D085912BDA6418690B_inline(__this, /*hidden argument*/NULL);
V_0 = L_0;
float L_1 = Vector2_get_sqrMagnitude_mAEE10A8ECE7D5754E10727BA8C9068A759AD7002((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&V_0), /*hidden argument*/NULL);
return (bool)((((float)L_1) > ((float)(0.0f)))? 1 : 0);
}
}
// UnityEngine.Camera UnityEngine.EventSystems.PointerEventData::get_enterEventCamera()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * PointerEventData_get_enterEventCamera_m4DCBA203F50F1F4D30118573061FD4634D4B4915 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PointerEventData_get_enterEventCamera_m4DCBA203F50F1F4D30118573061FD4634D4B4915_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return pointerCurrentRaycast.module == null ? null : pointerCurrentRaycast.module.eventCamera; }
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_0 = PointerEventData_get_pointerCurrentRaycast_mE58F786484E13AF2E6C2706E20C889E7453E3A7A_inline(__this, /*hidden argument*/NULL);
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_1 = L_0.get_module_1();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_2 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_1, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (L_2)
{
goto IL_0024;
}
}
{
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_3 = PointerEventData_get_pointerCurrentRaycast_mE58F786484E13AF2E6C2706E20C889E7453E3A7A_inline(__this, /*hidden argument*/NULL);
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_4 = L_3.get_module_1();
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_5 = VirtFuncInvoker0< Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * >::Invoke(18 /* UnityEngine.Camera UnityEngine.EventSystems.BaseRaycaster::get_eventCamera() */, L_4);
return L_5;
}
IL_0024:
{
return (Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 *)NULL;
}
}
// UnityEngine.Camera UnityEngine.EventSystems.PointerEventData::get_pressEventCamera()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * PointerEventData_get_pressEventCamera_mC505603722C7C3CBEE8C56029C2CA6C5CC769E76 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PointerEventData_get_pressEventCamera_mC505603722C7C3CBEE8C56029C2CA6C5CC769E76_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return pointerPressRaycast.module == null ? null : pointerPressRaycast.module.eventCamera; }
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_0 = PointerEventData_get_pointerPressRaycast_m722BCA823E0405C9DF20312CDFBBEB5B1B05B7AE_inline(__this, /*hidden argument*/NULL);
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_1 = L_0.get_module_1();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_2 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_1, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (L_2)
{
goto IL_0024;
}
}
{
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_3 = PointerEventData_get_pointerPressRaycast_m722BCA823E0405C9DF20312CDFBBEB5B1B05B7AE_inline(__this, /*hidden argument*/NULL);
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_4 = L_3.get_module_1();
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * L_5 = VirtFuncInvoker0< Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * >::Invoke(18 /* UnityEngine.Camera UnityEngine.EventSystems.BaseRaycaster::get_eventCamera() */, L_4);
return L_5;
}
IL_0024:
{
return (Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 *)NULL;
}
}
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::get_pointerPress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * PointerEventData_get_pointerPress_m7B8C9E16E2B9E86C4DA93A2A2E3A58E56536406B (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// get { return m_PointerPress; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = __this->get_m_PointerPress_3();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.PointerEventData::set_pointerPress(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_pointerPress_mDFB3D803C9C4137799F9F1D57810DAAF08238327 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PointerEventData_set_pointerPress_mDFB3D803C9C4137799F9F1D57810DAAF08238327_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (m_PointerPress == value)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = __this->get_m_PointerPress_3();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_1 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_2 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_0, L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_000f;
}
}
{
// return;
return;
}
IL_000f:
{
// lastPress = m_PointerPress;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_3 = __this->get_m_PointerPress_3();
PointerEventData_set_lastPress_m3A938CE59A47898263BE6A6F880A3B3CD21D063D_inline(__this, L_3, /*hidden argument*/NULL);
// m_PointerPress = value;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_4 = ___value0;
__this->set_m_PointerPress_3(L_4);
// }
return;
}
}
// System.String UnityEngine.EventSystems.PointerEventData::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PointerEventData_ToString_mA94EE73CA98DC98D20DA590DE44C4FCCE9729A73 (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PointerEventData_ToString_mA94EE73CA98DC98D20DA590DE44C4FCCE9729A73_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 V_1;
memset((&V_1), 0, sizeof(V_1));
{
// var sb = new StringBuilder();
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL);
// sb.AppendLine("<b>Position</b>: " + position);
StringBuilder_t * L_1 = L_0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_2 = PointerEventData_get_position_mF25FC495A9C968C65BF34B5984616CBFB6332D55_inline(__this, /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_3 = L_2;
RuntimeObject * L_4 = Box(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var, &L_3);
String_t* L_5 = String_Concat_mBB19C73816BDD1C3519F248E1ADC8E11A6FDB495(_stringLiteral4824754A1208E36BE5BD9D7741EF31DE24A446E9, L_4, /*hidden argument*/NULL);
StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_1, L_5, /*hidden argument*/NULL);
// sb.AppendLine("<b>delta</b>: " + delta);
StringBuilder_t * L_6 = L_1;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_7 = PointerEventData_get_delta_mC5D62E985D40A7708316C6E07B699B96D9C8184E_inline(__this, /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_8 = L_7;
RuntimeObject * L_9 = Box(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var, &L_8);
String_t* L_10 = String_Concat_mBB19C73816BDD1C3519F248E1ADC8E11A6FDB495(_stringLiteral6410AFC3D8EAF1300CE14A4A75B1AE311B46BB3D, L_9, /*hidden argument*/NULL);
StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_6, L_10, /*hidden argument*/NULL);
// sb.AppendLine("<b>eligibleForClick</b>: " + eligibleForClick);
StringBuilder_t * L_11 = L_6;
bool L_12 = PointerEventData_get_eligibleForClick_m2039146EE2E6940436E592D0655FBA06096DBFFA_inline(__this, /*hidden argument*/NULL);
V_0 = L_12;
String_t* L_13 = Boolean_ToString_m62D1EFD5F6D5F6B6AF0D14A07BF5741C94413301((bool*)(&V_0), /*hidden argument*/NULL);
String_t* L_14 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral143485F6AB09A04EFA8592FAF451842930E013D3, L_13, /*hidden argument*/NULL);
StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_11, L_14, /*hidden argument*/NULL);
// sb.AppendLine("<b>pointerEnter</b>: " + pointerEnter);
StringBuilder_t * L_15 = L_11;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_16 = PointerEventData_get_pointerEnter_m47E87ACB1557B6380D0E66F57C2F9FFFD5E86DC2_inline(__this, /*hidden argument*/NULL);
String_t* L_17 = String_Concat_mBB19C73816BDD1C3519F248E1ADC8E11A6FDB495(_stringLiteralD9F0B728F8B41C0FBCF325CDFF95574BEF3D0305, L_16, /*hidden argument*/NULL);
StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_15, L_17, /*hidden argument*/NULL);
// sb.AppendLine("<b>pointerPress</b>: " + pointerPress);
StringBuilder_t * L_18 = L_15;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_19 = PointerEventData_get_pointerPress_m7B8C9E16E2B9E86C4DA93A2A2E3A58E56536406B_inline(__this, /*hidden argument*/NULL);
String_t* L_20 = String_Concat_mBB19C73816BDD1C3519F248E1ADC8E11A6FDB495(_stringLiteralE27F38C29D9E829679BBE04626F26354087DA51E, L_19, /*hidden argument*/NULL);
StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_18, L_20, /*hidden argument*/NULL);
// sb.AppendLine("<b>lastPointerPress</b>: " + lastPress);
StringBuilder_t * L_21 = L_18;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_22 = PointerEventData_get_lastPress_m6B005D786FC5B30ECD8D5BC068420D0C361357F4_inline(__this, /*hidden argument*/NULL);
String_t* L_23 = String_Concat_mBB19C73816BDD1C3519F248E1ADC8E11A6FDB495(_stringLiteralAFB34D479A439057F4F8B32689E246CCA223FB77, L_22, /*hidden argument*/NULL);
StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_21, L_23, /*hidden argument*/NULL);
// sb.AppendLine("<b>pointerDrag</b>: " + pointerDrag);
StringBuilder_t * L_24 = L_21;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_25 = PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline(__this, /*hidden argument*/NULL);
String_t* L_26 = String_Concat_mBB19C73816BDD1C3519F248E1ADC8E11A6FDB495(_stringLiteral47FEFC2A679A931B5B0109A5DD4B8A8F0AB83F67, L_25, /*hidden argument*/NULL);
StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_24, L_26, /*hidden argument*/NULL);
// sb.AppendLine("<b>Use Drag Threshold</b>: " + useDragThreshold);
StringBuilder_t * L_27 = L_24;
bool L_28 = PointerEventData_get_useDragThreshold_mD254C2D9572E12F10EC86A21F28E4284EE29D39A_inline(__this, /*hidden argument*/NULL);
V_0 = L_28;
String_t* L_29 = Boolean_ToString_m62D1EFD5F6D5F6B6AF0D14A07BF5741C94413301((bool*)(&V_0), /*hidden argument*/NULL);
String_t* L_30 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteralEC9482C230F7C1C7344A86ED0825D6F622A35F6E, L_29, /*hidden argument*/NULL);
StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_27, L_30, /*hidden argument*/NULL);
// sb.AppendLine("<b>Current Raycast:</b>");
StringBuilder_t * L_31 = L_27;
StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_31, _stringLiteral02869C465F7A1307EFAFE70D034A1B7E195D20C8, /*hidden argument*/NULL);
// sb.AppendLine(pointerCurrentRaycast.ToString());
StringBuilder_t * L_32 = L_31;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_33 = PointerEventData_get_pointerCurrentRaycast_mE58F786484E13AF2E6C2706E20C889E7453E3A7A_inline(__this, /*hidden argument*/NULL);
V_1 = L_33;
String_t* L_34 = RaycastResult_ToString_mFD0F27611425231BAF089CEBB0332FEFD7FB9E21((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)(&V_1), /*hidden argument*/NULL);
StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_32, L_34, /*hidden argument*/NULL);
// sb.AppendLine("<b>Press Raycast:</b>");
StringBuilder_t * L_35 = L_32;
StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_35, _stringLiteral44AACA94704A8DFDF396F166B996163D7D00F479, /*hidden argument*/NULL);
// sb.AppendLine(pointerPressRaycast.ToString());
StringBuilder_t * L_36 = L_35;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_37 = PointerEventData_get_pointerPressRaycast_m722BCA823E0405C9DF20312CDFBBEB5B1B05B7AE_inline(__this, /*hidden argument*/NULL);
V_1 = L_37;
String_t* L_38 = RaycastResult_ToString_mFD0F27611425231BAF089CEBB0332FEFD7FB9E21((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)(&V_1), /*hidden argument*/NULL);
StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_36, L_38, /*hidden argument*/NULL);
// return sb.ToString();
String_t* L_39 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_36);
return L_39;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean UnityEngine.EventSystems.PointerInputModule::GetPointerData(System.Int32,UnityEngine.EventSystems.PointerEventData&,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerInputModule_GetPointerData_mB16DD3B9751FFEBBB1EC7802533D8EF36C9C8248 (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C * __this, int32_t ___id0, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 ** ___data1, bool ___create2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PointerInputModule_GetPointerData_mB16DD3B9751FFEBBB1EC7802533D8EF36C9C8248_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (!m_PointerData.TryGetValue(id, out data) && create)
Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * L_0 = __this->get_m_PointerData_14();
int32_t L_1 = ___id0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 ** L_2 = ___data1;
bool L_3 = Dictionary_2_TryGetValue_mF1A602D73FE0DC792D8339AA812B5E0249EFD6FC(L_0, L_1, (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 **)L_2, /*hidden argument*/Dictionary_2_TryGetValue_mF1A602D73FE0DC792D8339AA812B5E0249EFD6FC_RuntimeMethod_var);
bool L_4 = ___create2;
if (!((int32_t)((int32_t)((((int32_t)L_3) == ((int32_t)0))? 1 : 0)&(int32_t)L_4)))
{
goto IL_0038;
}
}
{
// data = new PointerEventData(eventSystem)
// {
// pointerId = id,
// };
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 ** L_5 = ___data1;
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_6 = BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline(__this, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_7 = (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 *)il2cpp_codegen_object_new(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_il2cpp_TypeInfo_var);
PointerEventData__ctor_mA2208343CA6EE41C13A6B7123322CC88B00A723B(L_7, L_6, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_8 = L_7;
int32_t L_9 = ___id0;
PointerEventData_set_pointerId_m4CF9E4E445D841D14E46AE00B0B687EE3435C03E_inline(L_8, L_9, /*hidden argument*/NULL);
*((RuntimeObject **)L_5) = (RuntimeObject *)L_8;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_5, (void*)(RuntimeObject *)L_8);
// m_PointerData.Add(id, data);
Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * L_10 = __this->get_m_PointerData_14();
int32_t L_11 = ___id0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 ** L_12 = ___data1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_13 = *((PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 **)L_12);
Dictionary_2_Add_m8C409976338EF0B48015E59311498B190F037C11(L_10, L_11, L_13, /*hidden argument*/Dictionary_2_Add_m8C409976338EF0B48015E59311498B190F037C11_RuntimeMethod_var);
// return true;
return (bool)1;
}
IL_0038:
{
// return false;
return (bool)0;
}
}
// System.Void UnityEngine.EventSystems.PointerInputModule::RemovePointerData(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerInputModule_RemovePointerData_mDDADB278A6A01D38C46631A9531C62C17B4DEBEA (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___data0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PointerInputModule_RemovePointerData_mDDADB278A6A01D38C46631A9531C62C17B4DEBEA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// m_PointerData.Remove(data.pointerId);
Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * L_0 = __this->get_m_PointerData_14();
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_1 = ___data0;
int32_t L_2 = PointerEventData_get_pointerId_m73B8DCE39BDCB5BD7894D192DDA7FF8817FBE6C6_inline(L_1, /*hidden argument*/NULL);
Dictionary_2_Remove_m4AA48AC7DC8C51BE0539C872EFA9CB1BCC326033(L_0, L_2, /*hidden argument*/Dictionary_2_Remove_m4AA48AC7DC8C51BE0539C872EFA9CB1BCC326033_RuntimeMethod_var);
// }
return;
}
}
// UnityEngine.EventSystems.PointerEventData UnityEngine.EventSystems.PointerInputModule::GetTouchPointerEventData(UnityEngine.Touch,System.Boolean&,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * PointerInputModule_GetTouchPointerEventData_m630FA2AD7438552F7AF904ED42EA90FADD910055 (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C * __this, Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 ___input0, bool* ___pressed1, bool* ___released2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PointerInputModule_GetTouchPointerEventData_m630FA2AD7438552F7AF904ED42EA90FADD910055_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * V_0 = NULL;
bool V_1 = false;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 V_2;
memset((&V_2), 0, sizeof(V_2));
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 V_3;
memset((&V_3), 0, sizeof(V_3));
bool* G_B2_0 = NULL;
bool* G_B1_0 = NULL;
int32_t G_B3_0 = 0;
bool* G_B3_1 = NULL;
bool* G_B5_0 = NULL;
bool* G_B4_0 = NULL;
int32_t G_B6_0 = 0;
bool* G_B6_1 = NULL;
{
// var created = GetPointerData(input.fingerId, out pointerData, true);
int32_t L_0 = Touch_get_fingerId_m2EF0EF2E6E388C8D9D38C58EF5D03EA30E568E1D((Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 *)(&___input0), /*hidden argument*/NULL);
bool L_1 = PointerInputModule_GetPointerData_mB16DD3B9751FFEBBB1EC7802533D8EF36C9C8248(__this, L_0, (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 **)(&V_0), (bool)1, /*hidden argument*/NULL);
V_1 = L_1;
// pointerData.Reset();
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_2 = V_0;
VirtActionInvoker0::Invoke(4 /* System.Void UnityEngine.EventSystems.AbstractEventData::Reset() */, L_2);
// pressed = created || (input.phase == TouchPhase.Began);
bool* L_3 = ___pressed1;
bool L_4 = V_1;
G_B1_0 = L_3;
if (L_4)
{
G_B2_0 = L_3;
goto IL_0027;
}
}
{
int32_t L_5 = Touch_get_phase_m759A61477ECBBD90A57E36F1166EB9340A0FE349((Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 *)(&___input0), /*hidden argument*/NULL);
G_B3_0 = ((((int32_t)L_5) == ((int32_t)0))? 1 : 0);
G_B3_1 = G_B1_0;
goto IL_0028;
}
IL_0027:
{
G_B3_0 = 1;
G_B3_1 = G_B2_0;
}
IL_0028:
{
*((int8_t*)G_B3_1) = (int8_t)G_B3_0;
// released = (input.phase == TouchPhase.Canceled) || (input.phase == TouchPhase.Ended);
bool* L_6 = ___released2;
int32_t L_7 = Touch_get_phase_m759A61477ECBBD90A57E36F1166EB9340A0FE349((Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 *)(&___input0), /*hidden argument*/NULL);
G_B4_0 = L_6;
if ((((int32_t)L_7) == ((int32_t)4)))
{
G_B5_0 = L_6;
goto IL_0040;
}
}
{
int32_t L_8 = Touch_get_phase_m759A61477ECBBD90A57E36F1166EB9340A0FE349((Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 *)(&___input0), /*hidden argument*/NULL);
G_B6_0 = ((((int32_t)L_8) == ((int32_t)3))? 1 : 0);
G_B6_1 = G_B4_0;
goto IL_0041;
}
IL_0040:
{
G_B6_0 = 1;
G_B6_1 = G_B5_0;
}
IL_0041:
{
*((int8_t*)G_B6_1) = (int8_t)G_B6_0;
// if (created)
bool L_9 = V_1;
if (!L_9)
{
goto IL_0052;
}
}
{
// pointerData.position = input.position;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_10 = V_0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_11 = Touch_get_position_m2E60676112DA3628CF2DC76418A275C7FE521D8F((Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 *)(&___input0), /*hidden argument*/NULL);
PointerEventData_set_position_mD63B59E6D4EF9B2B2E26D1F4893A7C67BD04266A_inline(L_10, L_11, /*hidden argument*/NULL);
}
IL_0052:
{
// if (pressed)
bool* L_12 = ___pressed1;
int32_t L_13 = *((uint8_t*)L_12);
if (!L_13)
{
goto IL_0063;
}
}
{
// pointerData.delta = Vector2.zero;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_14 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_15 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
PointerEventData_set_delta_mDFEB23DF789E945F2CEC51C1F902CEE6AF674415_inline(L_14, L_15, /*hidden argument*/NULL);
goto IL_007b;
}
IL_0063:
{
// pointerData.delta = input.position - pointerData.position;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_16 = V_0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_17 = Touch_get_position_m2E60676112DA3628CF2DC76418A275C7FE521D8F((Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 *)(&___input0), /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_18 = V_0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_19 = PointerEventData_get_position_mF25FC495A9C968C65BF34B5984616CBFB6332D55_inline(L_18, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_20 = Vector2_op_Subtraction_m2B347E4311EDBBBF27573E34899D2492E6B063C0(L_17, L_19, /*hidden argument*/NULL);
PointerEventData_set_delta_mDFEB23DF789E945F2CEC51C1F902CEE6AF674415_inline(L_16, L_20, /*hidden argument*/NULL);
}
IL_007b:
{
// pointerData.position = input.position;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_21 = V_0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_22 = Touch_get_position_m2E60676112DA3628CF2DC76418A275C7FE521D8F((Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 *)(&___input0), /*hidden argument*/NULL);
PointerEventData_set_position_mD63B59E6D4EF9B2B2E26D1F4893A7C67BD04266A_inline(L_21, L_22, /*hidden argument*/NULL);
// pointerData.button = PointerEventData.InputButton.Left;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_23 = V_0;
PointerEventData_set_button_mD5D63D10CFE13D720287DD76AE0D8A852F8324CC_inline(L_23, 0, /*hidden argument*/NULL);
// if (input.phase == TouchPhase.Canceled)
int32_t L_24 = Touch_get_phase_m759A61477ECBBD90A57E36F1166EB9340A0FE349((Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 *)(&___input0), /*hidden argument*/NULL);
if ((!(((uint32_t)L_24) == ((uint32_t)4))))
{
goto IL_00aa;
}
}
{
// pointerData.pointerCurrentRaycast = new RaycastResult();
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_25 = V_0;
il2cpp_codegen_initobj((&V_2), sizeof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ));
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_26 = V_2;
PointerEventData_set_pointerCurrentRaycast_m0B0B77AF61C5402D29574A9031AEED66AE4C8455_inline(L_25, L_26, /*hidden argument*/NULL);
// }
goto IL_00da;
}
IL_00aa:
{
// eventSystem.RaycastAll(pointerData, m_RaycastResultCache);
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_27 = BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline(__this, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_28 = V_0;
List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * L_29 = ((BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 *)__this)->get_m_RaycastResultCache_4();
EventSystem_RaycastAll_mA5A53B5404EF95AE97EE81445056153ED41CBF80(L_27, L_28, L_29, /*hidden argument*/NULL);
// var raycast = FindFirstRaycast(m_RaycastResultCache);
List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * L_30 = ((BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 *)__this)->get_m_RaycastResultCache_4();
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_31 = BaseInputModule_FindFirstRaycast_m4ABCD1BCF871A87518D47C906B8F63154B6BF275(L_30, /*hidden argument*/NULL);
V_3 = L_31;
// pointerData.pointerCurrentRaycast = raycast;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_32 = V_0;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_33 = V_3;
PointerEventData_set_pointerCurrentRaycast_m0B0B77AF61C5402D29574A9031AEED66AE4C8455_inline(L_32, L_33, /*hidden argument*/NULL);
// m_RaycastResultCache.Clear();
List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * L_34 = ((BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 *)__this)->get_m_RaycastResultCache_4();
List_1_Clear_mD6A4F201FB5F0713480F9CAF35A9646F08B56CB2(L_34, /*hidden argument*/List_1_Clear_mD6A4F201FB5F0713480F9CAF35A9646F08B56CB2_RuntimeMethod_var);
}
IL_00da:
{
// return pointerData;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_35 = V_0;
return L_35;
}
}
// System.Void UnityEngine.EventSystems.PointerInputModule::CopyFromTo(UnityEngine.EventSystems.PointerEventData,UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerInputModule_CopyFromTo_mDCFE9EA1411C24FA9ABDA993CC16182C2B1AF687 (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___from0, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___to1, const RuntimeMethod* method)
{
{
// @to.position = @from.position;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_0 = ___to1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_1 = ___from0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_2 = PointerEventData_get_position_mF25FC495A9C968C65BF34B5984616CBFB6332D55_inline(L_1, /*hidden argument*/NULL);
PointerEventData_set_position_mD63B59E6D4EF9B2B2E26D1F4893A7C67BD04266A_inline(L_0, L_2, /*hidden argument*/NULL);
// @to.delta = @from.delta;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_3 = ___to1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_4 = ___from0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_5 = PointerEventData_get_delta_mC5D62E985D40A7708316C6E07B699B96D9C8184E_inline(L_4, /*hidden argument*/NULL);
PointerEventData_set_delta_mDFEB23DF789E945F2CEC51C1F902CEE6AF674415_inline(L_3, L_5, /*hidden argument*/NULL);
// @to.scrollDelta = @from.scrollDelta;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_6 = ___to1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_7 = ___from0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_8 = PointerEventData_get_scrollDelta_mF473A122C860EC5279F6F5D085912BDA6418690B_inline(L_7, /*hidden argument*/NULL);
PointerEventData_set_scrollDelta_m2B7F400B1DD1B45C36D22F291E625B02C76F9751_inline(L_6, L_8, /*hidden argument*/NULL);
// @to.pointerCurrentRaycast = @from.pointerCurrentRaycast;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_9 = ___to1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_10 = ___from0;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_11 = PointerEventData_get_pointerCurrentRaycast_mE58F786484E13AF2E6C2706E20C889E7453E3A7A_inline(L_10, /*hidden argument*/NULL);
PointerEventData_set_pointerCurrentRaycast_m0B0B77AF61C5402D29574A9031AEED66AE4C8455_inline(L_9, L_11, /*hidden argument*/NULL);
// @to.pointerEnter = @from.pointerEnter;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_12 = ___to1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_13 = ___from0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_14 = PointerEventData_get_pointerEnter_m47E87ACB1557B6380D0E66F57C2F9FFFD5E86DC2_inline(L_13, /*hidden argument*/NULL);
PointerEventData_set_pointerEnter_mCA947226697EEC596FD611B31C10D7CE981026CC_inline(L_12, L_14, /*hidden argument*/NULL);
// }
return;
}
}
// UnityEngine.EventSystems.PointerEventData_FramePressState UnityEngine.EventSystems.PointerInputModule::StateForMouseButton(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PointerInputModule_StateForMouseButton_m182B203D7CB0A9E0F39F39FAC8C0020D85C26D22 (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C * __this, int32_t ___buttonId0, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
{
// var pressed = input.GetMouseButtonDown(buttonId);
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_0 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
int32_t L_1 = ___buttonId0;
bool L_2 = VirtFuncInvoker1< bool, int32_t >::Invoke(23 /* System.Boolean UnityEngine.EventSystems.BaseInput::GetMouseButtonDown(System.Int32) */, L_0, L_1);
V_0 = L_2;
// var released = input.GetMouseButtonUp(buttonId);
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_3 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
int32_t L_4 = ___buttonId0;
bool L_5 = VirtFuncInvoker1< bool, int32_t >::Invoke(24 /* System.Boolean UnityEngine.EventSystems.BaseInput::GetMouseButtonUp(System.Int32) */, L_3, L_4);
V_1 = L_5;
// if (pressed && released)
bool L_6 = V_0;
bool L_7 = V_1;
if (!((int32_t)((int32_t)L_6&(int32_t)L_7)))
{
goto IL_0021;
}
}
{
// return PointerEventData.FramePressState.PressedAndReleased;
return (int32_t)(2);
}
IL_0021:
{
// if (pressed)
bool L_8 = V_0;
if (!L_8)
{
goto IL_0026;
}
}
{
// return PointerEventData.FramePressState.Pressed;
return (int32_t)(0);
}
IL_0026:
{
// if (released)
bool L_9 = V_1;
if (!L_9)
{
goto IL_002b;
}
}
{
// return PointerEventData.FramePressState.Released;
return (int32_t)(1);
}
IL_002b:
{
// return PointerEventData.FramePressState.NotChanged;
return (int32_t)(3);
}
}
// UnityEngine.EventSystems.PointerInputModule_MouseState UnityEngine.EventSystems.PointerInputModule::GetMousePointerEventData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * PointerInputModule_GetMousePointerEventData_mA8B6C810AE130118AA18CD4BD35F8F5BCE0D7E07 (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C * __this, const RuntimeMethod* method)
{
{
// return GetMousePointerEventData(0);
MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * L_0 = VirtFuncInvoker1< MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 *, int32_t >::Invoke(27 /* UnityEngine.EventSystems.PointerInputModule/MouseState UnityEngine.EventSystems.PointerInputModule::GetMousePointerEventData(System.Int32) */, __this, 0);
return L_0;
}
}
// UnityEngine.EventSystems.PointerInputModule_MouseState UnityEngine.EventSystems.PointerInputModule::GetMousePointerEventData(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * PointerInputModule_GetMousePointerEventData_m1BE3C022E0D9B001B96B9FB129FE57FEBFD13E7F (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C * __this, int32_t ___id0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PointerInputModule_GetMousePointerEventData_m1BE3C022E0D9B001B96B9FB129FE57FEBFD13E7F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * V_0 = NULL;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_1;
memset((&V_1), 0, sizeof(V_1));
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 V_2;
memset((&V_2), 0, sizeof(V_2));
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * V_3 = NULL;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * V_4 = NULL;
{
// var created = GetPointerData(kMouseLeftId, out leftData, true);
bool L_0 = PointerInputModule_GetPointerData_mB16DD3B9751FFEBBB1EC7802533D8EF36C9C8248(__this, (-1), (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 **)(&V_0), (bool)1, /*hidden argument*/NULL);
// leftData.Reset();
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_1 = V_0;
VirtActionInvoker0::Invoke(4 /* System.Void UnityEngine.EventSystems.AbstractEventData::Reset() */, L_1);
// if (created)
if (!L_0)
{
goto IL_0023;
}
}
{
// leftData.position = input.mousePosition;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_2 = V_0;
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_3 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_4 = VirtFuncInvoker0< Vector2_tA85D2DD88578276CA8A8796756458277E72D073D >::Invoke(26 /* UnityEngine.Vector2 UnityEngine.EventSystems.BaseInput::get_mousePosition() */, L_3);
PointerEventData_set_position_mD63B59E6D4EF9B2B2E26D1F4893A7C67BD04266A_inline(L_2, L_4, /*hidden argument*/NULL);
}
IL_0023:
{
// Vector2 pos = input.mousePosition;
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_5 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_6 = VirtFuncInvoker0< Vector2_tA85D2DD88578276CA8A8796756458277E72D073D >::Invoke(26 /* UnityEngine.Vector2 UnityEngine.EventSystems.BaseInput::get_mousePosition() */, L_5);
V_1 = L_6;
// if (Cursor.lockState == CursorLockMode.Locked)
int32_t L_7 = Cursor_get_lockState_mE0C93F496E3AA120AD168ED30371C35ED79C9DF1(/*hidden argument*/NULL);
if ((!(((uint32_t)L_7) == ((uint32_t)1))))
{
goto IL_0059;
}
}
{
// leftData.position = new Vector2(-1.0f, -1.0f);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_8 = V_0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_9;
memset((&L_9), 0, sizeof(L_9));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_9), (-1.0f), (-1.0f), /*hidden argument*/NULL);
PointerEventData_set_position_mD63B59E6D4EF9B2B2E26D1F4893A7C67BD04266A_inline(L_8, L_9, /*hidden argument*/NULL);
// leftData.delta = Vector2.zero;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_10 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_11 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
PointerEventData_set_delta_mDFEB23DF789E945F2CEC51C1F902CEE6AF674415_inline(L_10, L_11, /*hidden argument*/NULL);
// }
goto IL_0072;
}
IL_0059:
{
// leftData.delta = pos - leftData.position;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_12 = V_0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_13 = V_1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_14 = V_0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_15 = PointerEventData_get_position_mF25FC495A9C968C65BF34B5984616CBFB6332D55_inline(L_14, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_16 = Vector2_op_Subtraction_m2B347E4311EDBBBF27573E34899D2492E6B063C0(L_13, L_15, /*hidden argument*/NULL);
PointerEventData_set_delta_mDFEB23DF789E945F2CEC51C1F902CEE6AF674415_inline(L_12, L_16, /*hidden argument*/NULL);
// leftData.position = pos;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_17 = V_0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_18 = V_1;
PointerEventData_set_position_mD63B59E6D4EF9B2B2E26D1F4893A7C67BD04266A_inline(L_17, L_18, /*hidden argument*/NULL);
}
IL_0072:
{
// leftData.scrollDelta = input.mouseScrollDelta;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_19 = V_0;
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_20 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_21 = VirtFuncInvoker0< Vector2_tA85D2DD88578276CA8A8796756458277E72D073D >::Invoke(27 /* UnityEngine.Vector2 UnityEngine.EventSystems.BaseInput::get_mouseScrollDelta() */, L_20);
PointerEventData_set_scrollDelta_m2B7F400B1DD1B45C36D22F291E625B02C76F9751_inline(L_19, L_21, /*hidden argument*/NULL);
// leftData.button = PointerEventData.InputButton.Left;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_22 = V_0;
PointerEventData_set_button_mD5D63D10CFE13D720287DD76AE0D8A852F8324CC_inline(L_22, 0, /*hidden argument*/NULL);
// eventSystem.RaycastAll(leftData, m_RaycastResultCache);
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_23 = BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline(__this, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_24 = V_0;
List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * L_25 = ((BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 *)__this)->get_m_RaycastResultCache_4();
EventSystem_RaycastAll_mA5A53B5404EF95AE97EE81445056153ED41CBF80(L_23, L_24, L_25, /*hidden argument*/NULL);
// var raycast = FindFirstRaycast(m_RaycastResultCache);
List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * L_26 = ((BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 *)__this)->get_m_RaycastResultCache_4();
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_27 = BaseInputModule_FindFirstRaycast_m4ABCD1BCF871A87518D47C906B8F63154B6BF275(L_26, /*hidden argument*/NULL);
V_2 = L_27;
// leftData.pointerCurrentRaycast = raycast;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_28 = V_0;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_29 = V_2;
PointerEventData_set_pointerCurrentRaycast_m0B0B77AF61C5402D29574A9031AEED66AE4C8455_inline(L_28, L_29, /*hidden argument*/NULL);
// m_RaycastResultCache.Clear();
List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * L_30 = ((BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 *)__this)->get_m_RaycastResultCache_4();
List_1_Clear_mD6A4F201FB5F0713480F9CAF35A9646F08B56CB2(L_30, /*hidden argument*/List_1_Clear_mD6A4F201FB5F0713480F9CAF35A9646F08B56CB2_RuntimeMethod_var);
// GetPointerData(kMouseRightId, out rightData, true);
PointerInputModule_GetPointerData_mB16DD3B9751FFEBBB1EC7802533D8EF36C9C8248(__this, ((int32_t)-2), (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 **)(&V_3), (bool)1, /*hidden argument*/NULL);
// CopyFromTo(leftData, rightData);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_31 = V_0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_32 = V_3;
PointerInputModule_CopyFromTo_mDCFE9EA1411C24FA9ABDA993CC16182C2B1AF687(__this, L_31, L_32, /*hidden argument*/NULL);
// rightData.button = PointerEventData.InputButton.Right;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_33 = V_3;
PointerEventData_set_button_mD5D63D10CFE13D720287DD76AE0D8A852F8324CC_inline(L_33, 1, /*hidden argument*/NULL);
// GetPointerData(kMouseMiddleId, out middleData, true);
PointerInputModule_GetPointerData_mB16DD3B9751FFEBBB1EC7802533D8EF36C9C8248(__this, ((int32_t)-3), (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 **)(&V_4), (bool)1, /*hidden argument*/NULL);
// CopyFromTo(leftData, middleData);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_34 = V_0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_35 = V_4;
PointerInputModule_CopyFromTo_mDCFE9EA1411C24FA9ABDA993CC16182C2B1AF687(__this, L_34, L_35, /*hidden argument*/NULL);
// middleData.button = PointerEventData.InputButton.Middle;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_36 = V_4;
PointerEventData_set_button_mD5D63D10CFE13D720287DD76AE0D8A852F8324CC_inline(L_36, 2, /*hidden argument*/NULL);
// m_MouseState.SetButtonState(PointerEventData.InputButton.Left, StateForMouseButton(0), leftData);
MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * L_37 = __this->get_m_MouseState_15();
int32_t L_38 = PointerInputModule_StateForMouseButton_m182B203D7CB0A9E0F39F39FAC8C0020D85C26D22(__this, 0, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_39 = V_0;
MouseState_SetButtonState_mE7B149E168AC34F69B504C797B1AA9E70122AFC2(L_37, 0, L_38, L_39, /*hidden argument*/NULL);
// m_MouseState.SetButtonState(PointerEventData.InputButton.Right, StateForMouseButton(1), rightData);
MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * L_40 = __this->get_m_MouseState_15();
int32_t L_41 = PointerInputModule_StateForMouseButton_m182B203D7CB0A9E0F39F39FAC8C0020D85C26D22(__this, 1, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_42 = V_3;
MouseState_SetButtonState_mE7B149E168AC34F69B504C797B1AA9E70122AFC2(L_40, 1, L_41, L_42, /*hidden argument*/NULL);
// m_MouseState.SetButtonState(PointerEventData.InputButton.Middle, StateForMouseButton(2), middleData);
MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * L_43 = __this->get_m_MouseState_15();
int32_t L_44 = PointerInputModule_StateForMouseButton_m182B203D7CB0A9E0F39F39FAC8C0020D85C26D22(__this, 2, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_45 = V_4;
MouseState_SetButtonState_mE7B149E168AC34F69B504C797B1AA9E70122AFC2(L_43, 2, L_44, L_45, /*hidden argument*/NULL);
// return m_MouseState;
MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * L_46 = __this->get_m_MouseState_15();
return L_46;
}
}
// UnityEngine.EventSystems.PointerEventData UnityEngine.EventSystems.PointerInputModule::GetLastPointerEventData(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * PointerInputModule_GetLastPointerEventData_m709537DE2BCDD6D50C4C2F39B6A48C4D9A8A27F5 (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C * __this, int32_t ___id0, const RuntimeMethod* method)
{
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * V_0 = NULL;
{
// GetPointerData(id, out data, false);
int32_t L_0 = ___id0;
PointerInputModule_GetPointerData_mB16DD3B9751FFEBBB1EC7802533D8EF36C9C8248(__this, L_0, (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 **)(&V_0), (bool)0, /*hidden argument*/NULL);
// return data;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_1 = V_0;
return L_1;
}
}
// System.Boolean UnityEngine.EventSystems.PointerInputModule::ShouldStartDrag(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerInputModule_ShouldStartDrag_mE818EC5B7706E3803A4EDA09FD1D14A0ED105049 (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___pressPos0, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___currentPos1, float ___threshold2, bool ___useDragThreshold3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PointerInputModule_ShouldStartDrag_mE818EC5B7706E3803A4EDA09FD1D14A0ED105049_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_0;
memset((&V_0), 0, sizeof(V_0));
{
// if (!useDragThreshold)
bool L_0 = ___useDragThreshold3;
if (L_0)
{
goto IL_0005;
}
}
{
// return true;
return (bool)1;
}
IL_0005:
{
// return (pressPos - currentPos).sqrMagnitude >= threshold * threshold;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_1 = ___pressPos0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_2 = ___currentPos1;
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_3 = Vector2_op_Subtraction_m2B347E4311EDBBBF27573E34899D2492E6B063C0(L_1, L_2, /*hidden argument*/NULL);
V_0 = L_3;
float L_4 = Vector2_get_sqrMagnitude_mAEE10A8ECE7D5754E10727BA8C9068A759AD7002((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&V_0), /*hidden argument*/NULL);
float L_5 = ___threshold2;
float L_6 = ___threshold2;
return (bool)((((int32_t)((!(((float)L_4) >= ((float)((float)il2cpp_codegen_multiply((float)L_5, (float)L_6)))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Void UnityEngine.EventSystems.PointerInputModule::ProcessMove(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerInputModule_ProcessMove_mF69B051D56D97F33857794A5EBB0A952AEAA276F (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___pointerEvent0, const RuntimeMethod* method)
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_0 = NULL;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 V_1;
memset((&V_1), 0, sizeof(V_1));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * G_B3_0 = NULL;
{
// var targetGO = (Cursor.lockState == CursorLockMode.Locked ? null : pointerEvent.pointerCurrentRaycast.gameObject);
int32_t L_0 = Cursor_get_lockState_mE0C93F496E3AA120AD168ED30371C35ED79C9DF1(/*hidden argument*/NULL);
if ((((int32_t)L_0) == ((int32_t)1)))
{
goto IL_0018;
}
}
{
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_1 = ___pointerEvent0;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_2 = PointerEventData_get_pointerCurrentRaycast_mE58F786484E13AF2E6C2706E20C889E7453E3A7A_inline(L_1, /*hidden argument*/NULL);
V_1 = L_2;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_3 = RaycastResult_get_gameObject_m9D77DEDFF498BAFE29A5F88E9F238400D04C8FDD_inline((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)(&V_1), /*hidden argument*/NULL);
G_B3_0 = L_3;
goto IL_0019;
}
IL_0018:
{
G_B3_0 = ((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)(NULL));
}
IL_0019:
{
V_0 = G_B3_0;
// HandlePointerExitAndEnter(pointerEvent, targetGO);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_4 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_5 = V_0;
BaseInputModule_HandlePointerExitAndEnter_mD32C0E209A19F78D07D964D162188D13762463BF(__this, L_4, L_5, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.PointerInputModule::ProcessDrag(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerInputModule_ProcessDrag_m1B953F6640DBD2E46508B18F4F281ED461DD1360 (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___pointerEvent0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PointerInputModule_ProcessDrag_m1B953F6640DBD2E46508B18F4F281ED461DD1360_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (!pointerEvent.IsPointerMoving() ||
// Cursor.lockState == CursorLockMode.Locked ||
// pointerEvent.pointerDrag == null)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_0 = ___pointerEvent0;
bool L_1 = PointerEventData_IsPointerMoving_mDF9C046AEE3228B95BECFCF01AE4C45D318EB486(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_001e;
}
}
{
int32_t L_2 = Cursor_get_lockState_mE0C93F496E3AA120AD168ED30371C35ED79C9DF1(/*hidden argument*/NULL);
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_001e;
}
}
{
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_3 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_4 = PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline(L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_5 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_4, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_001f;
}
}
IL_001e:
{
// return;
return;
}
IL_001f:
{
// if (!pointerEvent.dragging
// && ShouldStartDrag(pointerEvent.pressPosition, pointerEvent.position, eventSystem.pixelDragThreshold, pointerEvent.useDragThreshold))
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_6 = ___pointerEvent0;
bool L_7 = PointerEventData_get_dragging_mA3B420FFEB0856189D7A7646AA00A981C745D4B4_inline(L_6, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0065;
}
}
{
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_8 = ___pointerEvent0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_9 = PointerEventData_get_pressPosition_m7C8D5A54C81C801EB577A60718C4211DFA1A3624_inline(L_8, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_10 = ___pointerEvent0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_11 = PointerEventData_get_position_mF25FC495A9C968C65BF34B5984616CBFB6332D55_inline(L_10, /*hidden argument*/NULL);
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_12 = BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline(__this, /*hidden argument*/NULL);
int32_t L_13 = EventSystem_get_pixelDragThreshold_m8E8607E0C4E56387677507B45455A24D4680E0D3_inline(L_12, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_14 = ___pointerEvent0;
bool L_15 = PointerEventData_get_useDragThreshold_mD254C2D9572E12F10EC86A21F28E4284EE29D39A_inline(L_14, /*hidden argument*/NULL);
bool L_16 = PointerInputModule_ShouldStartDrag_mE818EC5B7706E3803A4EDA09FD1D14A0ED105049(L_9, L_11, (((float)((float)L_13))), L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_0065;
}
}
{
// ExecuteEvents.Execute(pointerEvent.pointerDrag, pointerEvent, ExecuteEvents.beginDragHandler);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_17 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_18 = PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline(L_17, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_19 = ___pointerEvent0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 * L_20 = ExecuteEvents_get_beginDragHandler_m7F238765714F73899EAFDF0BA203D9A8A57AED31_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisIBeginDragHandler_t5CBE3EF4B4A6303FA5E9AC40295295BBAD687BF4_m8BACBBD07692DE23BC8EBD4C6B99D7A9C994B44F(L_18, L_19, L_20, /*hidden argument*/ExecuteEvents_Execute_TisIBeginDragHandler_t5CBE3EF4B4A6303FA5E9AC40295295BBAD687BF4_m8BACBBD07692DE23BC8EBD4C6B99D7A9C994B44F_RuntimeMethod_var);
// pointerEvent.dragging = true;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_21 = ___pointerEvent0;
PointerEventData_set_dragging_m4A4C08AB5A2173557EA62190F47AEFF1E9332821_inline(L_21, (bool)1, /*hidden argument*/NULL);
}
IL_0065:
{
// if (pointerEvent.dragging)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_22 = ___pointerEvent0;
bool L_23 = PointerEventData_get_dragging_mA3B420FFEB0856189D7A7646AA00A981C745D4B4_inline(L_22, /*hidden argument*/NULL);
if (!L_23)
{
goto IL_00b9;
}
}
{
// if (pointerEvent.pointerPress != pointerEvent.pointerDrag)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_24 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_25 = PointerEventData_get_pointerPress_m7B8C9E16E2B9E86C4DA93A2A2E3A58E56536406B_inline(L_24, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_26 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_27 = PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline(L_26, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_28 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_25, L_27, /*hidden argument*/NULL);
if (!L_28)
{
goto IL_00a7;
}
}
{
// ExecuteEvents.Execute(pointerEvent.pointerPress, pointerEvent, ExecuteEvents.pointerUpHandler);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_29 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_30 = PointerEventData_get_pointerPress_m7B8C9E16E2B9E86C4DA93A2A2E3A58E56536406B_inline(L_29, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_31 = ___pointerEvent0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 * L_32 = ExecuteEvents_get_pointerUpHandler_m7EDDD1128DC04344CECEBCB9B6B7CD064F7FAED2_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisIPointerUpHandler_tAF005E3FEF3EA2D9DDA99FAA488955AA8B392102_mE7822304A5DF78074F7FE7B2255BCC9F70471C99(L_30, L_31, L_32, /*hidden argument*/ExecuteEvents_Execute_TisIPointerUpHandler_tAF005E3FEF3EA2D9DDA99FAA488955AA8B392102_mE7822304A5DF78074F7FE7B2255BCC9F70471C99_RuntimeMethod_var);
// pointerEvent.eligibleForClick = false;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_33 = ___pointerEvent0;
PointerEventData_set_eligibleForClick_m403F4068866F6A5CC9814729B3918C8FF1C21DBD_inline(L_33, (bool)0, /*hidden argument*/NULL);
// pointerEvent.pointerPress = null;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_34 = ___pointerEvent0;
PointerEventData_set_pointerPress_mDFB3D803C9C4137799F9F1D57810DAAF08238327(L_34, (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL, /*hidden argument*/NULL);
// pointerEvent.rawPointerPress = null;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_35 = ___pointerEvent0;
PointerEventData_set_rawPointerPress_mB7E32587FD73925A689A71FCAB560F9B78A233A5_inline(L_35, (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL, /*hidden argument*/NULL);
}
IL_00a7:
{
// ExecuteEvents.Execute(pointerEvent.pointerDrag, pointerEvent, ExecuteEvents.dragHandler);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_36 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_37 = PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline(L_36, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_38 = ___pointerEvent0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 * L_39 = ExecuteEvents_get_dragHandler_m41B7D77771806788CD773C83C2E5A53D5ED5B179_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisIDragHandler_t196F681B5B4A5BFCDEA2A93CA0A75D504908D25B_m1A1D375E476A26C2BDAF7D9599E0B1327436FFB9(L_37, L_38, L_39, /*hidden argument*/ExecuteEvents_Execute_TisIDragHandler_t196F681B5B4A5BFCDEA2A93CA0A75D504908D25B_m1A1D375E476A26C2BDAF7D9599E0B1327436FFB9_RuntimeMethod_var);
}
IL_00b9:
{
// }
return;
}
}
// System.Boolean UnityEngine.EventSystems.PointerInputModule::IsPointerOverGameObject(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerInputModule_IsPointerOverGameObject_m8F735B4286B61B82E9C92966B99A9A2D575495F5 (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C * __this, int32_t ___pointerId0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PointerInputModule_IsPointerOverGameObject_m8F735B4286B61B82E9C92966B99A9A2D575495F5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * V_0 = NULL;
{
// var lastPointer = GetLastPointerEventData(pointerId);
int32_t L_0 = ___pointerId0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_1 = PointerInputModule_GetLastPointerEventData_m709537DE2BCDD6D50C4C2F39B6A48C4D9A8A27F5(__this, L_0, /*hidden argument*/NULL);
V_0 = L_1;
// if (lastPointer != null)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_2 = V_0;
if (!L_2)
{
goto IL_0018;
}
}
{
// return lastPointer.pointerEnter != null;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_3 = V_0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_4 = PointerEventData_get_pointerEnter_m47E87ACB1557B6380D0E66F57C2F9FFFD5E86DC2_inline(L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_5 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_4, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
return L_5;
}
IL_0018:
{
// return false;
return (bool)0;
}
}
// System.Void UnityEngine.EventSystems.PointerInputModule::ClearSelection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerInputModule_ClearSelection_m05E527F28FB39BEBA8FA27153DAE71C8E7FDC958 (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PointerInputModule_ClearSelection_m05E527F28FB39BEBA8FA27153DAE71C8E7FDC958_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * V_0 = NULL;
Enumerator_t416C0E23E1A315F8494EF420F4DB9EF6C4D80871 V_1;
memset((&V_1), 0, sizeof(V_1));
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
// var baseEventData = GetBaseEventData();
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_0 = VirtFuncInvoker0< BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * >::Invoke(19 /* UnityEngine.EventSystems.BaseEventData UnityEngine.EventSystems.BaseInputModule::GetBaseEventData() */, __this);
V_0 = L_0;
// foreach (var pointer in m_PointerData.Values)
Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * L_1 = __this->get_m_PointerData_14();
ValueCollection_tB55394F384417AC8A8E53492B82E4C216B7FC23B * L_2 = Dictionary_2_get_Values_mEBB0D41DF0AB96EC3596B5F32CD06C6AE46F1C1C(L_1, /*hidden argument*/Dictionary_2_get_Values_mEBB0D41DF0AB96EC3596B5F32CD06C6AE46F1C1C_RuntimeMethod_var);
Enumerator_t416C0E23E1A315F8494EF420F4DB9EF6C4D80871 L_3 = ValueCollection_GetEnumerator_m6C97EA54EAEC8DCB5120131913AB22C6AF403234(L_2, /*hidden argument*/ValueCollection_GetEnumerator_m6C97EA54EAEC8DCB5120131913AB22C6AF403234_RuntimeMethod_var);
V_1 = L_3;
}
IL_0018:
try
{ // begin try (depth: 1)
{
goto IL_002a;
}
IL_001a:
{
// foreach (var pointer in m_PointerData.Values)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_4 = Enumerator_get_Current_m2C40592C57A063116984E2AD5FD2553A1D5C8090_inline((Enumerator_t416C0E23E1A315F8494EF420F4DB9EF6C4D80871 *)(&V_1), /*hidden argument*/Enumerator_get_Current_m2C40592C57A063116984E2AD5FD2553A1D5C8090_RuntimeMethod_var);
V_2 = L_4;
// HandlePointerExitAndEnter(pointer, null);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_5 = V_2;
BaseInputModule_HandlePointerExitAndEnter_mD32C0E209A19F78D07D964D162188D13762463BF(__this, L_5, (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL, /*hidden argument*/NULL);
}
IL_002a:
{
// foreach (var pointer in m_PointerData.Values)
bool L_6 = Enumerator_MoveNext_mCBA8FA361574286702638F5C0A05EE33A5F5A333((Enumerator_t416C0E23E1A315F8494EF420F4DB9EF6C4D80871 *)(&V_1), /*hidden argument*/Enumerator_MoveNext_mCBA8FA361574286702638F5C0A05EE33A5F5A333_RuntimeMethod_var);
if (L_6)
{
goto IL_001a;
}
}
IL_0033:
{
IL2CPP_LEAVE(0x43, FINALLY_0035);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0035;
}
FINALLY_0035:
{ // begin finally (depth: 1)
Enumerator_Dispose_m6E693B0789FE88C72E3CF1BB6B724A2CC9AF56D3((Enumerator_t416C0E23E1A315F8494EF420F4DB9EF6C4D80871 *)(&V_1), /*hidden argument*/Enumerator_Dispose_m6E693B0789FE88C72E3CF1BB6B724A2CC9AF56D3_RuntimeMethod_var);
IL2CPP_END_FINALLY(53)
} // end finally (depth: 1)
IL2CPP_CLEANUP(53)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x43, IL_0043)
}
IL_0043:
{
// m_PointerData.Clear();
Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * L_7 = __this->get_m_PointerData_14();
Dictionary_2_Clear_mC60D1240FB21DE148D59B55633563976EB2643EC(L_7, /*hidden argument*/Dictionary_2_Clear_mC60D1240FB21DE148D59B55633563976EB2643EC_RuntimeMethod_var);
// eventSystem.SetSelectedGameObject(null, baseEventData);
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_8 = BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline(__this, /*hidden argument*/NULL);
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_9 = V_0;
EventSystem_SetSelectedGameObject_m532EE7D0346462EDBB56E5BCD048CB3BEFB84E3A(L_8, (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL, L_9, /*hidden argument*/NULL);
// }
return;
}
}
// System.String UnityEngine.EventSystems.PointerInputModule::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PointerInputModule_ToString_mD9C4C6C80C3CFD3A8C1E39D4F9A58A9E29DD1865 (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PointerInputModule_ToString_mD9C4C6C80C3CFD3A8C1E39D4F9A58A9E29DD1865_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
Enumerator_t4A1A39D730A903621334A87D76E39D656515D0AF V_1;
memset((&V_1), 0, sizeof(V_1));
KeyValuePair_2_t04EF4D50839D67939265F84585D99769CEAC8413 V_2;
memset((&V_2), 0, sizeof(V_2));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
// var sb = new StringBuilder("<b>Pointer Input Module of type: </b>" + GetType());
Type_t * L_0 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
String_t* L_1 = String_Concat_mBB19C73816BDD1C3519F248E1ADC8E11A6FDB495(_stringLiteralE977CAF15E7FB7C956766F120C920C4681ABA4A4, L_0, /*hidden argument*/NULL);
StringBuilder_t * L_2 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m53E278FB62B3EAEFAF82890C97219B9B5E2A56C3(L_2, L_1, /*hidden argument*/NULL);
V_0 = L_2;
// sb.AppendLine();
StringBuilder_t * L_3 = V_0;
StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_3, /*hidden argument*/NULL);
// foreach (var pointer in m_PointerData)
Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * L_4 = __this->get_m_PointerData_14();
Enumerator_t4A1A39D730A903621334A87D76E39D656515D0AF L_5 = Dictionary_2_GetEnumerator_m7A5852A777771426770D52346C391F7E0DB03D84(L_4, /*hidden argument*/Dictionary_2_GetEnumerator_m7A5852A777771426770D52346C391F7E0DB03D84_RuntimeMethod_var);
V_1 = L_5;
}
IL_0029:
try
{ // begin try (depth: 1)
{
goto IL_006c;
}
IL_002b:
{
// foreach (var pointer in m_PointerData)
KeyValuePair_2_t04EF4D50839D67939265F84585D99769CEAC8413 L_6 = Enumerator_get_Current_m6F5E214054911C62D43EC8EBD8F7074009887C93_inline((Enumerator_t4A1A39D730A903621334A87D76E39D656515D0AF *)(&V_1), /*hidden argument*/Enumerator_get_Current_m6F5E214054911C62D43EC8EBD8F7074009887C93_RuntimeMethod_var);
V_2 = L_6;
// if (pointer.Value == null)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_7 = KeyValuePair_2_get_Value_m663C5445E9F124109E548E46EF10E87186BC3E5C_inline((KeyValuePair_2_t04EF4D50839D67939265F84585D99769CEAC8413 *)(&V_2), /*hidden argument*/KeyValuePair_2_get_Value_m663C5445E9F124109E548E46EF10E87186BC3E5C_RuntimeMethod_var);
if (!L_7)
{
goto IL_006c;
}
}
IL_003c:
{
// sb.AppendLine("<B>Pointer:</b> " + pointer.Key);
StringBuilder_t * L_8 = V_0;
int32_t L_9 = KeyValuePair_2_get_Key_m18DFCB801D8E1AAD81FB1D7687CEEDDC6374DB67_inline((KeyValuePair_2_t04EF4D50839D67939265F84585D99769CEAC8413 *)(&V_2), /*hidden argument*/KeyValuePair_2_get_Key_m18DFCB801D8E1AAD81FB1D7687CEEDDC6374DB67_RuntimeMethod_var);
int32_t L_10 = L_9;
RuntimeObject * L_11 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_10);
String_t* L_12 = String_Concat_mBB19C73816BDD1C3519F248E1ADC8E11A6FDB495(_stringLiteral30E23F5B45079EDF760E25405EF8980EBB8B47EF, L_11, /*hidden argument*/NULL);
StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_8, L_12, /*hidden argument*/NULL);
// sb.AppendLine(pointer.Value.ToString());
StringBuilder_t * L_13 = V_0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_14 = KeyValuePair_2_get_Value_m663C5445E9F124109E548E46EF10E87186BC3E5C_inline((KeyValuePair_2_t04EF4D50839D67939265F84585D99769CEAC8413 *)(&V_2), /*hidden argument*/KeyValuePair_2_get_Value_m663C5445E9F124109E548E46EF10E87186BC3E5C_RuntimeMethod_var);
String_t* L_15 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_14);
StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_13, L_15, /*hidden argument*/NULL);
}
IL_006c:
{
// foreach (var pointer in m_PointerData)
bool L_16 = Enumerator_MoveNext_m9FBC1E9E4E9692134864389F3F259B5F913479D8((Enumerator_t4A1A39D730A903621334A87D76E39D656515D0AF *)(&V_1), /*hidden argument*/Enumerator_MoveNext_m9FBC1E9E4E9692134864389F3F259B5F913479D8_RuntimeMethod_var);
if (L_16)
{
goto IL_002b;
}
}
IL_0075:
{
IL2CPP_LEAVE(0x85, FINALLY_0077);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0077;
}
FINALLY_0077:
{ // begin finally (depth: 1)
Enumerator_Dispose_m4DE2E93425402C7818C5064E6C5E4029C952FEBB((Enumerator_t4A1A39D730A903621334A87D76E39D656515D0AF *)(&V_1), /*hidden argument*/Enumerator_Dispose_m4DE2E93425402C7818C5064E6C5E4029C952FEBB_RuntimeMethod_var);
IL2CPP_END_FINALLY(119)
} // end finally (depth: 1)
IL2CPP_CLEANUP(119)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x85, IL_0085)
}
IL_0085:
{
// return sb.ToString();
StringBuilder_t * L_17 = V_0;
String_t* L_18 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_17);
return L_18;
}
}
// System.Void UnityEngine.EventSystems.PointerInputModule::DeselectIfSelectionChanged(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerInputModule_DeselectIfSelectionChanged_m3A32EDB68D6F489FD2A22CAB5A98D343E0634BDD (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___currentOverGo0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___pointerEvent1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PointerInputModule_DeselectIfSelectionChanged_m3A32EDB68D6F489FD2A22CAB5A98D343E0634BDD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// var selectHandlerGO = ExecuteEvents.GetEventHandler<ISelectHandler>(currentOverGo);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___currentOverGo0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_1 = ExecuteEvents_GetEventHandler_TisISelectHandler_t05E0943DEF2BC53023C2E4BF4C815E0EDE82C0F4_mF4CBE0CD9A57B74AD0300F5CD3F0B2CD5529CFF2(L_0, /*hidden argument*/ExecuteEvents_GetEventHandler_TisISelectHandler_t05E0943DEF2BC53023C2E4BF4C815E0EDE82C0F4_mF4CBE0CD9A57B74AD0300F5CD3F0B2CD5529CFF2_RuntimeMethod_var);
// if (selectHandlerGO != eventSystem.currentSelectedGameObject)
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_2 = BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline(__this, /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_3 = EventSystem_get_currentSelectedGameObject_mE28E78D268403602DE1FB6F059EE3E9CDB7325A4_inline(L_2, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_4 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_1, L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0025;
}
}
{
// eventSystem.SetSelectedGameObject(null, pointerEvent);
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_5 = BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline(__this, /*hidden argument*/NULL);
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_6 = ___pointerEvent1;
EventSystem_SetSelectedGameObject_m532EE7D0346462EDBB56E5BCD048CB3BEFB84E3A(L_5, (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL, L_6, /*hidden argument*/NULL);
}
IL_0025:
{
// }
return;
}
}
// System.Void UnityEngine.EventSystems.PointerInputModule::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerInputModule__ctor_m1E5E97188BEB6F225E167E5D2BA6DAEF4BFA3510 (PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PointerInputModule__ctor_m1E5E97188BEB6F225E167E5D2BA6DAEF4BFA3510_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// protected Dictionary<int, PointerEventData> m_PointerData = new Dictionary<int, PointerEventData>();
Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * L_0 = (Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 *)il2cpp_codegen_object_new(Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m72C2CB980BBBB40743CF9EFFA41F2B002CD842E4(L_0, /*hidden argument*/Dictionary_2__ctor_m72C2CB980BBBB40743CF9EFFA41F2B002CD842E4_RuntimeMethod_var);
__this->set_m_PointerData_14(L_0);
// private readonly MouseState m_MouseState = new MouseState();
MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * L_1 = (MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 *)il2cpp_codegen_object_new(MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7_il2cpp_TypeInfo_var);
MouseState__ctor_m03EB3CF8C4BEA925F63C1BA8197C3FA632975F09(L_1, /*hidden argument*/NULL);
__this->set_m_MouseState_15(L_1);
BaseInputModule__ctor_m4D2F1DB4FA2524BCB5598111C11E5E00D4A95DC6(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.EventSystems.PointerInputModule_MouseButtonEventData UnityEngine.EventSystems.PointerInputModule_ButtonState::get_eventData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * ButtonState_get_eventData_mA9D054D526473A2481A997758CDDEB022E67351D (ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * __this, const RuntimeMethod* method)
{
{
// get { return m_EventData; }
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_0 = __this->get_m_EventData_1();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.PointerInputModule_ButtonState::set_eventData(UnityEngine.EventSystems.PointerInputModule_MouseButtonEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ButtonState_set_eventData_m844CA9F09A826E89AF0F8F137C016D96C71B30BD (ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * __this, MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * ___value0, const RuntimeMethod* method)
{
{
// set { m_EventData = value; }
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_0 = ___value0;
__this->set_m_EventData_1(L_0);
// set { m_EventData = value; }
return;
}
}
// UnityEngine.EventSystems.PointerEventData_InputButton UnityEngine.EventSystems.PointerInputModule_ButtonState::get_button()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ButtonState_get_button_mB538B2D483C482A7E628D26BA390449A54C958A3 (ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * __this, const RuntimeMethod* method)
{
{
// get { return m_Button; }
int32_t L_0 = __this->get_m_Button_0();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.PointerInputModule_ButtonState::set_button(UnityEngine.EventSystems.PointerEventData_InputButton)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ButtonState_set_button_mCC7BFBDDA9AA0710CBB64C456583CDCBAD227971 (ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set { m_Button = value; }
int32_t L_0 = ___value0;
__this->set_m_Button_0(L_0);
// set { m_Button = value; }
return;
}
}
// System.Void UnityEngine.EventSystems.PointerInputModule_ButtonState::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ButtonState__ctor_mECE4E89A3E0BAD4B2C1E14E142DD30893CA7267A (ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean UnityEngine.EventSystems.PointerInputModule_MouseButtonEventData::PressedThisFrame()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseButtonEventData_PressedThisFrame_m9437D00FBF27F51132154FA11AE9463377FDF86A (MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * __this, const RuntimeMethod* method)
{
{
// return buttonState == PointerEventData.FramePressState.Pressed || buttonState == PointerEventData.FramePressState.PressedAndReleased;
int32_t L_0 = __this->get_buttonState_0();
if (!L_0)
{
goto IL_0012;
}
}
{
int32_t L_1 = __this->get_buttonState_0();
return (bool)((((int32_t)L_1) == ((int32_t)2))? 1 : 0);
}
IL_0012:
{
return (bool)1;
}
}
// System.Boolean UnityEngine.EventSystems.PointerInputModule_MouseButtonEventData::ReleasedThisFrame()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseButtonEventData_ReleasedThisFrame_mD40162D1107F3C7EC2B560C415B20FD260051BB6 (MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * __this, const RuntimeMethod* method)
{
{
// return buttonState == PointerEventData.FramePressState.Released || buttonState == PointerEventData.FramePressState.PressedAndReleased;
int32_t L_0 = __this->get_buttonState_0();
if ((((int32_t)L_0) == ((int32_t)1)))
{
goto IL_0013;
}
}
{
int32_t L_1 = __this->get_buttonState_0();
return (bool)((((int32_t)L_1) == ((int32_t)2))? 1 : 0);
}
IL_0013:
{
return (bool)1;
}
}
// System.Void UnityEngine.EventSystems.PointerInputModule_MouseButtonEventData::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseButtonEventData__ctor_m2A5351DCA22508A2E1D85890CD69D223F4926A25 (MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean UnityEngine.EventSystems.PointerInputModule_MouseState::AnyPressesThisFrame()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseState_AnyPressesThisFrame_m82FC431EAEE7573E5748685923194D4EB9540E2D (MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MouseState_AnyPressesThisFrame_m82FC431EAEE7573E5748685923194D4EB9540E2D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
// for (int i = 0; i < m_TrackedButtons.Count; i++)
V_0 = 0;
goto IL_0022;
}
IL_0004:
{
// if (m_TrackedButtons[i].eventData.PressedThisFrame())
List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137 * L_0 = __this->get_m_TrackedButtons_0();
int32_t L_1 = V_0;
ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * L_2 = List_1_get_Item_m0E3505D06F1926E029213512C54F066892371459_inline(L_0, L_1, /*hidden argument*/List_1_get_Item_m0E3505D06F1926E029213512C54F066892371459_RuntimeMethod_var);
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_3 = ButtonState_get_eventData_mA9D054D526473A2481A997758CDDEB022E67351D_inline(L_2, /*hidden argument*/NULL);
bool L_4 = MouseButtonEventData_PressedThisFrame_m9437D00FBF27F51132154FA11AE9463377FDF86A(L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_001e;
}
}
{
// return true;
return (bool)1;
}
IL_001e:
{
// for (int i = 0; i < m_TrackedButtons.Count; i++)
int32_t L_5 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
}
IL_0022:
{
// for (int i = 0; i < m_TrackedButtons.Count; i++)
int32_t L_6 = V_0;
List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137 * L_7 = __this->get_m_TrackedButtons_0();
int32_t L_8 = List_1_get_Count_mC484E236B081F938DDD06DBD0DBF69A49238A84A_inline(L_7, /*hidden argument*/List_1_get_Count_mC484E236B081F938DDD06DBD0DBF69A49238A84A_RuntimeMethod_var);
if ((((int32_t)L_6) < ((int32_t)L_8)))
{
goto IL_0004;
}
}
{
// return false;
return (bool)0;
}
}
// System.Boolean UnityEngine.EventSystems.PointerInputModule_MouseState::AnyReleasesThisFrame()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseState_AnyReleasesThisFrame_m330B78224B8AB1177B9BC160BDC015D3A9DB9309 (MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MouseState_AnyReleasesThisFrame_m330B78224B8AB1177B9BC160BDC015D3A9DB9309_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
// for (int i = 0; i < m_TrackedButtons.Count; i++)
V_0 = 0;
goto IL_0022;
}
IL_0004:
{
// if (m_TrackedButtons[i].eventData.ReleasedThisFrame())
List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137 * L_0 = __this->get_m_TrackedButtons_0();
int32_t L_1 = V_0;
ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * L_2 = List_1_get_Item_m0E3505D06F1926E029213512C54F066892371459_inline(L_0, L_1, /*hidden argument*/List_1_get_Item_m0E3505D06F1926E029213512C54F066892371459_RuntimeMethod_var);
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_3 = ButtonState_get_eventData_mA9D054D526473A2481A997758CDDEB022E67351D_inline(L_2, /*hidden argument*/NULL);
bool L_4 = MouseButtonEventData_ReleasedThisFrame_mD40162D1107F3C7EC2B560C415B20FD260051BB6(L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_001e;
}
}
{
// return true;
return (bool)1;
}
IL_001e:
{
// for (int i = 0; i < m_TrackedButtons.Count; i++)
int32_t L_5 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
}
IL_0022:
{
// for (int i = 0; i < m_TrackedButtons.Count; i++)
int32_t L_6 = V_0;
List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137 * L_7 = __this->get_m_TrackedButtons_0();
int32_t L_8 = List_1_get_Count_mC484E236B081F938DDD06DBD0DBF69A49238A84A_inline(L_7, /*hidden argument*/List_1_get_Count_mC484E236B081F938DDD06DBD0DBF69A49238A84A_RuntimeMethod_var);
if ((((int32_t)L_6) < ((int32_t)L_8)))
{
goto IL_0004;
}
}
{
// return false;
return (bool)0;
}
}
// UnityEngine.EventSystems.PointerInputModule_ButtonState UnityEngine.EventSystems.PointerInputModule_MouseState::GetButtonState(UnityEngine.EventSystems.PointerEventData_InputButton)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * MouseState_GetButtonState_m0C2884609F720A284C72EAEF061C781F4874CCAE (MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * __this, int32_t ___button0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MouseState_GetButtonState_m0C2884609F720A284C72EAEF061C781F4874CCAE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * V_0 = NULL;
int32_t V_1 = 0;
{
// ButtonState tracked = null;
V_0 = (ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D *)NULL;
// for (int i = 0; i < m_TrackedButtons.Count; i++)
V_1 = 0;
goto IL_002d;
}
IL_0006:
{
// if (m_TrackedButtons[i].button == button)
List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137 * L_0 = __this->get_m_TrackedButtons_0();
int32_t L_1 = V_1;
ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * L_2 = List_1_get_Item_m0E3505D06F1926E029213512C54F066892371459_inline(L_0, L_1, /*hidden argument*/List_1_get_Item_m0E3505D06F1926E029213512C54F066892371459_RuntimeMethod_var);
int32_t L_3 = ButtonState_get_button_mB538B2D483C482A7E628D26BA390449A54C958A3_inline(L_2, /*hidden argument*/NULL);
int32_t L_4 = ___button0;
if ((!(((uint32_t)L_3) == ((uint32_t)L_4))))
{
goto IL_0029;
}
}
{
// tracked = m_TrackedButtons[i];
List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137 * L_5 = __this->get_m_TrackedButtons_0();
int32_t L_6 = V_1;
ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * L_7 = List_1_get_Item_m0E3505D06F1926E029213512C54F066892371459_inline(L_5, L_6, /*hidden argument*/List_1_get_Item_m0E3505D06F1926E029213512C54F066892371459_RuntimeMethod_var);
V_0 = L_7;
// break;
goto IL_003b;
}
IL_0029:
{
// for (int i = 0; i < m_TrackedButtons.Count; i++)
int32_t L_8 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_002d:
{
// for (int i = 0; i < m_TrackedButtons.Count; i++)
int32_t L_9 = V_1;
List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137 * L_10 = __this->get_m_TrackedButtons_0();
int32_t L_11 = List_1_get_Count_mC484E236B081F938DDD06DBD0DBF69A49238A84A_inline(L_10, /*hidden argument*/List_1_get_Count_mC484E236B081F938DDD06DBD0DBF69A49238A84A_RuntimeMethod_var);
if ((((int32_t)L_9) < ((int32_t)L_11)))
{
goto IL_0006;
}
}
IL_003b:
{
// if (tracked == null)
ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * L_12 = V_0;
if (L_12)
{
goto IL_0062;
}
}
{
// tracked = new ButtonState { button = button, eventData = new MouseButtonEventData() };
ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * L_13 = (ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D *)il2cpp_codegen_object_new(ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D_il2cpp_TypeInfo_var);
ButtonState__ctor_mECE4E89A3E0BAD4B2C1E14E142DD30893CA7267A(L_13, /*hidden argument*/NULL);
ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * L_14 = L_13;
int32_t L_15 = ___button0;
ButtonState_set_button_mCC7BFBDDA9AA0710CBB64C456583CDCBAD227971_inline(L_14, L_15, /*hidden argument*/NULL);
ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * L_16 = L_14;
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_17 = (MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 *)il2cpp_codegen_object_new(MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988_il2cpp_TypeInfo_var);
MouseButtonEventData__ctor_m2A5351DCA22508A2E1D85890CD69D223F4926A25(L_17, /*hidden argument*/NULL);
ButtonState_set_eventData_m844CA9F09A826E89AF0F8F137C016D96C71B30BD_inline(L_16, L_17, /*hidden argument*/NULL);
V_0 = L_16;
// m_TrackedButtons.Add(tracked);
List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137 * L_18 = __this->get_m_TrackedButtons_0();
ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * L_19 = V_0;
List_1_Add_m7323CC33C87F7796A0C0E232B6DE861E7A3B3150(L_18, L_19, /*hidden argument*/List_1_Add_m7323CC33C87F7796A0C0E232B6DE861E7A3B3150_RuntimeMethod_var);
}
IL_0062:
{
// return tracked;
ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * L_20 = V_0;
return L_20;
}
}
// System.Void UnityEngine.EventSystems.PointerInputModule_MouseState::SetButtonState(UnityEngine.EventSystems.PointerEventData_InputButton,UnityEngine.EventSystems.PointerEventData_FramePressState,UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseState_SetButtonState_mE7B149E168AC34F69B504C797B1AA9E70122AFC2 (MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * __this, int32_t ___button0, int32_t ___stateForMouseButton1, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___data2, const RuntimeMethod* method)
{
{
// var toModify = GetButtonState(button);
int32_t L_0 = ___button0;
ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * L_1 = MouseState_GetButtonState_m0C2884609F720A284C72EAEF061C781F4874CCAE(__this, L_0, /*hidden argument*/NULL);
// toModify.eventData.buttonState = stateForMouseButton;
ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * L_2 = L_1;
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_3 = ButtonState_get_eventData_mA9D054D526473A2481A997758CDDEB022E67351D_inline(L_2, /*hidden argument*/NULL);
int32_t L_4 = ___stateForMouseButton1;
L_3->set_buttonState_0(L_4);
// toModify.eventData.buttonData = data;
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_5 = ButtonState_get_eventData_mA9D054D526473A2481A997758CDDEB022E67351D_inline(L_2, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_6 = ___data2;
L_5->set_buttonData_1(L_6);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.PointerInputModule_MouseState::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseState__ctor_m03EB3CF8C4BEA925F63C1BA8197C3FA632975F09 (MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MouseState__ctor_m03EB3CF8C4BEA925F63C1BA8197C3FA632975F09_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// private List<ButtonState> m_TrackedButtons = new List<ButtonState>();
List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137 * L_0 = (List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137 *)il2cpp_codegen_object_new(List_1_tFABEA2BC2711ECDCC7A292721219DD753C3C6137_il2cpp_TypeInfo_var);
List_1__ctor_mBE5B02FBBC3759FFBF8EB0BA4DCCF3D8C2875A92(L_0, /*hidden argument*/List_1__ctor_mBE5B02FBBC3759FFBF8EB0BA4DCCF3D8C2875A92_RuntimeMethod_var);
__this->set_m_TrackedButtons_0(L_0);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.EventSystems.RaycastResult
IL2CPP_EXTERN_C void RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshal_pinvoke(const RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91& unmarshaled, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_GameObject_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_GameObject' of type 'RaycastResult': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_GameObject_0Exception, NULL);
}
IL2CPP_EXTERN_C void RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshal_pinvoke_back(const RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshaled_pinvoke& marshaled, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91& unmarshaled)
{
Exception_t* ___m_GameObject_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_GameObject' of type 'RaycastResult': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_GameObject_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.EventSystems.RaycastResult
IL2CPP_EXTERN_C void RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshal_pinvoke_cleanup(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.EventSystems.RaycastResult
IL2CPP_EXTERN_C void RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshal_com(const RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91& unmarshaled, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshaled_com& marshaled)
{
Exception_t* ___m_GameObject_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_GameObject' of type 'RaycastResult': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_GameObject_0Exception, NULL);
}
IL2CPP_EXTERN_C void RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshal_com_back(const RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshaled_com& marshaled, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91& unmarshaled)
{
Exception_t* ___m_GameObject_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_GameObject' of type 'RaycastResult': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_GameObject_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.EventSystems.RaycastResult
IL2CPP_EXTERN_C void RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshal_com_cleanup(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshaled_com& marshaled)
{
}
// UnityEngine.GameObject UnityEngine.EventSystems.RaycastResult::get_gameObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * RaycastResult_get_gameObject_m9D77DEDFF498BAFE29A5F88E9F238400D04C8FDD (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * __this, const RuntimeMethod* method)
{
{
// get { return m_GameObject; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = __this->get_m_GameObject_0();
return L_0;
}
}
IL2CPP_EXTERN_C GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * RaycastResult_get_gameObject_m9D77DEDFF498BAFE29A5F88E9F238400D04C8FDD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * _thisAdjusted = reinterpret_cast<RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *>(__this + _offset);
return RaycastResult_get_gameObject_m9D77DEDFF498BAFE29A5F88E9F238400D04C8FDD_inline(_thisAdjusted, method);
}
// System.Void UnityEngine.EventSystems.RaycastResult::set_gameObject(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycastResult_set_gameObject_m5EF3316E0D32FC1B45BB2BC087EC42E436DA1C07 (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___value0, const RuntimeMethod* method)
{
{
// set { m_GameObject = value; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___value0;
__this->set_m_GameObject_0(L_0);
// set { m_GameObject = value; }
return;
}
}
IL2CPP_EXTERN_C void RaycastResult_set_gameObject_m5EF3316E0D32FC1B45BB2BC087EC42E436DA1C07_AdjustorThunk (RuntimeObject * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * _thisAdjusted = reinterpret_cast<RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *>(__this + _offset);
RaycastResult_set_gameObject_m5EF3316E0D32FC1B45BB2BC087EC42E436DA1C07_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.EventSystems.RaycastResult::get_isValid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RaycastResult_get_isValid_m53278AA3529BC7B909A9AA082026D51CE6926813 (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RaycastResult_get_isValid_m53278AA3529BC7B909A9AA082026D51CE6926813_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return module != null && gameObject != null; }
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_0 = __this->get_module_1();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_001b;
}
}
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_2 = RaycastResult_get_gameObject_m9D77DEDFF498BAFE29A5F88E9F238400D04C8FDD_inline((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_3 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_2, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
return L_3;
}
IL_001b:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool RaycastResult_get_isValid_m53278AA3529BC7B909A9AA082026D51CE6926813_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * _thisAdjusted = reinterpret_cast<RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *>(__this + _offset);
return RaycastResult_get_isValid_m53278AA3529BC7B909A9AA082026D51CE6926813(_thisAdjusted, method);
}
// System.Void UnityEngine.EventSystems.RaycastResult::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycastResult_Clear_m5C979A22E0B12FBD7BA035FE0815B4D81E82E9F7 (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RaycastResult_Clear_m5C979A22E0B12FBD7BA035FE0815B4D81E82E9F7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// gameObject = null;
RaycastResult_set_gameObject_m5EF3316E0D32FC1B45BB2BC087EC42E436DA1C07_inline((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)__this, (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL, /*hidden argument*/NULL);
// module = null;
__this->set_module_1((BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 *)NULL);
// distance = 0;
__this->set_distance_2((0.0f));
// index = 0;
__this->set_index_3((0.0f));
// depth = 0;
__this->set_depth_4(0);
// sortingLayer = 0;
__this->set_sortingLayer_5(0);
// sortingOrder = 0;
__this->set_sortingOrder_6(0);
// worldNormal = Vector3.up;
IL2CPP_RUNTIME_CLASS_INIT(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_il2cpp_TypeInfo_var);
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_0 = Vector3_get_up_m6309EBC4E42D6D0B3D28056BD23D0331275306F7(/*hidden argument*/NULL);
__this->set_worldNormal_8(L_0);
// worldPosition = Vector3.zero;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_1 = Vector3_get_zero_m3CDDCAE94581DF3BB16C4B40A100E28E9C6649C2(/*hidden argument*/NULL);
__this->set_worldPosition_7(L_1);
// screenPosition = Vector3.zero;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_2 = Vector3_get_zero_m3CDDCAE94581DF3BB16C4B40A100E28E9C6649C2(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_3 = Vector2_op_Implicit_mEA1F75961E3D368418BA8CEB9C40E55C25BA3C28(L_2, /*hidden argument*/NULL);
__this->set_screenPosition_9(L_3);
// }
return;
}
}
IL2CPP_EXTERN_C void RaycastResult_Clear_m5C979A22E0B12FBD7BA035FE0815B4D81E82E9F7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * _thisAdjusted = reinterpret_cast<RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *>(__this + _offset);
RaycastResult_Clear_m5C979A22E0B12FBD7BA035FE0815B4D81E82E9F7(_thisAdjusted, method);
}
// System.String UnityEngine.EventSystems.RaycastResult::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RaycastResult_ToString_mFD0F27611425231BAF089CEBB0332FEFD7FB9E21 (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RaycastResult_ToString_mFD0F27611425231BAF089CEBB0332FEFD7FB9E21_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (!isValid)
bool L_0 = RaycastResult_get_isValid_m53278AA3529BC7B909A9AA082026D51CE6926813((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_000e;
}
}
{
// return "";
return _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
}
IL_000e:
{
// return "Name: " + gameObject + "\n" +
// "module: " + module + "\n" +
// "distance: " + distance + "\n" +
// "index: " + index + "\n" +
// "depth: " + depth + "\n" +
// "worldNormal: " + worldNormal + "\n" +
// "worldPosition: " + worldPosition + "\n" +
// "screenPosition: " + screenPosition + "\n" +
// "module.sortOrderPriority: " + module.sortOrderPriority + "\n" +
// "module.renderOrderPriority: " + module.renderOrderPriority + "\n" +
// "sortingLayer: " + sortingLayer + "\n" +
// "sortingOrder: " + sortingOrder;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)24));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1;
ArrayElementTypeCheck (L_2, _stringLiteralB3F69F1983924ED9EB2751F7152C86B163972C18);
(L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralB3F69F1983924ED9EB2751F7152C86B163972C18);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = L_2;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_4 = RaycastResult_get_gameObject_m9D77DEDFF498BAFE29A5F88E9F238400D04C8FDD_inline((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)__this, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_4);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = L_3;
ArrayElementTypeCheck (L_5, _stringLiteral0D7BD1E1A6D6CC41541CAED056D3FA640CF2173A);
(L_5)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteral0D7BD1E1A6D6CC41541CAED056D3FA640CF2173A);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = L_5;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_7 = __this->get_module_1();
ArrayElementTypeCheck (L_6, L_7);
(L_6)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_7);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = L_6;
ArrayElementTypeCheck (L_8, _stringLiteral86FCAF1AF93C617D1364DC367624A8FEB943281A);
(L_8)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)_stringLiteral86FCAF1AF93C617D1364DC367624A8FEB943281A);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = L_8;
float L_10 = __this->get_distance_2();
float L_11 = L_10;
RuntimeObject * L_12 = Box(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, &L_11);
ArrayElementTypeCheck (L_9, L_12);
(L_9)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_12);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = L_9;
ArrayElementTypeCheck (L_13, _stringLiteralEA81BA6C8195F7C4BA52AB477DAA6FB3F054E78C);
(L_13)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(6), (RuntimeObject *)_stringLiteralEA81BA6C8195F7C4BA52AB477DAA6FB3F054E78C);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = L_13;
float L_15 = __this->get_index_3();
float L_16 = L_15;
RuntimeObject * L_17 = Box(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, &L_16);
ArrayElementTypeCheck (L_14, L_17);
(L_14)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(7), (RuntimeObject *)L_17);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = L_14;
ArrayElementTypeCheck (L_18, _stringLiteral49E2F6FB28F86D062992BC1F71EB61C7BC53B964);
(L_18)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(8), (RuntimeObject *)_stringLiteral49E2F6FB28F86D062992BC1F71EB61C7BC53B964);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = L_18;
int32_t L_20 = __this->get_depth_4();
int32_t L_21 = L_20;
RuntimeObject * L_22 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_21);
ArrayElementTypeCheck (L_19, L_22);
(L_19)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)9)), (RuntimeObject *)L_22);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = L_19;
ArrayElementTypeCheck (L_23, _stringLiteral2841B878355F39CF0C546606D1CF252D22A1DAD5);
(L_23)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)10)), (RuntimeObject *)_stringLiteral2841B878355F39CF0C546606D1CF252D22A1DAD5);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_24 = L_23;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_25 = __this->get_worldNormal_8();
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_26 = L_25;
RuntimeObject * L_27 = Box(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_il2cpp_TypeInfo_var, &L_26);
ArrayElementTypeCheck (L_24, L_27);
(L_24)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)11)), (RuntimeObject *)L_27);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_28 = L_24;
ArrayElementTypeCheck (L_28, _stringLiteralE13A74B55744F7132E82D2E2F858E909AA015BD6);
(L_28)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)12)), (RuntimeObject *)_stringLiteralE13A74B55744F7132E82D2E2F858E909AA015BD6);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_29 = L_28;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_30 = __this->get_worldPosition_7();
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_31 = L_30;
RuntimeObject * L_32 = Box(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_il2cpp_TypeInfo_var, &L_31);
ArrayElementTypeCheck (L_29, L_32);
(L_29)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)13)), (RuntimeObject *)L_32);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_33 = L_29;
ArrayElementTypeCheck (L_33, _stringLiteral021205C69E7E9853CA18CEC944EBD38DE0CF1ED3);
(L_33)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)14)), (RuntimeObject *)_stringLiteral021205C69E7E9853CA18CEC944EBD38DE0CF1ED3);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_34 = L_33;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_35 = __this->get_screenPosition_9();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_36 = L_35;
RuntimeObject * L_37 = Box(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var, &L_36);
ArrayElementTypeCheck (L_34, L_37);
(L_34)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)15)), (RuntimeObject *)L_37);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_38 = L_34;
ArrayElementTypeCheck (L_38, _stringLiteral411E9525B9036979E55C8D646CD3061E1A7F05BF);
(L_38)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)16)), (RuntimeObject *)_stringLiteral411E9525B9036979E55C8D646CD3061E1A7F05BF);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_39 = L_38;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_40 = __this->get_module_1();
int32_t L_41 = VirtFuncInvoker0< int32_t >::Invoke(20 /* System.Int32 UnityEngine.EventSystems.BaseRaycaster::get_sortOrderPriority() */, L_40);
int32_t L_42 = L_41;
RuntimeObject * L_43 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_42);
ArrayElementTypeCheck (L_39, L_43);
(L_39)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)17)), (RuntimeObject *)L_43);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_44 = L_39;
ArrayElementTypeCheck (L_44, _stringLiteral5B8FC322C1D72815FAD8B0094956D17A4863C6EB);
(L_44)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)18)), (RuntimeObject *)_stringLiteral5B8FC322C1D72815FAD8B0094956D17A4863C6EB);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_45 = L_44;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_46 = __this->get_module_1();
int32_t L_47 = VirtFuncInvoker0< int32_t >::Invoke(21 /* System.Int32 UnityEngine.EventSystems.BaseRaycaster::get_renderOrderPriority() */, L_46);
int32_t L_48 = L_47;
RuntimeObject * L_49 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_48);
ArrayElementTypeCheck (L_45, L_49);
(L_45)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)19)), (RuntimeObject *)L_49);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_50 = L_45;
ArrayElementTypeCheck (L_50, _stringLiteralF35202D0911AF00D4E18E90B7CC54B66CD6BF389);
(L_50)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)20)), (RuntimeObject *)_stringLiteralF35202D0911AF00D4E18E90B7CC54B66CD6BF389);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_51 = L_50;
int32_t L_52 = __this->get_sortingLayer_5();
int32_t L_53 = L_52;
RuntimeObject * L_54 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_53);
ArrayElementTypeCheck (L_51, L_54);
(L_51)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)21)), (RuntimeObject *)L_54);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_55 = L_51;
ArrayElementTypeCheck (L_55, _stringLiteral5A1ED5E4E065D820146BA039740194DED01DC8FD);
(L_55)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)22)), (RuntimeObject *)_stringLiteral5A1ED5E4E065D820146BA039740194DED01DC8FD);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_56 = L_55;
int32_t L_57 = __this->get_sortingOrder_6();
int32_t L_58 = L_57;
RuntimeObject * L_59 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_58);
ArrayElementTypeCheck (L_56, L_59);
(L_56)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)23)), (RuntimeObject *)L_59);
String_t* L_60 = String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07(L_56, /*hidden argument*/NULL);
return L_60;
}
}
IL2CPP_EXTERN_C String_t* RaycastResult_ToString_mFD0F27611425231BAF089CEBB0332FEFD7FB9E21_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * _thisAdjusted = reinterpret_cast<RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *>(__this + _offset);
return RaycastResult_ToString_mFD0F27611425231BAF089CEBB0332FEFD7FB9E21(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.EventSystems.RaycasterManager::AddRaycaster(UnityEngine.EventSystems.BaseRaycaster)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycasterManager_AddRaycaster_mB93CFBBCE344327BF96AC11CB500219FD1873B9A (BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___baseRaycaster0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RaycasterManager_AddRaycaster_mB93CFBBCE344327BF96AC11CB500219FD1873B9A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (s_Raycasters.Contains(baseRaycaster))
IL2CPP_RUNTIME_CLASS_INIT(RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_il2cpp_TypeInfo_var);
List_1_tE44A303DE85018C722D021A9716A97568780A0E1 * L_0 = ((RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_StaticFields*)il2cpp_codegen_static_fields_for(RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_il2cpp_TypeInfo_var))->get_s_Raycasters_0();
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_1 = ___baseRaycaster0;
bool L_2 = List_1_Contains_m8F95394505FB39DAE82E532546756505C14CC379(L_0, L_1, /*hidden argument*/List_1_Contains_m8F95394505FB39DAE82E532546756505C14CC379_RuntimeMethod_var);
if (!L_2)
{
goto IL_000e;
}
}
{
// return;
return;
}
IL_000e:
{
// s_Raycasters.Add(baseRaycaster);
IL2CPP_RUNTIME_CLASS_INIT(RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_il2cpp_TypeInfo_var);
List_1_tE44A303DE85018C722D021A9716A97568780A0E1 * L_3 = ((RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_StaticFields*)il2cpp_codegen_static_fields_for(RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_il2cpp_TypeInfo_var))->get_s_Raycasters_0();
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_4 = ___baseRaycaster0;
List_1_Add_mC1DB4C1FAE9E6A63959D08BAB319E9264B469EE0(L_3, L_4, /*hidden argument*/List_1_Add_mC1DB4C1FAE9E6A63959D08BAB319E9264B469EE0_RuntimeMethod_var);
// }
return;
}
}
// System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseRaycaster> UnityEngine.EventSystems.RaycasterManager::GetRaycasters()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tE44A303DE85018C722D021A9716A97568780A0E1 * RaycasterManager_GetRaycasters_mA2491B7F058FB2DA88179C0BDE0EFB0B0E28B740 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RaycasterManager_GetRaycasters_mA2491B7F058FB2DA88179C0BDE0EFB0B0E28B740_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// return s_Raycasters;
IL2CPP_RUNTIME_CLASS_INIT(RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_il2cpp_TypeInfo_var);
List_1_tE44A303DE85018C722D021A9716A97568780A0E1 * L_0 = ((RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_StaticFields*)il2cpp_codegen_static_fields_for(RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_il2cpp_TypeInfo_var))->get_s_Raycasters_0();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.RaycasterManager::RemoveRaycasters(UnityEngine.EventSystems.BaseRaycaster)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycasterManager_RemoveRaycasters_m26668BA781D690D83E3417436D2D9AE577004624 (BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___baseRaycaster0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RaycasterManager_RemoveRaycasters_m26668BA781D690D83E3417436D2D9AE577004624_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (!s_Raycasters.Contains(baseRaycaster))
IL2CPP_RUNTIME_CLASS_INIT(RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_il2cpp_TypeInfo_var);
List_1_tE44A303DE85018C722D021A9716A97568780A0E1 * L_0 = ((RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_StaticFields*)il2cpp_codegen_static_fields_for(RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_il2cpp_TypeInfo_var))->get_s_Raycasters_0();
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_1 = ___baseRaycaster0;
bool L_2 = List_1_Contains_m8F95394505FB39DAE82E532546756505C14CC379(L_0, L_1, /*hidden argument*/List_1_Contains_m8F95394505FB39DAE82E532546756505C14CC379_RuntimeMethod_var);
if (L_2)
{
goto IL_000e;
}
}
{
// return;
return;
}
IL_000e:
{
// s_Raycasters.Remove(baseRaycaster);
IL2CPP_RUNTIME_CLASS_INIT(RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_il2cpp_TypeInfo_var);
List_1_tE44A303DE85018C722D021A9716A97568780A0E1 * L_3 = ((RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_StaticFields*)il2cpp_codegen_static_fields_for(RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_il2cpp_TypeInfo_var))->get_s_Raycasters_0();
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * L_4 = ___baseRaycaster0;
List_1_Remove_m5568E10AC94A0EA5A424CD633F6FC4D62A05D3F8(L_3, L_4, /*hidden argument*/List_1_Remove_m5568E10AC94A0EA5A424CD633F6FC4D62A05D3F8_RuntimeMethod_var);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.RaycasterManager::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycasterManager__cctor_mEF2E08745F0138B43512752C0E151055B953A3AF (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RaycasterManager__cctor_mEF2E08745F0138B43512752C0E151055B953A3AF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// private static readonly List<BaseRaycaster> s_Raycasters = new List<BaseRaycaster>();
List_1_tE44A303DE85018C722D021A9716A97568780A0E1 * L_0 = (List_1_tE44A303DE85018C722D021A9716A97568780A0E1 *)il2cpp_codegen_object_new(List_1_tE44A303DE85018C722D021A9716A97568780A0E1_il2cpp_TypeInfo_var);
List_1__ctor_m0FEB7C9D74FA782CD2962232418ECC84981E0ACE(L_0, /*hidden argument*/List_1__ctor_m0FEB7C9D74FA782CD2962232418ECC84981E0ACE_RuntimeMethod_var);
((RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_StaticFields*)il2cpp_codegen_static_fields_for(RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_il2cpp_TypeInfo_var))->set_s_Raycasters_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.EventSystems.StandaloneInputModule::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule__ctor_m7ACED26CC5670B0729809379560FCBE0D0311AC8 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StandaloneInputModule__ctor_m7ACED26CC5670B0729809379560FCBE0D0311AC8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// private string m_HorizontalAxis = "Horizontal";
__this->set_m_HorizontalAxis_23(_stringLiteral4F57A1CE99E68A7B05C42D0A7EA0070EAFABD31C);
// private string m_VerticalAxis = "Vertical";
__this->set_m_VerticalAxis_24(_stringLiteral4B937CC841D82F8936CEF1EFB88708AB5B0F1EE5);
// private string m_SubmitButton = "Submit";
__this->set_m_SubmitButton_25(_stringLiteral2DACF65959849884A011F36F76A04EEBEA94C5EA);
// private string m_CancelButton = "Cancel";
__this->set_m_CancelButton_26(_stringLiteral77DFD2135F4DB726C47299BB55BE26F7F4525A46);
// private float m_InputActionsPerSecond = 10;
__this->set_m_InputActionsPerSecond_27((10.0f));
// private float m_RepeatDelay = 0.5f;
__this->set_m_RepeatDelay_28((0.5f));
// protected StandaloneInputModule()
PointerInputModule__ctor_m1E5E97188BEB6F225E167E5D2BA6DAEF4BFA3510(__this, /*hidden argument*/NULL);
// }
return;
}
}
// UnityEngine.EventSystems.StandaloneInputModule_InputMode UnityEngine.EventSystems.StandaloneInputModule::get_inputMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StandaloneInputModule_get_inputMode_m9E4FF00674C049A7F600D0CC5D278F474232B3D4 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
{
// get { return InputMode.Mouse; }
return (int32_t)(0);
}
}
// System.Boolean UnityEngine.EventSystems.StandaloneInputModule::get_allowActivationOnMobileDevice()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_get_allowActivationOnMobileDevice_mEBF5E05C6A412A45CCB07502C4798DCE743FDAEF (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
{
// get { return m_ForceModuleActive; }
bool L_0 = __this->get_m_ForceModuleActive_29();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.StandaloneInputModule::set_allowActivationOnMobileDevice(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_set_allowActivationOnMobileDevice_m00941F74B0F6A1EB46E2BD52FF4907BE0617D547 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// set { m_ForceModuleActive = value; }
bool L_0 = ___value0;
__this->set_m_ForceModuleActive_29(L_0);
// set { m_ForceModuleActive = value; }
return;
}
}
// System.Boolean UnityEngine.EventSystems.StandaloneInputModule::get_forceModuleActive()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_get_forceModuleActive_m6D41F04E01F96727E0246D6B74F63E0312E25022 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
{
// get { return m_ForceModuleActive; }
bool L_0 = __this->get_m_ForceModuleActive_29();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.StandaloneInputModule::set_forceModuleActive(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_set_forceModuleActive_m0438ABF86C05D6ACCE740D0464190AB0B2B44134 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// set { m_ForceModuleActive = value; }
bool L_0 = ___value0;
__this->set_m_ForceModuleActive_29(L_0);
// set { m_ForceModuleActive = value; }
return;
}
}
// System.Single UnityEngine.EventSystems.StandaloneInputModule::get_inputActionsPerSecond()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float StandaloneInputModule_get_inputActionsPerSecond_m9F5DE02D9DF4B16A6E0D0F36CB0CD293AB9C14EC (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
{
// get { return m_InputActionsPerSecond; }
float L_0 = __this->get_m_InputActionsPerSecond_27();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.StandaloneInputModule::set_inputActionsPerSecond(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_set_inputActionsPerSecond_m13D9F85BEB9BBE3C28498C3248C298AD86129950 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, float ___value0, const RuntimeMethod* method)
{
{
// set { m_InputActionsPerSecond = value; }
float L_0 = ___value0;
__this->set_m_InputActionsPerSecond_27(L_0);
// set { m_InputActionsPerSecond = value; }
return;
}
}
// System.Single UnityEngine.EventSystems.StandaloneInputModule::get_repeatDelay()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float StandaloneInputModule_get_repeatDelay_m4FE04D7CFC8C789C9503E841FC5E0711CB0F8986 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
{
// get { return m_RepeatDelay; }
float L_0 = __this->get_m_RepeatDelay_28();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.StandaloneInputModule::set_repeatDelay(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_set_repeatDelay_mD0B81B79DE60C3C26CAF2CDF1DAC32D02B148AFD (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, float ___value0, const RuntimeMethod* method)
{
{
// set { m_RepeatDelay = value; }
float L_0 = ___value0;
__this->set_m_RepeatDelay_28(L_0);
// set { m_RepeatDelay = value; }
return;
}
}
// System.String UnityEngine.EventSystems.StandaloneInputModule::get_horizontalAxis()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StandaloneInputModule_get_horizontalAxis_m0C0B26CDBBBD3AC956FBF77BB177BD719DF41791 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
{
// get { return m_HorizontalAxis; }
String_t* L_0 = __this->get_m_HorizontalAxis_23();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.StandaloneInputModule::set_horizontalAxis(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_set_horizontalAxis_m6458621A42F073F7CC8EDF884E3FBC3C2BBAA7B1 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// set { m_HorizontalAxis = value; }
String_t* L_0 = ___value0;
__this->set_m_HorizontalAxis_23(L_0);
// set { m_HorizontalAxis = value; }
return;
}
}
// System.String UnityEngine.EventSystems.StandaloneInputModule::get_verticalAxis()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StandaloneInputModule_get_verticalAxis_mDF726FB43588DFA1D52E4CD825637B577EE06ED6 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
{
// get { return m_VerticalAxis; }
String_t* L_0 = __this->get_m_VerticalAxis_24();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.StandaloneInputModule::set_verticalAxis(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_set_verticalAxis_mA75D79740A9057B319CF78A49209A35243E16948 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// set { m_VerticalAxis = value; }
String_t* L_0 = ___value0;
__this->set_m_VerticalAxis_24(L_0);
// set { m_VerticalAxis = value; }
return;
}
}
// System.String UnityEngine.EventSystems.StandaloneInputModule::get_submitButton()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StandaloneInputModule_get_submitButton_m19B44B9FA36F84540E00BBBF7AA38799D2F2B0B3 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
{
// get { return m_SubmitButton; }
String_t* L_0 = __this->get_m_SubmitButton_25();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.StandaloneInputModule::set_submitButton(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_set_submitButton_m4DB70E5FBAAE564C3CFD6C8908B9B19D247949A8 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// set { m_SubmitButton = value; }
String_t* L_0 = ___value0;
__this->set_m_SubmitButton_25(L_0);
// set { m_SubmitButton = value; }
return;
}
}
// System.String UnityEngine.EventSystems.StandaloneInputModule::get_cancelButton()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StandaloneInputModule_get_cancelButton_m0FB6DBE18639C06D6A124D89F2754F21D0F4CD76 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
{
// get { return m_CancelButton; }
String_t* L_0 = __this->get_m_CancelButton_26();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.StandaloneInputModule::set_cancelButton(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_set_cancelButton_m4E19B22DEAF8E7C5F3C3A29B0198173772CB8A26 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// set { m_CancelButton = value; }
String_t* L_0 = ___value0;
__this->set_m_CancelButton_26(L_0);
// set { m_CancelButton = value; }
return;
}
}
// System.Boolean UnityEngine.EventSystems.StandaloneInputModule::ShouldIgnoreEventsOnNoFocus()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_ShouldIgnoreEventsOnNoFocus_m00C2E7810D0D323B1A4A72097A75C6C2A87F0D9C (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
// switch (SystemInfo.operatingSystemFamily)
int32_t L_0 = SystemInfo_get_operatingSystemFamily_mA35FE1FF2DD6240B2880DC5F642D4A0CC2B58D8D(/*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1 = V_0;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1))) <= ((uint32_t)2))))
{
goto IL_000e;
}
}
{
// return true;
return (bool)1;
}
IL_000e:
{
// return false;
return (bool)0;
}
}
// System.Void UnityEngine.EventSystems.StandaloneInputModule::UpdateModule()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_UpdateModule_m0525AD093E45EFB1FE8484731A81C3E45222EFB9 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StandaloneInputModule_UpdateModule_m0525AD093E45EFB1FE8484731A81C3E45222EFB9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// if (!eventSystem.isFocused && ShouldIgnoreEventsOnNoFocus())
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_0 = BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline(__this, /*hidden argument*/NULL);
bool L_1 = EventSystem_get_isFocused_mB7275507B3AFEC15722B1F128CACB1BA578AEC3B_inline(L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0064;
}
}
{
bool L_2 = StandaloneInputModule_ShouldIgnoreEventsOnNoFocus_m00C2E7810D0D323B1A4A72097A75C6C2A87F0D9C(__this, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0064;
}
}
{
// if (m_InputPointerEvent != null && m_InputPointerEvent.pointerDrag != null && m_InputPointerEvent.dragging)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_3 = __this->get_m_InputPointerEvent_22();
if (!L_3)
{
goto IL_005c;
}
}
{
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_4 = __this->get_m_InputPointerEvent_22();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_5 = PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline(L_4, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_6 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_5, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_005c;
}
}
{
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_7 = __this->get_m_InputPointerEvent_22();
bool L_8 = PointerEventData_get_dragging_mA3B420FFEB0856189D7A7646AA00A981C745D4B4_inline(L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_005c;
}
}
{
// ReleaseMouse(m_InputPointerEvent, m_InputPointerEvent.pointerCurrentRaycast.gameObject);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_9 = __this->get_m_InputPointerEvent_22();
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_10 = __this->get_m_InputPointerEvent_22();
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_11 = PointerEventData_get_pointerCurrentRaycast_mE58F786484E13AF2E6C2706E20C889E7453E3A7A_inline(L_10, /*hidden argument*/NULL);
V_0 = L_11;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_12 = RaycastResult_get_gameObject_m9D77DEDFF498BAFE29A5F88E9F238400D04C8FDD_inline((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)(&V_0), /*hidden argument*/NULL);
StandaloneInputModule_ReleaseMouse_m1EE3D0D685BB09DAAE4556477420B7D05FE3F0C1(__this, L_9, L_12, /*hidden argument*/NULL);
}
IL_005c:
{
// m_InputPointerEvent = null;
__this->set_m_InputPointerEvent_22((PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 *)NULL);
// return;
return;
}
IL_0064:
{
// m_LastMousePosition = m_MousePosition;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_13 = __this->get_m_MousePosition_20();
__this->set_m_LastMousePosition_19(L_13);
// m_MousePosition = input.mousePosition;
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_14 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_15 = VirtFuncInvoker0< Vector2_tA85D2DD88578276CA8A8796756458277E72D073D >::Invoke(26 /* UnityEngine.Vector2 UnityEngine.EventSystems.BaseInput::get_mousePosition() */, L_14);
__this->set_m_MousePosition_20(L_15);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.StandaloneInputModule::ReleaseMouse(UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_ReleaseMouse_m1EE3D0D685BB09DAAE4556477420B7D05FE3F0C1 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___pointerEvent0, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___currentOverGo1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StandaloneInputModule_ReleaseMouse_m1EE3D0D685BB09DAAE4556477420B7D05FE3F0C1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_0 = NULL;
{
// ExecuteEvents.Execute(pointerEvent.pointerPress, pointerEvent, ExecuteEvents.pointerUpHandler);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_0 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_1 = PointerEventData_get_pointerPress_m7B8C9E16E2B9E86C4DA93A2A2E3A58E56536406B_inline(L_0, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_2 = ___pointerEvent0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 * L_3 = ExecuteEvents_get_pointerUpHandler_m7EDDD1128DC04344CECEBCB9B6B7CD064F7FAED2_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisIPointerUpHandler_tAF005E3FEF3EA2D9DDA99FAA488955AA8B392102_mE7822304A5DF78074F7FE7B2255BCC9F70471C99(L_1, L_2, L_3, /*hidden argument*/ExecuteEvents_Execute_TisIPointerUpHandler_tAF005E3FEF3EA2D9DDA99FAA488955AA8B392102_mE7822304A5DF78074F7FE7B2255BCC9F70471C99_RuntimeMethod_var);
// var pointerUpHandler = ExecuteEvents.GetEventHandler<IPointerClickHandler>(currentOverGo);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_4 = ___currentOverGo1;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_5 = ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13_m96365BF6D04738F7FB08BF90EF5B2CB5AE01C1AD(L_4, /*hidden argument*/ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13_m96365BF6D04738F7FB08BF90EF5B2CB5AE01C1AD_RuntimeMethod_var);
V_0 = L_5;
// if (pointerEvent.pointerPress == pointerUpHandler && pointerEvent.eligibleForClick)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_6 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_7 = PointerEventData_get_pointerPress_m7B8C9E16E2B9E86C4DA93A2A2E3A58E56536406B_inline(L_6, /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_9 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_7, L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0043;
}
}
{
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_10 = ___pointerEvent0;
bool L_11 = PointerEventData_get_eligibleForClick_m2039146EE2E6940436E592D0655FBA06096DBFFA_inline(L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0043;
}
}
{
// ExecuteEvents.Execute(pointerEvent.pointerPress, pointerEvent, ExecuteEvents.pointerClickHandler);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_12 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_13 = PointerEventData_get_pointerPress_m7B8C9E16E2B9E86C4DA93A2A2E3A58E56536406B_inline(L_12, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_14 = ___pointerEvent0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E * L_15 = ExecuteEvents_get_pointerClickHandler_mA657195AEC7D0A42036CBCAC9AD48F215C3C69E3_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisIPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13_mA58C71DF6780888ADDA65BE907FBDC323D066ADB(L_13, L_14, L_15, /*hidden argument*/ExecuteEvents_Execute_TisIPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13_mA58C71DF6780888ADDA65BE907FBDC323D066ADB_RuntimeMethod_var);
// }
goto IL_0066;
}
IL_0043:
{
// else if (pointerEvent.pointerDrag != null && pointerEvent.dragging)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_16 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_17 = PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline(L_16, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_18 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_17, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_18)
{
goto IL_0066;
}
}
{
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_19 = ___pointerEvent0;
bool L_20 = PointerEventData_get_dragging_mA3B420FFEB0856189D7A7646AA00A981C745D4B4_inline(L_19, /*hidden argument*/NULL);
if (!L_20)
{
goto IL_0066;
}
}
{
// ExecuteEvents.ExecuteHierarchy(currentOverGo, pointerEvent, ExecuteEvents.dropHandler);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_21 = ___currentOverGo1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_22 = ___pointerEvent0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 * L_23 = ExecuteEvents_get_dropHandler_mC2362B96C6CD3628B83722F4B7C73E707C6C1EAF_inline(/*hidden argument*/NULL);
ExecuteEvents_ExecuteHierarchy_TisIDropHandler_t617E86EDCC6B18A39D69DFF444D5358072B524C3_m42750090DC2A40178705596286003B1346E093AE(L_21, L_22, L_23, /*hidden argument*/ExecuteEvents_ExecuteHierarchy_TisIDropHandler_t617E86EDCC6B18A39D69DFF444D5358072B524C3_m42750090DC2A40178705596286003B1346E093AE_RuntimeMethod_var);
}
IL_0066:
{
// pointerEvent.eligibleForClick = false;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_24 = ___pointerEvent0;
PointerEventData_set_eligibleForClick_m403F4068866F6A5CC9814729B3918C8FF1C21DBD_inline(L_24, (bool)0, /*hidden argument*/NULL);
// pointerEvent.pointerPress = null;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_25 = ___pointerEvent0;
PointerEventData_set_pointerPress_mDFB3D803C9C4137799F9F1D57810DAAF08238327(L_25, (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL, /*hidden argument*/NULL);
// pointerEvent.rawPointerPress = null;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_26 = ___pointerEvent0;
PointerEventData_set_rawPointerPress_mB7E32587FD73925A689A71FCAB560F9B78A233A5_inline(L_26, (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL, /*hidden argument*/NULL);
// if (pointerEvent.pointerDrag != null && pointerEvent.dragging)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_27 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_28 = PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline(L_27, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_29 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_28, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_29)
{
goto IL_00a3;
}
}
{
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_30 = ___pointerEvent0;
bool L_31 = PointerEventData_get_dragging_mA3B420FFEB0856189D7A7646AA00A981C745D4B4_inline(L_30, /*hidden argument*/NULL);
if (!L_31)
{
goto IL_00a3;
}
}
{
// ExecuteEvents.Execute(pointerEvent.pointerDrag, pointerEvent, ExecuteEvents.endDragHandler);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_32 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_33 = PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline(L_32, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_34 = ___pointerEvent0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 * L_35 = ExecuteEvents_get_endDragHandler_m23B60D3E3873043263069A3C3145393475690769_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisIEndDragHandler_tA6045DEE83CD2C06AC9409CBE183B10E3C0B9070_m31C9832573004F91088F89FD7BB28BFA2777FBF4(L_33, L_34, L_35, /*hidden argument*/ExecuteEvents_Execute_TisIEndDragHandler_tA6045DEE83CD2C06AC9409CBE183B10E3C0B9070_m31C9832573004F91088F89FD7BB28BFA2777FBF4_RuntimeMethod_var);
}
IL_00a3:
{
// pointerEvent.dragging = false;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_36 = ___pointerEvent0;
PointerEventData_set_dragging_m4A4C08AB5A2173557EA62190F47AEFF1E9332821_inline(L_36, (bool)0, /*hidden argument*/NULL);
// pointerEvent.pointerDrag = null;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_37 = ___pointerEvent0;
PointerEventData_set_pointerDrag_m7E4BF3CF39EF734A80FA1994310FB09A5B095AF8_inline(L_37, (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL, /*hidden argument*/NULL);
// if (currentOverGo != pointerEvent.pointerEnter)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_38 = ___currentOverGo1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_39 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_40 = PointerEventData_get_pointerEnter_m47E87ACB1557B6380D0E66F57C2F9FFFD5E86DC2_inline(L_39, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_41 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_38, L_40, /*hidden argument*/NULL);
if (!L_41)
{
goto IL_00cf;
}
}
{
// HandlePointerExitAndEnter(pointerEvent, null);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_42 = ___pointerEvent0;
BaseInputModule_HandlePointerExitAndEnter_mD32C0E209A19F78D07D964D162188D13762463BF(__this, L_42, (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL, /*hidden argument*/NULL);
// HandlePointerExitAndEnter(pointerEvent, currentOverGo);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_43 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_44 = ___currentOverGo1;
BaseInputModule_HandlePointerExitAndEnter_mD32C0E209A19F78D07D964D162188D13762463BF(__this, L_43, L_44, /*hidden argument*/NULL);
}
IL_00cf:
{
// m_InputPointerEvent = pointerEvent;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_45 = ___pointerEvent0;
__this->set_m_InputPointerEvent_22(L_45);
// }
return;
}
}
// System.Boolean UnityEngine.EventSystems.StandaloneInputModule::IsModuleSupported()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_IsModuleSupported_mB6AE0DFF7278B18B24FD5FC1D1ACE571D26FCABA (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
{
// return m_ForceModuleActive || input.mousePresent || input.touchSupported;
bool L_0 = __this->get_m_ForceModuleActive_29();
if (L_0)
{
goto IL_0021;
}
}
{
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_1 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
bool L_2 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean UnityEngine.EventSystems.BaseInput::get_mousePresent() */, L_1);
if (L_2)
{
goto IL_0021;
}
}
{
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_3 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
bool L_4 = VirtFuncInvoker0< bool >::Invoke(28 /* System.Boolean UnityEngine.EventSystems.BaseInput::get_touchSupported() */, L_3);
return L_4;
}
IL_0021:
{
return (bool)1;
}
}
// System.Boolean UnityEngine.EventSystems.StandaloneInputModule::ShouldActivateModule()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_ShouldActivateModule_mD6CF146E884E38E295E95C6AC3A355029E653D35 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StandaloneInputModule_ShouldActivateModule_mD6CF146E884E38E295E95C6AC3A355029E653D35_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_1;
memset((&V_1), 0, sizeof(V_1));
{
// if (!base.ShouldActivateModule())
bool L_0 = BaseInputModule_ShouldActivateModule_mA3CFFC349E1188C750346FC1B52F44D770104BCD(__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_000a;
}
}
{
// return false;
return (bool)0;
}
IL_000a:
{
// var shouldActivate = m_ForceModuleActive;
bool L_1 = __this->get_m_ForceModuleActive_29();
V_0 = L_1;
// shouldActivate |= input.GetButtonDown(m_SubmitButton);
bool L_2 = V_0;
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_3 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
String_t* L_4 = __this->get_m_SubmitButton_25();
bool L_5 = VirtFuncInvoker1< bool, String_t* >::Invoke(32 /* System.Boolean UnityEngine.EventSystems.BaseInput::GetButtonDown(System.String) */, L_3, L_4);
V_0 = (bool)((int32_t)((int32_t)L_2|(int32_t)L_5));
// shouldActivate |= input.GetButtonDown(m_CancelButton);
bool L_6 = V_0;
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_7 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
String_t* L_8 = __this->get_m_CancelButton_26();
bool L_9 = VirtFuncInvoker1< bool, String_t* >::Invoke(32 /* System.Boolean UnityEngine.EventSystems.BaseInput::GetButtonDown(System.String) */, L_7, L_8);
V_0 = (bool)((int32_t)((int32_t)L_6|(int32_t)L_9));
// shouldActivate |= !Mathf.Approximately(input.GetAxisRaw(m_HorizontalAxis), 0.0f);
bool L_10 = V_0;
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_11 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
String_t* L_12 = __this->get_m_HorizontalAxis_23();
float L_13 = VirtFuncInvoker1< float, String_t* >::Invoke(31 /* System.Single UnityEngine.EventSystems.BaseInput::GetAxisRaw(System.String) */, L_11, L_12);
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
bool L_14 = Mathf_Approximately_m91AF00403E0D2DEA1AAE68601AD218CFAD70DF7E(L_13, (0.0f), /*hidden argument*/NULL);
V_0 = (bool)((int32_t)((int32_t)L_10|(int32_t)((((int32_t)L_14) == ((int32_t)0))? 1 : 0)));
// shouldActivate |= !Mathf.Approximately(input.GetAxisRaw(m_VerticalAxis), 0.0f);
bool L_15 = V_0;
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_16 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
String_t* L_17 = __this->get_m_VerticalAxis_24();
float L_18 = VirtFuncInvoker1< float, String_t* >::Invoke(31 /* System.Single UnityEngine.EventSystems.BaseInput::GetAxisRaw(System.String) */, L_16, L_17);
bool L_19 = Mathf_Approximately_m91AF00403E0D2DEA1AAE68601AD218CFAD70DF7E(L_18, (0.0f), /*hidden argument*/NULL);
V_0 = (bool)((int32_t)((int32_t)L_15|(int32_t)((((int32_t)L_19) == ((int32_t)0))? 1 : 0)));
// shouldActivate |= (m_MousePosition - m_LastMousePosition).sqrMagnitude > 0.0f;
bool L_20 = V_0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_21 = __this->get_m_MousePosition_20();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_22 = __this->get_m_LastMousePosition_19();
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_23 = Vector2_op_Subtraction_m2B347E4311EDBBBF27573E34899D2492E6B063C0(L_21, L_22, /*hidden argument*/NULL);
V_1 = L_23;
float L_24 = Vector2_get_sqrMagnitude_mAEE10A8ECE7D5754E10727BA8C9068A759AD7002((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&V_1), /*hidden argument*/NULL);
V_0 = (bool)((int32_t)((int32_t)L_20|(int32_t)((((float)L_24) > ((float)(0.0f)))? 1 : 0)));
// shouldActivate |= input.GetMouseButtonDown(0);
bool L_25 = V_0;
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_26 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
bool L_27 = VirtFuncInvoker1< bool, int32_t >::Invoke(23 /* System.Boolean UnityEngine.EventSystems.BaseInput::GetMouseButtonDown(System.Int32) */, L_26, 0);
V_0 = (bool)((int32_t)((int32_t)L_25|(int32_t)L_27));
// if (input.touchCount > 0)
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_28 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
int32_t L_29 = VirtFuncInvoker0< int32_t >::Invoke(29 /* System.Int32 UnityEngine.EventSystems.BaseInput::get_touchCount() */, L_28);
if ((((int32_t)L_29) <= ((int32_t)0)))
{
goto IL_00bd;
}
}
{
// shouldActivate = true;
V_0 = (bool)1;
}
IL_00bd:
{
// return shouldActivate;
bool L_30 = V_0;
return L_30;
}
}
// System.Void UnityEngine.EventSystems.StandaloneInputModule::ActivateModule()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_ActivateModule_m4861DB0128B954D53E51FB5A6CC1524346F76A1E (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StandaloneInputModule_ActivateModule_m4861DB0128B954D53E51FB5A6CC1524346F76A1E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_0 = NULL;
{
// if (!eventSystem.isFocused && ShouldIgnoreEventsOnNoFocus())
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_0 = BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline(__this, /*hidden argument*/NULL);
bool L_1 = EventSystem_get_isFocused_mB7275507B3AFEC15722B1F128CACB1BA578AEC3B_inline(L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0016;
}
}
{
bool L_2 = StandaloneInputModule_ShouldIgnoreEventsOnNoFocus_m00C2E7810D0D323B1A4A72097A75C6C2A87F0D9C(__this, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0016;
}
}
{
// return;
return;
}
IL_0016:
{
// base.ActivateModule();
BaseInputModule_ActivateModule_m1F16D868703EBA8610E0C2DF86B4760F934631D7(__this, /*hidden argument*/NULL);
// m_MousePosition = input.mousePosition;
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_3 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_4 = VirtFuncInvoker0< Vector2_tA85D2DD88578276CA8A8796756458277E72D073D >::Invoke(26 /* UnityEngine.Vector2 UnityEngine.EventSystems.BaseInput::get_mousePosition() */, L_3);
__this->set_m_MousePosition_20(L_4);
// m_LastMousePosition = input.mousePosition;
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_5 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_6 = VirtFuncInvoker0< Vector2_tA85D2DD88578276CA8A8796756458277E72D073D >::Invoke(26 /* UnityEngine.Vector2 UnityEngine.EventSystems.BaseInput::get_mousePosition() */, L_5);
__this->set_m_LastMousePosition_19(L_6);
// var toSelect = eventSystem.currentSelectedGameObject;
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_7 = BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline(__this, /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_8 = EventSystem_get_currentSelectedGameObject_mE28E78D268403602DE1FB6F059EE3E9CDB7325A4_inline(L_7, /*hidden argument*/NULL);
V_0 = L_8;
// if (toSelect == null)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_9 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_10 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_9, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_10)
{
goto IL_005f;
}
}
{
// toSelect = eventSystem.firstSelectedGameObject;
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_11 = BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline(__this, /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_12 = EventSystem_get_firstSelectedGameObject_m8CAFDA874F89BDA34E0984860046C1C171B200E1_inline(L_11, /*hidden argument*/NULL);
V_0 = L_12;
}
IL_005f:
{
// eventSystem.SetSelectedGameObject(toSelect, GetBaseEventData());
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_13 = BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline(__this, /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_14 = V_0;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_15 = VirtFuncInvoker0< BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * >::Invoke(19 /* UnityEngine.EventSystems.BaseEventData UnityEngine.EventSystems.BaseInputModule::GetBaseEventData() */, __this);
EventSystem_SetSelectedGameObject_m532EE7D0346462EDBB56E5BCD048CB3BEFB84E3A(L_13, L_14, L_15, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.StandaloneInputModule::DeactivateModule()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_DeactivateModule_m3495EC499261ADF166421DB15383F2808614CFDA (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
{
// base.DeactivateModule();
BaseInputModule_DeactivateModule_m02E0A94E9EBC6793439FE1ABF81F2E84B79C7249(__this, /*hidden argument*/NULL);
// ClearSelection();
PointerInputModule_ClearSelection_m05E527F28FB39BEBA8FA27153DAE71C8E7FDC958(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.StandaloneInputModule::Process()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_Process_mBF40EA3762B85C417E6F88D531174D05A7FFCE75 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
// if (!eventSystem.isFocused && ShouldIgnoreEventsOnNoFocus())
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_0 = BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline(__this, /*hidden argument*/NULL);
bool L_1 = EventSystem_get_isFocused_mB7275507B3AFEC15722B1F128CACB1BA578AEC3B_inline(L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0016;
}
}
{
bool L_2 = StandaloneInputModule_ShouldIgnoreEventsOnNoFocus_m00C2E7810D0D323B1A4A72097A75C6C2A87F0D9C(__this, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0016;
}
}
{
// return;
return;
}
IL_0016:
{
// bool usedEvent = SendUpdateEventToSelectedObject();
bool L_3 = StandaloneInputModule_SendUpdateEventToSelectedObject_m2982A721762040935DE3835DE71FBA28650036FB(__this, /*hidden argument*/NULL);
V_0 = L_3;
// if (!ProcessTouchEvents() && input.mousePresent)
bool L_4 = StandaloneInputModule_ProcessTouchEvents_mFEED66642E804A218DD34A9C5F0F8EAA5CA3B019(__this, /*hidden argument*/NULL);
if (L_4)
{
goto IL_0038;
}
}
{
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_5 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
bool L_6 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean UnityEngine.EventSystems.BaseInput::get_mousePresent() */, L_5);
if (!L_6)
{
goto IL_0038;
}
}
{
// ProcessMouseEvent();
StandaloneInputModule_ProcessMouseEvent_m54B75447C4D230F1FBB2E9A440B323403CC176C0(__this, /*hidden argument*/NULL);
}
IL_0038:
{
// if (eventSystem.sendNavigationEvents)
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_7 = BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline(__this, /*hidden argument*/NULL);
bool L_8 = EventSystem_get_sendNavigationEvents_m38D86573D180189D107B782AD1F1ED183D45DAD3_inline(L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_005b;
}
}
{
// if (!usedEvent)
bool L_9 = V_0;
if (L_9)
{
goto IL_0051;
}
}
{
// usedEvent |= SendMoveEventToSelectedObject();
bool L_10 = V_0;
bool L_11 = StandaloneInputModule_SendMoveEventToSelectedObject_m45E5CAE198660284CF7DB1FA464B79F9E26D44D3(__this, /*hidden argument*/NULL);
V_0 = (bool)((int32_t)((int32_t)L_10|(int32_t)L_11));
}
IL_0051:
{
// if (!usedEvent)
bool L_12 = V_0;
if (L_12)
{
goto IL_005b;
}
}
{
// SendSubmitEventToSelectedObject();
StandaloneInputModule_SendSubmitEventToSelectedObject_m132BF623619679A3E5871B7DA5BC5DD7B2E274DA(__this, /*hidden argument*/NULL);
}
IL_005b:
{
// }
return;
}
}
// System.Boolean UnityEngine.EventSystems.StandaloneInputModule::ProcessTouchEvents()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_ProcessTouchEvents_mFEED66642E804A218DD34A9C5F0F8EAA5CA3B019 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 V_1;
memset((&V_1), 0, sizeof(V_1));
bool V_2 = false;
bool V_3 = false;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * V_4 = NULL;
{
// for (int i = 0; i < input.touchCount; ++i)
V_0 = 0;
goto IL_0053;
}
IL_0004:
{
// Touch touch = input.GetTouch(i);
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_0 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
int32_t L_1 = V_0;
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 L_2 = VirtFuncInvoker1< Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 , int32_t >::Invoke(30 /* UnityEngine.Touch UnityEngine.EventSystems.BaseInput::GetTouch(System.Int32) */, L_0, L_1);
V_1 = L_2;
// if (touch.type == TouchType.Indirect)
int32_t L_3 = Touch_get_type_mAF919D12756ABA000A17146E82FDDFCEBFD6EEA9((Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 *)(&V_1), /*hidden argument*/NULL);
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_004f;
}
}
{
// var pointer = GetTouchPointerEventData(touch, out pressed, out released);
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 L_4 = V_1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_5 = PointerInputModule_GetTouchPointerEventData_m630FA2AD7438552F7AF904ED42EA90FADD910055(__this, L_4, (bool*)(&V_3), (bool*)(&V_2), /*hidden argument*/NULL);
V_4 = L_5;
// ProcessTouchPress(pointer, pressed, released);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_6 = V_4;
bool L_7 = V_3;
bool L_8 = V_2;
StandaloneInputModule_ProcessTouchPress_m74A52DA64B9C5EB8B5A38889F25BFEAFC284FB51(__this, L_6, L_7, L_8, /*hidden argument*/NULL);
// if (!released)
bool L_9 = V_2;
if (L_9)
{
goto IL_0047;
}
}
{
// ProcessMove(pointer);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_10 = V_4;
VirtActionInvoker1< PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * >::Invoke(28 /* System.Void UnityEngine.EventSystems.PointerInputModule::ProcessMove(UnityEngine.EventSystems.PointerEventData) */, __this, L_10);
// ProcessDrag(pointer);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_11 = V_4;
VirtActionInvoker1< PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * >::Invoke(29 /* System.Void UnityEngine.EventSystems.PointerInputModule::ProcessDrag(UnityEngine.EventSystems.PointerEventData) */, __this, L_11);
// }
goto IL_004f;
}
IL_0047:
{
// RemovePointerData(pointer);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_12 = V_4;
PointerInputModule_RemovePointerData_mDDADB278A6A01D38C46631A9531C62C17B4DEBEA(__this, L_12, /*hidden argument*/NULL);
}
IL_004f:
{
// for (int i = 0; i < input.touchCount; ++i)
int32_t L_13 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
}
IL_0053:
{
// for (int i = 0; i < input.touchCount; ++i)
int32_t L_14 = V_0;
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_15 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
int32_t L_16 = VirtFuncInvoker0< int32_t >::Invoke(29 /* System.Int32 UnityEngine.EventSystems.BaseInput::get_touchCount() */, L_15);
if ((((int32_t)L_14) < ((int32_t)L_16)))
{
goto IL_0004;
}
}
{
// return input.touchCount > 0;
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_17 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
int32_t L_18 = VirtFuncInvoker0< int32_t >::Invoke(29 /* System.Int32 UnityEngine.EventSystems.BaseInput::get_touchCount() */, L_17);
return (bool)((((int32_t)L_18) > ((int32_t)0))? 1 : 0);
}
}
// System.Void UnityEngine.EventSystems.StandaloneInputModule::ProcessTouchPress(UnityEngine.EventSystems.PointerEventData,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_ProcessTouchPress_m74A52DA64B9C5EB8B5A38889F25BFEAFC284FB51 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___pointerEvent0, bool ___pressed1, bool ___released2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StandaloneInputModule_ProcessTouchPress_m74A52DA64B9C5EB8B5A38889F25BFEAFC284FB51_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_0 = NULL;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 V_1;
memset((&V_1), 0, sizeof(V_1));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_2 = NULL;
float V_3 = 0.0f;
int32_t V_4 = 0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_5 = NULL;
{
// var currentOverGo = pointerEvent.pointerCurrentRaycast.gameObject;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_0 = ___pointerEvent0;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_1 = PointerEventData_get_pointerCurrentRaycast_mE58F786484E13AF2E6C2706E20C889E7453E3A7A_inline(L_0, /*hidden argument*/NULL);
V_1 = L_1;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_2 = RaycastResult_get_gameObject_m9D77DEDFF498BAFE29A5F88E9F238400D04C8FDD_inline((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)(&V_1), /*hidden argument*/NULL);
V_0 = L_2;
// if (pressed)
bool L_3 = ___pressed1;
if (!L_3)
{
goto IL_0125;
}
}
{
// pointerEvent.eligibleForClick = true;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_4 = ___pointerEvent0;
PointerEventData_set_eligibleForClick_m403F4068866F6A5CC9814729B3918C8FF1C21DBD_inline(L_4, (bool)1, /*hidden argument*/NULL);
// pointerEvent.delta = Vector2.zero;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_5 = ___pointerEvent0;
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_6 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
PointerEventData_set_delta_mDFEB23DF789E945F2CEC51C1F902CEE6AF674415_inline(L_5, L_6, /*hidden argument*/NULL);
// pointerEvent.dragging = false;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_7 = ___pointerEvent0;
PointerEventData_set_dragging_m4A4C08AB5A2173557EA62190F47AEFF1E9332821_inline(L_7, (bool)0, /*hidden argument*/NULL);
// pointerEvent.useDragThreshold = true;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_8 = ___pointerEvent0;
PointerEventData_set_useDragThreshold_mB5F06D15C2D1DB8D57F5B79CAEC3F58E4BF79684_inline(L_8, (bool)1, /*hidden argument*/NULL);
// pointerEvent.pressPosition = pointerEvent.position;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_9 = ___pointerEvent0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_10 = ___pointerEvent0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_11 = PointerEventData_get_position_mF25FC495A9C968C65BF34B5984616CBFB6332D55_inline(L_10, /*hidden argument*/NULL);
PointerEventData_set_pressPosition_m9DDE0BA5D6C31CBCDA926CEB62E51140F23013EA_inline(L_9, L_11, /*hidden argument*/NULL);
// pointerEvent.pointerPressRaycast = pointerEvent.pointerCurrentRaycast;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_12 = ___pointerEvent0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_13 = ___pointerEvent0;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_14 = PointerEventData_get_pointerCurrentRaycast_mE58F786484E13AF2E6C2706E20C889E7453E3A7A_inline(L_13, /*hidden argument*/NULL);
PointerEventData_set_pointerPressRaycast_m559F6127EC11B0F1B5EEB7BFCA478128DE8E5536_inline(L_12, L_14, /*hidden argument*/NULL);
// DeselectIfSelectionChanged(currentOverGo, pointerEvent);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_15 = V_0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_16 = ___pointerEvent0;
PointerInputModule_DeselectIfSelectionChanged_m3A32EDB68D6F489FD2A22CAB5A98D343E0634BDD(__this, L_15, L_16, /*hidden argument*/NULL);
// if (pointerEvent.pointerEnter != currentOverGo)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_17 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_18 = PointerEventData_get_pointerEnter_m47E87ACB1557B6380D0E66F57C2F9FFFD5E86DC2_inline(L_17, /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_19 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_20 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_18, L_19, /*hidden argument*/NULL);
if (!L_20)
{
goto IL_0072;
}
}
{
// HandlePointerExitAndEnter(pointerEvent, currentOverGo);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_21 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_22 = V_0;
BaseInputModule_HandlePointerExitAndEnter_mD32C0E209A19F78D07D964D162188D13762463BF(__this, L_21, L_22, /*hidden argument*/NULL);
// pointerEvent.pointerEnter = currentOverGo;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_23 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_24 = V_0;
PointerEventData_set_pointerEnter_mCA947226697EEC596FD611B31C10D7CE981026CC_inline(L_23, L_24, /*hidden argument*/NULL);
}
IL_0072:
{
// var newPressed = ExecuteEvents.ExecuteHierarchy(currentOverGo, pointerEvent, ExecuteEvents.pointerDownHandler);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_25 = V_0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_26 = ___pointerEvent0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E * L_27 = ExecuteEvents_get_pointerDownHandler_m8AE9CA906C86BBBEB75BA2D05F5DAB01F62519E3_inline(/*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_28 = ExecuteEvents_ExecuteHierarchy_TisIPointerDownHandler_tD9DAB9987B51AF8D4029CC24F52D17485684F4BF_m7109FC139AAD566492E6FABD873264235C450706(L_25, L_26, L_27, /*hidden argument*/ExecuteEvents_ExecuteHierarchy_TisIPointerDownHandler_tD9DAB9987B51AF8D4029CC24F52D17485684F4BF_m7109FC139AAD566492E6FABD873264235C450706_RuntimeMethod_var);
V_2 = L_28;
// if (newPressed == null)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_29 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_30 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_29, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_30)
{
goto IL_008f;
}
}
{
// newPressed = ExecuteEvents.GetEventHandler<IPointerClickHandler>(currentOverGo);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_31 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_32 = ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13_m96365BF6D04738F7FB08BF90EF5B2CB5AE01C1AD(L_31, /*hidden argument*/ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13_m96365BF6D04738F7FB08BF90EF5B2CB5AE01C1AD_RuntimeMethod_var);
V_2 = L_32;
}
IL_008f:
{
// float time = Time.unscaledTime;
float L_33 = Time_get_unscaledTime_m57F78B855097C5BA632CF9BE60667A9DEBCAA472(/*hidden argument*/NULL);
V_3 = L_33;
// if (newPressed == pointerEvent.lastPress)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_34 = V_2;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_35 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_36 = PointerEventData_get_lastPress_m6B005D786FC5B30ECD8D5BC068420D0C361357F4_inline(L_35, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_37 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_34, L_36, /*hidden argument*/NULL);
if (!L_37)
{
goto IL_00d6;
}
}
{
// var diffTime = time - pointerEvent.clickTime;
float L_38 = V_3;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_39 = ___pointerEvent0;
float L_40 = PointerEventData_get_clickTime_m023B539AF9EDF3782FD9406EC79F4742C855A3AF_inline(L_39, /*hidden argument*/NULL);
// if (diffTime < 0.3f)
if ((!(((float)((float)il2cpp_codegen_subtract((float)L_38, (float)L_40))) < ((float)(0.3f)))))
{
goto IL_00c6;
}
}
{
// ++pointerEvent.clickCount;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_41 = ___pointerEvent0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_42 = L_41;
int32_t L_43 = PointerEventData_get_clickCount_mF3A09A090E418FAAAFFE55668D9761C2F23BCE24_inline(L_42, /*hidden argument*/NULL);
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1));
int32_t L_44 = V_4;
PointerEventData_set_clickCount_mE56F748082C3D03A340345630FAC2B119451E003_inline(L_42, L_44, /*hidden argument*/NULL);
goto IL_00cd;
}
IL_00c6:
{
// pointerEvent.clickCount = 1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_45 = ___pointerEvent0;
PointerEventData_set_clickCount_mE56F748082C3D03A340345630FAC2B119451E003_inline(L_45, 1, /*hidden argument*/NULL);
}
IL_00cd:
{
// pointerEvent.clickTime = time;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_46 = ___pointerEvent0;
float L_47 = V_3;
PointerEventData_set_clickTime_mFB2FD722D5898826A1D57379C153B8023272653C_inline(L_46, L_47, /*hidden argument*/NULL);
// }
goto IL_00dd;
}
IL_00d6:
{
// pointerEvent.clickCount = 1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_48 = ___pointerEvent0;
PointerEventData_set_clickCount_mE56F748082C3D03A340345630FAC2B119451E003_inline(L_48, 1, /*hidden argument*/NULL);
}
IL_00dd:
{
// pointerEvent.pointerPress = newPressed;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_49 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_50 = V_2;
PointerEventData_set_pointerPress_mDFB3D803C9C4137799F9F1D57810DAAF08238327(L_49, L_50, /*hidden argument*/NULL);
// pointerEvent.rawPointerPress = currentOverGo;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_51 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_52 = V_0;
PointerEventData_set_rawPointerPress_mB7E32587FD73925A689A71FCAB560F9B78A233A5_inline(L_51, L_52, /*hidden argument*/NULL);
// pointerEvent.clickTime = time;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_53 = ___pointerEvent0;
float L_54 = V_3;
PointerEventData_set_clickTime_mFB2FD722D5898826A1D57379C153B8023272653C_inline(L_53, L_54, /*hidden argument*/NULL);
// pointerEvent.pointerDrag = ExecuteEvents.GetEventHandler<IDragHandler>(currentOverGo);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_55 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_56 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_57 = ExecuteEvents_GetEventHandler_TisIDragHandler_t196F681B5B4A5BFCDEA2A93CA0A75D504908D25B_m5A727D5FF70D5140242C84BF539D7BC0C4D84D99(L_56, /*hidden argument*/ExecuteEvents_GetEventHandler_TisIDragHandler_t196F681B5B4A5BFCDEA2A93CA0A75D504908D25B_m5A727D5FF70D5140242C84BF539D7BC0C4D84D99_RuntimeMethod_var);
PointerEventData_set_pointerDrag_m7E4BF3CF39EF734A80FA1994310FB09A5B095AF8_inline(L_55, L_57, /*hidden argument*/NULL);
// if (pointerEvent.pointerDrag != null)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_58 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_59 = PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline(L_58, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_60 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_59, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_60)
{
goto IL_011e;
}
}
{
// ExecuteEvents.Execute(pointerEvent.pointerDrag, pointerEvent, ExecuteEvents.initializePotentialDrag);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_61 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_62 = PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline(L_61, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_63 = ___pointerEvent0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 * L_64 = ExecuteEvents_get_initializePotentialDrag_m5B3D899EB08DA227EFBFC67778DDB98D7505C6D4_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisIInitializePotentialDragHandler_t56667A600E5BC5B8786753312DB9EDFE13455B45_m570C983BF282A5005C2BCA9BDFCDFF0805102D40(L_62, L_63, L_64, /*hidden argument*/ExecuteEvents_Execute_TisIInitializePotentialDragHandler_t56667A600E5BC5B8786753312DB9EDFE13455B45_m570C983BF282A5005C2BCA9BDFCDFF0805102D40_RuntimeMethod_var);
}
IL_011e:
{
// m_InputPointerEvent = pointerEvent;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_65 = ___pointerEvent0;
__this->set_m_InputPointerEvent_22(L_65);
}
IL_0125:
{
// if (released)
bool L_66 = ___released2;
if (!L_66)
{
goto IL_01fe;
}
}
{
// ExecuteEvents.Execute(pointerEvent.pointerPress, pointerEvent, ExecuteEvents.pointerUpHandler);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_67 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_68 = PointerEventData_get_pointerPress_m7B8C9E16E2B9E86C4DA93A2A2E3A58E56536406B_inline(L_67, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_69 = ___pointerEvent0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 * L_70 = ExecuteEvents_get_pointerUpHandler_m7EDDD1128DC04344CECEBCB9B6B7CD064F7FAED2_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisIPointerUpHandler_tAF005E3FEF3EA2D9DDA99FAA488955AA8B392102_mE7822304A5DF78074F7FE7B2255BCC9F70471C99(L_68, L_69, L_70, /*hidden argument*/ExecuteEvents_Execute_TisIPointerUpHandler_tAF005E3FEF3EA2D9DDA99FAA488955AA8B392102_mE7822304A5DF78074F7FE7B2255BCC9F70471C99_RuntimeMethod_var);
// var pointerUpHandler = ExecuteEvents.GetEventHandler<IPointerClickHandler>(currentOverGo);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_71 = V_0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_72 = ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13_m96365BF6D04738F7FB08BF90EF5B2CB5AE01C1AD(L_71, /*hidden argument*/ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13_m96365BF6D04738F7FB08BF90EF5B2CB5AE01C1AD_RuntimeMethod_var);
V_5 = L_72;
// if (pointerEvent.pointerPress == pointerUpHandler && pointerEvent.eligibleForClick)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_73 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_74 = PointerEventData_get_pointerPress_m7B8C9E16E2B9E86C4DA93A2A2E3A58E56536406B_inline(L_73, /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_75 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_76 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_74, L_75, /*hidden argument*/NULL);
if (!L_76)
{
goto IL_0170;
}
}
{
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_77 = ___pointerEvent0;
bool L_78 = PointerEventData_get_eligibleForClick_m2039146EE2E6940436E592D0655FBA06096DBFFA_inline(L_77, /*hidden argument*/NULL);
if (!L_78)
{
goto IL_0170;
}
}
{
// ExecuteEvents.Execute(pointerEvent.pointerPress, pointerEvent, ExecuteEvents.pointerClickHandler);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_79 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_80 = PointerEventData_get_pointerPress_m7B8C9E16E2B9E86C4DA93A2A2E3A58E56536406B_inline(L_79, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_81 = ___pointerEvent0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E * L_82 = ExecuteEvents_get_pointerClickHandler_mA657195AEC7D0A42036CBCAC9AD48F215C3C69E3_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisIPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13_mA58C71DF6780888ADDA65BE907FBDC323D066ADB(L_80, L_81, L_82, /*hidden argument*/ExecuteEvents_Execute_TisIPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13_mA58C71DF6780888ADDA65BE907FBDC323D066ADB_RuntimeMethod_var);
// }
goto IL_0193;
}
IL_0170:
{
// else if (pointerEvent.pointerDrag != null && pointerEvent.dragging)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_83 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_84 = PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline(L_83, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_85 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_84, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_85)
{
goto IL_0193;
}
}
{
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_86 = ___pointerEvent0;
bool L_87 = PointerEventData_get_dragging_mA3B420FFEB0856189D7A7646AA00A981C745D4B4_inline(L_86, /*hidden argument*/NULL);
if (!L_87)
{
goto IL_0193;
}
}
{
// ExecuteEvents.ExecuteHierarchy(currentOverGo, pointerEvent, ExecuteEvents.dropHandler);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_88 = V_0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_89 = ___pointerEvent0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 * L_90 = ExecuteEvents_get_dropHandler_mC2362B96C6CD3628B83722F4B7C73E707C6C1EAF_inline(/*hidden argument*/NULL);
ExecuteEvents_ExecuteHierarchy_TisIDropHandler_t617E86EDCC6B18A39D69DFF444D5358072B524C3_m42750090DC2A40178705596286003B1346E093AE(L_88, L_89, L_90, /*hidden argument*/ExecuteEvents_ExecuteHierarchy_TisIDropHandler_t617E86EDCC6B18A39D69DFF444D5358072B524C3_m42750090DC2A40178705596286003B1346E093AE_RuntimeMethod_var);
}
IL_0193:
{
// pointerEvent.eligibleForClick = false;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_91 = ___pointerEvent0;
PointerEventData_set_eligibleForClick_m403F4068866F6A5CC9814729B3918C8FF1C21DBD_inline(L_91, (bool)0, /*hidden argument*/NULL);
// pointerEvent.pointerPress = null;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_92 = ___pointerEvent0;
PointerEventData_set_pointerPress_mDFB3D803C9C4137799F9F1D57810DAAF08238327(L_92, (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL, /*hidden argument*/NULL);
// pointerEvent.rawPointerPress = null;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_93 = ___pointerEvent0;
PointerEventData_set_rawPointerPress_mB7E32587FD73925A689A71FCAB560F9B78A233A5_inline(L_93, (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL, /*hidden argument*/NULL);
// if (pointerEvent.pointerDrag != null && pointerEvent.dragging)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_94 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_95 = PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline(L_94, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_96 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_95, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_96)
{
goto IL_01d0;
}
}
{
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_97 = ___pointerEvent0;
bool L_98 = PointerEventData_get_dragging_mA3B420FFEB0856189D7A7646AA00A981C745D4B4_inline(L_97, /*hidden argument*/NULL);
if (!L_98)
{
goto IL_01d0;
}
}
{
// ExecuteEvents.Execute(pointerEvent.pointerDrag, pointerEvent, ExecuteEvents.endDragHandler);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_99 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_100 = PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline(L_99, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_101 = ___pointerEvent0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 * L_102 = ExecuteEvents_get_endDragHandler_m23B60D3E3873043263069A3C3145393475690769_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisIEndDragHandler_tA6045DEE83CD2C06AC9409CBE183B10E3C0B9070_m31C9832573004F91088F89FD7BB28BFA2777FBF4(L_100, L_101, L_102, /*hidden argument*/ExecuteEvents_Execute_TisIEndDragHandler_tA6045DEE83CD2C06AC9409CBE183B10E3C0B9070_m31C9832573004F91088F89FD7BB28BFA2777FBF4_RuntimeMethod_var);
}
IL_01d0:
{
// pointerEvent.dragging = false;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_103 = ___pointerEvent0;
PointerEventData_set_dragging_m4A4C08AB5A2173557EA62190F47AEFF1E9332821_inline(L_103, (bool)0, /*hidden argument*/NULL);
// pointerEvent.pointerDrag = null;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_104 = ___pointerEvent0;
PointerEventData_set_pointerDrag_m7E4BF3CF39EF734A80FA1994310FB09A5B095AF8_inline(L_104, (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL, /*hidden argument*/NULL);
// ExecuteEvents.ExecuteHierarchy(pointerEvent.pointerEnter, pointerEvent, ExecuteEvents.pointerExitHandler);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_105 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_106 = PointerEventData_get_pointerEnter_m47E87ACB1557B6380D0E66F57C2F9FFFD5E86DC2_inline(L_105, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_107 = ___pointerEvent0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA * L_108 = ExecuteEvents_get_pointerExitHandler_mE5EC9537676A055EEE178A4E6B58D96F9B4AC301_inline(/*hidden argument*/NULL);
ExecuteEvents_ExecuteHierarchy_TisIPointerExitHandler_t5D65A773A15D990BC231F7C9FE221AB4417327FF_mE5F3CB5276F1AB80CC2D0DD03F13BDC8998E71AB(L_106, L_107, L_108, /*hidden argument*/ExecuteEvents_ExecuteHierarchy_TisIPointerExitHandler_t5D65A773A15D990BC231F7C9FE221AB4417327FF_mE5F3CB5276F1AB80CC2D0DD03F13BDC8998E71AB_RuntimeMethod_var);
// pointerEvent.pointerEnter = null;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_109 = ___pointerEvent0;
PointerEventData_set_pointerEnter_mCA947226697EEC596FD611B31C10D7CE981026CC_inline(L_109, (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL, /*hidden argument*/NULL);
// m_InputPointerEvent = pointerEvent;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_110 = ___pointerEvent0;
__this->set_m_InputPointerEvent_22(L_110);
}
IL_01fe:
{
// }
return;
}
}
// System.Boolean UnityEngine.EventSystems.StandaloneInputModule::SendSubmitEventToSelectedObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_SendSubmitEventToSelectedObject_m132BF623619679A3E5871B7DA5BC5DD7B2E274DA (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StandaloneInputModule_SendSubmitEventToSelectedObject_m132BF623619679A3E5871B7DA5BC5DD7B2E274DA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * V_0 = NULL;
{
// if (eventSystem.currentSelectedGameObject == null)
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_0 = BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline(__this, /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_1 = EventSystem_get_currentSelectedGameObject_mE28E78D268403602DE1FB6F059EE3E9CDB7325A4_inline(L_0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_2 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_1, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0015;
}
}
{
// return false;
return (bool)0;
}
IL_0015:
{
// var data = GetBaseEventData();
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_3 = VirtFuncInvoker0< BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * >::Invoke(19 /* UnityEngine.EventSystems.BaseEventData UnityEngine.EventSystems.BaseInputModule::GetBaseEventData() */, __this);
V_0 = L_3;
// if (input.GetButtonDown(m_SubmitButton))
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_4 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
String_t* L_5 = __this->get_m_SubmitButton_25();
bool L_6 = VirtFuncInvoker1< bool, String_t* >::Invoke(32 /* System.Boolean UnityEngine.EventSystems.BaseInput::GetButtonDown(System.String) */, L_4, L_5);
if (!L_6)
{
goto IL_0046;
}
}
{
// ExecuteEvents.Execute(eventSystem.currentSelectedGameObject, data, ExecuteEvents.submitHandler);
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_7 = BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline(__this, /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_8 = EventSystem_get_currentSelectedGameObject_mE28E78D268403602DE1FB6F059EE3E9CDB7325A4_inline(L_7, /*hidden argument*/NULL);
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_9 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B * L_10 = ExecuteEvents_get_submitHandler_m734C2BE2F7CDA7F5C42897E3C8023D3C7E1EDF88_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisISubmitHandler_tCFAD2814817B87B883DB9E7F84EE0196C9E531C5_m323E82337667B995B90E6606FBA640AE22F34202(L_8, L_9, L_10, /*hidden argument*/ExecuteEvents_Execute_TisISubmitHandler_tCFAD2814817B87B883DB9E7F84EE0196C9E531C5_m323E82337667B995B90E6606FBA640AE22F34202_RuntimeMethod_var);
}
IL_0046:
{
// if (input.GetButtonDown(m_CancelButton))
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_11 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
String_t* L_12 = __this->get_m_CancelButton_26();
bool L_13 = VirtFuncInvoker1< bool, String_t* >::Invoke(32 /* System.Boolean UnityEngine.EventSystems.BaseInput::GetButtonDown(System.String) */, L_11, L_12);
if (!L_13)
{
goto IL_0070;
}
}
{
// ExecuteEvents.Execute(eventSystem.currentSelectedGameObject, data, ExecuteEvents.cancelHandler);
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_14 = BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline(__this, /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_15 = EventSystem_get_currentSelectedGameObject_mE28E78D268403602DE1FB6F059EE3E9CDB7325A4_inline(L_14, /*hidden argument*/NULL);
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_16 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 * L_17 = ExecuteEvents_get_cancelHandler_m5DB4A9513FB8B9248AE555F7D8E8043175B8D995_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisICancelHandler_t868799EEEF8164176835C988494360950CFB75B3_m9AE2C1FA291D2A1AB4A4A6967944CBF342A229A5(L_15, L_16, L_17, /*hidden argument*/ExecuteEvents_Execute_TisICancelHandler_t868799EEEF8164176835C988494360950CFB75B3_m9AE2C1FA291D2A1AB4A4A6967944CBF342A229A5_RuntimeMethod_var);
}
IL_0070:
{
// return data.used;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_18 = V_0;
bool L_19 = VirtFuncInvoker0< bool >::Invoke(6 /* System.Boolean UnityEngine.EventSystems.AbstractEventData::get_used() */, L_18);
return L_19;
}
}
// UnityEngine.Vector2 UnityEngine.EventSystems.StandaloneInputModule::GetRawMoveVector()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D StandaloneInputModule_GetRawMoveVector_m36E309DADA8C0BB4CA0710FAABE0F4E9B77C2F6A (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StandaloneInputModule_GetRawMoveVector_m36E309DADA8C0BB4CA0710FAABE0F4E9B77C2F6A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_0;
memset((&V_0), 0, sizeof(V_0));
{
// Vector2 move = Vector2.zero;
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
V_0 = L_0;
// move.x = input.GetAxisRaw(m_HorizontalAxis);
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_1 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
String_t* L_2 = __this->get_m_HorizontalAxis_23();
float L_3 = VirtFuncInvoker1< float, String_t* >::Invoke(31 /* System.Single UnityEngine.EventSystems.BaseInput::GetAxisRaw(System.String) */, L_1, L_2);
(&V_0)->set_x_0(L_3);
// move.y = input.GetAxisRaw(m_VerticalAxis);
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_4 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
String_t* L_5 = __this->get_m_VerticalAxis_24();
float L_6 = VirtFuncInvoker1< float, String_t* >::Invoke(31 /* System.Single UnityEngine.EventSystems.BaseInput::GetAxisRaw(System.String) */, L_4, L_5);
(&V_0)->set_y_1(L_6);
// if (input.GetButtonDown(m_HorizontalAxis))
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_7 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
String_t* L_8 = __this->get_m_HorizontalAxis_23();
bool L_9 = VirtFuncInvoker1< bool, String_t* >::Invoke(32 /* System.Boolean UnityEngine.EventSystems.BaseInput::GetButtonDown(System.String) */, L_7, L_8);
if (!L_9)
{
goto IL_007b;
}
}
{
// if (move.x < 0)
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_10 = V_0;
float L_11 = L_10.get_x_0();
if ((!(((float)L_11) < ((float)(0.0f)))))
{
goto IL_0062;
}
}
{
// move.x = -1f;
(&V_0)->set_x_0((-1.0f));
}
IL_0062:
{
// if (move.x > 0)
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_12 = V_0;
float L_13 = L_12.get_x_0();
if ((!(((float)L_13) > ((float)(0.0f)))))
{
goto IL_007b;
}
}
{
// move.x = 1f;
(&V_0)->set_x_0((1.0f));
}
IL_007b:
{
// if (input.GetButtonDown(m_VerticalAxis))
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_14 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
String_t* L_15 = __this->get_m_VerticalAxis_24();
bool L_16 = VirtFuncInvoker1< bool, String_t* >::Invoke(32 /* System.Boolean UnityEngine.EventSystems.BaseInput::GetButtonDown(System.String) */, L_14, L_15);
if (!L_16)
{
goto IL_00c0;
}
}
{
// if (move.y < 0)
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_17 = V_0;
float L_18 = L_17.get_y_1();
if ((!(((float)L_18) < ((float)(0.0f)))))
{
goto IL_00a7;
}
}
{
// move.y = -1f;
(&V_0)->set_y_1((-1.0f));
}
IL_00a7:
{
// if (move.y > 0)
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_19 = V_0;
float L_20 = L_19.get_y_1();
if ((!(((float)L_20) > ((float)(0.0f)))))
{
goto IL_00c0;
}
}
{
// move.y = 1f;
(&V_0)->set_y_1((1.0f));
}
IL_00c0:
{
// return move;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_21 = V_0;
return L_21;
}
}
// System.Boolean UnityEngine.EventSystems.StandaloneInputModule::SendMoveEventToSelectedObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_SendMoveEventToSelectedObject_m45E5CAE198660284CF7DB1FA464B79F9E26D44D3 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StandaloneInputModule_SendMoveEventToSelectedObject_m45E5CAE198660284CF7DB1FA464B79F9E26D44D3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_1;
memset((&V_1), 0, sizeof(V_1));
bool V_2 = false;
AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * V_3 = NULL;
{
// float time = Time.unscaledTime;
float L_0 = Time_get_unscaledTime_m57F78B855097C5BA632CF9BE60667A9DEBCAA472(/*hidden argument*/NULL);
V_0 = L_0;
// Vector2 movement = GetRawMoveVector();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_1 = StandaloneInputModule_GetRawMoveVector_m36E309DADA8C0BB4CA0710FAABE0F4E9B77C2F6A(__this, /*hidden argument*/NULL);
V_1 = L_1;
// if (Mathf.Approximately(movement.x, 0f) && Mathf.Approximately(movement.y, 0f))
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_2 = V_1;
float L_3 = L_2.get_x_0();
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
bool L_4 = Mathf_Approximately_m91AF00403E0D2DEA1AAE68601AD218CFAD70DF7E(L_3, (0.0f), /*hidden argument*/NULL);
if (!L_4)
{
goto IL_003a;
}
}
{
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_5 = V_1;
float L_6 = L_5.get_y_1();
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
bool L_7 = Mathf_Approximately_m91AF00403E0D2DEA1AAE68601AD218CFAD70DF7E(L_6, (0.0f), /*hidden argument*/NULL);
if (!L_7)
{
goto IL_003a;
}
}
{
// m_ConsecutiveMoveCount = 0;
__this->set_m_ConsecutiveMoveCount_18(0);
// return false;
return (bool)0;
}
IL_003a:
{
// bool similarDir = (Vector2.Dot(movement, m_LastMoveVector) > 0);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_8 = V_1;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_9 = __this->get_m_LastMoveVector_17();
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
float L_10 = Vector2_Dot_m34F6A75BE3FC6F728233811943AC4406C7D905BA(L_8, L_9, /*hidden argument*/NULL);
V_2 = (bool)((((float)L_10) > ((float)(0.0f)))? 1 : 0);
// if (similarDir && m_ConsecutiveMoveCount == 1)
bool L_11 = V_2;
if (!L_11)
{
goto IL_006c;
}
}
{
int32_t L_12 = __this->get_m_ConsecutiveMoveCount_18();
if ((!(((uint32_t)L_12) == ((uint32_t)1))))
{
goto IL_006c;
}
}
{
// if (time <= m_PrevActionTime + m_RepeatDelay)
float L_13 = V_0;
float L_14 = __this->get_m_PrevActionTime_16();
float L_15 = __this->get_m_RepeatDelay_28();
if ((!(((float)L_13) <= ((float)((float)il2cpp_codegen_add((float)L_14, (float)L_15))))))
{
goto IL_0084;
}
}
{
// return false;
return (bool)0;
}
IL_006c:
{
// if (time <= m_PrevActionTime + 1f / m_InputActionsPerSecond)
float L_16 = V_0;
float L_17 = __this->get_m_PrevActionTime_16();
float L_18 = __this->get_m_InputActionsPerSecond_27();
if ((!(((float)L_16) <= ((float)((float)il2cpp_codegen_add((float)L_17, (float)((float)((float)(1.0f)/(float)L_18))))))))
{
goto IL_0084;
}
}
{
// return false;
return (bool)0;
}
IL_0084:
{
// var axisEventData = GetAxisEventData(movement.x, movement.y, 0.6f);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_19 = V_1;
float L_20 = L_19.get_x_0();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_21 = V_1;
float L_22 = L_21.get_y_1();
AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * L_23 = VirtFuncInvoker3< AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 *, float, float, float >::Invoke(18 /* UnityEngine.EventSystems.AxisEventData UnityEngine.EventSystems.BaseInputModule::GetAxisEventData(System.Single,System.Single,System.Single) */, __this, L_20, L_22, (0.6f));
V_3 = L_23;
// if (axisEventData.moveDir != MoveDirection.None)
AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * L_24 = V_3;
int32_t L_25 = AxisEventData_get_moveDir_mD9CF8343509BAE60C581138D824F9C53659DBBD4_inline(L_24, /*hidden argument*/NULL);
if ((((int32_t)L_25) == ((int32_t)4)))
{
goto IL_00e4;
}
}
{
// ExecuteEvents.Execute(eventSystem.currentSelectedGameObject, axisEventData, ExecuteEvents.moveHandler);
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_26 = BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline(__this, /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_27 = EventSystem_get_currentSelectedGameObject_mE28E78D268403602DE1FB6F059EE3E9CDB7325A4_inline(L_26, /*hidden argument*/NULL);
AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * L_28 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB * L_29 = ExecuteEvents_get_moveHandler_m113A4222FC10723B2E38398E182C02F6624D6F24_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisIMoveHandler_tD51D5B6A4C5B3A233263107AF0020BE185647D41_m7E0B60BCAA055F013451EDB41D328355DFC204A8(L_27, L_28, L_29, /*hidden argument*/ExecuteEvents_Execute_TisIMoveHandler_tD51D5B6A4C5B3A233263107AF0020BE185647D41_m7E0B60BCAA055F013451EDB41D328355DFC204A8_RuntimeMethod_var);
// if (!similarDir)
bool L_30 = V_2;
if (L_30)
{
goto IL_00c6;
}
}
{
// m_ConsecutiveMoveCount = 0;
__this->set_m_ConsecutiveMoveCount_18(0);
}
IL_00c6:
{
// m_ConsecutiveMoveCount++;
int32_t L_31 = __this->get_m_ConsecutiveMoveCount_18();
__this->set_m_ConsecutiveMoveCount_18(((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)));
// m_PrevActionTime = time;
float L_32 = V_0;
__this->set_m_PrevActionTime_16(L_32);
// m_LastMoveVector = movement;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_33 = V_1;
__this->set_m_LastMoveVector_17(L_33);
// }
goto IL_00eb;
}
IL_00e4:
{
// m_ConsecutiveMoveCount = 0;
__this->set_m_ConsecutiveMoveCount_18(0);
}
IL_00eb:
{
// return axisEventData.used;
AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * L_34 = V_3;
bool L_35 = VirtFuncInvoker0< bool >::Invoke(6 /* System.Boolean UnityEngine.EventSystems.AbstractEventData::get_used() */, L_34);
return L_35;
}
}
// System.Void UnityEngine.EventSystems.StandaloneInputModule::ProcessMouseEvent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_ProcessMouseEvent_m54B75447C4D230F1FBB2E9A440B323403CC176C0 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
{
// ProcessMouseEvent(0);
StandaloneInputModule_ProcessMouseEvent_m4D1CB4E39517B014D3F81B9F0423B8FA6F8A8656(__this, 0, /*hidden argument*/NULL);
// }
return;
}
}
// System.Boolean UnityEngine.EventSystems.StandaloneInputModule::ForceAutoSelect()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_ForceAutoSelect_m89726C63D482B7D8529A5FD74E57FB8A92107F02 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
{
// return false;
return (bool)0;
}
}
// System.Void UnityEngine.EventSystems.StandaloneInputModule::ProcessMouseEvent(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_ProcessMouseEvent_m4D1CB4E39517B014D3F81B9F0423B8FA6F8A8656 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, int32_t ___id0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StandaloneInputModule_ProcessMouseEvent_m4D1CB4E39517B014D3F81B9F0423B8FA6F8A8656_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * V_0 = NULL;
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * V_1 = NULL;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 V_2;
memset((&V_2), 0, sizeof(V_2));
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_3;
memset((&V_3), 0, sizeof(V_3));
{
// var mouseData = GetMousePointerEventData(id);
int32_t L_0 = ___id0;
MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * L_1 = VirtFuncInvoker1< MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 *, int32_t >::Invoke(27 /* UnityEngine.EventSystems.PointerInputModule/MouseState UnityEngine.EventSystems.PointerInputModule::GetMousePointerEventData(System.Int32) */, __this, L_0);
V_0 = L_1;
// var leftButtonData = mouseData.GetButtonState(PointerEventData.InputButton.Left).eventData;
MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * L_2 = V_0;
ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * L_3 = MouseState_GetButtonState_m0C2884609F720A284C72EAEF061C781F4874CCAE(L_2, 0, /*hidden argument*/NULL);
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_4 = ButtonState_get_eventData_mA9D054D526473A2481A997758CDDEB022E67351D_inline(L_3, /*hidden argument*/NULL);
V_1 = L_4;
// m_CurrentFocusedGameObject = leftButtonData.buttonData.pointerCurrentRaycast.gameObject;
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_5 = V_1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_6 = L_5->get_buttonData_1();
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_7 = PointerEventData_get_pointerCurrentRaycast_mE58F786484E13AF2E6C2706E20C889E7453E3A7A_inline(L_6, /*hidden argument*/NULL);
V_2 = L_7;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_8 = RaycastResult_get_gameObject_m9D77DEDFF498BAFE29A5F88E9F238400D04C8FDD_inline((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)(&V_2), /*hidden argument*/NULL);
__this->set_m_CurrentFocusedGameObject_21(L_8);
// ProcessMousePress(leftButtonData);
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_9 = V_1;
StandaloneInputModule_ProcessMousePress_m795F279F981E957475C724C010FA8A87F9BE6CF4(__this, L_9, /*hidden argument*/NULL);
// ProcessMove(leftButtonData.buttonData);
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_10 = V_1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_11 = L_10->get_buttonData_1();
VirtActionInvoker1< PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * >::Invoke(28 /* System.Void UnityEngine.EventSystems.PointerInputModule::ProcessMove(UnityEngine.EventSystems.PointerEventData) */, __this, L_11);
// ProcessDrag(leftButtonData.buttonData);
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_12 = V_1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_13 = L_12->get_buttonData_1();
VirtActionInvoker1< PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * >::Invoke(29 /* System.Void UnityEngine.EventSystems.PointerInputModule::ProcessDrag(UnityEngine.EventSystems.PointerEventData) */, __this, L_13);
// ProcessMousePress(mouseData.GetButtonState(PointerEventData.InputButton.Right).eventData);
MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * L_14 = V_0;
ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * L_15 = MouseState_GetButtonState_m0C2884609F720A284C72EAEF061C781F4874CCAE(L_14, 1, /*hidden argument*/NULL);
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_16 = ButtonState_get_eventData_mA9D054D526473A2481A997758CDDEB022E67351D_inline(L_15, /*hidden argument*/NULL);
StandaloneInputModule_ProcessMousePress_m795F279F981E957475C724C010FA8A87F9BE6CF4(__this, L_16, /*hidden argument*/NULL);
// ProcessDrag(mouseData.GetButtonState(PointerEventData.InputButton.Right).eventData.buttonData);
MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * L_17 = V_0;
ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * L_18 = MouseState_GetButtonState_m0C2884609F720A284C72EAEF061C781F4874CCAE(L_17, 1, /*hidden argument*/NULL);
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_19 = ButtonState_get_eventData_mA9D054D526473A2481A997758CDDEB022E67351D_inline(L_18, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_20 = L_19->get_buttonData_1();
VirtActionInvoker1< PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * >::Invoke(29 /* System.Void UnityEngine.EventSystems.PointerInputModule::ProcessDrag(UnityEngine.EventSystems.PointerEventData) */, __this, L_20);
// ProcessMousePress(mouseData.GetButtonState(PointerEventData.InputButton.Middle).eventData);
MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * L_21 = V_0;
ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * L_22 = MouseState_GetButtonState_m0C2884609F720A284C72EAEF061C781F4874CCAE(L_21, 2, /*hidden argument*/NULL);
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_23 = ButtonState_get_eventData_mA9D054D526473A2481A997758CDDEB022E67351D_inline(L_22, /*hidden argument*/NULL);
StandaloneInputModule_ProcessMousePress_m795F279F981E957475C724C010FA8A87F9BE6CF4(__this, L_23, /*hidden argument*/NULL);
// ProcessDrag(mouseData.GetButtonState(PointerEventData.InputButton.Middle).eventData.buttonData);
MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * L_24 = V_0;
ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * L_25 = MouseState_GetButtonState_m0C2884609F720A284C72EAEF061C781F4874CCAE(L_24, 2, /*hidden argument*/NULL);
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_26 = ButtonState_get_eventData_mA9D054D526473A2481A997758CDDEB022E67351D_inline(L_25, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_27 = L_26->get_buttonData_1();
VirtActionInvoker1< PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * >::Invoke(29 /* System.Void UnityEngine.EventSystems.PointerInputModule::ProcessDrag(UnityEngine.EventSystems.PointerEventData) */, __this, L_27);
// if (!Mathf.Approximately(leftButtonData.buttonData.scrollDelta.sqrMagnitude, 0.0f))
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_28 = V_1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_29 = L_28->get_buttonData_1();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_30 = PointerEventData_get_scrollDelta_mF473A122C860EC5279F6F5D085912BDA6418690B_inline(L_29, /*hidden argument*/NULL);
V_3 = L_30;
float L_31 = Vector2_get_sqrMagnitude_mAEE10A8ECE7D5754E10727BA8C9068A759AD7002((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&V_3), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
bool L_32 = Mathf_Approximately_m91AF00403E0D2DEA1AAE68601AD218CFAD70DF7E(L_31, (0.0f), /*hidden argument*/NULL);
if (L_32)
{
goto IL_00e7;
}
}
{
// var scrollHandler = ExecuteEvents.GetEventHandler<IScrollHandler>(leftButtonData.buttonData.pointerCurrentRaycast.gameObject);
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_33 = V_1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_34 = L_33->get_buttonData_1();
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_35 = PointerEventData_get_pointerCurrentRaycast_mE58F786484E13AF2E6C2706E20C889E7453E3A7A_inline(L_34, /*hidden argument*/NULL);
V_2 = L_35;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_36 = RaycastResult_get_gameObject_m9D77DEDFF498BAFE29A5F88E9F238400D04C8FDD_inline((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)(&V_2), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_37 = ExecuteEvents_GetEventHandler_TisIScrollHandler_t3BB7CCD821B37EBB5EA18D30D65D4075FB43198B_m862233B0489763DCCBC4FA2ADD82C50E3FAF6D04(L_36, /*hidden argument*/ExecuteEvents_GetEventHandler_TisIScrollHandler_t3BB7CCD821B37EBB5EA18D30D65D4075FB43198B_m862233B0489763DCCBC4FA2ADD82C50E3FAF6D04_RuntimeMethod_var);
// ExecuteEvents.ExecuteHierarchy(scrollHandler, leftButtonData.buttonData, ExecuteEvents.scrollHandler);
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_38 = V_1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_39 = L_38->get_buttonData_1();
EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A * L_40 = ExecuteEvents_get_scrollHandler_m48E5B17388986BD59EC7A7BF27E3D30A9FD057F7_inline(/*hidden argument*/NULL);
ExecuteEvents_ExecuteHierarchy_TisIScrollHandler_t3BB7CCD821B37EBB5EA18D30D65D4075FB43198B_m063662829D9B670BB6A7AC7E1E3B2E15B7B5A853(L_37, L_39, L_40, /*hidden argument*/ExecuteEvents_ExecuteHierarchy_TisIScrollHandler_t3BB7CCD821B37EBB5EA18D30D65D4075FB43198B_m063662829D9B670BB6A7AC7E1E3B2E15B7B5A853_RuntimeMethod_var);
}
IL_00e7:
{
// }
return;
}
}
// System.Boolean UnityEngine.EventSystems.StandaloneInputModule::SendUpdateEventToSelectedObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_SendUpdateEventToSelectedObject_m2982A721762040935DE3835DE71FBA28650036FB (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StandaloneInputModule_SendUpdateEventToSelectedObject_m2982A721762040935DE3835DE71FBA28650036FB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * V_0 = NULL;
{
// if (eventSystem.currentSelectedGameObject == null)
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_0 = BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline(__this, /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_1 = EventSystem_get_currentSelectedGameObject_mE28E78D268403602DE1FB6F059EE3E9CDB7325A4_inline(L_0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_2 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_1, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0015;
}
}
{
// return false;
return (bool)0;
}
IL_0015:
{
// var data = GetBaseEventData();
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_3 = VirtFuncInvoker0< BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * >::Invoke(19 /* UnityEngine.EventSystems.BaseEventData UnityEngine.EventSystems.BaseInputModule::GetBaseEventData() */, __this);
V_0 = L_3;
// ExecuteEvents.Execute(eventSystem.currentSelectedGameObject, data, ExecuteEvents.updateSelectedHandler);
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_4 = BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline(__this, /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_5 = EventSystem_get_currentSelectedGameObject_mE28E78D268403602DE1FB6F059EE3E9CDB7325A4_inline(L_4, /*hidden argument*/NULL);
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_6 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 * L_7 = ExecuteEvents_get_updateSelectedHandler_mE18DBB058B1EDC75D4F690A1E35003749BBC0567_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisIUpdateSelectedHandler_t460F9A1B3655B6DD49656995D451206631B4F4D0_mB329B68CB3C37B08F026C3535849785664C3444F(L_5, L_6, L_7, /*hidden argument*/ExecuteEvents_Execute_TisIUpdateSelectedHandler_t460F9A1B3655B6DD49656995D451206631B4F4D0_mB329B68CB3C37B08F026C3535849785664C3444F_RuntimeMethod_var);
// return data.used;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_8 = V_0;
bool L_9 = VirtFuncInvoker0< bool >::Invoke(6 /* System.Boolean UnityEngine.EventSystems.AbstractEventData::get_used() */, L_8);
return L_9;
}
}
// System.Void UnityEngine.EventSystems.StandaloneInputModule::ProcessMousePress(UnityEngine.EventSystems.PointerInputModule_MouseButtonEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_ProcessMousePress_m795F279F981E957475C724C010FA8A87F9BE6CF4 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * ___data0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StandaloneInputModule_ProcessMousePress_m795F279F981E957475C724C010FA8A87F9BE6CF4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * V_0 = NULL;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_1 = NULL;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 V_2;
memset((&V_2), 0, sizeof(V_2));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_3 = NULL;
float V_4 = 0.0f;
int32_t V_5 = 0;
{
// var pointerEvent = data.buttonData;
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_0 = ___data0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_1 = L_0->get_buttonData_1();
V_0 = L_1;
// var currentOverGo = pointerEvent.pointerCurrentRaycast.gameObject;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_2 = V_0;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_3 = PointerEventData_get_pointerCurrentRaycast_mE58F786484E13AF2E6C2706E20C889E7453E3A7A_inline(L_2, /*hidden argument*/NULL);
V_2 = L_3;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_4 = RaycastResult_get_gameObject_m9D77DEDFF498BAFE29A5F88E9F238400D04C8FDD_inline((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)(&V_2), /*hidden argument*/NULL);
V_1 = L_4;
// if (data.PressedThisFrame())
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_5 = ___data0;
bool L_6 = MouseButtonEventData_PressedThisFrame_m9437D00FBF27F51132154FA11AE9463377FDF86A(L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0118;
}
}
{
// pointerEvent.eligibleForClick = true;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_7 = V_0;
PointerEventData_set_eligibleForClick_m403F4068866F6A5CC9814729B3918C8FF1C21DBD_inline(L_7, (bool)1, /*hidden argument*/NULL);
// pointerEvent.delta = Vector2.zero;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_9 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
PointerEventData_set_delta_mDFEB23DF789E945F2CEC51C1F902CEE6AF674415_inline(L_8, L_9, /*hidden argument*/NULL);
// pointerEvent.dragging = false;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_10 = V_0;
PointerEventData_set_dragging_m4A4C08AB5A2173557EA62190F47AEFF1E9332821_inline(L_10, (bool)0, /*hidden argument*/NULL);
// pointerEvent.useDragThreshold = true;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_11 = V_0;
PointerEventData_set_useDragThreshold_mB5F06D15C2D1DB8D57F5B79CAEC3F58E4BF79684_inline(L_11, (bool)1, /*hidden argument*/NULL);
// pointerEvent.pressPosition = pointerEvent.position;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_12 = V_0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_13 = V_0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_14 = PointerEventData_get_position_mF25FC495A9C968C65BF34B5984616CBFB6332D55_inline(L_13, /*hidden argument*/NULL);
PointerEventData_set_pressPosition_m9DDE0BA5D6C31CBCDA926CEB62E51140F23013EA_inline(L_12, L_14, /*hidden argument*/NULL);
// pointerEvent.pointerPressRaycast = pointerEvent.pointerCurrentRaycast;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_15 = V_0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_16 = V_0;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_17 = PointerEventData_get_pointerCurrentRaycast_mE58F786484E13AF2E6C2706E20C889E7453E3A7A_inline(L_16, /*hidden argument*/NULL);
PointerEventData_set_pointerPressRaycast_m559F6127EC11B0F1B5EEB7BFCA478128DE8E5536_inline(L_15, L_17, /*hidden argument*/NULL);
// DeselectIfSelectionChanged(currentOverGo, pointerEvent);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_18 = V_1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_19 = V_0;
PointerInputModule_DeselectIfSelectionChanged_m3A32EDB68D6F489FD2A22CAB5A98D343E0634BDD(__this, L_18, L_19, /*hidden argument*/NULL);
// var newPressed = ExecuteEvents.ExecuteHierarchy(currentOverGo, pointerEvent, ExecuteEvents.pointerDownHandler);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_20 = V_1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_21 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E * L_22 = ExecuteEvents_get_pointerDownHandler_m8AE9CA906C86BBBEB75BA2D05F5DAB01F62519E3_inline(/*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_23 = ExecuteEvents_ExecuteHierarchy_TisIPointerDownHandler_tD9DAB9987B51AF8D4029CC24F52D17485684F4BF_m7109FC139AAD566492E6FABD873264235C450706(L_20, L_21, L_22, /*hidden argument*/ExecuteEvents_ExecuteHierarchy_TisIPointerDownHandler_tD9DAB9987B51AF8D4029CC24F52D17485684F4BF_m7109FC139AAD566492E6FABD873264235C450706_RuntimeMethod_var);
V_3 = L_23;
// if (newPressed == null)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_24 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_25 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_24, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_25)
{
goto IL_007e;
}
}
{
// newPressed = ExecuteEvents.GetEventHandler<IPointerClickHandler>(currentOverGo);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_26 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_27 = ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13_m96365BF6D04738F7FB08BF90EF5B2CB5AE01C1AD(L_26, /*hidden argument*/ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13_m96365BF6D04738F7FB08BF90EF5B2CB5AE01C1AD_RuntimeMethod_var);
V_3 = L_27;
}
IL_007e:
{
// float time = Time.unscaledTime;
float L_28 = Time_get_unscaledTime_m57F78B855097C5BA632CF9BE60667A9DEBCAA472(/*hidden argument*/NULL);
V_4 = L_28;
// if (newPressed == pointerEvent.lastPress)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_29 = V_3;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_30 = V_0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_31 = PointerEventData_get_lastPress_m6B005D786FC5B30ECD8D5BC068420D0C361357F4_inline(L_30, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_32 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_29, L_31, /*hidden argument*/NULL);
if (!L_32)
{
goto IL_00c8;
}
}
{
// var diffTime = time - pointerEvent.clickTime;
float L_33 = V_4;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_34 = V_0;
float L_35 = PointerEventData_get_clickTime_m023B539AF9EDF3782FD9406EC79F4742C855A3AF_inline(L_34, /*hidden argument*/NULL);
// if (diffTime < 0.3f)
if ((!(((float)((float)il2cpp_codegen_subtract((float)L_33, (float)L_35))) < ((float)(0.3f)))))
{
goto IL_00b7;
}
}
{
// ++pointerEvent.clickCount;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_36 = V_0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_37 = L_36;
int32_t L_38 = PointerEventData_get_clickCount_mF3A09A090E418FAAAFFE55668D9761C2F23BCE24_inline(L_37, /*hidden argument*/NULL);
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1));
int32_t L_39 = V_5;
PointerEventData_set_clickCount_mE56F748082C3D03A340345630FAC2B119451E003_inline(L_37, L_39, /*hidden argument*/NULL);
goto IL_00be;
}
IL_00b7:
{
// pointerEvent.clickCount = 1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_40 = V_0;
PointerEventData_set_clickCount_mE56F748082C3D03A340345630FAC2B119451E003_inline(L_40, 1, /*hidden argument*/NULL);
}
IL_00be:
{
// pointerEvent.clickTime = time;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_41 = V_0;
float L_42 = V_4;
PointerEventData_set_clickTime_mFB2FD722D5898826A1D57379C153B8023272653C_inline(L_41, L_42, /*hidden argument*/NULL);
// }
goto IL_00cf;
}
IL_00c8:
{
// pointerEvent.clickCount = 1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_43 = V_0;
PointerEventData_set_clickCount_mE56F748082C3D03A340345630FAC2B119451E003_inline(L_43, 1, /*hidden argument*/NULL);
}
IL_00cf:
{
// pointerEvent.pointerPress = newPressed;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_44 = V_0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_45 = V_3;
PointerEventData_set_pointerPress_mDFB3D803C9C4137799F9F1D57810DAAF08238327(L_44, L_45, /*hidden argument*/NULL);
// pointerEvent.rawPointerPress = currentOverGo;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_46 = V_0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_47 = V_1;
PointerEventData_set_rawPointerPress_mB7E32587FD73925A689A71FCAB560F9B78A233A5_inline(L_46, L_47, /*hidden argument*/NULL);
// pointerEvent.clickTime = time;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_48 = V_0;
float L_49 = V_4;
PointerEventData_set_clickTime_mFB2FD722D5898826A1D57379C153B8023272653C_inline(L_48, L_49, /*hidden argument*/NULL);
// pointerEvent.pointerDrag = ExecuteEvents.GetEventHandler<IDragHandler>(currentOverGo);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_50 = V_0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_51 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_52 = ExecuteEvents_GetEventHandler_TisIDragHandler_t196F681B5B4A5BFCDEA2A93CA0A75D504908D25B_m5A727D5FF70D5140242C84BF539D7BC0C4D84D99(L_51, /*hidden argument*/ExecuteEvents_GetEventHandler_TisIDragHandler_t196F681B5B4A5BFCDEA2A93CA0A75D504908D25B_m5A727D5FF70D5140242C84BF539D7BC0C4D84D99_RuntimeMethod_var);
PointerEventData_set_pointerDrag_m7E4BF3CF39EF734A80FA1994310FB09A5B095AF8_inline(L_50, L_52, /*hidden argument*/NULL);
// if (pointerEvent.pointerDrag != null)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_53 = V_0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_54 = PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline(L_53, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_55 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_54, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_55)
{
goto IL_0111;
}
}
{
// ExecuteEvents.Execute(pointerEvent.pointerDrag, pointerEvent, ExecuteEvents.initializePotentialDrag);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_56 = V_0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_57 = PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline(L_56, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_58 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 * L_59 = ExecuteEvents_get_initializePotentialDrag_m5B3D899EB08DA227EFBFC67778DDB98D7505C6D4_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisIInitializePotentialDragHandler_t56667A600E5BC5B8786753312DB9EDFE13455B45_m570C983BF282A5005C2BCA9BDFCDFF0805102D40(L_57, L_58, L_59, /*hidden argument*/ExecuteEvents_Execute_TisIInitializePotentialDragHandler_t56667A600E5BC5B8786753312DB9EDFE13455B45_m570C983BF282A5005C2BCA9BDFCDFF0805102D40_RuntimeMethod_var);
}
IL_0111:
{
// m_InputPointerEvent = pointerEvent;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_60 = V_0;
__this->set_m_InputPointerEvent_22(L_60);
}
IL_0118:
{
// if (data.ReleasedThisFrame())
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_61 = ___data0;
bool L_62 = MouseButtonEventData_ReleasedThisFrame_mD40162D1107F3C7EC2B560C415B20FD260051BB6(L_61, /*hidden argument*/NULL);
if (!L_62)
{
goto IL_0128;
}
}
{
// ReleaseMouse(pointerEvent, currentOverGo);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_63 = V_0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_64 = V_1;
StandaloneInputModule_ReleaseMouse_m1EE3D0D685BB09DAAE4556477420B7D05FE3F0C1(__this, L_63, L_64, /*hidden argument*/NULL);
}
IL_0128:
{
// }
return;
}
}
// UnityEngine.GameObject UnityEngine.EventSystems.StandaloneInputModule::GetCurrentFocusedGameObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * StandaloneInputModule_GetCurrentFocusedGameObject_mA354FCB4E2546E1F49D165207705A26D29EBB3D7 (StandaloneInputModule_tF3BDE3C0D374D1A0C87654254FA5E74F6B8C1EF5 * __this, const RuntimeMethod* method)
{
{
// return m_CurrentFocusedGameObject;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = __this->get_m_CurrentFocusedGameObject_21();
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.EventSystems.TouchInputModule::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchInputModule__ctor_m170CD0EBE44E63A7061C8EA789455F21D0CB28ED (TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945 * __this, const RuntimeMethod* method)
{
{
// protected TouchInputModule()
PointerInputModule__ctor_m1E5E97188BEB6F225E167E5D2BA6DAEF4BFA3510(__this, /*hidden argument*/NULL);
// {}
return;
}
}
// System.Boolean UnityEngine.EventSystems.TouchInputModule::get_allowActivationOnStandalone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchInputModule_get_allowActivationOnStandalone_mEC3885BA609BB734A3E8D2966B6CE6EF84789DBA (TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945 * __this, const RuntimeMethod* method)
{
{
// get { return m_ForceModuleActive; }
bool L_0 = __this->get_m_ForceModuleActive_19();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.TouchInputModule::set_allowActivationOnStandalone(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchInputModule_set_allowActivationOnStandalone_mB68D39F944C1E53061FADE6C67249B0A850168AA (TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// set { m_ForceModuleActive = value; }
bool L_0 = ___value0;
__this->set_m_ForceModuleActive_19(L_0);
// set { m_ForceModuleActive = value; }
return;
}
}
// System.Boolean UnityEngine.EventSystems.TouchInputModule::get_forceModuleActive()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchInputModule_get_forceModuleActive_m000AEC6C27D5CA88EA2B87C33C9991F4F50D007F (TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945 * __this, const RuntimeMethod* method)
{
{
// get { return m_ForceModuleActive; }
bool L_0 = __this->get_m_ForceModuleActive_19();
return L_0;
}
}
// System.Void UnityEngine.EventSystems.TouchInputModule::set_forceModuleActive(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchInputModule_set_forceModuleActive_m75A21D5518C85738F24D394A54981CC8BE4BC9D4 (TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// set { m_ForceModuleActive = value; }
bool L_0 = ___value0;
__this->set_m_ForceModuleActive_19(L_0);
// set { m_ForceModuleActive = value; }
return;
}
}
// System.Void UnityEngine.EventSystems.TouchInputModule::UpdateModule()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchInputModule_UpdateModule_mAA1097F92F5F1808251CB8D9BFD124AE2663AEDA (TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TouchInputModule_UpdateModule_mAA1097F92F5F1808251CB8D9BFD124AE2663AEDA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (!eventSystem.isFocused)
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_0 = BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline(__this, /*hidden argument*/NULL);
bool L_1 = EventSystem_get_isFocused_mB7275507B3AFEC15722B1F128CACB1BA578AEC3B_inline(L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0058;
}
}
{
// if (m_InputPointerEvent != null && m_InputPointerEvent.pointerDrag != null && m_InputPointerEvent.dragging)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_2 = __this->get_m_InputPointerEvent_18();
if (!L_2)
{
goto IL_0051;
}
}
{
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_3 = __this->get_m_InputPointerEvent_18();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_4 = PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline(L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_5 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_4, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0051;
}
}
{
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_6 = __this->get_m_InputPointerEvent_18();
bool L_7 = PointerEventData_get_dragging_mA3B420FFEB0856189D7A7646AA00A981C745D4B4_inline(L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0051;
}
}
{
// ExecuteEvents.Execute(m_InputPointerEvent.pointerDrag, m_InputPointerEvent, ExecuteEvents.endDragHandler);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_8 = __this->get_m_InputPointerEvent_18();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_9 = PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline(L_8, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_10 = __this->get_m_InputPointerEvent_18();
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 * L_11 = ExecuteEvents_get_endDragHandler_m23B60D3E3873043263069A3C3145393475690769_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisIEndDragHandler_tA6045DEE83CD2C06AC9409CBE183B10E3C0B9070_m31C9832573004F91088F89FD7BB28BFA2777FBF4(L_9, L_10, L_11, /*hidden argument*/ExecuteEvents_Execute_TisIEndDragHandler_tA6045DEE83CD2C06AC9409CBE183B10E3C0B9070_m31C9832573004F91088F89FD7BB28BFA2777FBF4_RuntimeMethod_var);
}
IL_0051:
{
// m_InputPointerEvent = null;
__this->set_m_InputPointerEvent_18((PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 *)NULL);
}
IL_0058:
{
// m_LastMousePosition = m_MousePosition;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_12 = __this->get_m_MousePosition_17();
__this->set_m_LastMousePosition_16(L_12);
// m_MousePosition = input.mousePosition;
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_13 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_14 = VirtFuncInvoker0< Vector2_tA85D2DD88578276CA8A8796756458277E72D073D >::Invoke(26 /* UnityEngine.Vector2 UnityEngine.EventSystems.BaseInput::get_mousePosition() */, L_13);
__this->set_m_MousePosition_17(L_14);
// }
return;
}
}
// System.Boolean UnityEngine.EventSystems.TouchInputModule::IsModuleSupported()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchInputModule_IsModuleSupported_m0F4864F8FCBCA2AF3820A53EB3D8634FAB6763E5 (TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945 * __this, const RuntimeMethod* method)
{
{
// return forceModuleActive || input.touchSupported;
bool L_0 = TouchInputModule_get_forceModuleActive_m000AEC6C27D5CA88EA2B87C33C9991F4F50D007F_inline(__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_0014;
}
}
{
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_1 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
bool L_2 = VirtFuncInvoker0< bool >::Invoke(28 /* System.Boolean UnityEngine.EventSystems.BaseInput::get_touchSupported() */, L_1);
return L_2;
}
IL_0014:
{
return (bool)1;
}
}
// System.Boolean UnityEngine.EventSystems.TouchInputModule::ShouldActivateModule()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchInputModule_ShouldActivateModule_mB2F45197C70AC23D1250782612B10ACBC1262022 (TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TouchInputModule_ShouldActivateModule_mB2F45197C70AC23D1250782612B10ACBC1262022_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_0;
memset((&V_0), 0, sizeof(V_0));
{
// if (!base.ShouldActivateModule())
bool L_0 = BaseInputModule_ShouldActivateModule_mA3CFFC349E1188C750346FC1B52F44D770104BCD(__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_000a;
}
}
{
// return false;
return (bool)0;
}
IL_000a:
{
// if (m_ForceModuleActive)
bool L_1 = __this->get_m_ForceModuleActive_19();
if (!L_1)
{
goto IL_0014;
}
}
{
// return true;
return (bool)1;
}
IL_0014:
{
// if (UseFakeInput())
bool L_2 = TouchInputModule_UseFakeInput_m2DE0550826DD4CA1249AB4AC2315DCA7F3AE571A(__this, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_004a;
}
}
{
// bool wantsEnable = input.GetMouseButtonDown(0);
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_3 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
bool L_4 = VirtFuncInvoker1< bool, int32_t >::Invoke(23 /* System.Boolean UnityEngine.EventSystems.BaseInput::GetMouseButtonDown(System.Int32) */, L_3, 0);
// wantsEnable |= (m_MousePosition - m_LastMousePosition).sqrMagnitude > 0.0f;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_5 = __this->get_m_MousePosition_17();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_6 = __this->get_m_LastMousePosition_16();
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_7 = Vector2_op_Subtraction_m2B347E4311EDBBBF27573E34899D2492E6B063C0(L_5, L_6, /*hidden argument*/NULL);
V_0 = L_7;
float L_8 = Vector2_get_sqrMagnitude_mAEE10A8ECE7D5754E10727BA8C9068A759AD7002((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&V_0), /*hidden argument*/NULL);
// return wantsEnable;
return (bool)((int32_t)((int32_t)L_4|(int32_t)((((float)L_8) > ((float)(0.0f)))? 1 : 0)));
}
IL_004a:
{
// if (input.touchCount > 0)
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_9 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
int32_t L_10 = VirtFuncInvoker0< int32_t >::Invoke(29 /* System.Int32 UnityEngine.EventSystems.BaseInput::get_touchCount() */, L_9);
if ((((int32_t)L_10) <= ((int32_t)0)))
{
goto IL_005a;
}
}
{
// return true;
return (bool)1;
}
IL_005a:
{
// return false;
return (bool)0;
}
}
// System.Boolean UnityEngine.EventSystems.TouchInputModule::UseFakeInput()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchInputModule_UseFakeInput_m2DE0550826DD4CA1249AB4AC2315DCA7F3AE571A (TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945 * __this, const RuntimeMethod* method)
{
{
// return !input.touchSupported;
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_0 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
bool L_1 = VirtFuncInvoker0< bool >::Invoke(28 /* System.Boolean UnityEngine.EventSystems.BaseInput::get_touchSupported() */, L_0);
return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
}
}
// System.Void UnityEngine.EventSystems.TouchInputModule::Process()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchInputModule_Process_mA3BE6F717B77FE0267EBF12C53E9EA990E40EE48 (TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945 * __this, const RuntimeMethod* method)
{
{
// if (UseFakeInput())
bool L_0 = TouchInputModule_UseFakeInput_m2DE0550826DD4CA1249AB4AC2315DCA7F3AE571A(__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_000f;
}
}
{
// FakeTouches();
TouchInputModule_FakeTouches_mB10F6B25D8CFACA3FD96C1823E6E4FF6427A5663(__this, /*hidden argument*/NULL);
return;
}
IL_000f:
{
// ProcessTouchEvents();
TouchInputModule_ProcessTouchEvents_m6A97A06586A000FF8C4C14DEEEE64E6876A79F08(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.EventSystems.TouchInputModule::FakeTouches()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchInputModule_FakeTouches_mB10F6B25D8CFACA3FD96C1823E6E4FF6427A5663 (TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TouchInputModule_FakeTouches_mB10F6B25D8CFACA3FD96C1823E6E4FF6427A5663_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * V_0 = NULL;
{
// var pointerData = GetMousePointerEventData(0);
MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 * L_0 = VirtFuncInvoker1< MouseState_t4D6249AEF3F24542B7F13D49020EC1B8DC2F05D7 *, int32_t >::Invoke(27 /* UnityEngine.EventSystems.PointerInputModule/MouseState UnityEngine.EventSystems.PointerInputModule::GetMousePointerEventData(System.Int32) */, __this, 0);
// var leftPressData = pointerData.GetButtonState(PointerEventData.InputButton.Left).eventData;
ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * L_1 = MouseState_GetButtonState_m0C2884609F720A284C72EAEF061C781F4874CCAE(L_0, 0, /*hidden argument*/NULL);
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_2 = ButtonState_get_eventData_mA9D054D526473A2481A997758CDDEB022E67351D_inline(L_1, /*hidden argument*/NULL);
V_0 = L_2;
// if (leftPressData.PressedThisFrame())
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_3 = V_0;
bool L_4 = MouseButtonEventData_PressedThisFrame_m9437D00FBF27F51132154FA11AE9463377FDF86A(L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_002b;
}
}
{
// leftPressData.buttonData.delta = Vector2.zero;
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_5 = V_0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_6 = L_5->get_buttonData_1();
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_7 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
PointerEventData_set_delta_mDFEB23DF789E945F2CEC51C1F902CEE6AF674415_inline(L_6, L_7, /*hidden argument*/NULL);
}
IL_002b:
{
// ProcessTouchPress(leftPressData.buttonData, leftPressData.PressedThisFrame(), leftPressData.ReleasedThisFrame());
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_8 = V_0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_9 = L_8->get_buttonData_1();
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_10 = V_0;
bool L_11 = MouseButtonEventData_PressedThisFrame_m9437D00FBF27F51132154FA11AE9463377FDF86A(L_10, /*hidden argument*/NULL);
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_12 = V_0;
bool L_13 = MouseButtonEventData_ReleasedThisFrame_mD40162D1107F3C7EC2B560C415B20FD260051BB6(L_12, /*hidden argument*/NULL);
TouchInputModule_ProcessTouchPress_m10A4854C822E110906745CFB1EEAF846F48D2949(__this, L_9, L_11, L_13, /*hidden argument*/NULL);
// if (input.GetMouseButton(0))
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_14 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
bool L_15 = VirtFuncInvoker1< bool, int32_t >::Invoke(25 /* System.Boolean UnityEngine.EventSystems.BaseInput::GetMouseButton(System.Int32) */, L_14, 0);
if (!L_15)
{
goto IL_0069;
}
}
{
// ProcessMove(leftPressData.buttonData);
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_16 = V_0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_17 = L_16->get_buttonData_1();
VirtActionInvoker1< PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * >::Invoke(28 /* System.Void UnityEngine.EventSystems.PointerInputModule::ProcessMove(UnityEngine.EventSystems.PointerEventData) */, __this, L_17);
// ProcessDrag(leftPressData.buttonData);
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_18 = V_0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_19 = L_18->get_buttonData_1();
VirtActionInvoker1< PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * >::Invoke(29 /* System.Void UnityEngine.EventSystems.PointerInputModule::ProcessDrag(UnityEngine.EventSystems.PointerEventData) */, __this, L_19);
}
IL_0069:
{
// }
return;
}
}
// System.Void UnityEngine.EventSystems.TouchInputModule::ProcessTouchEvents()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchInputModule_ProcessTouchEvents_m6A97A06586A000FF8C4C14DEEEE64E6876A79F08 (TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 V_1;
memset((&V_1), 0, sizeof(V_1));
bool V_2 = false;
bool V_3 = false;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * V_4 = NULL;
{
// for (int i = 0; i < input.touchCount; ++i)
V_0 = 0;
goto IL_0053;
}
IL_0004:
{
// Touch touch = input.GetTouch(i);
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_0 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
int32_t L_1 = V_0;
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 L_2 = VirtFuncInvoker1< Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 , int32_t >::Invoke(30 /* UnityEngine.Touch UnityEngine.EventSystems.BaseInput::GetTouch(System.Int32) */, L_0, L_1);
V_1 = L_2;
// if (touch.type == TouchType.Indirect)
int32_t L_3 = Touch_get_type_mAF919D12756ABA000A17146E82FDDFCEBFD6EEA9((Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 *)(&V_1), /*hidden argument*/NULL);
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_004f;
}
}
{
// var pointer = GetTouchPointerEventData(touch, out pressed, out released);
Touch_tAACD32535FF3FE5DD91125E0B6987B93C68D2DE8 L_4 = V_1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_5 = PointerInputModule_GetTouchPointerEventData_m630FA2AD7438552F7AF904ED42EA90FADD910055(__this, L_4, (bool*)(&V_3), (bool*)(&V_2), /*hidden argument*/NULL);
V_4 = L_5;
// ProcessTouchPress(pointer, pressed, released);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_6 = V_4;
bool L_7 = V_3;
bool L_8 = V_2;
TouchInputModule_ProcessTouchPress_m10A4854C822E110906745CFB1EEAF846F48D2949(__this, L_6, L_7, L_8, /*hidden argument*/NULL);
// if (!released)
bool L_9 = V_2;
if (L_9)
{
goto IL_0047;
}
}
{
// ProcessMove(pointer);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_10 = V_4;
VirtActionInvoker1< PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * >::Invoke(28 /* System.Void UnityEngine.EventSystems.PointerInputModule::ProcessMove(UnityEngine.EventSystems.PointerEventData) */, __this, L_10);
// ProcessDrag(pointer);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_11 = V_4;
VirtActionInvoker1< PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * >::Invoke(29 /* System.Void UnityEngine.EventSystems.PointerInputModule::ProcessDrag(UnityEngine.EventSystems.PointerEventData) */, __this, L_11);
// }
goto IL_004f;
}
IL_0047:
{
// RemovePointerData(pointer);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_12 = V_4;
PointerInputModule_RemovePointerData_mDDADB278A6A01D38C46631A9531C62C17B4DEBEA(__this, L_12, /*hidden argument*/NULL);
}
IL_004f:
{
// for (int i = 0; i < input.touchCount; ++i)
int32_t L_13 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
}
IL_0053:
{
// for (int i = 0; i < input.touchCount; ++i)
int32_t L_14 = V_0;
BaseInput_t75E14D6E10222455BEB43FA300F478BEAB02DF82 * L_15 = BaseInputModule_get_input_m385A99609A705346D5288D047EE17374ED406BE7(__this, /*hidden argument*/NULL);
int32_t L_16 = VirtFuncInvoker0< int32_t >::Invoke(29 /* System.Int32 UnityEngine.EventSystems.BaseInput::get_touchCount() */, L_15);
if ((((int32_t)L_14) < ((int32_t)L_16)))
{
goto IL_0004;
}
}
{
// }
return;
}
}
// System.Void UnityEngine.EventSystems.TouchInputModule::ProcessTouchPress(UnityEngine.EventSystems.PointerEventData,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchInputModule_ProcessTouchPress_m10A4854C822E110906745CFB1EEAF846F48D2949 (TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945 * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___pointerEvent0, bool ___pressed1, bool ___released2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TouchInputModule_ProcessTouchPress_m10A4854C822E110906745CFB1EEAF846F48D2949_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_0 = NULL;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 V_1;
memset((&V_1), 0, sizeof(V_1));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_2 = NULL;
float V_3 = 0.0f;
int32_t V_4 = 0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_5 = NULL;
{
// var currentOverGo = pointerEvent.pointerCurrentRaycast.gameObject;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_0 = ___pointerEvent0;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_1 = PointerEventData_get_pointerCurrentRaycast_mE58F786484E13AF2E6C2706E20C889E7453E3A7A_inline(L_0, /*hidden argument*/NULL);
V_1 = L_1;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_2 = RaycastResult_get_gameObject_m9D77DEDFF498BAFE29A5F88E9F238400D04C8FDD_inline((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)(&V_1), /*hidden argument*/NULL);
V_0 = L_2;
// if (pressed)
bool L_3 = ___pressed1;
if (!L_3)
{
goto IL_0125;
}
}
{
// pointerEvent.eligibleForClick = true;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_4 = ___pointerEvent0;
PointerEventData_set_eligibleForClick_m403F4068866F6A5CC9814729B3918C8FF1C21DBD_inline(L_4, (bool)1, /*hidden argument*/NULL);
// pointerEvent.delta = Vector2.zero;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_5 = ___pointerEvent0;
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_6 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
PointerEventData_set_delta_mDFEB23DF789E945F2CEC51C1F902CEE6AF674415_inline(L_5, L_6, /*hidden argument*/NULL);
// pointerEvent.dragging = false;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_7 = ___pointerEvent0;
PointerEventData_set_dragging_m4A4C08AB5A2173557EA62190F47AEFF1E9332821_inline(L_7, (bool)0, /*hidden argument*/NULL);
// pointerEvent.useDragThreshold = true;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_8 = ___pointerEvent0;
PointerEventData_set_useDragThreshold_mB5F06D15C2D1DB8D57F5B79CAEC3F58E4BF79684_inline(L_8, (bool)1, /*hidden argument*/NULL);
// pointerEvent.pressPosition = pointerEvent.position;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_9 = ___pointerEvent0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_10 = ___pointerEvent0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_11 = PointerEventData_get_position_mF25FC495A9C968C65BF34B5984616CBFB6332D55_inline(L_10, /*hidden argument*/NULL);
PointerEventData_set_pressPosition_m9DDE0BA5D6C31CBCDA926CEB62E51140F23013EA_inline(L_9, L_11, /*hidden argument*/NULL);
// pointerEvent.pointerPressRaycast = pointerEvent.pointerCurrentRaycast;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_12 = ___pointerEvent0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_13 = ___pointerEvent0;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_14 = PointerEventData_get_pointerCurrentRaycast_mE58F786484E13AF2E6C2706E20C889E7453E3A7A_inline(L_13, /*hidden argument*/NULL);
PointerEventData_set_pointerPressRaycast_m559F6127EC11B0F1B5EEB7BFCA478128DE8E5536_inline(L_12, L_14, /*hidden argument*/NULL);
// DeselectIfSelectionChanged(currentOverGo, pointerEvent);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_15 = V_0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_16 = ___pointerEvent0;
PointerInputModule_DeselectIfSelectionChanged_m3A32EDB68D6F489FD2A22CAB5A98D343E0634BDD(__this, L_15, L_16, /*hidden argument*/NULL);
// if (pointerEvent.pointerEnter != currentOverGo)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_17 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_18 = PointerEventData_get_pointerEnter_m47E87ACB1557B6380D0E66F57C2F9FFFD5E86DC2_inline(L_17, /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_19 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_20 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_18, L_19, /*hidden argument*/NULL);
if (!L_20)
{
goto IL_0072;
}
}
{
// HandlePointerExitAndEnter(pointerEvent, currentOverGo);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_21 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_22 = V_0;
BaseInputModule_HandlePointerExitAndEnter_mD32C0E209A19F78D07D964D162188D13762463BF(__this, L_21, L_22, /*hidden argument*/NULL);
// pointerEvent.pointerEnter = currentOverGo;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_23 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_24 = V_0;
PointerEventData_set_pointerEnter_mCA947226697EEC596FD611B31C10D7CE981026CC_inline(L_23, L_24, /*hidden argument*/NULL);
}
IL_0072:
{
// var newPressed = ExecuteEvents.ExecuteHierarchy(currentOverGo, pointerEvent, ExecuteEvents.pointerDownHandler);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_25 = V_0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_26 = ___pointerEvent0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E * L_27 = ExecuteEvents_get_pointerDownHandler_m8AE9CA906C86BBBEB75BA2D05F5DAB01F62519E3_inline(/*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_28 = ExecuteEvents_ExecuteHierarchy_TisIPointerDownHandler_tD9DAB9987B51AF8D4029CC24F52D17485684F4BF_m7109FC139AAD566492E6FABD873264235C450706(L_25, L_26, L_27, /*hidden argument*/ExecuteEvents_ExecuteHierarchy_TisIPointerDownHandler_tD9DAB9987B51AF8D4029CC24F52D17485684F4BF_m7109FC139AAD566492E6FABD873264235C450706_RuntimeMethod_var);
V_2 = L_28;
// if (newPressed == null)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_29 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_30 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_29, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_30)
{
goto IL_008f;
}
}
{
// newPressed = ExecuteEvents.GetEventHandler<IPointerClickHandler>(currentOverGo);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_31 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_32 = ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13_m96365BF6D04738F7FB08BF90EF5B2CB5AE01C1AD(L_31, /*hidden argument*/ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13_m96365BF6D04738F7FB08BF90EF5B2CB5AE01C1AD_RuntimeMethod_var);
V_2 = L_32;
}
IL_008f:
{
// float time = Time.unscaledTime;
float L_33 = Time_get_unscaledTime_m57F78B855097C5BA632CF9BE60667A9DEBCAA472(/*hidden argument*/NULL);
V_3 = L_33;
// if (newPressed == pointerEvent.lastPress)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_34 = V_2;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_35 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_36 = PointerEventData_get_lastPress_m6B005D786FC5B30ECD8D5BC068420D0C361357F4_inline(L_35, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_37 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_34, L_36, /*hidden argument*/NULL);
if (!L_37)
{
goto IL_00d6;
}
}
{
// var diffTime = time - pointerEvent.clickTime;
float L_38 = V_3;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_39 = ___pointerEvent0;
float L_40 = PointerEventData_get_clickTime_m023B539AF9EDF3782FD9406EC79F4742C855A3AF_inline(L_39, /*hidden argument*/NULL);
// if (diffTime < 0.3f)
if ((!(((float)((float)il2cpp_codegen_subtract((float)L_38, (float)L_40))) < ((float)(0.3f)))))
{
goto IL_00c6;
}
}
{
// ++pointerEvent.clickCount;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_41 = ___pointerEvent0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_42 = L_41;
int32_t L_43 = PointerEventData_get_clickCount_mF3A09A090E418FAAAFFE55668D9761C2F23BCE24_inline(L_42, /*hidden argument*/NULL);
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1));
int32_t L_44 = V_4;
PointerEventData_set_clickCount_mE56F748082C3D03A340345630FAC2B119451E003_inline(L_42, L_44, /*hidden argument*/NULL);
goto IL_00cd;
}
IL_00c6:
{
// pointerEvent.clickCount = 1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_45 = ___pointerEvent0;
PointerEventData_set_clickCount_mE56F748082C3D03A340345630FAC2B119451E003_inline(L_45, 1, /*hidden argument*/NULL);
}
IL_00cd:
{
// pointerEvent.clickTime = time;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_46 = ___pointerEvent0;
float L_47 = V_3;
PointerEventData_set_clickTime_mFB2FD722D5898826A1D57379C153B8023272653C_inline(L_46, L_47, /*hidden argument*/NULL);
// }
goto IL_00dd;
}
IL_00d6:
{
// pointerEvent.clickCount = 1;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_48 = ___pointerEvent0;
PointerEventData_set_clickCount_mE56F748082C3D03A340345630FAC2B119451E003_inline(L_48, 1, /*hidden argument*/NULL);
}
IL_00dd:
{
// pointerEvent.pointerPress = newPressed;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_49 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_50 = V_2;
PointerEventData_set_pointerPress_mDFB3D803C9C4137799F9F1D57810DAAF08238327(L_49, L_50, /*hidden argument*/NULL);
// pointerEvent.rawPointerPress = currentOverGo;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_51 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_52 = V_0;
PointerEventData_set_rawPointerPress_mB7E32587FD73925A689A71FCAB560F9B78A233A5_inline(L_51, L_52, /*hidden argument*/NULL);
// pointerEvent.clickTime = time;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_53 = ___pointerEvent0;
float L_54 = V_3;
PointerEventData_set_clickTime_mFB2FD722D5898826A1D57379C153B8023272653C_inline(L_53, L_54, /*hidden argument*/NULL);
// pointerEvent.pointerDrag = ExecuteEvents.GetEventHandler<IDragHandler>(currentOverGo);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_55 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_56 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_57 = ExecuteEvents_GetEventHandler_TisIDragHandler_t196F681B5B4A5BFCDEA2A93CA0A75D504908D25B_m5A727D5FF70D5140242C84BF539D7BC0C4D84D99(L_56, /*hidden argument*/ExecuteEvents_GetEventHandler_TisIDragHandler_t196F681B5B4A5BFCDEA2A93CA0A75D504908D25B_m5A727D5FF70D5140242C84BF539D7BC0C4D84D99_RuntimeMethod_var);
PointerEventData_set_pointerDrag_m7E4BF3CF39EF734A80FA1994310FB09A5B095AF8_inline(L_55, L_57, /*hidden argument*/NULL);
// if (pointerEvent.pointerDrag != null)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_58 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_59 = PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline(L_58, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_60 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_59, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_60)
{
goto IL_011e;
}
}
{
// ExecuteEvents.Execute(pointerEvent.pointerDrag, pointerEvent, ExecuteEvents.initializePotentialDrag);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_61 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_62 = PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline(L_61, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_63 = ___pointerEvent0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 * L_64 = ExecuteEvents_get_initializePotentialDrag_m5B3D899EB08DA227EFBFC67778DDB98D7505C6D4_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisIInitializePotentialDragHandler_t56667A600E5BC5B8786753312DB9EDFE13455B45_m570C983BF282A5005C2BCA9BDFCDFF0805102D40(L_62, L_63, L_64, /*hidden argument*/ExecuteEvents_Execute_TisIInitializePotentialDragHandler_t56667A600E5BC5B8786753312DB9EDFE13455B45_m570C983BF282A5005C2BCA9BDFCDFF0805102D40_RuntimeMethod_var);
}
IL_011e:
{
// m_InputPointerEvent = pointerEvent;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_65 = ___pointerEvent0;
__this->set_m_InputPointerEvent_18(L_65);
}
IL_0125:
{
// if (released)
bool L_66 = ___released2;
if (!L_66)
{
goto IL_01fe;
}
}
{
// ExecuteEvents.Execute(pointerEvent.pointerPress, pointerEvent, ExecuteEvents.pointerUpHandler);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_67 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_68 = PointerEventData_get_pointerPress_m7B8C9E16E2B9E86C4DA93A2A2E3A58E56536406B_inline(L_67, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_69 = ___pointerEvent0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 * L_70 = ExecuteEvents_get_pointerUpHandler_m7EDDD1128DC04344CECEBCB9B6B7CD064F7FAED2_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisIPointerUpHandler_tAF005E3FEF3EA2D9DDA99FAA488955AA8B392102_mE7822304A5DF78074F7FE7B2255BCC9F70471C99(L_68, L_69, L_70, /*hidden argument*/ExecuteEvents_Execute_TisIPointerUpHandler_tAF005E3FEF3EA2D9DDA99FAA488955AA8B392102_mE7822304A5DF78074F7FE7B2255BCC9F70471C99_RuntimeMethod_var);
// var pointerUpHandler = ExecuteEvents.GetEventHandler<IPointerClickHandler>(currentOverGo);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_71 = V_0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_72 = ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13_m96365BF6D04738F7FB08BF90EF5B2CB5AE01C1AD(L_71, /*hidden argument*/ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13_m96365BF6D04738F7FB08BF90EF5B2CB5AE01C1AD_RuntimeMethod_var);
V_5 = L_72;
// if (pointerEvent.pointerPress == pointerUpHandler && pointerEvent.eligibleForClick)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_73 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_74 = PointerEventData_get_pointerPress_m7B8C9E16E2B9E86C4DA93A2A2E3A58E56536406B_inline(L_73, /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_75 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_76 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_74, L_75, /*hidden argument*/NULL);
if (!L_76)
{
goto IL_0170;
}
}
{
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_77 = ___pointerEvent0;
bool L_78 = PointerEventData_get_eligibleForClick_m2039146EE2E6940436E592D0655FBA06096DBFFA_inline(L_77, /*hidden argument*/NULL);
if (!L_78)
{
goto IL_0170;
}
}
{
// ExecuteEvents.Execute(pointerEvent.pointerPress, pointerEvent, ExecuteEvents.pointerClickHandler);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_79 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_80 = PointerEventData_get_pointerPress_m7B8C9E16E2B9E86C4DA93A2A2E3A58E56536406B_inline(L_79, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_81 = ___pointerEvent0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E * L_82 = ExecuteEvents_get_pointerClickHandler_mA657195AEC7D0A42036CBCAC9AD48F215C3C69E3_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisIPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13_mA58C71DF6780888ADDA65BE907FBDC323D066ADB(L_80, L_81, L_82, /*hidden argument*/ExecuteEvents_Execute_TisIPointerClickHandler_t337D40B4F0C87DA190B55BF225ADB716F4ADCA13_mA58C71DF6780888ADDA65BE907FBDC323D066ADB_RuntimeMethod_var);
// }
goto IL_0193;
}
IL_0170:
{
// else if (pointerEvent.pointerDrag != null && pointerEvent.dragging)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_83 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_84 = PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline(L_83, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_85 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_84, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_85)
{
goto IL_0193;
}
}
{
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_86 = ___pointerEvent0;
bool L_87 = PointerEventData_get_dragging_mA3B420FFEB0856189D7A7646AA00A981C745D4B4_inline(L_86, /*hidden argument*/NULL);
if (!L_87)
{
goto IL_0193;
}
}
{
// ExecuteEvents.ExecuteHierarchy(currentOverGo, pointerEvent, ExecuteEvents.dropHandler);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_88 = V_0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_89 = ___pointerEvent0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 * L_90 = ExecuteEvents_get_dropHandler_mC2362B96C6CD3628B83722F4B7C73E707C6C1EAF_inline(/*hidden argument*/NULL);
ExecuteEvents_ExecuteHierarchy_TisIDropHandler_t617E86EDCC6B18A39D69DFF444D5358072B524C3_m42750090DC2A40178705596286003B1346E093AE(L_88, L_89, L_90, /*hidden argument*/ExecuteEvents_ExecuteHierarchy_TisIDropHandler_t617E86EDCC6B18A39D69DFF444D5358072B524C3_m42750090DC2A40178705596286003B1346E093AE_RuntimeMethod_var);
}
IL_0193:
{
// pointerEvent.eligibleForClick = false;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_91 = ___pointerEvent0;
PointerEventData_set_eligibleForClick_m403F4068866F6A5CC9814729B3918C8FF1C21DBD_inline(L_91, (bool)0, /*hidden argument*/NULL);
// pointerEvent.pointerPress = null;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_92 = ___pointerEvent0;
PointerEventData_set_pointerPress_mDFB3D803C9C4137799F9F1D57810DAAF08238327(L_92, (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL, /*hidden argument*/NULL);
// pointerEvent.rawPointerPress = null;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_93 = ___pointerEvent0;
PointerEventData_set_rawPointerPress_mB7E32587FD73925A689A71FCAB560F9B78A233A5_inline(L_93, (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL, /*hidden argument*/NULL);
// if (pointerEvent.pointerDrag != null && pointerEvent.dragging)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_94 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_95 = PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline(L_94, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_96 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_95, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_96)
{
goto IL_01d0;
}
}
{
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_97 = ___pointerEvent0;
bool L_98 = PointerEventData_get_dragging_mA3B420FFEB0856189D7A7646AA00A981C745D4B4_inline(L_97, /*hidden argument*/NULL);
if (!L_98)
{
goto IL_01d0;
}
}
{
// ExecuteEvents.Execute(pointerEvent.pointerDrag, pointerEvent, ExecuteEvents.endDragHandler);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_99 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_100 = PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline(L_99, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_101 = ___pointerEvent0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 * L_102 = ExecuteEvents_get_endDragHandler_m23B60D3E3873043263069A3C3145393475690769_inline(/*hidden argument*/NULL);
ExecuteEvents_Execute_TisIEndDragHandler_tA6045DEE83CD2C06AC9409CBE183B10E3C0B9070_m31C9832573004F91088F89FD7BB28BFA2777FBF4(L_100, L_101, L_102, /*hidden argument*/ExecuteEvents_Execute_TisIEndDragHandler_tA6045DEE83CD2C06AC9409CBE183B10E3C0B9070_m31C9832573004F91088F89FD7BB28BFA2777FBF4_RuntimeMethod_var);
}
IL_01d0:
{
// pointerEvent.dragging = false;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_103 = ___pointerEvent0;
PointerEventData_set_dragging_m4A4C08AB5A2173557EA62190F47AEFF1E9332821_inline(L_103, (bool)0, /*hidden argument*/NULL);
// pointerEvent.pointerDrag = null;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_104 = ___pointerEvent0;
PointerEventData_set_pointerDrag_m7E4BF3CF39EF734A80FA1994310FB09A5B095AF8_inline(L_104, (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL, /*hidden argument*/NULL);
// ExecuteEvents.ExecuteHierarchy(pointerEvent.pointerEnter, pointerEvent, ExecuteEvents.pointerExitHandler);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_105 = ___pointerEvent0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_106 = PointerEventData_get_pointerEnter_m47E87ACB1557B6380D0E66F57C2F9FFFD5E86DC2_inline(L_105, /*hidden argument*/NULL);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_107 = ___pointerEvent0;
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA * L_108 = ExecuteEvents_get_pointerExitHandler_mE5EC9537676A055EEE178A4E6B58D96F9B4AC301_inline(/*hidden argument*/NULL);
ExecuteEvents_ExecuteHierarchy_TisIPointerExitHandler_t5D65A773A15D990BC231F7C9FE221AB4417327FF_mE5F3CB5276F1AB80CC2D0DD03F13BDC8998E71AB(L_106, L_107, L_108, /*hidden argument*/ExecuteEvents_ExecuteHierarchy_TisIPointerExitHandler_t5D65A773A15D990BC231F7C9FE221AB4417327FF_mE5F3CB5276F1AB80CC2D0DD03F13BDC8998E71AB_RuntimeMethod_var);
// pointerEvent.pointerEnter = null;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_109 = ___pointerEvent0;
PointerEventData_set_pointerEnter_mCA947226697EEC596FD611B31C10D7CE981026CC_inline(L_109, (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL, /*hidden argument*/NULL);
// m_InputPointerEvent = pointerEvent;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_110 = ___pointerEvent0;
__this->set_m_InputPointerEvent_18(L_110);
}
IL_01fe:
{
// }
return;
}
}
// System.Void UnityEngine.EventSystems.TouchInputModule::DeactivateModule()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchInputModule_DeactivateModule_m33EF87C66E547851B2FB23168182DEB86066ACE1 (TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945 * __this, const RuntimeMethod* method)
{
{
// base.DeactivateModule();
BaseInputModule_DeactivateModule_m02E0A94E9EBC6793439FE1ABF81F2E84B79C7249(__this, /*hidden argument*/NULL);
// ClearSelection();
PointerInputModule_ClearSelection_m05E527F28FB39BEBA8FA27153DAE71C8E7FDC958(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.String UnityEngine.EventSystems.TouchInputModule::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TouchInputModule_ToString_m532F4130976306175BFCF9831A6F470346995BD2 (TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TouchInputModule_ToString_m532F4130976306175BFCF9831A6F470346995BD2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * V_1 = NULL;
Enumerator_t4A1A39D730A903621334A87D76E39D656515D0AF V_2;
memset((&V_2), 0, sizeof(V_2));
KeyValuePair_2_t04EF4D50839D67939265F84585D99769CEAC8413 V_3;
memset((&V_3), 0, sizeof(V_3));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
StringBuilder_t * G_B2_0 = NULL;
StringBuilder_t * G_B1_0 = NULL;
String_t* G_B3_0 = NULL;
StringBuilder_t * G_B3_1 = NULL;
{
// var sb = new StringBuilder();
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL);
V_0 = L_0;
// sb.AppendLine(UseFakeInput() ? "Input: Faked" : "Input: Touch");
StringBuilder_t * L_1 = V_0;
bool L_2 = TouchInputModule_UseFakeInput_m2DE0550826DD4CA1249AB4AC2315DCA7F3AE571A(__this, /*hidden argument*/NULL);
G_B1_0 = L_1;
if (L_2)
{
G_B2_0 = L_1;
goto IL_0016;
}
}
{
G_B3_0 = _stringLiteral4031A8B2594541E21BA9E8BEA517EEEE3F1F7835;
G_B3_1 = G_B1_0;
goto IL_001b;
}
IL_0016:
{
G_B3_0 = _stringLiteral722FEB9F2551722C44B4FF5999B3F955FBE8CE01;
G_B3_1 = G_B2_0;
}
IL_001b:
{
StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(G_B3_1, G_B3_0, /*hidden argument*/NULL);
// if (UseFakeInput())
bool L_3 = TouchInputModule_UseFakeInput_m2DE0550826DD4CA1249AB4AC2315DCA7F3AE571A(__this, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0043;
}
}
{
// var pointerData = GetLastPointerEventData(kMouseLeftId);
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_4 = PointerInputModule_GetLastPointerEventData_m709537DE2BCDD6D50C4C2F39B6A48C4D9A8A27F5(__this, (-1), /*hidden argument*/NULL);
V_1 = L_4;
// if (pointerData != null)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_5 = V_1;
if (!L_5)
{
goto IL_0086;
}
}
{
// sb.AppendLine(pointerData.ToString());
StringBuilder_t * L_6 = V_0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_7 = V_1;
String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_7);
StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_6, L_8, /*hidden argument*/NULL);
// }
goto IL_0086;
}
IL_0043:
{
// foreach (var pointerEventData in m_PointerData)
Dictionary_2_tC6CFDD93C6E3F120D81F876E847AFA4EC0F51750 * L_9 = ((PointerInputModule_tE8CB9BDC38DAF3162843E22541093DADDE1BB19C *)__this)->get_m_PointerData_14();
Enumerator_t4A1A39D730A903621334A87D76E39D656515D0AF L_10 = Dictionary_2_GetEnumerator_m7A5852A777771426770D52346C391F7E0DB03D84(L_9, /*hidden argument*/Dictionary_2_GetEnumerator_m7A5852A777771426770D52346C391F7E0DB03D84_RuntimeMethod_var);
V_2 = L_10;
}
IL_004f:
try
{ // begin try (depth: 1)
{
goto IL_006d;
}
IL_0051:
{
// foreach (var pointerEventData in m_PointerData)
KeyValuePair_2_t04EF4D50839D67939265F84585D99769CEAC8413 L_11 = Enumerator_get_Current_m6F5E214054911C62D43EC8EBD8F7074009887C93_inline((Enumerator_t4A1A39D730A903621334A87D76E39D656515D0AF *)(&V_2), /*hidden argument*/Enumerator_get_Current_m6F5E214054911C62D43EC8EBD8F7074009887C93_RuntimeMethod_var);
V_3 = L_11;
// sb.AppendLine(pointerEventData.ToString());
StringBuilder_t * L_12 = V_0;
String_t* L_13 = KeyValuePair_2_ToString_m53D0C9BBFAE30BCEBC3F3EBD0CC3554C231FA2E6((KeyValuePair_2_t04EF4D50839D67939265F84585D99769CEAC8413 *)(&V_3), /*hidden argument*/KeyValuePair_2_ToString_m53D0C9BBFAE30BCEBC3F3EBD0CC3554C231FA2E6_RuntimeMethod_var);
StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_12, L_13, /*hidden argument*/NULL);
}
IL_006d:
{
// foreach (var pointerEventData in m_PointerData)
bool L_14 = Enumerator_MoveNext_m9FBC1E9E4E9692134864389F3F259B5F913479D8((Enumerator_t4A1A39D730A903621334A87D76E39D656515D0AF *)(&V_2), /*hidden argument*/Enumerator_MoveNext_m9FBC1E9E4E9692134864389F3F259B5F913479D8_RuntimeMethod_var);
if (L_14)
{
goto IL_0051;
}
}
IL_0076:
{
IL2CPP_LEAVE(0x86, FINALLY_0078);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0078;
}
FINALLY_0078:
{ // begin finally (depth: 1)
Enumerator_Dispose_m4DE2E93425402C7818C5064E6C5E4029C952FEBB((Enumerator_t4A1A39D730A903621334A87D76E39D656515D0AF *)(&V_2), /*hidden argument*/Enumerator_Dispose_m4DE2E93425402C7818C5064E6C5E4029C952FEBB_RuntimeMethod_var);
IL2CPP_END_FINALLY(120)
} // end finally (depth: 1)
IL2CPP_CLEANUP(120)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x86, IL_0086)
}
IL_0086:
{
// return sb.ToString();
StringBuilder_t * L_15 = V_0;
String_t* L_16 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_15);
return L_16;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.EventSystems.UIBehaviour::Awake()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_Awake_m8283CBD45FF1CBA026DFD5F0319282EA464F8B33 (UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 * __this, const RuntimeMethod* method)
{
{
// {}
return;
}
}
// System.Void UnityEngine.EventSystems.UIBehaviour::OnEnable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnEnable_m4FF74AADA5E101F59DC5C19DCA82110F7482CB56 (UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 * __this, const RuntimeMethod* method)
{
{
// {}
return;
}
}
// System.Void UnityEngine.EventSystems.UIBehaviour::Start()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_Start_m9717CD32EA9B3C678EB0D73CCF59C801C5E5207C (UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 * __this, const RuntimeMethod* method)
{
{
// {}
return;
}
}
// System.Void UnityEngine.EventSystems.UIBehaviour::OnDisable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnDisable_m43F5502A18FCFFD355381A95175DC71E0D4005EC (UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 * __this, const RuntimeMethod* method)
{
{
// {}
return;
}
}
// System.Void UnityEngine.EventSystems.UIBehaviour::OnDestroy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnDestroy_m12CAEB3F5221B9D061148F6D8FBFD0FDD90636F0 (UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 * __this, const RuntimeMethod* method)
{
{
// {}
return;
}
}
// System.Boolean UnityEngine.EventSystems.UIBehaviour::IsActive()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UIBehaviour_IsActive_m88452BA640BCCC2769D3FBD0F3E82333A0936A16 (UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 * __this, const RuntimeMethod* method)
{
{
// return isActiveAndEnabled;
bool L_0 = Behaviour_get_isActiveAndEnabled_mC42DFCC1ECC2C94D52928FFE446CE7E266CA8B61(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Void UnityEngine.EventSystems.UIBehaviour::OnRectTransformDimensionsChange()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnRectTransformDimensionsChange_mE273C2FDE70B13C9BCCC07C0FC83322EC03CC470 (UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 * __this, const RuntimeMethod* method)
{
{
// {}
return;
}
}
// System.Void UnityEngine.EventSystems.UIBehaviour::OnBeforeTransformParentChanged()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnBeforeTransformParentChanged_mEA6FDD53F2468F7299110417A8B659B095A70EA5 (UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 * __this, const RuntimeMethod* method)
{
{
// {}
return;
}
}
// System.Void UnityEngine.EventSystems.UIBehaviour::OnTransformParentChanged()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnTransformParentChanged_mBB0F5D46FF7791D80FE6E4EE1932433246D5B7CB (UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 * __this, const RuntimeMethod* method)
{
{
// {}
return;
}
}
// System.Void UnityEngine.EventSystems.UIBehaviour::OnDidApplyAnimationProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnDidApplyAnimationProperties_m36C4FA9136D24E5F7EE389E17CDA2A3D581220DC (UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 * __this, const RuntimeMethod* method)
{
{
// {}
return;
}
}
// System.Void UnityEngine.EventSystems.UIBehaviour::OnCanvasGroupChanged()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnCanvasGroupChanged_mDB3CDCE40E08D3943F10655196188668D8A3F422 (UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 * __this, const RuntimeMethod* method)
{
{
// {}
return;
}
}
// System.Void UnityEngine.EventSystems.UIBehaviour::OnCanvasHierarchyChanged()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnCanvasHierarchyChanged_m5A9FF86F647810726B4AE9F8C15862F353FBDAFD (UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 * __this, const RuntimeMethod* method)
{
{
// {}
return;
}
}
// System.Boolean UnityEngine.EventSystems.UIBehaviour::IsDestroyed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UIBehaviour_IsDestroyed_m169BA727AB81FF96092471C152C845EBE944A269 (UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UIBehaviour_IsDestroyed_m169BA727AB81FF96092471C152C845EBE944A269_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// return this == null;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_0 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(__this, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
return L_0;
}
}
// System.Void UnityEngine.EventSystems.UIBehaviour::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour__ctor_m1B44EE4BDA3604F96C48379524B9907FEB15EB53 (UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 * __this, const RuntimeMethod* method)
{
{
MonoBehaviour__ctor_mEAEC84B222C60319D593E456D769B3311DFCEF97(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String UnityEngine.UI.AnimationTriggers::get_normalTrigger()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AnimationTriggers_get_normalTrigger_m523D4A64E6677159ED80FC7E30E08F33658B3FE0 (AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5 * __this, const RuntimeMethod* method)
{
{
// public string normalTrigger { get { return m_NormalTrigger; } set { m_NormalTrigger = value; } }
String_t* L_0 = __this->get_m_NormalTrigger_5();
return L_0;
}
}
// System.Void UnityEngine.UI.AnimationTriggers::set_normalTrigger(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationTriggers_set_normalTrigger_m8B1A7D283B031722F56F893F89578D4E14936A45 (AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string normalTrigger { get { return m_NormalTrigger; } set { m_NormalTrigger = value; } }
String_t* L_0 = ___value0;
__this->set_m_NormalTrigger_5(L_0);
// public string normalTrigger { get { return m_NormalTrigger; } set { m_NormalTrigger = value; } }
return;
}
}
// System.String UnityEngine.UI.AnimationTriggers::get_highlightedTrigger()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AnimationTriggers_get_highlightedTrigger_mA272B91B74330469F5732B2DE8624A62F5085B98 (AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5 * __this, const RuntimeMethod* method)
{
{
// public string highlightedTrigger { get { return m_HighlightedTrigger; } set { m_HighlightedTrigger = value; } }
String_t* L_0 = __this->get_m_HighlightedTrigger_6();
return L_0;
}
}
// System.Void UnityEngine.UI.AnimationTriggers::set_highlightedTrigger(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationTriggers_set_highlightedTrigger_m4DECB61F087B3DA559E97FE431E44ECA8A466609 (AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string highlightedTrigger { get { return m_HighlightedTrigger; } set { m_HighlightedTrigger = value; } }
String_t* L_0 = ___value0;
__this->set_m_HighlightedTrigger_6(L_0);
// public string highlightedTrigger { get { return m_HighlightedTrigger; } set { m_HighlightedTrigger = value; } }
return;
}
}
// System.String UnityEngine.UI.AnimationTriggers::get_pressedTrigger()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AnimationTriggers_get_pressedTrigger_m8D440CAC69B9DE329DA046D324BD61E3ED55FCD7 (AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5 * __this, const RuntimeMethod* method)
{
{
// public string pressedTrigger { get { return m_PressedTrigger; } set { m_PressedTrigger = value; } }
String_t* L_0 = __this->get_m_PressedTrigger_7();
return L_0;
}
}
// System.Void UnityEngine.UI.AnimationTriggers::set_pressedTrigger(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationTriggers_set_pressedTrigger_mB627531FBBC50BE9E3EA2B9EFE1A7C941F5942FB (AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string pressedTrigger { get { return m_PressedTrigger; } set { m_PressedTrigger = value; } }
String_t* L_0 = ___value0;
__this->set_m_PressedTrigger_7(L_0);
// public string pressedTrigger { get { return m_PressedTrigger; } set { m_PressedTrigger = value; } }
return;
}
}
// System.String UnityEngine.UI.AnimationTriggers::get_selectedTrigger()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AnimationTriggers_get_selectedTrigger_mCD9621B82B7E2AA88D2734C58BC6B07664BC976B (AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5 * __this, const RuntimeMethod* method)
{
{
// public string selectedTrigger { get { return m_SelectedTrigger; } set { m_SelectedTrigger = value; } }
String_t* L_0 = __this->get_m_SelectedTrigger_8();
return L_0;
}
}
// System.Void UnityEngine.UI.AnimationTriggers::set_selectedTrigger(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationTriggers_set_selectedTrigger_m9FB5C4728FA04DA1E22F2B55A2A4453481A6F501 (AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string selectedTrigger { get { return m_SelectedTrigger; } set { m_SelectedTrigger = value; } }
String_t* L_0 = ___value0;
__this->set_m_SelectedTrigger_8(L_0);
// public string selectedTrigger { get { return m_SelectedTrigger; } set { m_SelectedTrigger = value; } }
return;
}
}
// System.String UnityEngine.UI.AnimationTriggers::get_disabledTrigger()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AnimationTriggers_get_disabledTrigger_mC796C6111FDFF4DF411920AF82A95908D4E60A50 (AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5 * __this, const RuntimeMethod* method)
{
{
// public string disabledTrigger { get { return m_DisabledTrigger; } set { m_DisabledTrigger = value; } }
String_t* L_0 = __this->get_m_DisabledTrigger_9();
return L_0;
}
}
// System.Void UnityEngine.UI.AnimationTriggers::set_disabledTrigger(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationTriggers_set_disabledTrigger_m7F08D71BAC1A9D9A4F61E429A023141AC4293DBE (AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string disabledTrigger { get { return m_DisabledTrigger; } set { m_DisabledTrigger = value; } }
String_t* L_0 = ___value0;
__this->set_m_DisabledTrigger_9(L_0);
// public string disabledTrigger { get { return m_DisabledTrigger; } set { m_DisabledTrigger = value; } }
return;
}
}
// System.Void UnityEngine.UI.AnimationTriggers::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AnimationTriggers__ctor_mF0F35FC53FA65A88FEF8D4F52006FE957981C246 (AnimationTriggers_t164EF8B310E294B7D0F6BF1A87376731EBD06DC5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AnimationTriggers__ctor_mF0F35FC53FA65A88FEF8D4F52006FE957981C246_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// private string m_NormalTrigger = kDefaultNormalAnimName;
__this->set_m_NormalTrigger_5(_stringLiteral45E118D0563EA8581F830F46E85B60AE714FAAE4);
// private string m_HighlightedTrigger = kDefaultHighlightedAnimName;
__this->set_m_HighlightedTrigger_6(_stringLiteralCECEF0F472756FE198ACC69BD5DFC1933414FBEA);
// private string m_PressedTrigger = kDefaultPressedAnimName;
__this->set_m_PressedTrigger_7(_stringLiteral6A3437AA2F331BB1885E8875A4E59267B93A0042);
// private string m_SelectedTrigger = kDefaultSelectedAnimName;
__this->set_m_SelectedTrigger_8(_stringLiteral9A976FC228B6B33656174EBD6DECCA02C9068378);
// private string m_DisabledTrigger = kDefaultDisabledAnimName;
__this->set_m_DisabledTrigger_9(_stringLiteralF4F4473DF8CB59F0A369AEBEE3D1509ADC0151C6);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.UI.AspectRatioFitter_AspectMode UnityEngine.UI.AspectRatioFitter::get_aspectMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AspectRatioFitter_get_aspectMode_m9DC7F64E9AB97AAB413EEF9931EDEDF90ACE0B75 (AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6 * __this, const RuntimeMethod* method)
{
{
// public AspectMode aspectMode { get { return m_AspectMode; } set { if (SetPropertyUtility.SetStruct(ref m_AspectMode, value)) SetDirty(); } }
int32_t L_0 = __this->get_m_AspectMode_4();
return L_0;
}
}
// System.Void UnityEngine.UI.AspectRatioFitter::set_aspectMode(UnityEngine.UI.AspectRatioFitter_AspectMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AspectRatioFitter_set_aspectMode_mDF90DA2FC20507B35EC237C91C93A3DBB3CB4322 (AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6 * __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AspectRatioFitter_set_aspectMode_mDF90DA2FC20507B35EC237C91C93A3DBB3CB4322_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// public AspectMode aspectMode { get { return m_AspectMode; } set { if (SetPropertyUtility.SetStruct(ref m_AspectMode, value)) SetDirty(); } }
int32_t* L_0 = __this->get_address_of_m_AspectMode_4();
int32_t L_1 = ___value0;
bool L_2 = SetPropertyUtility_SetStruct_TisAspectMode_t2D8C205891B8E63CA16B6AC3BA1D41320903C65A_mE814FB85AB8ABF881CDDE938A344CE5E97C8F8B1((int32_t*)L_0, L_1, /*hidden argument*/SetPropertyUtility_SetStruct_TisAspectMode_t2D8C205891B8E63CA16B6AC3BA1D41320903C65A_mE814FB85AB8ABF881CDDE938A344CE5E97C8F8B1_RuntimeMethod_var);
if (!L_2)
{
goto IL_0014;
}
}
{
// public AspectMode aspectMode { get { return m_AspectMode; } set { if (SetPropertyUtility.SetStruct(ref m_AspectMode, value)) SetDirty(); } }
AspectRatioFitter_SetDirty_mFB1E634E75B793DD239BC6E236001B6A794B1D78(__this, /*hidden argument*/NULL);
}
IL_0014:
{
// public AspectMode aspectMode { get { return m_AspectMode; } set { if (SetPropertyUtility.SetStruct(ref m_AspectMode, value)) SetDirty(); } }
return;
}
}
// System.Single UnityEngine.UI.AspectRatioFitter::get_aspectRatio()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float AspectRatioFitter_get_aspectRatio_mCA6B68F9D4FB640574390BF43ACF3DC8D42AEF99 (AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6 * __this, const RuntimeMethod* method)
{
{
// public float aspectRatio { get { return m_AspectRatio; } set { if (SetPropertyUtility.SetStruct(ref m_AspectRatio, value)) SetDirty(); } }
float L_0 = __this->get_m_AspectRatio_5();
return L_0;
}
}
// System.Void UnityEngine.UI.AspectRatioFitter::set_aspectRatio(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AspectRatioFitter_set_aspectRatio_m3E56408CB25114762687C9C5398E34BBCBE8DB01 (AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6 * __this, float ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AspectRatioFitter_set_aspectRatio_m3E56408CB25114762687C9C5398E34BBCBE8DB01_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// public float aspectRatio { get { return m_AspectRatio; } set { if (SetPropertyUtility.SetStruct(ref m_AspectRatio, value)) SetDirty(); } }
float* L_0 = __this->get_address_of_m_AspectRatio_5();
float L_1 = ___value0;
bool L_2 = SetPropertyUtility_SetStruct_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m4ACD4ED0F57868F46763D5D0BBF12FCAE1314E3A((float*)L_0, L_1, /*hidden argument*/SetPropertyUtility_SetStruct_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m4ACD4ED0F57868F46763D5D0BBF12FCAE1314E3A_RuntimeMethod_var);
if (!L_2)
{
goto IL_0014;
}
}
{
// public float aspectRatio { get { return m_AspectRatio; } set { if (SetPropertyUtility.SetStruct(ref m_AspectRatio, value)) SetDirty(); } }
AspectRatioFitter_SetDirty_mFB1E634E75B793DD239BC6E236001B6A794B1D78(__this, /*hidden argument*/NULL);
}
IL_0014:
{
// public float aspectRatio { get { return m_AspectRatio; } set { if (SetPropertyUtility.SetStruct(ref m_AspectRatio, value)) SetDirty(); } }
return;
}
}
// UnityEngine.RectTransform UnityEngine.UI.AspectRatioFitter::get_rectTransform()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * AspectRatioFitter_get_rectTransform_m10762C918EB094ED7335B938446F6537EF9E7F26 (AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AspectRatioFitter_get_rectTransform_m10762C918EB094ED7335B938446F6537EF9E7F26_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (m_Rect == null)
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_0 = __this->get_m_Rect_6();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_001a;
}
}
{
// m_Rect = GetComponent<RectTransform>();
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_2 = Component_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_mEF939F54B6B56187EC11E16F51DCB12EB62C2103(__this, /*hidden argument*/Component_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_mEF939F54B6B56187EC11E16F51DCB12EB62C2103_RuntimeMethod_var);
__this->set_m_Rect_6(L_2);
}
IL_001a:
{
// return m_Rect;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_3 = __this->get_m_Rect_6();
return L_3;
}
}
// System.Void UnityEngine.UI.AspectRatioFitter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AspectRatioFitter__ctor_m2AC759B3A6146540893D7540C4FED29B4BF26CD9 (AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6 * __this, const RuntimeMethod* method)
{
{
// [SerializeField] private float m_AspectRatio = 1;
__this->set_m_AspectRatio_5((1.0f));
// protected AspectRatioFitter() {}
UIBehaviour__ctor_m1B44EE4BDA3604F96C48379524B9907FEB15EB53(__this, /*hidden argument*/NULL);
// protected AspectRatioFitter() {}
return;
}
}
// System.Void UnityEngine.UI.AspectRatioFitter::OnEnable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AspectRatioFitter_OnEnable_m40B817004571F69A96776F46D000E6F24D21B08A (AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6 * __this, const RuntimeMethod* method)
{
{
// base.OnEnable();
UIBehaviour_OnEnable_m4FF74AADA5E101F59DC5C19DCA82110F7482CB56(__this, /*hidden argument*/NULL);
// SetDirty();
AspectRatioFitter_SetDirty_mFB1E634E75B793DD239BC6E236001B6A794B1D78(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.AspectRatioFitter::OnDisable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AspectRatioFitter_OnDisable_m82534D7AD69F406A0A90A9E912B05658E7AD9A88 (AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AspectRatioFitter_OnDisable_m82534D7AD69F406A0A90A9E912B05658E7AD9A88_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// m_Tracker.Clear();
DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 * L_0 = __this->get_address_of_m_Tracker_8();
DrivenRectTransformTracker_Clear_m328659F339A4FB519C9A208A685DDED106B6FC89((DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 *)L_0, /*hidden argument*/NULL);
// LayoutRebuilder.MarkLayoutForRebuild(rectTransform);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_1 = AspectRatioFitter_get_rectTransform_m10762C918EB094ED7335B938446F6537EF9E7F26(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(LayoutRebuilder_t8D3501B43B1DE666140E2931FFA732B5B09EA5BD_il2cpp_TypeInfo_var);
LayoutRebuilder_MarkLayoutForRebuild_m09DF1D1C1BFD83B8D9181E982D745F26D891343A(L_1, /*hidden argument*/NULL);
// base.OnDisable();
UIBehaviour_OnDisable_m43F5502A18FCFFD355381A95175DC71E0D4005EC(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.AspectRatioFitter::Update()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AspectRatioFitter_Update_mA54B4CE8AE14353C5936E26AFD7797E42AB073F8 (AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6 * __this, const RuntimeMethod* method)
{
{
// if (m_DelayedSetDirty)
bool L_0 = __this->get_m_DelayedSetDirty_7();
if (!L_0)
{
goto IL_0015;
}
}
{
// m_DelayedSetDirty = false;
__this->set_m_DelayedSetDirty_7((bool)0);
// SetDirty();
AspectRatioFitter_SetDirty_mFB1E634E75B793DD239BC6E236001B6A794B1D78(__this, /*hidden argument*/NULL);
}
IL_0015:
{
// }
return;
}
}
// System.Void UnityEngine.UI.AspectRatioFitter::OnRectTransformDimensionsChange()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AspectRatioFitter_OnRectTransformDimensionsChange_m221F31DD8F2247C30B942904590D71C0E018D973 (AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6 * __this, const RuntimeMethod* method)
{
{
// UpdateRect();
AspectRatioFitter_UpdateRect_m9C9311A3A55D5C3175E80C87944B0035DD9084E0(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.AspectRatioFitter::UpdateRect()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AspectRatioFitter_UpdateRect_m9C9311A3A55D5C3175E80C87944B0035DD9084E0 (AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AspectRatioFitter_UpdateRect_m9C9311A3A55D5C3175E80C87944B0035DD9084E0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Rect_t35B976DE901B5423C11705E156938EA27AB402CE V_1;
memset((&V_1), 0, sizeof(V_1));
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_2;
memset((&V_2), 0, sizeof(V_2));
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_3;
memset((&V_3), 0, sizeof(V_3));
{
// if (!IsActive())
bool L_0 = VirtFuncInvoker0< bool >::Invoke(9 /* System.Boolean UnityEngine.EventSystems.UIBehaviour::IsActive() */, __this);
if (L_0)
{
goto IL_0009;
}
}
{
// return;
return;
}
IL_0009:
{
// m_Tracker.Clear();
DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 * L_1 = __this->get_address_of_m_Tracker_8();
DrivenRectTransformTracker_Clear_m328659F339A4FB519C9A208A685DDED106B6FC89((DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 *)L_1, /*hidden argument*/NULL);
// switch (m_AspectMode)
int32_t L_2 = __this->get_m_AspectMode_4();
V_0 = L_2;
int32_t L_3 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1)))
{
case 0:
{
goto IL_0072;
}
case 1:
{
goto IL_0034;
}
case 2:
{
goto IL_00b0;
}
case 3:
{
goto IL_00b0;
}
}
}
{
return;
}
IL_0034:
{
// m_Tracker.Add(this, rectTransform, DrivenTransformProperties.SizeDeltaX);
DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 * L_4 = __this->get_address_of_m_Tracker_8();
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_5 = AspectRatioFitter_get_rectTransform_m10762C918EB094ED7335B938446F6537EF9E7F26(__this, /*hidden argument*/NULL);
DrivenRectTransformTracker_Add_m51059F302FBD574E93820E8116283D1608D1AB5A((DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 *)L_4, __this, L_5, ((int32_t)4096), /*hidden argument*/NULL);
// rectTransform.SetSizeWithCurrentAnchors(RectTransform.Axis.Horizontal, rectTransform.rect.height * m_AspectRatio);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_6 = AspectRatioFitter_get_rectTransform_m10762C918EB094ED7335B938446F6537EF9E7F26(__this, /*hidden argument*/NULL);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_7 = AspectRatioFitter_get_rectTransform_m10762C918EB094ED7335B938446F6537EF9E7F26(__this, /*hidden argument*/NULL);
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_8 = RectTransform_get_rect_mE5F283FCB99A66403AC1F0607CA49C156D73A15E(L_7, /*hidden argument*/NULL);
V_1 = L_8;
float L_9 = Rect_get_height_m088C36990E0A255C5D7DCE36575DCE23ABB364B5((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_1), /*hidden argument*/NULL);
float L_10 = __this->get_m_AspectRatio_5();
RectTransform_SetSizeWithCurrentAnchors_m6F93CD5B798E4A53F2085862EA1B4021AEAA6745(L_6, 0, ((float)il2cpp_codegen_multiply((float)L_9, (float)L_10)), /*hidden argument*/NULL);
// break;
return;
}
IL_0072:
{
// m_Tracker.Add(this, rectTransform, DrivenTransformProperties.SizeDeltaY);
DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 * L_11 = __this->get_address_of_m_Tracker_8();
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_12 = AspectRatioFitter_get_rectTransform_m10762C918EB094ED7335B938446F6537EF9E7F26(__this, /*hidden argument*/NULL);
DrivenRectTransformTracker_Add_m51059F302FBD574E93820E8116283D1608D1AB5A((DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 *)L_11, __this, L_12, ((int32_t)8192), /*hidden argument*/NULL);
// rectTransform.SetSizeWithCurrentAnchors(RectTransform.Axis.Vertical, rectTransform.rect.width / m_AspectRatio);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_13 = AspectRatioFitter_get_rectTransform_m10762C918EB094ED7335B938446F6537EF9E7F26(__this, /*hidden argument*/NULL);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_14 = AspectRatioFitter_get_rectTransform_m10762C918EB094ED7335B938446F6537EF9E7F26(__this, /*hidden argument*/NULL);
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_15 = RectTransform_get_rect_mE5F283FCB99A66403AC1F0607CA49C156D73A15E(L_14, /*hidden argument*/NULL);
V_1 = L_15;
float L_16 = Rect_get_width_m54FF69FC2C086E2DC349ED091FD0D6576BFB1484((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_1), /*hidden argument*/NULL);
float L_17 = __this->get_m_AspectRatio_5();
RectTransform_SetSizeWithCurrentAnchors_m6F93CD5B798E4A53F2085862EA1B4021AEAA6745(L_13, 1, ((float)((float)L_16/(float)L_17)), /*hidden argument*/NULL);
// break;
return;
}
IL_00b0:
{
// m_Tracker.Add(this, rectTransform,
// DrivenTransformProperties.Anchors |
// DrivenTransformProperties.AnchoredPosition |
// DrivenTransformProperties.SizeDeltaX |
// DrivenTransformProperties.SizeDeltaY);
DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 * L_18 = __this->get_address_of_m_Tracker_8();
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_19 = AspectRatioFitter_get_rectTransform_m10762C918EB094ED7335B938446F6537EF9E7F26(__this, /*hidden argument*/NULL);
DrivenRectTransformTracker_Add_m51059F302FBD574E93820E8116283D1608D1AB5A((DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 *)L_18, __this, L_19, ((int32_t)16134), /*hidden argument*/NULL);
// rectTransform.anchorMin = Vector2.zero;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_20 = AspectRatioFitter_get_rectTransform_m10762C918EB094ED7335B938446F6537EF9E7F26(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_21 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_20, L_21, /*hidden argument*/NULL);
// rectTransform.anchorMax = Vector2.one;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_22 = AspectRatioFitter_get_rectTransform_m10762C918EB094ED7335B938446F6537EF9E7F26(__this, /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_23 = Vector2_get_one_m6E01BE09CEA40781CB12CCB6AF33BBDA0F60CEED(/*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_22, L_23, /*hidden argument*/NULL);
// rectTransform.anchoredPosition = Vector2.zero;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_24 = AspectRatioFitter_get_rectTransform_m10762C918EB094ED7335B938446F6537EF9E7F26(__this, /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_25 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
RectTransform_set_anchoredPosition_m4DD45DB1A97734A1F3A81E5F259638ECAF35962F(L_24, L_25, /*hidden argument*/NULL);
// Vector2 sizeDelta = Vector2.zero;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_26 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
V_2 = L_26;
// Vector2 parentSize = GetParentSize();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_27 = AspectRatioFitter_GetParentSize_m5AA652B731F6930CA9C9B342C93354D73EFB6874(__this, /*hidden argument*/NULL);
V_3 = L_27;
// if ((parentSize.y * aspectRatio < parentSize.x) ^ (m_AspectMode == AspectMode.FitInParent))
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_28 = V_3;
float L_29 = L_28.get_y_1();
float L_30 = AspectRatioFitter_get_aspectRatio_mCA6B68F9D4FB640574390BF43ACF3DC8D42AEF99_inline(__this, /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_31 = V_3;
float L_32 = L_31.get_x_0();
int32_t L_33 = __this->get_m_AspectMode_4();
if (!((int32_t)((int32_t)((((float)((float)il2cpp_codegen_multiply((float)L_29, (float)L_30))) < ((float)L_32))? 1 : 0)^(int32_t)((((int32_t)L_33) == ((int32_t)3))? 1 : 0))))
{
goto IL_0142;
}
}
{
// sizeDelta.y = GetSizeDeltaToProduceSize(parentSize.x / aspectRatio, 1);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_34 = V_3;
float L_35 = L_34.get_x_0();
float L_36 = AspectRatioFitter_get_aspectRatio_mCA6B68F9D4FB640574390BF43ACF3DC8D42AEF99_inline(__this, /*hidden argument*/NULL);
float L_37 = AspectRatioFitter_GetSizeDeltaToProduceSize_mCDD7A3B13A26729FD9ACE0D7AAAAD0714F4FE9AC(__this, ((float)((float)L_35/(float)L_36)), 1, /*hidden argument*/NULL);
(&V_2)->set_y_1(L_37);
// }
goto IL_015d;
}
IL_0142:
{
// sizeDelta.x = GetSizeDeltaToProduceSize(parentSize.y * aspectRatio, 0);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_38 = V_3;
float L_39 = L_38.get_y_1();
float L_40 = AspectRatioFitter_get_aspectRatio_mCA6B68F9D4FB640574390BF43ACF3DC8D42AEF99_inline(__this, /*hidden argument*/NULL);
float L_41 = AspectRatioFitter_GetSizeDeltaToProduceSize_mCDD7A3B13A26729FD9ACE0D7AAAAD0714F4FE9AC(__this, ((float)il2cpp_codegen_multiply((float)L_39, (float)L_40)), 0, /*hidden argument*/NULL);
(&V_2)->set_x_0(L_41);
}
IL_015d:
{
// rectTransform.sizeDelta = sizeDelta;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_42 = AspectRatioFitter_get_rectTransform_m10762C918EB094ED7335B938446F6537EF9E7F26(__this, /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_43 = V_2;
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_42, L_43, /*hidden argument*/NULL);
// }
return;
}
}
// System.Single UnityEngine.UI.AspectRatioFitter::GetSizeDeltaToProduceSize(System.Single,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float AspectRatioFitter_GetSizeDeltaToProduceSize_mCDD7A3B13A26729FD9ACE0D7AAAAD0714F4FE9AC (AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6 * __this, float ___size0, int32_t ___axis1, const RuntimeMethod* method)
{
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_0;
memset((&V_0), 0, sizeof(V_0));
{
// return size - GetParentSize()[axis] * (rectTransform.anchorMax[axis] - rectTransform.anchorMin[axis]);
float L_0 = ___size0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_1 = AspectRatioFitter_GetParentSize_m5AA652B731F6930CA9C9B342C93354D73EFB6874(__this, /*hidden argument*/NULL);
V_0 = L_1;
int32_t L_2 = ___axis1;
float L_3 = Vector2_get_Item_m67344A67120E48C32D9419E24BA7AED29F063379((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&V_0), L_2, /*hidden argument*/NULL);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_4 = AspectRatioFitter_get_rectTransform_m10762C918EB094ED7335B938446F6537EF9E7F26(__this, /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_5 = RectTransform_get_anchorMax_m1E51C211FBB32326C884375C9F1E8E8221E5C086(L_4, /*hidden argument*/NULL);
V_0 = L_5;
int32_t L_6 = ___axis1;
float L_7 = Vector2_get_Item_m67344A67120E48C32D9419E24BA7AED29F063379((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&V_0), L_6, /*hidden argument*/NULL);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_8 = AspectRatioFitter_get_rectTransform_m10762C918EB094ED7335B938446F6537EF9E7F26(__this, /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_9 = RectTransform_get_anchorMin_mB62D77CAC5A2A086320638AE7DF08135B7028744(L_8, /*hidden argument*/NULL);
V_0 = L_9;
int32_t L_10 = ___axis1;
float L_11 = Vector2_get_Item_m67344A67120E48C32D9419E24BA7AED29F063379((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&V_0), L_10, /*hidden argument*/NULL);
return ((float)il2cpp_codegen_subtract((float)L_0, (float)((float)il2cpp_codegen_multiply((float)L_3, (float)((float)il2cpp_codegen_subtract((float)L_7, (float)L_11))))));
}
}
// UnityEngine.Vector2 UnityEngine.UI.AspectRatioFitter::GetParentSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D AspectRatioFitter_GetParentSize_m5AA652B731F6930CA9C9B342C93354D73EFB6874 (AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AspectRatioFitter_GetParentSize_m5AA652B731F6930CA9C9B342C93354D73EFB6874_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * V_0 = NULL;
Rect_t35B976DE901B5423C11705E156938EA27AB402CE V_1;
memset((&V_1), 0, sizeof(V_1));
{
// RectTransform parent = rectTransform.parent as RectTransform;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_0 = AspectRatioFitter_get_rectTransform_m10762C918EB094ED7335B938446F6537EF9E7F26(__this, /*hidden argument*/NULL);
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_1 = Transform_get_parent_m8FA24E38A1FA29D90CBF3CDC9F9F017C65BB3403(L_0, /*hidden argument*/NULL);
V_0 = ((RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 *)IsInstSealed((RuntimeObject*)L_1, RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_il2cpp_TypeInfo_var));
// if (!parent)
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_2 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_3 = Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534(L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_001f;
}
}
{
// return Vector2.zero;
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_4 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
return L_4;
}
IL_001f:
{
// return parent.rect.size;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_5 = V_0;
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_6 = RectTransform_get_rect_mE5F283FCB99A66403AC1F0607CA49C156D73A15E(L_5, /*hidden argument*/NULL);
V_1 = L_6;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_7 = Rect_get_size_m731642B8F03F6CE372A2C9E2E4A925450630606C((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_1), /*hidden argument*/NULL);
return L_7;
}
}
// System.Void UnityEngine.UI.AspectRatioFitter::SetLayoutHorizontal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AspectRatioFitter_SetLayoutHorizontal_m5B37DEF0AD6FD781A4B42FE51695709EFF139290 (AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6 * __this, const RuntimeMethod* method)
{
{
// public virtual void SetLayoutHorizontal() {}
return;
}
}
// System.Void UnityEngine.UI.AspectRatioFitter::SetLayoutVertical()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AspectRatioFitter_SetLayoutVertical_m515415507DB485E9A58CF0583DCD20CC655A9374 (AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6 * __this, const RuntimeMethod* method)
{
{
// public virtual void SetLayoutVertical() {}
return;
}
}
// System.Void UnityEngine.UI.AspectRatioFitter::SetDirty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AspectRatioFitter_SetDirty_mFB1E634E75B793DD239BC6E236001B6A794B1D78 (AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6 * __this, const RuntimeMethod* method)
{
{
// UpdateRect();
AspectRatioFitter_UpdateRect_m9C9311A3A55D5C3175E80C87944B0035DD9084E0(__this, /*hidden argument*/NULL);
// }
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.UI.Graphic UnityEngine.UI.BaseMeshEffect::get_graphic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * BaseMeshEffect_get_graphic_mDD7D8CD6F220B9DE656145A1346EA9799255BE21 (BaseMeshEffect_t72759F31F9D204D7EFB6B45097873809D4524BA5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BaseMeshEffect_get_graphic_mDD7D8CD6F220B9DE656145A1346EA9799255BE21_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (m_Graphic == null)
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * L_0 = __this->get_m_Graphic_4();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_001a;
}
}
{
// m_Graphic = GetComponent<Graphic>();
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * L_2 = Component_GetComponent_TisGraphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8_mFA58F3A4B73E992545A39ABAD4D36D0BBFAEBBAE(__this, /*hidden argument*/Component_GetComponent_TisGraphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8_mFA58F3A4B73E992545A39ABAD4D36D0BBFAEBBAE_RuntimeMethod_var);
__this->set_m_Graphic_4(L_2);
}
IL_001a:
{
// return m_Graphic;
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * L_3 = __this->get_m_Graphic_4();
return L_3;
}
}
// System.Void UnityEngine.UI.BaseMeshEffect::OnEnable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseMeshEffect_OnEnable_m34959EE194208A72A3D64460D0232CAD04398CAA (BaseMeshEffect_t72759F31F9D204D7EFB6B45097873809D4524BA5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BaseMeshEffect_OnEnable_m34959EE194208A72A3D64460D0232CAD04398CAA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// base.OnEnable();
UIBehaviour_OnEnable_m4FF74AADA5E101F59DC5C19DCA82110F7482CB56(__this, /*hidden argument*/NULL);
// if (graphic != null)
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * L_0 = BaseMeshEffect_get_graphic_mDD7D8CD6F220B9DE656145A1346EA9799255BE21(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_001f;
}
}
{
// graphic.SetVerticesDirty();
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * L_2 = BaseMeshEffect_get_graphic_mDD7D8CD6F220B9DE656145A1346EA9799255BE21(__this, /*hidden argument*/NULL);
VirtActionInvoker0::Invoke(28 /* System.Void UnityEngine.UI.Graphic::SetVerticesDirty() */, L_2);
}
IL_001f:
{
// }
return;
}
}
// System.Void UnityEngine.UI.BaseMeshEffect::OnDisable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseMeshEffect_OnDisable_mE6A5C8C62463E34A982933C7A77B2E2ECB91C8F1 (BaseMeshEffect_t72759F31F9D204D7EFB6B45097873809D4524BA5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BaseMeshEffect_OnDisable_mE6A5C8C62463E34A982933C7A77B2E2ECB91C8F1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (graphic != null)
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * L_0 = BaseMeshEffect_get_graphic_mDD7D8CD6F220B9DE656145A1346EA9799255BE21(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0019;
}
}
{
// graphic.SetVerticesDirty();
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * L_2 = BaseMeshEffect_get_graphic_mDD7D8CD6F220B9DE656145A1346EA9799255BE21(__this, /*hidden argument*/NULL);
VirtActionInvoker0::Invoke(28 /* System.Void UnityEngine.UI.Graphic::SetVerticesDirty() */, L_2);
}
IL_0019:
{
// base.OnDisable();
UIBehaviour_OnDisable_m43F5502A18FCFFD355381A95175DC71E0D4005EC(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.BaseMeshEffect::OnDidApplyAnimationProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseMeshEffect_OnDidApplyAnimationProperties_mBAC052B0C5723BBFD501BA63F93C74BE3667B144 (BaseMeshEffect_t72759F31F9D204D7EFB6B45097873809D4524BA5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BaseMeshEffect_OnDidApplyAnimationProperties_mBAC052B0C5723BBFD501BA63F93C74BE3667B144_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (graphic != null)
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * L_0 = BaseMeshEffect_get_graphic_mDD7D8CD6F220B9DE656145A1346EA9799255BE21(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0019;
}
}
{
// graphic.SetVerticesDirty();
Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 * L_2 = BaseMeshEffect_get_graphic_mDD7D8CD6F220B9DE656145A1346EA9799255BE21(__this, /*hidden argument*/NULL);
VirtActionInvoker0::Invoke(28 /* System.Void UnityEngine.UI.Graphic::SetVerticesDirty() */, L_2);
}
IL_0019:
{
// base.OnDidApplyAnimationProperties();
UIBehaviour_OnDidApplyAnimationProperties_m36C4FA9136D24E5F7EE389E17CDA2A3D581220DC(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.BaseMeshEffect::ModifyMesh(UnityEngine.Mesh)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseMeshEffect_ModifyMesh_m1E691826E2BD65C3D2B76E991842BC5671A3B295 (BaseMeshEffect_t72759F31F9D204D7EFB6B45097873809D4524BA5 * __this, Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___mesh0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BaseMeshEffect_ModifyMesh_m1E691826E2BD65C3D2B76E991842BC5671A3B295_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
// using (var vh = new VertexHelper(mesh))
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * L_0 = ___mesh0;
VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F * L_1 = (VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F *)il2cpp_codegen_object_new(VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F_il2cpp_TypeInfo_var);
VertexHelper__ctor_m798A4537737219B31DC65597A980514488DB1C76(L_1, L_0, /*hidden argument*/NULL);
V_0 = L_1;
}
IL_0007:
try
{ // begin try (depth: 1)
// ModifyMesh(vh);
VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F * L_2 = V_0;
VirtActionInvoker1< VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F * >::Invoke(20 /* System.Void UnityEngine.UI.BaseMeshEffect::ModifyMesh(UnityEngine.UI.VertexHelper) */, __this, L_2);
// vh.FillMesh(mesh);
VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F * L_3 = V_0;
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * L_4 = ___mesh0;
VertexHelper_FillMesh_m42F81894DE19863AC187F06DFB7922A71BC29247(L_3, L_4, /*hidden argument*/NULL);
// }
IL2CPP_LEAVE(0x21, FINALLY_0017);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0017;
}
FINALLY_0017:
{ // begin finally (depth: 1)
{
VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F * L_5 = V_0;
if (!L_5)
{
goto IL_0020;
}
}
IL_001a:
{
VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F * L_6 = V_0;
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_6);
}
IL_0020:
{
IL2CPP_END_FINALLY(23)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(23)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x21, IL_0021)
}
IL_0021:
{
// }
return;
}
}
// System.Void UnityEngine.UI.BaseMeshEffect::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseMeshEffect__ctor_m12D1C94ABAD84C1F86D70908CAAAD9754372C09F (BaseMeshEffect_t72759F31F9D204D7EFB6B45097873809D4524BA5 * __this, const RuntimeMethod* method)
{
{
UIBehaviour__ctor_m1B44EE4BDA3604F96C48379524B9907FEB15EB53(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.UI.BaseVertexEffect::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVertexEffect__ctor_mA9DBADF41E794B1F6254174E99F4EAC83EDD8E54 (BaseVertexEffect_t1EF95AB1FC33A027710E7DC86D19F700156C4F6A * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.UI.Button::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Button__ctor_m51451154939F30BAA6EB8B005BD480E2E20540CB (Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Button__ctor_m51451154939F30BAA6EB8B005BD480E2E20540CB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// private ButtonClickedEvent m_OnClick = new ButtonClickedEvent();
ButtonClickedEvent_t975D9C903BC4880557ADD7D3ACFB01CB2B3D6DDB * L_0 = (ButtonClickedEvent_t975D9C903BC4880557ADD7D3ACFB01CB2B3D6DDB *)il2cpp_codegen_object_new(ButtonClickedEvent_t975D9C903BC4880557ADD7D3ACFB01CB2B3D6DDB_il2cpp_TypeInfo_var);
ButtonClickedEvent__ctor_mEF3C31A6254EBAB9F98F8DAAE499700531B18681(L_0, /*hidden argument*/NULL);
__this->set_m_OnClick_20(L_0);
// protected Button()
IL2CPP_RUNTIME_CLASS_INIT(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A_il2cpp_TypeInfo_var);
Selectable__ctor_mDADF3659E1B861470987564058F1D0B89FF3660A(__this, /*hidden argument*/NULL);
// {}
return;
}
}
// UnityEngine.UI.Button_ButtonClickedEvent UnityEngine.UI.Button::get_onClick()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ButtonClickedEvent_t975D9C903BC4880557ADD7D3ACFB01CB2B3D6DDB * Button_get_onClick_m77E8CA6917881760CC7900930F4C789F3E2F8817 (Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * __this, const RuntimeMethod* method)
{
{
// get { return m_OnClick; }
ButtonClickedEvent_t975D9C903BC4880557ADD7D3ACFB01CB2B3D6DDB * L_0 = __this->get_m_OnClick_20();
return L_0;
}
}
// System.Void UnityEngine.UI.Button::set_onClick(UnityEngine.UI.Button_ButtonClickedEvent)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Button_set_onClick_m007C337F4A5B1B2A48CAF3636F87FBFB62271BB9 (Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * __this, ButtonClickedEvent_t975D9C903BC4880557ADD7D3ACFB01CB2B3D6DDB * ___value0, const RuntimeMethod* method)
{
{
// set { m_OnClick = value; }
ButtonClickedEvent_t975D9C903BC4880557ADD7D3ACFB01CB2B3D6DDB * L_0 = ___value0;
__this->set_m_OnClick_20(L_0);
// set { m_OnClick = value; }
return;
}
}
// System.Void UnityEngine.UI.Button::Press()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Button_Press_m58210E36B74902AC4667E5A75B4ADB891D1596C2 (Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Button_Press_m58210E36B74902AC4667E5A75B4ADB891D1596C2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (!IsActive() || !IsInteractable())
bool L_0 = VirtFuncInvoker0< bool >::Invoke(9 /* System.Boolean UnityEngine.EventSystems.UIBehaviour::IsActive() */, __this);
if (!L_0)
{
goto IL_0010;
}
}
{
bool L_1 = VirtFuncInvoker0< bool >::Invoke(24 /* System.Boolean UnityEngine.UI.Selectable::IsInteractable() */, __this);
if (L_1)
{
goto IL_0011;
}
}
IL_0010:
{
// return;
return;
}
IL_0011:
{
// UISystemProfilerApi.AddMarker("Button.onClick", this);
UISystemProfilerApi_AddMarker_m9193DB5B08C1B7DD35835D6F0E2DF9DD20483FFA(_stringLiteral2E96AA908138601585C050B5A80C0D0F5A4B18CA, __this, /*hidden argument*/NULL);
// m_OnClick.Invoke();
ButtonClickedEvent_t975D9C903BC4880557ADD7D3ACFB01CB2B3D6DDB * L_2 = __this->get_m_OnClick_20();
UnityEvent_Invoke_mB2FA1C76256FE34D5E7F84ABE528AC61CE8A0325(L_2, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.Button::OnPointerClick(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Button_OnPointerClick_m33A14004B5EA59CBF8D0247CC9001CFD9D3CEFEC (Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___eventData0, const RuntimeMethod* method)
{
{
// if (eventData.button != PointerEventData.InputButton.Left)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_0 = ___eventData0;
int32_t L_1 = PointerEventData_get_button_mC662D5DAC02F0ED6AE9205259116CC91BB92BD3E_inline(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0009;
}
}
{
// return;
return;
}
IL_0009:
{
// Press();
Button_Press_m58210E36B74902AC4667E5A75B4ADB891D1596C2(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.Button::OnSubmit(UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Button_OnSubmit_m9004AD829B9FE03D54DF1BF7F796530A966F9A2E (Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * __this, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData0, const RuntimeMethod* method)
{
{
// Press();
Button_Press_m58210E36B74902AC4667E5A75B4ADB891D1596C2(__this, /*hidden argument*/NULL);
// if (!IsActive() || !IsInteractable())
bool L_0 = VirtFuncInvoker0< bool >::Invoke(9 /* System.Boolean UnityEngine.EventSystems.UIBehaviour::IsActive() */, __this);
if (!L_0)
{
goto IL_0016;
}
}
{
bool L_1 = VirtFuncInvoker0< bool >::Invoke(24 /* System.Boolean UnityEngine.UI.Selectable::IsInteractable() */, __this);
if (L_1)
{
goto IL_0017;
}
}
IL_0016:
{
// return;
return;
}
IL_0017:
{
// DoStateTransition(SelectionState.Pressed, false);
VirtActionInvoker2< int32_t, bool >::Invoke(26 /* System.Void UnityEngine.UI.Selectable::DoStateTransition(UnityEngine.UI.Selectable/SelectionState,System.Boolean) */, __this, 2, (bool)0);
// StartCoroutine(OnFinishSubmit());
RuntimeObject* L_2 = Button_OnFinishSubmit_m89D3F073EF025FE5DE11FAC04E41025685AAE20F(__this, /*hidden argument*/NULL);
MonoBehaviour_StartCoroutine_mBF8044CE06A35D76A69669ADD8977D05956616B7(__this, L_2, /*hidden argument*/NULL);
// }
return;
}
}
// System.Collections.IEnumerator UnityEngine.UI.Button::OnFinishSubmit()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Button_OnFinishSubmit_m89D3F073EF025FE5DE11FAC04E41025685AAE20F (Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Button_OnFinishSubmit_m89D3F073EF025FE5DE11FAC04E41025685AAE20F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54 * L_0 = (U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54 *)il2cpp_codegen_object_new(U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54_il2cpp_TypeInfo_var);
U3COnFinishSubmitU3Ed__9__ctor_m7ADCF9803F4A2AD6F3555209BCF182C603989A6F(L_0, 0, /*hidden argument*/NULL);
U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54 * L_1 = L_0;
L_1->set_U3CU3E4__this_2(__this);
return L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.UI.Button_<OnFinishSubmit>d__9::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3COnFinishSubmitU3Ed__9__ctor_m7ADCF9803F4A2AD6F3555209BCF182C603989A6F (U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
int32_t L_0 = ___U3CU3E1__state0;
__this->set_U3CU3E1__state_0(L_0);
return;
}
}
// System.Void UnityEngine.UI.Button_<OnFinishSubmit>d__9::System.IDisposable.Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3COnFinishSubmitU3Ed__9_System_IDisposable_Dispose_m4FFECE47D511034EBA7270B6F32310FE1DA30B2F (U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean UnityEngine.UI.Button_<OnFinishSubmit>d__9::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3COnFinishSubmitU3Ed__9_MoveNext_mD0D8375C1B07F8EF9D3F9DE25191F6D3F4459E57 (U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * V_1 = NULL;
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA V_2;
memset((&V_2), 0, sizeof(V_2));
{
int32_t L_0 = __this->get_U3CU3E1__state_0();
V_0 = L_0;
Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * L_1 = __this->get_U3CU3E4__this_2();
V_1 = L_1;
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_0017;
}
}
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_0061;
}
}
{
return (bool)0;
}
IL_0017:
{
__this->set_U3CU3E1__state_0((-1));
// var fadeTime = colors.fadeDuration;
Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * L_4 = V_1;
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA L_5 = Selectable_get_colors_m9E63E13A7B6C40CB0F20414FFBE15873BE5F3E4E_inline(L_4, /*hidden argument*/NULL);
V_2 = L_5;
float L_6 = ColorBlock_get_fadeDuration_mD5EA922E1FA90C1BA224652C1DFC25FEE93830D5_inline((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(&V_2), /*hidden argument*/NULL);
__this->set_U3CfadeTimeU3E5__2_3(L_6);
// var elapsedTime = 0f;
__this->set_U3CelapsedTimeU3E5__3_4((0.0f));
goto IL_0068;
}
IL_003f:
{
// elapsedTime += Time.unscaledDeltaTime;
float L_7 = __this->get_U3CelapsedTimeU3E5__3_4();
float L_8 = Time_get_unscaledDeltaTime_mA0AE7A144C88AE8AABB42DF17B0F3F0714BA06B2(/*hidden argument*/NULL);
__this->set_U3CelapsedTimeU3E5__3_4(((float)il2cpp_codegen_add((float)L_7, (float)L_8)));
// yield return null;
__this->set_U3CU3E2__current_1(NULL);
__this->set_U3CU3E1__state_0(1);
return (bool)1;
}
IL_0061:
{
__this->set_U3CU3E1__state_0((-1));
}
IL_0068:
{
// while (elapsedTime < fadeTime)
float L_9 = __this->get_U3CelapsedTimeU3E5__3_4();
float L_10 = __this->get_U3CfadeTimeU3E5__2_3();
if ((((float)L_9) < ((float)L_10)))
{
goto IL_003f;
}
}
{
// DoStateTransition(currentSelectionState, false);
Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * L_11 = V_1;
Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * L_12 = V_1;
int32_t L_13 = Selectable_get_currentSelectionState_m37B79D51884A49924B92D1AE1BAA354C55CA1FD0(L_12, /*hidden argument*/NULL);
VirtActionInvoker2< int32_t, bool >::Invoke(26 /* System.Void UnityEngine.UI.Selectable::DoStateTransition(UnityEngine.UI.Selectable/SelectionState,System.Boolean) */, L_11, L_13, (bool)0);
// }
return (bool)0;
}
}
// System.Object UnityEngine.UI.Button_<OnFinishSubmit>d__9::System.Collections.Generic.IEnumerator<System.Object>.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3COnFinishSubmitU3Ed__9_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m18F63ADAE6DB6C2C632A5B28B07ACF80BE0DC4E8 (U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get_U3CU3E2__current_1();
return L_0;
}
}
// System.Void UnityEngine.UI.Button_<OnFinishSubmit>d__9::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3COnFinishSubmitU3Ed__9_System_Collections_IEnumerator_Reset_mADAC8D44A98EB373142102E747F6F82CDCBF44E6 (U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3COnFinishSubmitU3Ed__9_System_Collections_IEnumerator_Reset_mADAC8D44A98EB373142102E747F6F82CDCBF44E6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, U3COnFinishSubmitU3Ed__9_System_Collections_IEnumerator_Reset_mADAC8D44A98EB373142102E747F6F82CDCBF44E6_RuntimeMethod_var);
}
}
// System.Object UnityEngine.UI.Button_<OnFinishSubmit>d__9::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3COnFinishSubmitU3Ed__9_System_Collections_IEnumerator_get_Current_mB42667ABE8F377D6B1D73BF708B17CA0A60DF68A (U3COnFinishSubmitU3Ed__9_t7C528EE5FE9D8ABC7FECC7FA2DAFBABBF165DF54 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get_U3CU3E2__current_1();
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.UI.Button_ButtonClickedEvent::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ButtonClickedEvent__ctor_mEF3C31A6254EBAB9F98F8DAAE499700531B18681 (ButtonClickedEvent_t975D9C903BC4880557ADD7D3ACFB01CB2B3D6DDB * __this, const RuntimeMethod* method)
{
{
UnityEvent__ctor_m2F8C02F28E289CA65598FF4FA8EAB84D955FF028(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.UI.CanvasScaler_ScaleMode UnityEngine.UI.CanvasScaler::get_uiScaleMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CanvasScaler_get_uiScaleMode_m8D75124B20A8598DFEF27665EBE9C5925CB25301 (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, const RuntimeMethod* method)
{
{
// public ScaleMode uiScaleMode { get { return m_UiScaleMode; } set { m_UiScaleMode = value; } }
int32_t L_0 = __this->get_m_UiScaleMode_4();
return L_0;
}
}
// System.Void UnityEngine.UI.CanvasScaler::set_uiScaleMode(UnityEngine.UI.CanvasScaler_ScaleMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasScaler_set_uiScaleMode_m27A14E550C83FC847435C85081D912276730B467 (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public ScaleMode uiScaleMode { get { return m_UiScaleMode; } set { m_UiScaleMode = value; } }
int32_t L_0 = ___value0;
__this->set_m_UiScaleMode_4(L_0);
// public ScaleMode uiScaleMode { get { return m_UiScaleMode; } set { m_UiScaleMode = value; } }
return;
}
}
// System.Single UnityEngine.UI.CanvasScaler::get_referencePixelsPerUnit()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float CanvasScaler_get_referencePixelsPerUnit_m74D7EF4EB4D71E99A30C975BFAFDAD8CACA73A57 (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, const RuntimeMethod* method)
{
{
// public float referencePixelsPerUnit { get { return m_ReferencePixelsPerUnit; } set { m_ReferencePixelsPerUnit = value; } }
float L_0 = __this->get_m_ReferencePixelsPerUnit_5();
return L_0;
}
}
// System.Void UnityEngine.UI.CanvasScaler::set_referencePixelsPerUnit(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasScaler_set_referencePixelsPerUnit_m71C00FD0516FC9E580C828E684788ACAA60EAD28 (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, float ___value0, const RuntimeMethod* method)
{
{
// public float referencePixelsPerUnit { get { return m_ReferencePixelsPerUnit; } set { m_ReferencePixelsPerUnit = value; } }
float L_0 = ___value0;
__this->set_m_ReferencePixelsPerUnit_5(L_0);
// public float referencePixelsPerUnit { get { return m_ReferencePixelsPerUnit; } set { m_ReferencePixelsPerUnit = value; } }
return;
}
}
// System.Single UnityEngine.UI.CanvasScaler::get_scaleFactor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float CanvasScaler_get_scaleFactor_m79BDE0DCD960EF17AF645344664F6C91A5519CAE (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, const RuntimeMethod* method)
{
{
// public float scaleFactor { get { return m_ScaleFactor; } set { m_ScaleFactor = Mathf.Max(0.01f, value); } }
float L_0 = __this->get_m_ScaleFactor_6();
return L_0;
}
}
// System.Void UnityEngine.UI.CanvasScaler::set_scaleFactor(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasScaler_set_scaleFactor_mDA73D373B6D69FCD255C7784576B93079F2A6CC0 (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, float ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasScaler_set_scaleFactor_mDA73D373B6D69FCD255C7784576B93079F2A6CC0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// public float scaleFactor { get { return m_ScaleFactor; } set { m_ScaleFactor = Mathf.Max(0.01f, value); } }
float L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_1 = Mathf_Max_m670AE0EC1B09ED1A56FF9606B0F954670319CB65((0.01f), L_0, /*hidden argument*/NULL);
__this->set_m_ScaleFactor_6(L_1);
// public float scaleFactor { get { return m_ScaleFactor; } set { m_ScaleFactor = Mathf.Max(0.01f, value); } }
return;
}
}
// UnityEngine.Vector2 UnityEngine.UI.CanvasScaler::get_referenceResolution()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D CanvasScaler_get_referenceResolution_m8CB18ECD76532AD9FAFA92D9D395AB1070730A8C (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, const RuntimeMethod* method)
{
{
// return m_ReferenceResolution;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = __this->get_m_ReferenceResolution_7();
return L_0;
}
}
// System.Void UnityEngine.UI.CanvasScaler::set_referenceResolution(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasScaler_set_referenceResolution_m816A6770562B655C056B255757993A589C1DFA4B (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasScaler_set_referenceResolution_m816A6770562B655C056B255757993A589C1DFA4B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// m_ReferenceResolution = value;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = ___value0;
__this->set_m_ReferenceResolution_7(L_0);
// if (m_ReferenceResolution.x > -k_MinimumResolution && m_ReferenceResolution.x < k_MinimumResolution) m_ReferenceResolution.x = k_MinimumResolution * Mathf.Sign(m_ReferenceResolution.x);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * L_1 = __this->get_address_of_m_ReferenceResolution_7();
float L_2 = L_1->get_x_0();
if ((!(((float)L_2) > ((float)(-1.0E-05f)))))
{
goto IL_004c;
}
}
{
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * L_3 = __this->get_address_of_m_ReferenceResolution_7();
float L_4 = L_3->get_x_0();
if ((!(((float)L_4) < ((float)(1.0E-05f)))))
{
goto IL_004c;
}
}
{
// if (m_ReferenceResolution.x > -k_MinimumResolution && m_ReferenceResolution.x < k_MinimumResolution) m_ReferenceResolution.x = k_MinimumResolution * Mathf.Sign(m_ReferenceResolution.x);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * L_5 = __this->get_address_of_m_ReferenceResolution_7();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * L_6 = __this->get_address_of_m_ReferenceResolution_7();
float L_7 = L_6->get_x_0();
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_8 = Mathf_Sign_m6FA1D12786BEE0419D4B9426E5E4955F286BC8D3(L_7, /*hidden argument*/NULL);
L_5->set_x_0(((float)il2cpp_codegen_multiply((float)(1.0E-05f), (float)L_8)));
}
IL_004c:
{
// if (m_ReferenceResolution.y > -k_MinimumResolution && m_ReferenceResolution.y < k_MinimumResolution) m_ReferenceResolution.y = k_MinimumResolution * Mathf.Sign(m_ReferenceResolution.y);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * L_9 = __this->get_address_of_m_ReferenceResolution_7();
float L_10 = L_9->get_y_1();
if ((!(((float)L_10) > ((float)(-1.0E-05f)))))
{
goto IL_0091;
}
}
{
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * L_11 = __this->get_address_of_m_ReferenceResolution_7();
float L_12 = L_11->get_y_1();
if ((!(((float)L_12) < ((float)(1.0E-05f)))))
{
goto IL_0091;
}
}
{
// if (m_ReferenceResolution.y > -k_MinimumResolution && m_ReferenceResolution.y < k_MinimumResolution) m_ReferenceResolution.y = k_MinimumResolution * Mathf.Sign(m_ReferenceResolution.y);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * L_13 = __this->get_address_of_m_ReferenceResolution_7();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * L_14 = __this->get_address_of_m_ReferenceResolution_7();
float L_15 = L_14->get_y_1();
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_16 = Mathf_Sign_m6FA1D12786BEE0419D4B9426E5E4955F286BC8D3(L_15, /*hidden argument*/NULL);
L_13->set_y_1(((float)il2cpp_codegen_multiply((float)(1.0E-05f), (float)L_16)));
}
IL_0091:
{
// }
return;
}
}
// UnityEngine.UI.CanvasScaler_ScreenMatchMode UnityEngine.UI.CanvasScaler::get_screenMatchMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CanvasScaler_get_screenMatchMode_mD1444EF5D606499AE030E88AEACD0D4319C394F2 (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, const RuntimeMethod* method)
{
{
// public ScreenMatchMode screenMatchMode { get { return m_ScreenMatchMode; } set { m_ScreenMatchMode = value; } }
int32_t L_0 = __this->get_m_ScreenMatchMode_8();
return L_0;
}
}
// System.Void UnityEngine.UI.CanvasScaler::set_screenMatchMode(UnityEngine.UI.CanvasScaler_ScreenMatchMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasScaler_set_screenMatchMode_m48F770842F9333E077F5F57726F5074B140C43E9 (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public ScreenMatchMode screenMatchMode { get { return m_ScreenMatchMode; } set { m_ScreenMatchMode = value; } }
int32_t L_0 = ___value0;
__this->set_m_ScreenMatchMode_8(L_0);
// public ScreenMatchMode screenMatchMode { get { return m_ScreenMatchMode; } set { m_ScreenMatchMode = value; } }
return;
}
}
// System.Single UnityEngine.UI.CanvasScaler::get_matchWidthOrHeight()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float CanvasScaler_get_matchWidthOrHeight_m7CF35A053967D576A0519D156E491D7D77AF363D (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, const RuntimeMethod* method)
{
{
// public float matchWidthOrHeight { get { return m_MatchWidthOrHeight; } set { m_MatchWidthOrHeight = value; } }
float L_0 = __this->get_m_MatchWidthOrHeight_9();
return L_0;
}
}
// System.Void UnityEngine.UI.CanvasScaler::set_matchWidthOrHeight(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasScaler_set_matchWidthOrHeight_m3A1FAAE9A6CA76AF4484C002AA8ED0B9C100F5BE (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, float ___value0, const RuntimeMethod* method)
{
{
// public float matchWidthOrHeight { get { return m_MatchWidthOrHeight; } set { m_MatchWidthOrHeight = value; } }
float L_0 = ___value0;
__this->set_m_MatchWidthOrHeight_9(L_0);
// public float matchWidthOrHeight { get { return m_MatchWidthOrHeight; } set { m_MatchWidthOrHeight = value; } }
return;
}
}
// UnityEngine.UI.CanvasScaler_Unit UnityEngine.UI.CanvasScaler::get_physicalUnit()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CanvasScaler_get_physicalUnit_m2F6DD4DFDDA3DE8652A5F295C1E66060D0D8E94A (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, const RuntimeMethod* method)
{
{
// public Unit physicalUnit { get { return m_PhysicalUnit; } set { m_PhysicalUnit = value; } }
int32_t L_0 = __this->get_m_PhysicalUnit_11();
return L_0;
}
}
// System.Void UnityEngine.UI.CanvasScaler::set_physicalUnit(UnityEngine.UI.CanvasScaler_Unit)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasScaler_set_physicalUnit_mC60DC2F6DC43C15C1EEB1EF64A653BF64DA7C06A (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public Unit physicalUnit { get { return m_PhysicalUnit; } set { m_PhysicalUnit = value; } }
int32_t L_0 = ___value0;
__this->set_m_PhysicalUnit_11(L_0);
// public Unit physicalUnit { get { return m_PhysicalUnit; } set { m_PhysicalUnit = value; } }
return;
}
}
// System.Single UnityEngine.UI.CanvasScaler::get_fallbackScreenDPI()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float CanvasScaler_get_fallbackScreenDPI_mB24A47CA5792781C10AE198C2EE6988CCB9AB635 (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, const RuntimeMethod* method)
{
{
// public float fallbackScreenDPI { get { return m_FallbackScreenDPI; } set { m_FallbackScreenDPI = value; } }
float L_0 = __this->get_m_FallbackScreenDPI_12();
return L_0;
}
}
// System.Void UnityEngine.UI.CanvasScaler::set_fallbackScreenDPI(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasScaler_set_fallbackScreenDPI_m4D32B6C619E00682EB8D0DE0F6D71BE6139250EF (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, float ___value0, const RuntimeMethod* method)
{
{
// public float fallbackScreenDPI { get { return m_FallbackScreenDPI; } set { m_FallbackScreenDPI = value; } }
float L_0 = ___value0;
__this->set_m_FallbackScreenDPI_12(L_0);
// public float fallbackScreenDPI { get { return m_FallbackScreenDPI; } set { m_FallbackScreenDPI = value; } }
return;
}
}
// System.Single UnityEngine.UI.CanvasScaler::get_defaultSpriteDPI()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float CanvasScaler_get_defaultSpriteDPI_m670E425C6F635BDC28B2C2B5C71C65353A1E82FF (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, const RuntimeMethod* method)
{
{
// public float defaultSpriteDPI { get { return m_DefaultSpriteDPI; } set { m_DefaultSpriteDPI = Mathf.Max(1, value); } }
float L_0 = __this->get_m_DefaultSpriteDPI_13();
return L_0;
}
}
// System.Void UnityEngine.UI.CanvasScaler::set_defaultSpriteDPI(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasScaler_set_defaultSpriteDPI_m7509D86B586D726E29D2C21A2CB4E0C567BFF65A (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, float ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasScaler_set_defaultSpriteDPI_m7509D86B586D726E29D2C21A2CB4E0C567BFF65A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// public float defaultSpriteDPI { get { return m_DefaultSpriteDPI; } set { m_DefaultSpriteDPI = Mathf.Max(1, value); } }
float L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_1 = Mathf_Max_m670AE0EC1B09ED1A56FF9606B0F954670319CB65((1.0f), L_0, /*hidden argument*/NULL);
__this->set_m_DefaultSpriteDPI_13(L_1);
// public float defaultSpriteDPI { get { return m_DefaultSpriteDPI; } set { m_DefaultSpriteDPI = Mathf.Max(1, value); } }
return;
}
}
// System.Single UnityEngine.UI.CanvasScaler::get_dynamicPixelsPerUnit()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float CanvasScaler_get_dynamicPixelsPerUnit_m1D1058E155B70C06DD98C7C39B630848E803E155 (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, const RuntimeMethod* method)
{
{
// public float dynamicPixelsPerUnit { get { return m_DynamicPixelsPerUnit; } set { m_DynamicPixelsPerUnit = value; } }
float L_0 = __this->get_m_DynamicPixelsPerUnit_14();
return L_0;
}
}
// System.Void UnityEngine.UI.CanvasScaler::set_dynamicPixelsPerUnit(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasScaler_set_dynamicPixelsPerUnit_m4D7A2EE8F92EAF2EC58886C851D828111FC34494 (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, float ___value0, const RuntimeMethod* method)
{
{
// public float dynamicPixelsPerUnit { get { return m_DynamicPixelsPerUnit; } set { m_DynamicPixelsPerUnit = value; } }
float L_0 = ___value0;
__this->set_m_DynamicPixelsPerUnit_14(L_0);
// public float dynamicPixelsPerUnit { get { return m_DynamicPixelsPerUnit; } set { m_DynamicPixelsPerUnit = value; } }
return;
}
}
// System.Void UnityEngine.UI.CanvasScaler::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasScaler__ctor_mBF6E3BBA137405C93E27640EF7E53F6B2808A8D6 (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, const RuntimeMethod* method)
{
{
// [SerializeField] protected float m_ReferencePixelsPerUnit = 100;
__this->set_m_ReferencePixelsPerUnit_5((100.0f));
// [SerializeField] protected float m_ScaleFactor = 1;
__this->set_m_ScaleFactor_6((1.0f));
// [SerializeField] protected Vector2 m_ReferenceResolution = new Vector2(800, 600);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0;
memset((&L_0), 0, sizeof(L_0));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_0), (800.0f), (600.0f), /*hidden argument*/NULL);
__this->set_m_ReferenceResolution_7(L_0);
// [SerializeField] protected Unit m_PhysicalUnit = Unit.Points;
__this->set_m_PhysicalUnit_11(3);
// [SerializeField] protected float m_FallbackScreenDPI = 96;
__this->set_m_FallbackScreenDPI_12((96.0f));
// [SerializeField] protected float m_DefaultSpriteDPI = 96;
__this->set_m_DefaultSpriteDPI_13((96.0f));
// [SerializeField] protected float m_DynamicPixelsPerUnit = 1;
__this->set_m_DynamicPixelsPerUnit_14((1.0f));
// private float m_PrevScaleFactor = 1;
__this->set_m_PrevScaleFactor_16((1.0f));
// private float m_PrevReferencePixelsPerUnit = 100;
__this->set_m_PrevReferencePixelsPerUnit_17((100.0f));
// protected CanvasScaler() {}
UIBehaviour__ctor_m1B44EE4BDA3604F96C48379524B9907FEB15EB53(__this, /*hidden argument*/NULL);
// protected CanvasScaler() {}
return;
}
}
// System.Void UnityEngine.UI.CanvasScaler::OnEnable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasScaler_OnEnable_m4FDFAD573E34C335F6EBCC5CB0625353AF189E64 (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasScaler_OnEnable_m4FDFAD573E34C335F6EBCC5CB0625353AF189E64_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// base.OnEnable();
UIBehaviour_OnEnable_m4FF74AADA5E101F59DC5C19DCA82110F7482CB56(__this, /*hidden argument*/NULL);
// m_Canvas = GetComponent<Canvas>();
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_0 = Component_GetComponent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_mAD461B8F1BB5C616749FAA2B63155D710C3CD21C(__this, /*hidden argument*/Component_GetComponent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_mAD461B8F1BB5C616749FAA2B63155D710C3CD21C_RuntimeMethod_var);
__this->set_m_Canvas_15(L_0);
// Handle();
VirtActionInvoker0::Invoke(18 /* System.Void UnityEngine.UI.CanvasScaler::Handle() */, __this);
// }
return;
}
}
// System.Void UnityEngine.UI.CanvasScaler::OnDisable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasScaler_OnDisable_mC2B96434A71E3BCAE8C03B54D6BA51E22327F070 (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, const RuntimeMethod* method)
{
{
// SetScaleFactor(1);
CanvasScaler_SetScaleFactor_m2FA24C807078ECFCCA188F8C92B3B5E11409151B(__this, (1.0f), /*hidden argument*/NULL);
// SetReferencePixelsPerUnit(100);
CanvasScaler_SetReferencePixelsPerUnit_m2C7B8AB6515B8B3CFB22B7511907F0063163212A(__this, (100.0f), /*hidden argument*/NULL);
// base.OnDisable();
UIBehaviour_OnDisable_m43F5502A18FCFFD355381A95175DC71E0D4005EC(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.CanvasScaler::Update()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasScaler_Update_m0C2D0D69F590B3ABEC6DFEFBEA80CD62F79C63D0 (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, const RuntimeMethod* method)
{
{
// Handle();
VirtActionInvoker0::Invoke(18 /* System.Void UnityEngine.UI.CanvasScaler::Handle() */, __this);
// }
return;
}
}
// System.Void UnityEngine.UI.CanvasScaler::Handle()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasScaler_Handle_m867273F56329565834F7793E05C970D8E32DA4B6 (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasScaler_Handle_m867273F56329565834F7793E05C970D8E32DA4B6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
// if (m_Canvas == null || !m_Canvas.isRootCanvas)
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_0 = __this->get_m_Canvas_15();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (L_1)
{
goto IL_001b;
}
}
{
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_2 = __this->get_m_Canvas_15();
bool L_3 = Canvas_get_isRootCanvas_mA4ADE90017884B88AF7A9DD3114FDD4FEB73918A(L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_001c;
}
}
IL_001b:
{
// return;
return;
}
IL_001c:
{
// if (m_Canvas.renderMode == RenderMode.WorldSpace)
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_4 = __this->get_m_Canvas_15();
int32_t L_5 = Canvas_get_renderMode_mAF68701B143F01C7D19B6C7D3033E3B34ECB2FC8(L_4, /*hidden argument*/NULL);
if ((!(((uint32_t)L_5) == ((uint32_t)2))))
{
goto IL_0031;
}
}
{
// HandleWorldCanvas();
VirtActionInvoker0::Invoke(19 /* System.Void UnityEngine.UI.CanvasScaler::HandleWorldCanvas() */, __this);
// return;
return;
}
IL_0031:
{
// switch (m_UiScaleMode)
int32_t L_6 = __this->get_m_UiScaleMode_4();
V_0 = L_6;
int32_t L_7 = V_0;
switch (L_7)
{
case 0:
{
goto IL_004b;
}
case 1:
{
goto IL_0052;
}
case 2:
{
goto IL_0059;
}
}
}
{
return;
}
IL_004b:
{
// case ScaleMode.ConstantPixelSize: HandleConstantPixelSize(); break;
VirtActionInvoker0::Invoke(20 /* System.Void UnityEngine.UI.CanvasScaler::HandleConstantPixelSize() */, __this);
// case ScaleMode.ConstantPixelSize: HandleConstantPixelSize(); break;
return;
}
IL_0052:
{
// case ScaleMode.ScaleWithScreenSize: HandleScaleWithScreenSize(); break;
VirtActionInvoker0::Invoke(21 /* System.Void UnityEngine.UI.CanvasScaler::HandleScaleWithScreenSize() */, __this);
// case ScaleMode.ScaleWithScreenSize: HandleScaleWithScreenSize(); break;
return;
}
IL_0059:
{
// case ScaleMode.ConstantPhysicalSize: HandleConstantPhysicalSize(); break;
VirtActionInvoker0::Invoke(22 /* System.Void UnityEngine.UI.CanvasScaler::HandleConstantPhysicalSize() */, __this);
// }
return;
}
}
// System.Void UnityEngine.UI.CanvasScaler::HandleWorldCanvas()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasScaler_HandleWorldCanvas_m0F9D6A0089798542BC7BD4772D782C00FBF643A2 (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, const RuntimeMethod* method)
{
{
// SetScaleFactor(m_DynamicPixelsPerUnit);
float L_0 = __this->get_m_DynamicPixelsPerUnit_14();
CanvasScaler_SetScaleFactor_m2FA24C807078ECFCCA188F8C92B3B5E11409151B(__this, L_0, /*hidden argument*/NULL);
// SetReferencePixelsPerUnit(m_ReferencePixelsPerUnit);
float L_1 = __this->get_m_ReferencePixelsPerUnit_5();
CanvasScaler_SetReferencePixelsPerUnit_m2C7B8AB6515B8B3CFB22B7511907F0063163212A(__this, L_1, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.CanvasScaler::HandleConstantPixelSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasScaler_HandleConstantPixelSize_m2FBD457CCC6225DFB1C3B7A5C737C45E5CBAEB39 (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, const RuntimeMethod* method)
{
{
// SetScaleFactor(m_ScaleFactor);
float L_0 = __this->get_m_ScaleFactor_6();
CanvasScaler_SetScaleFactor_m2FA24C807078ECFCCA188F8C92B3B5E11409151B(__this, L_0, /*hidden argument*/NULL);
// SetReferencePixelsPerUnit(m_ReferencePixelsPerUnit);
float L_1 = __this->get_m_ReferencePixelsPerUnit_5();
CanvasScaler_SetReferencePixelsPerUnit_m2C7B8AB6515B8B3CFB22B7511907F0063163212A(__this, L_1, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.CanvasScaler::HandleScaleWithScreenSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasScaler_HandleScaleWithScreenSize_mB3430B5FD262C0826FF228EDC80AD0144F7826F6 (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasScaler_HandleScaleWithScreenSize_mB3430B5FD262C0826FF228EDC80AD0144F7826F6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
float V_2 = 0.0f;
Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57 * V_3 = NULL;
int32_t V_4 = 0;
float V_5 = 0.0f;
float V_6 = 0.0f;
{
// Vector2 screenSize = new Vector2(Screen.width, Screen.height);
int32_t L_0 = Screen_get_width_m8ECCEF7FF17395D1237BC0193D7A6640A3FEEAD3(/*hidden argument*/NULL);
int32_t L_1 = Screen_get_height_mF5B64EBC4CDE0EAAA5713C1452ED2CE475F25150(/*hidden argument*/NULL);
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&V_0), (((float)((float)L_0))), (((float)((float)L_1))), /*hidden argument*/NULL);
// int displayIndex = m_Canvas.targetDisplay;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_2 = __this->get_m_Canvas_15();
int32_t L_3 = Canvas_get_targetDisplay_m80D9D93CA075084BDD3B05AF5F880698D7BB235D(L_2, /*hidden argument*/NULL);
V_1 = L_3;
// if (displayIndex > 0 && displayIndex < Display.displays.Length)
int32_t L_4 = V_1;
if ((((int32_t)L_4) <= ((int32_t)0)))
{
goto IL_004a;
}
}
{
int32_t L_5 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57_il2cpp_TypeInfo_var);
DisplayU5BU5D_tB2AB0FDB3B2E9FD784D5100C18EB0ED489A2CCC9* L_6 = ((Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57_StaticFields*)il2cpp_codegen_static_fields_for(Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57_il2cpp_TypeInfo_var))->get_displays_1();
if ((((int32_t)L_5) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))))))
{
goto IL_004a;
}
}
{
// Display disp = Display.displays[displayIndex];
IL2CPP_RUNTIME_CLASS_INIT(Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57_il2cpp_TypeInfo_var);
DisplayU5BU5D_tB2AB0FDB3B2E9FD784D5100C18EB0ED489A2CCC9* L_7 = ((Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57_StaticFields*)il2cpp_codegen_static_fields_for(Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57_il2cpp_TypeInfo_var))->get_displays_1();
int32_t L_8 = V_1;
int32_t L_9 = L_8;
Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57 * L_10 = (L_7)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_9));
V_3 = L_10;
// screenSize = new Vector2(disp.renderingWidth, disp.renderingHeight);
Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57 * L_11 = V_3;
int32_t L_12 = Display_get_renderingWidth_mA02F65BF724686D7A0CD0C192954CA22592C3B12(L_11, /*hidden argument*/NULL);
Display_t38AD3008E8C72693533E4FE9CFFF6E01B56E9D57 * L_13 = V_3;
int32_t L_14 = Display_get_renderingHeight_m1496BF9D66501280B4F75A31A515D8CF416838B0(L_13, /*hidden argument*/NULL);
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&V_0), (((float)((float)L_12))), (((float)((float)L_14))), /*hidden argument*/NULL);
}
IL_004a:
{
// float scaleFactor = 0;
V_2 = (0.0f);
// switch (m_ScreenMatchMode)
int32_t L_15 = __this->get_m_ScreenMatchMode_8();
V_4 = L_15;
int32_t L_16 = V_4;
switch (L_16)
{
case 0:
{
goto IL_0070;
}
case 1:
{
goto IL_00c8;
}
case 2:
{
goto IL_00f4;
}
}
}
{
goto IL_011e;
}
IL_0070:
{
// float logWidth = Mathf.Log(screenSize.x / m_ReferenceResolution.x, kLogBase);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_17 = V_0;
float L_18 = L_17.get_x_0();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * L_19 = __this->get_address_of_m_ReferenceResolution_7();
float L_20 = L_19->get_x_0();
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_21 = Mathf_Log_mD0CFD1242805BD697B5156AA46FBB43E7636A19B(((float)((float)L_18/(float)L_20)), (2.0f), /*hidden argument*/NULL);
// float logHeight = Mathf.Log(screenSize.y / m_ReferenceResolution.y, kLogBase);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_22 = V_0;
float L_23 = L_22.get_y_1();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * L_24 = __this->get_address_of_m_ReferenceResolution_7();
float L_25 = L_24->get_y_1();
float L_26 = Mathf_Log_mD0CFD1242805BD697B5156AA46FBB43E7636A19B(((float)((float)L_23/(float)L_25)), (2.0f), /*hidden argument*/NULL);
V_5 = L_26;
// float logWeightedAverage = Mathf.Lerp(logWidth, logHeight, m_MatchWidthOrHeight);
float L_27 = V_5;
float L_28 = __this->get_m_MatchWidthOrHeight_9();
float L_29 = Mathf_Lerp_m9A74C5A0C37D0CDF45EE66E7774D12A9B93B1364(L_21, L_27, L_28, /*hidden argument*/NULL);
V_6 = L_29;
// scaleFactor = Mathf.Pow(kLogBase, logWeightedAverage);
float L_30 = V_6;
float L_31 = powf((2.0f), L_30);
V_2 = L_31;
// break;
goto IL_011e;
}
IL_00c8:
{
// scaleFactor = Mathf.Min(screenSize.x / m_ReferenceResolution.x, screenSize.y / m_ReferenceResolution.y);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_32 = V_0;
float L_33 = L_32.get_x_0();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * L_34 = __this->get_address_of_m_ReferenceResolution_7();
float L_35 = L_34->get_x_0();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_36 = V_0;
float L_37 = L_36.get_y_1();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * L_38 = __this->get_address_of_m_ReferenceResolution_7();
float L_39 = L_38->get_y_1();
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_40 = Mathf_Min_mCF9BE0E9CAC9F18D207692BB2DAC7F3E1D4E1CB7(((float)((float)L_33/(float)L_35)), ((float)((float)L_37/(float)L_39)), /*hidden argument*/NULL);
V_2 = L_40;
// break;
goto IL_011e;
}
IL_00f4:
{
// scaleFactor = Mathf.Max(screenSize.x / m_ReferenceResolution.x, screenSize.y / m_ReferenceResolution.y);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_41 = V_0;
float L_42 = L_41.get_x_0();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * L_43 = __this->get_address_of_m_ReferenceResolution_7();
float L_44 = L_43->get_x_0();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_45 = V_0;
float L_46 = L_45.get_y_1();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * L_47 = __this->get_address_of_m_ReferenceResolution_7();
float L_48 = L_47->get_y_1();
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_49 = Mathf_Max_m670AE0EC1B09ED1A56FF9606B0F954670319CB65(((float)((float)L_42/(float)L_44)), ((float)((float)L_46/(float)L_48)), /*hidden argument*/NULL);
V_2 = L_49;
}
IL_011e:
{
// SetScaleFactor(scaleFactor);
float L_50 = V_2;
CanvasScaler_SetScaleFactor_m2FA24C807078ECFCCA188F8C92B3B5E11409151B(__this, L_50, /*hidden argument*/NULL);
// SetReferencePixelsPerUnit(m_ReferencePixelsPerUnit);
float L_51 = __this->get_m_ReferencePixelsPerUnit_5();
CanvasScaler_SetReferencePixelsPerUnit_m2C7B8AB6515B8B3CFB22B7511907F0063163212A(__this, L_51, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.CanvasScaler::HandleConstantPhysicalSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasScaler_HandleConstantPhysicalSize_mE2459900B0F585298C659A103393011B42F721E9 (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
float V_1 = 0.0f;
float V_2 = 0.0f;
int32_t V_3 = 0;
float G_B3_0 = 0.0f;
{
// float currentDpi = Screen.dpi;
float L_0 = Screen_get_dpi_m92A755DE9E23ABA717B5594F4F52AFB0FBEAC1D3(/*hidden argument*/NULL);
V_0 = L_0;
// float dpi = (currentDpi == 0 ? m_FallbackScreenDPI : currentDpi);
float L_1 = V_0;
if ((((float)L_1) == ((float)(0.0f))))
{
goto IL_0011;
}
}
{
float L_2 = V_0;
G_B3_0 = L_2;
goto IL_0017;
}
IL_0011:
{
float L_3 = __this->get_m_FallbackScreenDPI_12();
G_B3_0 = L_3;
}
IL_0017:
{
V_1 = G_B3_0;
// float targetDPI = 1;
V_2 = (1.0f);
// switch (m_PhysicalUnit)
int32_t L_4 = __this->get_m_PhysicalUnit_11();
V_3 = L_4;
int32_t L_5 = V_3;
switch (L_5)
{
case 0:
{
goto IL_0041;
}
case 1:
{
goto IL_0049;
}
case 2:
{
goto IL_0051;
}
case 3:
{
goto IL_0059;
}
case 4:
{
goto IL_0061;
}
}
}
{
goto IL_0067;
}
IL_0041:
{
// case Unit.Centimeters: targetDPI = 2.54f; break;
V_2 = (2.54f);
// case Unit.Centimeters: targetDPI = 2.54f; break;
goto IL_0067;
}
IL_0049:
{
// case Unit.Millimeters: targetDPI = 25.4f; break;
V_2 = (25.4f);
// case Unit.Millimeters: targetDPI = 25.4f; break;
goto IL_0067;
}
IL_0051:
{
// case Unit.Inches: targetDPI = 1; break;
V_2 = (1.0f);
// case Unit.Inches: targetDPI = 1; break;
goto IL_0067;
}
IL_0059:
{
// case Unit.Points: targetDPI = 72; break;
V_2 = (72.0f);
// case Unit.Points: targetDPI = 72; break;
goto IL_0067;
}
IL_0061:
{
// case Unit.Picas: targetDPI = 6; break;
V_2 = (6.0f);
}
IL_0067:
{
// SetScaleFactor(dpi / targetDPI);
float L_6 = V_1;
float L_7 = V_2;
CanvasScaler_SetScaleFactor_m2FA24C807078ECFCCA188F8C92B3B5E11409151B(__this, ((float)((float)L_6/(float)L_7)), /*hidden argument*/NULL);
// SetReferencePixelsPerUnit(m_ReferencePixelsPerUnit * targetDPI / m_DefaultSpriteDPI);
float L_8 = __this->get_m_ReferencePixelsPerUnit_5();
float L_9 = V_2;
float L_10 = __this->get_m_DefaultSpriteDPI_13();
CanvasScaler_SetReferencePixelsPerUnit_m2C7B8AB6515B8B3CFB22B7511907F0063163212A(__this, ((float)((float)((float)il2cpp_codegen_multiply((float)L_8, (float)L_9))/(float)L_10)), /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.CanvasScaler::SetScaleFactor(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasScaler_SetScaleFactor_m2FA24C807078ECFCCA188F8C92B3B5E11409151B (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, float ___scaleFactor0, const RuntimeMethod* method)
{
{
// if (scaleFactor == m_PrevScaleFactor)
float L_0 = ___scaleFactor0;
float L_1 = __this->get_m_PrevScaleFactor_16();
if ((!(((float)L_0) == ((float)L_1))))
{
goto IL_000a;
}
}
{
// return;
return;
}
IL_000a:
{
// m_Canvas.scaleFactor = scaleFactor;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_2 = __this->get_m_Canvas_15();
float L_3 = ___scaleFactor0;
Canvas_set_scaleFactor_m40359EE941E1573107542A2377E87BEB17C10163(L_2, L_3, /*hidden argument*/NULL);
// m_PrevScaleFactor = scaleFactor;
float L_4 = ___scaleFactor0;
__this->set_m_PrevScaleFactor_16(L_4);
// }
return;
}
}
// System.Void UnityEngine.UI.CanvasScaler::SetReferencePixelsPerUnit(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasScaler_SetReferencePixelsPerUnit_m2C7B8AB6515B8B3CFB22B7511907F0063163212A (CanvasScaler_t304BA6F47EDB7402EBA405DD36CA7D6ADF723564 * __this, float ___referencePixelsPerUnit0, const RuntimeMethod* method)
{
{
// if (referencePixelsPerUnit == m_PrevReferencePixelsPerUnit)
float L_0 = ___referencePixelsPerUnit0;
float L_1 = __this->get_m_PrevReferencePixelsPerUnit_17();
if ((!(((float)L_0) == ((float)L_1))))
{
goto IL_000a;
}
}
{
// return;
return;
}
IL_000a:
{
// m_Canvas.referencePixelsPerUnit = referencePixelsPerUnit;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_2 = __this->get_m_Canvas_15();
float L_3 = ___referencePixelsPerUnit0;
Canvas_set_referencePixelsPerUnit_m16AF69DA4801579FD03A220D3D6293421671F341(L_2, L_3, /*hidden argument*/NULL);
// m_PrevReferencePixelsPerUnit = referencePixelsPerUnit;
float L_4 = ___referencePixelsPerUnit0;
__this->set_m_PrevReferencePixelsPerUnit_17(L_4);
// }
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.UI.CanvasUpdateRegistry::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasUpdateRegistry__ctor_m86AC7F2BD30DF9ABEA5CA8C74BA28367D5325E9A (CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasUpdateRegistry__ctor_m86AC7F2BD30DF9ABEA5CA8C74BA28367D5325E9A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// private string[] m_CanvasUpdateProfilerStrings = new string[] { "CanvasUpdate.Prelayout", "CanvasUpdate.Layout", "CanvasUpdate.PostLayout", "CanvasUpdate.PreRender", "CanvasUpdate.LatePreRender" };
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_0 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)5);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = L_0;
ArrayElementTypeCheck (L_1, _stringLiteral46F2235B24C7F49AC8F229D2E70105DEF3C9484F);
(L_1)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral46F2235B24C7F49AC8F229D2E70105DEF3C9484F);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = L_1;
ArrayElementTypeCheck (L_2, _stringLiteralDA71B1E606965A288B8200FEA58E98EE18C9B14E);
(L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralDA71B1E606965A288B8200FEA58E98EE18C9B14E);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_3 = L_2;
ArrayElementTypeCheck (L_3, _stringLiteral762BA2D999A92E95CB6EC9A42B04D758AC576491);
(L_3)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral762BA2D999A92E95CB6EC9A42B04D758AC576491);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_4 = L_3;
ArrayElementTypeCheck (L_4, _stringLiteralFDFE8E79983EAB6E42EC6A84923F9D664B0E9543);
(L_4)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteralFDFE8E79983EAB6E42EC6A84923F9D664B0E9543);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_5 = L_4;
ArrayElementTypeCheck (L_5, _stringLiteralB304892FE8DC52FEF071BBB2749D11A7C44478BC);
(L_5)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralB304892FE8DC52FEF071BBB2749D11A7C44478BC);
__this->set_m_CanvasUpdateProfilerStrings_3(L_5);
// private readonly IndexedSet<ICanvasElement> m_LayoutRebuildQueue = new IndexedSet<ICanvasElement>();
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_6 = (IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 *)il2cpp_codegen_object_new(IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61_il2cpp_TypeInfo_var);
IndexedSet_1__ctor_m1717E2CA1404D41499D0D08BC76E2F4DD7B2E047(L_6, /*hidden argument*/IndexedSet_1__ctor_m1717E2CA1404D41499D0D08BC76E2F4DD7B2E047_RuntimeMethod_var);
__this->set_m_LayoutRebuildQueue_5(L_6);
// private readonly IndexedSet<ICanvasElement> m_GraphicRebuildQueue = new IndexedSet<ICanvasElement>();
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_7 = (IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 *)il2cpp_codegen_object_new(IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61_il2cpp_TypeInfo_var);
IndexedSet_1__ctor_m1717E2CA1404D41499D0D08BC76E2F4DD7B2E047(L_7, /*hidden argument*/IndexedSet_1__ctor_m1717E2CA1404D41499D0D08BC76E2F4DD7B2E047_RuntimeMethod_var);
__this->set_m_GraphicRebuildQueue_6(L_7);
// protected CanvasUpdateRegistry()
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
// Canvas.willRenderCanvases += PerformUpdate;
WillRenderCanvases_tBD5AD090B5938021DEAA679A5AEEA790F60A8BEE * L_8 = (WillRenderCanvases_tBD5AD090B5938021DEAA679A5AEEA790F60A8BEE *)il2cpp_codegen_object_new(WillRenderCanvases_tBD5AD090B5938021DEAA679A5AEEA790F60A8BEE_il2cpp_TypeInfo_var);
WillRenderCanvases__ctor_m9AB0D8B934BE573C4B3ABBAA313984B054B4B885(L_8, __this, (intptr_t)((intptr_t)CanvasUpdateRegistry_PerformUpdate_m6C0C51EBC871BFD67FEE7403B0A4D8FC99AAE93E_RuntimeMethod_var), /*hidden argument*/NULL);
Canvas_add_willRenderCanvases_mACABFF4EAFB7DCFF4B9A33357D496EC3010D7E6B(L_8, /*hidden argument*/NULL);
// }
return;
}
}
// UnityEngine.UI.CanvasUpdateRegistry UnityEngine.UI.CanvasUpdateRegistry::get_instance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * CanvasUpdateRegistry_get_instance_m6A2150EA4C8C74AF18E53B3CF22BF6EAF70FF927 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasUpdateRegistry_get_instance_m6A2150EA4C8C74AF18E53B3CF22BF6EAF70FF927_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (s_Instance == null)
IL2CPP_RUNTIME_CLASS_INIT(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var);
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * L_0 = ((CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_StaticFields*)il2cpp_codegen_static_fields_for(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var))->get_s_Instance_0();
if (L_0)
{
goto IL_0011;
}
}
{
// s_Instance = new CanvasUpdateRegistry();
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * L_1 = (CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 *)il2cpp_codegen_object_new(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var);
CanvasUpdateRegistry__ctor_m86AC7F2BD30DF9ABEA5CA8C74BA28367D5325E9A(L_1, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var);
((CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_StaticFields*)il2cpp_codegen_static_fields_for(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var))->set_s_Instance_0(L_1);
}
IL_0011:
{
// return s_Instance;
IL2CPP_RUNTIME_CLASS_INIT(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var);
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * L_2 = ((CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_StaticFields*)il2cpp_codegen_static_fields_for(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var))->get_s_Instance_0();
return L_2;
}
}
// System.Boolean UnityEngine.UI.CanvasUpdateRegistry::ObjectValidForUpdate(UnityEngine.UI.ICanvasElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CanvasUpdateRegistry_ObjectValidForUpdate_m0A572FA254D152E92FD6D6DC63B4B0FA66B88250 (CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * __this, RuntimeObject* ___element0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasUpdateRegistry_ObjectValidForUpdate_m0A572FA254D152E92FD6D6DC63B4B0FA66B88250_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
// var valid = element != null;
RuntimeObject* L_0 = ___element0;
V_0 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
// var isUnityObject = element is Object;
RuntimeObject* L_1 = ___element0;
// if (isUnityObject)
if (!((!(((RuntimeObject*)(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)((Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)IsInstClass((RuntimeObject*)L_1, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0))
{
goto IL_001d;
}
}
{
// valid = (element as Object) != null;
RuntimeObject* L_2 = ___element0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_3 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(((Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)IsInstClass((RuntimeObject*)L_2, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var)), (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
V_0 = L_3;
}
IL_001d:
{
// return valid;
bool L_4 = V_0;
return L_4;
}
}
// System.Void UnityEngine.UI.CanvasUpdateRegistry::CleanInvalidItems()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasUpdateRegistry_CleanInvalidItems_m033AB2A5652116F351F3287C37E0910AE78506D0 (CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasUpdateRegistry_CleanInvalidItems_m033AB2A5652116F351F3287C37E0910AE78506D0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject* V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject* V_3 = NULL;
{
// for (int i = m_LayoutRebuildQueue.Count - 1; i >= 0; --i)
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_0 = __this->get_m_LayoutRebuildQueue_5();
int32_t L_1 = IndexedSet_1_get_Count_m1CB8C29C8118B6846AAB3A4A1430A00907E480D0(L_0, /*hidden argument*/IndexedSet_1_get_Count_m1CB8C29C8118B6846AAB3A4A1430A00907E480D0_RuntimeMethod_var);
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1));
goto IL_004c;
}
IL_0010:
{
// var item = m_LayoutRebuildQueue[i];
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_2 = __this->get_m_LayoutRebuildQueue_5();
int32_t L_3 = V_0;
RuntimeObject* L_4 = IndexedSet_1_get_Item_m657F3612726374420908A01DEB93BFF92F80A64A(L_2, L_3, /*hidden argument*/IndexedSet_1_get_Item_m657F3612726374420908A01DEB93BFF92F80A64A_RuntimeMethod_var);
V_1 = L_4;
// if (item == null)
RuntimeObject* L_5 = V_1;
if (L_5)
{
goto IL_002e;
}
}
{
// m_LayoutRebuildQueue.RemoveAt(i);
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_6 = __this->get_m_LayoutRebuildQueue_5();
int32_t L_7 = V_0;
IndexedSet_1_RemoveAt_m88515EA7DB5AE71B53CE24A810DE0323264D8384(L_6, L_7, /*hidden argument*/IndexedSet_1_RemoveAt_m88515EA7DB5AE71B53CE24A810DE0323264D8384_RuntimeMethod_var);
// continue;
goto IL_0048;
}
IL_002e:
{
// if (item.IsDestroyed())
RuntimeObject* L_8 = V_1;
bool L_9 = InterfaceFuncInvoker0< bool >::Invoke(4 /* System.Boolean UnityEngine.UI.ICanvasElement::IsDestroyed() */, ICanvasElement_t26FA36346B5CB52C9144DF0076E33E8C367471D2_il2cpp_TypeInfo_var, L_8);
if (!L_9)
{
goto IL_0048;
}
}
{
// m_LayoutRebuildQueue.RemoveAt(i);
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_10 = __this->get_m_LayoutRebuildQueue_5();
int32_t L_11 = V_0;
IndexedSet_1_RemoveAt_m88515EA7DB5AE71B53CE24A810DE0323264D8384(L_10, L_11, /*hidden argument*/IndexedSet_1_RemoveAt_m88515EA7DB5AE71B53CE24A810DE0323264D8384_RuntimeMethod_var);
// item.LayoutComplete();
RuntimeObject* L_12 = V_1;
InterfaceActionInvoker0::Invoke(2 /* System.Void UnityEngine.UI.ICanvasElement::LayoutComplete() */, ICanvasElement_t26FA36346B5CB52C9144DF0076E33E8C367471D2_il2cpp_TypeInfo_var, L_12);
}
IL_0048:
{
// for (int i = m_LayoutRebuildQueue.Count - 1; i >= 0; --i)
int32_t L_13 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)1));
}
IL_004c:
{
// for (int i = m_LayoutRebuildQueue.Count - 1; i >= 0; --i)
int32_t L_14 = V_0;
if ((((int32_t)L_14) >= ((int32_t)0)))
{
goto IL_0010;
}
}
{
// for (int i = m_GraphicRebuildQueue.Count - 1; i >= 0; --i)
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_15 = __this->get_m_GraphicRebuildQueue_6();
int32_t L_16 = IndexedSet_1_get_Count_m1CB8C29C8118B6846AAB3A4A1430A00907E480D0(L_15, /*hidden argument*/IndexedSet_1_get_Count_m1CB8C29C8118B6846AAB3A4A1430A00907E480D0_RuntimeMethod_var);
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1));
goto IL_009c;
}
IL_0060:
{
// var item = m_GraphicRebuildQueue[i];
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_17 = __this->get_m_GraphicRebuildQueue_6();
int32_t L_18 = V_2;
RuntimeObject* L_19 = IndexedSet_1_get_Item_m657F3612726374420908A01DEB93BFF92F80A64A(L_17, L_18, /*hidden argument*/IndexedSet_1_get_Item_m657F3612726374420908A01DEB93BFF92F80A64A_RuntimeMethod_var);
V_3 = L_19;
// if (item == null)
RuntimeObject* L_20 = V_3;
if (L_20)
{
goto IL_007e;
}
}
{
// m_GraphicRebuildQueue.RemoveAt(i);
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_21 = __this->get_m_GraphicRebuildQueue_6();
int32_t L_22 = V_2;
IndexedSet_1_RemoveAt_m88515EA7DB5AE71B53CE24A810DE0323264D8384(L_21, L_22, /*hidden argument*/IndexedSet_1_RemoveAt_m88515EA7DB5AE71B53CE24A810DE0323264D8384_RuntimeMethod_var);
// continue;
goto IL_0098;
}
IL_007e:
{
// if (item.IsDestroyed())
RuntimeObject* L_23 = V_3;
bool L_24 = InterfaceFuncInvoker0< bool >::Invoke(4 /* System.Boolean UnityEngine.UI.ICanvasElement::IsDestroyed() */, ICanvasElement_t26FA36346B5CB52C9144DF0076E33E8C367471D2_il2cpp_TypeInfo_var, L_23);
if (!L_24)
{
goto IL_0098;
}
}
{
// m_GraphicRebuildQueue.RemoveAt(i);
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_25 = __this->get_m_GraphicRebuildQueue_6();
int32_t L_26 = V_2;
IndexedSet_1_RemoveAt_m88515EA7DB5AE71B53CE24A810DE0323264D8384(L_25, L_26, /*hidden argument*/IndexedSet_1_RemoveAt_m88515EA7DB5AE71B53CE24A810DE0323264D8384_RuntimeMethod_var);
// item.GraphicUpdateComplete();
RuntimeObject* L_27 = V_3;
InterfaceActionInvoker0::Invoke(3 /* System.Void UnityEngine.UI.ICanvasElement::GraphicUpdateComplete() */, ICanvasElement_t26FA36346B5CB52C9144DF0076E33E8C367471D2_il2cpp_TypeInfo_var, L_27);
}
IL_0098:
{
// for (int i = m_GraphicRebuildQueue.Count - 1; i >= 0; --i)
int32_t L_28 = V_2;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)1));
}
IL_009c:
{
// for (int i = m_GraphicRebuildQueue.Count - 1; i >= 0; --i)
int32_t L_29 = V_2;
if ((((int32_t)L_29) >= ((int32_t)0)))
{
goto IL_0060;
}
}
{
// }
return;
}
}
// System.Void UnityEngine.UI.CanvasUpdateRegistry::PerformUpdate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasUpdateRegistry_PerformUpdate_m6C0C51EBC871BFD67FEE7403B0A4D8FC99AAE93E (CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasUpdateRegistry_PerformUpdate_m6C0C51EBC871BFD67FEE7403B0A4D8FC99AAE93E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
RuntimeObject* V_6 = NULL;
int32_t V_7 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 4);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
// UISystemProfilerApi.BeginSample(UISystemProfilerApi.SampleType.Layout);
UISystemProfilerApi_BeginSample_m43EF1B2F9606D5F0C99DF84505C5498AA0CDBB1B(0, /*hidden argument*/NULL);
// CleanInvalidItems();
CanvasUpdateRegistry_CleanInvalidItems_m033AB2A5652116F351F3287C37E0910AE78506D0(__this, /*hidden argument*/NULL);
// m_PerformingLayoutUpdate = true;
__this->set_m_PerformingLayoutUpdate_1((bool)1);
// m_LayoutRebuildQueue.Sort(s_SortLayoutFunction);
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_0 = __this->get_m_LayoutRebuildQueue_5();
IL2CPP_RUNTIME_CLASS_INIT(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var);
Comparison_1_tE7E69DEDE3A7782BEEADFF223EE57D6F7F626AEC * L_1 = ((CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_StaticFields*)il2cpp_codegen_static_fields_for(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var))->get_s_SortLayoutFunction_7();
IndexedSet_1_Sort_m338A4FC9AF72E60401382F58002B10E2AB979A3D(L_0, L_1, /*hidden argument*/IndexedSet_1_Sort_m338A4FC9AF72E60401382F58002B10E2AB979A3D_RuntimeMethod_var);
// for (int i = 0; i <= (int)CanvasUpdate.PostLayout; i++)
V_0 = 0;
goto IL_0071;
}
IL_0027:
{
// for (int j = 0; j < m_LayoutRebuildQueue.Count; j++)
V_1 = 0;
goto IL_005f;
}
IL_002b:
{
// var rebuild = instance.m_LayoutRebuildQueue[j];
IL2CPP_RUNTIME_CLASS_INIT(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var);
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * L_2 = CanvasUpdateRegistry_get_instance_m6A2150EA4C8C74AF18E53B3CF22BF6EAF70FF927(/*hidden argument*/NULL);
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_3 = L_2->get_m_LayoutRebuildQueue_5();
int32_t L_4 = V_1;
RuntimeObject* L_5 = IndexedSet_1_get_Item_m657F3612726374420908A01DEB93BFF92F80A64A(L_3, L_4, /*hidden argument*/IndexedSet_1_get_Item_m657F3612726374420908A01DEB93BFF92F80A64A_RuntimeMethod_var);
V_2 = L_5;
}
IL_003c:
try
{ // begin try (depth: 1)
{
// if (ObjectValidForUpdate(rebuild))
RuntimeObject* L_6 = V_2;
bool L_7 = CanvasUpdateRegistry_ObjectValidForUpdate_m0A572FA254D152E92FD6D6DC63B4B0FA66B88250(__this, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_004c;
}
}
IL_0045:
{
// rebuild.Rebuild((CanvasUpdate)i);
RuntimeObject* L_8 = V_2;
int32_t L_9 = V_0;
InterfaceActionInvoker1< int32_t >::Invoke(0 /* System.Void UnityEngine.UI.ICanvasElement::Rebuild(UnityEngine.UI.CanvasUpdate) */, ICanvasElement_t26FA36346B5CB52C9144DF0076E33E8C367471D2_il2cpp_TypeInfo_var, L_8, L_9);
}
IL_004c:
{
// }
goto IL_005b;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_004e;
throw e;
}
CATCH_004e:
{ // begin catch(System.Exception)
// Debug.LogException(e, rebuild.transform);
RuntimeObject* L_10 = V_2;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_11 = InterfaceFuncInvoker0< Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * >::Invoke(1 /* UnityEngine.Transform UnityEngine.UI.ICanvasElement::get_transform() */, ICanvasElement_t26FA36346B5CB52C9144DF0076E33E8C367471D2_il2cpp_TypeInfo_var, L_10);
IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var);
Debug_LogException_m3CC9A37CD398E5B7F2305896F0969939F1BD1E3E(((Exception_t *)__exception_local), L_11, /*hidden argument*/NULL);
// }
goto IL_005b;
} // end catch (depth: 1)
IL_005b:
{
// for (int j = 0; j < m_LayoutRebuildQueue.Count; j++)
int32_t L_12 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
}
IL_005f:
{
// for (int j = 0; j < m_LayoutRebuildQueue.Count; j++)
int32_t L_13 = V_1;
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_14 = __this->get_m_LayoutRebuildQueue_5();
int32_t L_15 = IndexedSet_1_get_Count_m1CB8C29C8118B6846AAB3A4A1430A00907E480D0(L_14, /*hidden argument*/IndexedSet_1_get_Count_m1CB8C29C8118B6846AAB3A4A1430A00907E480D0_RuntimeMethod_var);
if ((((int32_t)L_13) < ((int32_t)L_15)))
{
goto IL_002b;
}
}
{
// for (int i = 0; i <= (int)CanvasUpdate.PostLayout; i++)
int32_t L_16 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_0071:
{
// for (int i = 0; i <= (int)CanvasUpdate.PostLayout; i++)
int32_t L_17 = V_0;
if ((((int32_t)L_17) <= ((int32_t)2)))
{
goto IL_0027;
}
}
{
// for (int i = 0; i < m_LayoutRebuildQueue.Count; ++i)
V_3 = 0;
goto IL_008e;
}
IL_0079:
{
// m_LayoutRebuildQueue[i].LayoutComplete();
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_18 = __this->get_m_LayoutRebuildQueue_5();
int32_t L_19 = V_3;
RuntimeObject* L_20 = IndexedSet_1_get_Item_m657F3612726374420908A01DEB93BFF92F80A64A(L_18, L_19, /*hidden argument*/IndexedSet_1_get_Item_m657F3612726374420908A01DEB93BFF92F80A64A_RuntimeMethod_var);
InterfaceActionInvoker0::Invoke(2 /* System.Void UnityEngine.UI.ICanvasElement::LayoutComplete() */, ICanvasElement_t26FA36346B5CB52C9144DF0076E33E8C367471D2_il2cpp_TypeInfo_var, L_20);
// for (int i = 0; i < m_LayoutRebuildQueue.Count; ++i)
int32_t L_21 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1));
}
IL_008e:
{
// for (int i = 0; i < m_LayoutRebuildQueue.Count; ++i)
int32_t L_22 = V_3;
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_23 = __this->get_m_LayoutRebuildQueue_5();
int32_t L_24 = IndexedSet_1_get_Count_m1CB8C29C8118B6846AAB3A4A1430A00907E480D0(L_23, /*hidden argument*/IndexedSet_1_get_Count_m1CB8C29C8118B6846AAB3A4A1430A00907E480D0_RuntimeMethod_var);
if ((((int32_t)L_22) < ((int32_t)L_24)))
{
goto IL_0079;
}
}
{
// instance.m_LayoutRebuildQueue.Clear();
IL2CPP_RUNTIME_CLASS_INIT(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var);
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * L_25 = CanvasUpdateRegistry_get_instance_m6A2150EA4C8C74AF18E53B3CF22BF6EAF70FF927(/*hidden argument*/NULL);
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_26 = L_25->get_m_LayoutRebuildQueue_5();
IndexedSet_1_Clear_mE65E26890CD37A447B016CFE3348AD0E24E40238(L_26, /*hidden argument*/IndexedSet_1_Clear_mE65E26890CD37A447B016CFE3348AD0E24E40238_RuntimeMethod_var);
// m_PerformingLayoutUpdate = false;
__this->set_m_PerformingLayoutUpdate_1((bool)0);
// UISystemProfilerApi.EndSample(UISystemProfilerApi.SampleType.Layout);
UISystemProfilerApi_EndSample_mB7DD865D72832D3558931B4E6801999B23F0429A(0, /*hidden argument*/NULL);
// UISystemProfilerApi.BeginSample(UISystemProfilerApi.SampleType.Render);
UISystemProfilerApi_BeginSample_m43EF1B2F9606D5F0C99DF84505C5498AA0CDBB1B(1, /*hidden argument*/NULL);
// ClipperRegistry.instance.Cull();
ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F * L_27 = ClipperRegistry_get_instance_mE4E214237577A08B2A6C8AF9DD7CDAE1B75E387B(/*hidden argument*/NULL);
ClipperRegistry_Cull_mBCB5139DD0FBCC6436ABA8F014E455DF219ADB18(L_27, /*hidden argument*/NULL);
// m_PerformingGraphicUpdate = true;
__this->set_m_PerformingGraphicUpdate_2((bool)1);
// for (var i = (int)CanvasUpdate.PreRender; i < (int)CanvasUpdate.MaxUpdateValue; i++)
V_4 = 3;
goto IL_013e;
}
IL_00d4:
{
// for (var k = 0; k < instance.m_GraphicRebuildQueue.Count; k++)
V_5 = 0;
goto IL_0125;
}
IL_00d9:
{
}
IL_00da:
try
{ // begin try (depth: 1)
{
// var element = instance.m_GraphicRebuildQueue[k];
IL2CPP_RUNTIME_CLASS_INIT(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var);
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * L_28 = CanvasUpdateRegistry_get_instance_m6A2150EA4C8C74AF18E53B3CF22BF6EAF70FF927(/*hidden argument*/NULL);
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_29 = L_28->get_m_GraphicRebuildQueue_6();
int32_t L_30 = V_5;
RuntimeObject* L_31 = IndexedSet_1_get_Item_m657F3612726374420908A01DEB93BFF92F80A64A(L_29, L_30, /*hidden argument*/IndexedSet_1_get_Item_m657F3612726374420908A01DEB93BFF92F80A64A_RuntimeMethod_var);
V_6 = L_31;
// if (ObjectValidForUpdate(element))
RuntimeObject* L_32 = V_6;
bool L_33 = CanvasUpdateRegistry_ObjectValidForUpdate_m0A572FA254D152E92FD6D6DC63B4B0FA66B88250(__this, L_32, /*hidden argument*/NULL);
if (!L_33)
{
goto IL_0100;
}
}
IL_00f7:
{
// element.Rebuild((CanvasUpdate)i);
RuntimeObject* L_34 = V_6;
int32_t L_35 = V_4;
InterfaceActionInvoker1< int32_t >::Invoke(0 /* System.Void UnityEngine.UI.ICanvasElement::Rebuild(UnityEngine.UI.CanvasUpdate) */, ICanvasElement_t26FA36346B5CB52C9144DF0076E33E8C367471D2_il2cpp_TypeInfo_var, L_34, L_35);
}
IL_0100:
{
// }
goto IL_011f;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0102;
throw e;
}
CATCH_0102:
{ // begin catch(System.Exception)
// Debug.LogException(e, instance.m_GraphicRebuildQueue[k].transform);
IL2CPP_RUNTIME_CLASS_INIT(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var);
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * L_36 = CanvasUpdateRegistry_get_instance_m6A2150EA4C8C74AF18E53B3CF22BF6EAF70FF927(/*hidden argument*/NULL);
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_37 = L_36->get_m_GraphicRebuildQueue_6();
int32_t L_38 = V_5;
RuntimeObject* L_39 = IndexedSet_1_get_Item_m657F3612726374420908A01DEB93BFF92F80A64A(L_37, L_38, /*hidden argument*/IndexedSet_1_get_Item_m657F3612726374420908A01DEB93BFF92F80A64A_RuntimeMethod_var);
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_40 = InterfaceFuncInvoker0< Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * >::Invoke(1 /* UnityEngine.Transform UnityEngine.UI.ICanvasElement::get_transform() */, ICanvasElement_t26FA36346B5CB52C9144DF0076E33E8C367471D2_il2cpp_TypeInfo_var, L_39);
IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var);
Debug_LogException_m3CC9A37CD398E5B7F2305896F0969939F1BD1E3E(((Exception_t *)__exception_local), L_40, /*hidden argument*/NULL);
// }
goto IL_011f;
} // end catch (depth: 1)
IL_011f:
{
// for (var k = 0; k < instance.m_GraphicRebuildQueue.Count; k++)
int32_t L_41 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1));
}
IL_0125:
{
// for (var k = 0; k < instance.m_GraphicRebuildQueue.Count; k++)
int32_t L_42 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var);
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * L_43 = CanvasUpdateRegistry_get_instance_m6A2150EA4C8C74AF18E53B3CF22BF6EAF70FF927(/*hidden argument*/NULL);
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_44 = L_43->get_m_GraphicRebuildQueue_6();
int32_t L_45 = IndexedSet_1_get_Count_m1CB8C29C8118B6846AAB3A4A1430A00907E480D0(L_44, /*hidden argument*/IndexedSet_1_get_Count_m1CB8C29C8118B6846AAB3A4A1430A00907E480D0_RuntimeMethod_var);
if ((((int32_t)L_42) < ((int32_t)L_45)))
{
goto IL_00d9;
}
}
{
// for (var i = (int)CanvasUpdate.PreRender; i < (int)CanvasUpdate.MaxUpdateValue; i++)
int32_t L_46 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1));
}
IL_013e:
{
// for (var i = (int)CanvasUpdate.PreRender; i < (int)CanvasUpdate.MaxUpdateValue; i++)
int32_t L_47 = V_4;
if ((((int32_t)L_47) < ((int32_t)5)))
{
goto IL_00d4;
}
}
{
// for (int i = 0; i < m_GraphicRebuildQueue.Count; ++i)
V_7 = 0;
goto IL_0160;
}
IL_0148:
{
// m_GraphicRebuildQueue[i].GraphicUpdateComplete();
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_48 = __this->get_m_GraphicRebuildQueue_6();
int32_t L_49 = V_7;
RuntimeObject* L_50 = IndexedSet_1_get_Item_m657F3612726374420908A01DEB93BFF92F80A64A(L_48, L_49, /*hidden argument*/IndexedSet_1_get_Item_m657F3612726374420908A01DEB93BFF92F80A64A_RuntimeMethod_var);
InterfaceActionInvoker0::Invoke(3 /* System.Void UnityEngine.UI.ICanvasElement::GraphicUpdateComplete() */, ICanvasElement_t26FA36346B5CB52C9144DF0076E33E8C367471D2_il2cpp_TypeInfo_var, L_50);
// for (int i = 0; i < m_GraphicRebuildQueue.Count; ++i)
int32_t L_51 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_51, (int32_t)1));
}
IL_0160:
{
// for (int i = 0; i < m_GraphicRebuildQueue.Count; ++i)
int32_t L_52 = V_7;
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_53 = __this->get_m_GraphicRebuildQueue_6();
int32_t L_54 = IndexedSet_1_get_Count_m1CB8C29C8118B6846AAB3A4A1430A00907E480D0(L_53, /*hidden argument*/IndexedSet_1_get_Count_m1CB8C29C8118B6846AAB3A4A1430A00907E480D0_RuntimeMethod_var);
if ((((int32_t)L_52) < ((int32_t)L_54)))
{
goto IL_0148;
}
}
{
// instance.m_GraphicRebuildQueue.Clear();
IL2CPP_RUNTIME_CLASS_INIT(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var);
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * L_55 = CanvasUpdateRegistry_get_instance_m6A2150EA4C8C74AF18E53B3CF22BF6EAF70FF927(/*hidden argument*/NULL);
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_56 = L_55->get_m_GraphicRebuildQueue_6();
IndexedSet_1_Clear_mE65E26890CD37A447B016CFE3348AD0E24E40238(L_56, /*hidden argument*/IndexedSet_1_Clear_mE65E26890CD37A447B016CFE3348AD0E24E40238_RuntimeMethod_var);
// m_PerformingGraphicUpdate = false;
__this->set_m_PerformingGraphicUpdate_2((bool)0);
// UISystemProfilerApi.EndSample(UISystemProfilerApi.SampleType.Render);
UISystemProfilerApi_EndSample_mB7DD865D72832D3558931B4E6801999B23F0429A(1, /*hidden argument*/NULL);
// }
return;
}
}
// System.Int32 UnityEngine.UI.CanvasUpdateRegistry::ParentCount(UnityEngine.Transform)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CanvasUpdateRegistry_ParentCount_m41ED796F144AF2FF40F97F45687086942FE09776 (Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___child0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasUpdateRegistry_ParentCount_m41ED796F144AF2FF40F97F45687086942FE09776_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * V_0 = NULL;
int32_t V_1 = 0;
{
// if (child == null)
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_0 = ___child0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_000b;
}
}
{
// return 0;
return 0;
}
IL_000b:
{
// var parent = child.parent;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_2 = ___child0;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_3 = Transform_get_parent_m8FA24E38A1FA29D90CBF3CDC9F9F017C65BB3403(L_2, /*hidden argument*/NULL);
V_0 = L_3;
// int count = 0;
V_1 = 0;
goto IL_0021;
}
IL_0016:
{
// count++;
int32_t L_4 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1));
// parent = parent.parent;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_5 = V_0;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_6 = Transform_get_parent_m8FA24E38A1FA29D90CBF3CDC9F9F017C65BB3403(L_5, /*hidden argument*/NULL);
V_0 = L_6;
}
IL_0021:
{
// while (parent != null)
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_7 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_8 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_7, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (L_8)
{
goto IL_0016;
}
}
{
// return count;
int32_t L_9 = V_1;
return L_9;
}
}
// System.Int32 UnityEngine.UI.CanvasUpdateRegistry::SortLayoutList(UnityEngine.UI.ICanvasElement,UnityEngine.UI.ICanvasElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CanvasUpdateRegistry_SortLayoutList_mB2F2B63B28CC722E5AA645835963DD3678FC08BA (RuntimeObject* ___x0, RuntimeObject* ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasUpdateRegistry_SortLayoutList_mB2F2B63B28CC722E5AA645835963DD3678FC08BA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * V_0 = NULL;
{
// Transform t1 = x.transform;
RuntimeObject* L_0 = ___x0;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_1 = InterfaceFuncInvoker0< Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * >::Invoke(1 /* UnityEngine.Transform UnityEngine.UI.ICanvasElement::get_transform() */, ICanvasElement_t26FA36346B5CB52C9144DF0076E33E8C367471D2_il2cpp_TypeInfo_var, L_0);
// Transform t2 = y.transform;
RuntimeObject* L_2 = ___y1;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_3 = InterfaceFuncInvoker0< Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * >::Invoke(1 /* UnityEngine.Transform UnityEngine.UI.ICanvasElement::get_transform() */, ICanvasElement_t26FA36346B5CB52C9144DF0076E33E8C367471D2_il2cpp_TypeInfo_var, L_2);
V_0 = L_3;
// return ParentCount(t1) - ParentCount(t2);
IL2CPP_RUNTIME_CLASS_INIT(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var);
int32_t L_4 = CanvasUpdateRegistry_ParentCount_m41ED796F144AF2FF40F97F45687086942FE09776(L_1, /*hidden argument*/NULL);
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_5 = V_0;
int32_t L_6 = CanvasUpdateRegistry_ParentCount_m41ED796F144AF2FF40F97F45687086942FE09776(L_5, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_6));
}
}
// System.Void UnityEngine.UI.CanvasUpdateRegistry::RegisterCanvasElementForLayoutRebuild(UnityEngine.UI.ICanvasElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasUpdateRegistry_RegisterCanvasElementForLayoutRebuild_mD64DEDFC14F5B52DE3A685CD1B132907A784D70D (RuntimeObject* ___element0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasUpdateRegistry_RegisterCanvasElementForLayoutRebuild_mD64DEDFC14F5B52DE3A685CD1B132907A784D70D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// instance.InternalRegisterCanvasElementForLayoutRebuild(element);
IL2CPP_RUNTIME_CLASS_INIT(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var);
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * L_0 = CanvasUpdateRegistry_get_instance_m6A2150EA4C8C74AF18E53B3CF22BF6EAF70FF927(/*hidden argument*/NULL);
RuntimeObject* L_1 = ___element0;
CanvasUpdateRegistry_InternalRegisterCanvasElementForLayoutRebuild_m4B27D53D884E8281D102493C216A85402702B02B(L_0, L_1, /*hidden argument*/NULL);
// }
return;
}
}
// System.Boolean UnityEngine.UI.CanvasUpdateRegistry::TryRegisterCanvasElementForLayoutRebuild(UnityEngine.UI.ICanvasElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CanvasUpdateRegistry_TryRegisterCanvasElementForLayoutRebuild_m4D405FFBB41D68D0D1A260DBFBC196257EC95898 (RuntimeObject* ___element0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasUpdateRegistry_TryRegisterCanvasElementForLayoutRebuild_m4D405FFBB41D68D0D1A260DBFBC196257EC95898_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// return instance.InternalRegisterCanvasElementForLayoutRebuild(element);
IL2CPP_RUNTIME_CLASS_INIT(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var);
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * L_0 = CanvasUpdateRegistry_get_instance_m6A2150EA4C8C74AF18E53B3CF22BF6EAF70FF927(/*hidden argument*/NULL);
RuntimeObject* L_1 = ___element0;
bool L_2 = CanvasUpdateRegistry_InternalRegisterCanvasElementForLayoutRebuild_m4B27D53D884E8281D102493C216A85402702B02B(L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Boolean UnityEngine.UI.CanvasUpdateRegistry::InternalRegisterCanvasElementForLayoutRebuild(UnityEngine.UI.ICanvasElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CanvasUpdateRegistry_InternalRegisterCanvasElementForLayoutRebuild_m4B27D53D884E8281D102493C216A85402702B02B (CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * __this, RuntimeObject* ___element0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasUpdateRegistry_InternalRegisterCanvasElementForLayoutRebuild_m4B27D53D884E8281D102493C216A85402702B02B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (m_LayoutRebuildQueue.Contains(element))
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_0 = __this->get_m_LayoutRebuildQueue_5();
RuntimeObject* L_1 = ___element0;
bool L_2 = IndexedSet_1_Contains_m32C5F79FCDC99990211CBB191DFAA6A2591804D9(L_0, L_1, /*hidden argument*/IndexedSet_1_Contains_m32C5F79FCDC99990211CBB191DFAA6A2591804D9_RuntimeMethod_var);
if (!L_2)
{
goto IL_0010;
}
}
{
// return false;
return (bool)0;
}
IL_0010:
{
// return m_LayoutRebuildQueue.AddUnique(element);
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_3 = __this->get_m_LayoutRebuildQueue_5();
RuntimeObject* L_4 = ___element0;
bool L_5 = IndexedSet_1_AddUnique_mC7E7DF6E2912B691DFB7939E6843A767EB94E994(L_3, L_4, /*hidden argument*/IndexedSet_1_AddUnique_mC7E7DF6E2912B691DFB7939E6843A767EB94E994_RuntimeMethod_var);
return L_5;
}
}
// System.Void UnityEngine.UI.CanvasUpdateRegistry::RegisterCanvasElementForGraphicRebuild(UnityEngine.UI.ICanvasElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasUpdateRegistry_RegisterCanvasElementForGraphicRebuild_m78F01AB29AC2F8BA889E0D0A67CD150BE0006508 (RuntimeObject* ___element0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasUpdateRegistry_RegisterCanvasElementForGraphicRebuild_m78F01AB29AC2F8BA889E0D0A67CD150BE0006508_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// instance.InternalRegisterCanvasElementForGraphicRebuild(element);
IL2CPP_RUNTIME_CLASS_INIT(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var);
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * L_0 = CanvasUpdateRegistry_get_instance_m6A2150EA4C8C74AF18E53B3CF22BF6EAF70FF927(/*hidden argument*/NULL);
RuntimeObject* L_1 = ___element0;
CanvasUpdateRegistry_InternalRegisterCanvasElementForGraphicRebuild_m21F2CD6F08EA106A9B7CB61836836E67D9AD014A(L_0, L_1, /*hidden argument*/NULL);
// }
return;
}
}
// System.Boolean UnityEngine.UI.CanvasUpdateRegistry::TryRegisterCanvasElementForGraphicRebuild(UnityEngine.UI.ICanvasElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CanvasUpdateRegistry_TryRegisterCanvasElementForGraphicRebuild_mF9026CA6334F6B484FC243F0C1BFAE15EDBDEB11 (RuntimeObject* ___element0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasUpdateRegistry_TryRegisterCanvasElementForGraphicRebuild_mF9026CA6334F6B484FC243F0C1BFAE15EDBDEB11_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// return instance.InternalRegisterCanvasElementForGraphicRebuild(element);
IL2CPP_RUNTIME_CLASS_INIT(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var);
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * L_0 = CanvasUpdateRegistry_get_instance_m6A2150EA4C8C74AF18E53B3CF22BF6EAF70FF927(/*hidden argument*/NULL);
RuntimeObject* L_1 = ___element0;
bool L_2 = CanvasUpdateRegistry_InternalRegisterCanvasElementForGraphicRebuild_m21F2CD6F08EA106A9B7CB61836836E67D9AD014A(L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Boolean UnityEngine.UI.CanvasUpdateRegistry::InternalRegisterCanvasElementForGraphicRebuild(UnityEngine.UI.ICanvasElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CanvasUpdateRegistry_InternalRegisterCanvasElementForGraphicRebuild_m21F2CD6F08EA106A9B7CB61836836E67D9AD014A (CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * __this, RuntimeObject* ___element0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasUpdateRegistry_InternalRegisterCanvasElementForGraphicRebuild_m21F2CD6F08EA106A9B7CB61836836E67D9AD014A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (m_PerformingGraphicUpdate)
bool L_0 = __this->get_m_PerformingGraphicUpdate_2();
if (!L_0)
{
goto IL_001a;
}
}
{
// Debug.LogError(string.Format("Trying to add {0} for graphic rebuild while we are already inside a graphic rebuild loop. This is not supported.", element));
RuntimeObject* L_1 = ___element0;
String_t* L_2 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA(_stringLiteralD6A06A0B45F8310E2889D44E54EAE01DFA2767A7, L_1, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var);
Debug_LogError_m3BCF9B78263152261565DCA9DB7D55F0C391ED29(L_2, /*hidden argument*/NULL);
// return false;
return (bool)0;
}
IL_001a:
{
// return m_GraphicRebuildQueue.AddUnique(element);
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_3 = __this->get_m_GraphicRebuildQueue_6();
RuntimeObject* L_4 = ___element0;
bool L_5 = IndexedSet_1_AddUnique_mC7E7DF6E2912B691DFB7939E6843A767EB94E994(L_3, L_4, /*hidden argument*/IndexedSet_1_AddUnique_mC7E7DF6E2912B691DFB7939E6843A767EB94E994_RuntimeMethod_var);
return L_5;
}
}
// System.Void UnityEngine.UI.CanvasUpdateRegistry::UnRegisterCanvasElementForRebuild(UnityEngine.UI.ICanvasElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasUpdateRegistry_UnRegisterCanvasElementForRebuild_m65BE77E918ACF3C08D0C2651B3120120AC7A5FD0 (RuntimeObject* ___element0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasUpdateRegistry_UnRegisterCanvasElementForRebuild_m65BE77E918ACF3C08D0C2651B3120120AC7A5FD0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// instance.InternalUnRegisterCanvasElementForLayoutRebuild(element);
IL2CPP_RUNTIME_CLASS_INIT(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var);
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * L_0 = CanvasUpdateRegistry_get_instance_m6A2150EA4C8C74AF18E53B3CF22BF6EAF70FF927(/*hidden argument*/NULL);
RuntimeObject* L_1 = ___element0;
CanvasUpdateRegistry_InternalUnRegisterCanvasElementForLayoutRebuild_m257D195226FDF05E9A9723745094408E556A165E(L_0, L_1, /*hidden argument*/NULL);
// instance.InternalUnRegisterCanvasElementForGraphicRebuild(element);
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * L_2 = CanvasUpdateRegistry_get_instance_m6A2150EA4C8C74AF18E53B3CF22BF6EAF70FF927(/*hidden argument*/NULL);
RuntimeObject* L_3 = ___element0;
CanvasUpdateRegistry_InternalUnRegisterCanvasElementForGraphicRebuild_mE9C5DB7632C213651671F55119B385984FDA52BB(L_2, L_3, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.CanvasUpdateRegistry::InternalUnRegisterCanvasElementForLayoutRebuild(UnityEngine.UI.ICanvasElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasUpdateRegistry_InternalUnRegisterCanvasElementForLayoutRebuild_m257D195226FDF05E9A9723745094408E556A165E (CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * __this, RuntimeObject* ___element0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasUpdateRegistry_InternalUnRegisterCanvasElementForLayoutRebuild_m257D195226FDF05E9A9723745094408E556A165E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (m_PerformingLayoutUpdate)
bool L_0 = __this->get_m_PerformingLayoutUpdate_1();
if (!L_0)
{
goto IL_0019;
}
}
{
// Debug.LogError(string.Format("Trying to remove {0} from rebuild list while we are already inside a rebuild loop. This is not supported.", element));
RuntimeObject* L_1 = ___element0;
String_t* L_2 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA(_stringLiteralEBDA6601B7D5DC69F1D7C38173816D204DA06B9A, L_1, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var);
Debug_LogError_m3BCF9B78263152261565DCA9DB7D55F0C391ED29(L_2, /*hidden argument*/NULL);
// return;
return;
}
IL_0019:
{
// element.LayoutComplete();
RuntimeObject* L_3 = ___element0;
InterfaceActionInvoker0::Invoke(2 /* System.Void UnityEngine.UI.ICanvasElement::LayoutComplete() */, ICanvasElement_t26FA36346B5CB52C9144DF0076E33E8C367471D2_il2cpp_TypeInfo_var, L_3);
// instance.m_LayoutRebuildQueue.Remove(element);
IL2CPP_RUNTIME_CLASS_INIT(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var);
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * L_4 = CanvasUpdateRegistry_get_instance_m6A2150EA4C8C74AF18E53B3CF22BF6EAF70FF927(/*hidden argument*/NULL);
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_5 = L_4->get_m_LayoutRebuildQueue_5();
RuntimeObject* L_6 = ___element0;
IndexedSet_1_Remove_m2FB9F291535ED37DBF0E9DBB42F8B63E8B7AE980(L_5, L_6, /*hidden argument*/IndexedSet_1_Remove_m2FB9F291535ED37DBF0E9DBB42F8B63E8B7AE980_RuntimeMethod_var);
// }
return;
}
}
// System.Void UnityEngine.UI.CanvasUpdateRegistry::InternalUnRegisterCanvasElementForGraphicRebuild(UnityEngine.UI.ICanvasElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasUpdateRegistry_InternalUnRegisterCanvasElementForGraphicRebuild_mE9C5DB7632C213651671F55119B385984FDA52BB (CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * __this, RuntimeObject* ___element0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasUpdateRegistry_InternalUnRegisterCanvasElementForGraphicRebuild_mE9C5DB7632C213651671F55119B385984FDA52BB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (m_PerformingGraphicUpdate)
bool L_0 = __this->get_m_PerformingGraphicUpdate_2();
if (!L_0)
{
goto IL_0019;
}
}
{
// Debug.LogError(string.Format("Trying to remove {0} from rebuild list while we are already inside a rebuild loop. This is not supported.", element));
RuntimeObject* L_1 = ___element0;
String_t* L_2 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA(_stringLiteralEBDA6601B7D5DC69F1D7C38173816D204DA06B9A, L_1, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var);
Debug_LogError_m3BCF9B78263152261565DCA9DB7D55F0C391ED29(L_2, /*hidden argument*/NULL);
// return;
return;
}
IL_0019:
{
// element.GraphicUpdateComplete();
RuntimeObject* L_3 = ___element0;
InterfaceActionInvoker0::Invoke(3 /* System.Void UnityEngine.UI.ICanvasElement::GraphicUpdateComplete() */, ICanvasElement_t26FA36346B5CB52C9144DF0076E33E8C367471D2_il2cpp_TypeInfo_var, L_3);
// instance.m_GraphicRebuildQueue.Remove(element);
IL2CPP_RUNTIME_CLASS_INIT(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var);
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * L_4 = CanvasUpdateRegistry_get_instance_m6A2150EA4C8C74AF18E53B3CF22BF6EAF70FF927(/*hidden argument*/NULL);
IndexedSet_1_t8EDC9C01BB9C10576737E336E9887E1AB4CF4A61 * L_5 = L_4->get_m_GraphicRebuildQueue_6();
RuntimeObject* L_6 = ___element0;
IndexedSet_1_Remove_m2FB9F291535ED37DBF0E9DBB42F8B63E8B7AE980(L_5, L_6, /*hidden argument*/IndexedSet_1_Remove_m2FB9F291535ED37DBF0E9DBB42F8B63E8B7AE980_RuntimeMethod_var);
// }
return;
}
}
// System.Boolean UnityEngine.UI.CanvasUpdateRegistry::IsRebuildingLayout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CanvasUpdateRegistry_IsRebuildingLayout_m067422BB24431C94CE3DC7FB25760351B3015D80 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasUpdateRegistry_IsRebuildingLayout_m067422BB24431C94CE3DC7FB25760351B3015D80_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// return instance.m_PerformingLayoutUpdate;
IL2CPP_RUNTIME_CLASS_INIT(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var);
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * L_0 = CanvasUpdateRegistry_get_instance_m6A2150EA4C8C74AF18E53B3CF22BF6EAF70FF927(/*hidden argument*/NULL);
bool L_1 = L_0->get_m_PerformingLayoutUpdate_1();
return L_1;
}
}
// System.Boolean UnityEngine.UI.CanvasUpdateRegistry::IsRebuildingGraphics()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CanvasUpdateRegistry_IsRebuildingGraphics_m9675CE4A1FED3F73C3B0EDCD1DA90BB390EE2A03 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasUpdateRegistry_IsRebuildingGraphics_m9675CE4A1FED3F73C3B0EDCD1DA90BB390EE2A03_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// return instance.m_PerformingGraphicUpdate;
IL2CPP_RUNTIME_CLASS_INIT(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var);
CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9 * L_0 = CanvasUpdateRegistry_get_instance_m6A2150EA4C8C74AF18E53B3CF22BF6EAF70FF927(/*hidden argument*/NULL);
bool L_1 = L_0->get_m_PerformingGraphicUpdate_2();
return L_1;
}
}
// System.Void UnityEngine.UI.CanvasUpdateRegistry::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasUpdateRegistry__cctor_m4816A252A4E24967FBEF0AD749DDE9B3F8D5FB44 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CanvasUpdateRegistry__cctor_m4816A252A4E24967FBEF0AD749DDE9B3F8D5FB44_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// private static readonly Comparison<ICanvasElement> s_SortLayoutFunction = SortLayoutList;
Comparison_1_tE7E69DEDE3A7782BEEADFF223EE57D6F7F626AEC * L_0 = (Comparison_1_tE7E69DEDE3A7782BEEADFF223EE57D6F7F626AEC *)il2cpp_codegen_object_new(Comparison_1_tE7E69DEDE3A7782BEEADFF223EE57D6F7F626AEC_il2cpp_TypeInfo_var);
Comparison_1__ctor_m10B32226B56D355E5503821149C904BCF9F17DAC(L_0, NULL, (intptr_t)((intptr_t)CanvasUpdateRegistry_SortLayoutList_mB2F2B63B28CC722E5AA645835963DD3678FC08BA_RuntimeMethod_var), /*hidden argument*/Comparison_1__ctor_m10B32226B56D355E5503821149C904BCF9F17DAC_RuntimeMethod_var);
((CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_StaticFields*)il2cpp_codegen_static_fields_for(CanvasUpdateRegistry_t0F63B307D591C36C16910289988730A62CAB4CB9_il2cpp_TypeInfo_var))->set_s_SortLayoutFunction_7(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.UI.ClipperRegistry::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClipperRegistry__ctor_mBE6A18696846AD82B4C069BEA3C4318777A59521 (ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ClipperRegistry__ctor_mBE6A18696846AD82B4C069BEA3C4318777A59521_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// readonly IndexedSet<IClipper> m_Clippers = new IndexedSet<IClipper>();
IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A * L_0 = (IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A *)il2cpp_codegen_object_new(IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A_il2cpp_TypeInfo_var);
IndexedSet_1__ctor_m6229A7FC4962EA11D9BF02A057A80A0718898001(L_0, /*hidden argument*/IndexedSet_1__ctor_m6229A7FC4962EA11D9BF02A057A80A0718898001_RuntimeMethod_var);
__this->set_m_Clippers_1(L_0);
// protected ClipperRegistry()
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
// }
return;
}
}
// UnityEngine.UI.ClipperRegistry UnityEngine.UI.ClipperRegistry::get_instance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F * ClipperRegistry_get_instance_mE4E214237577A08B2A6C8AF9DD7CDAE1B75E387B (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ClipperRegistry_get_instance_mE4E214237577A08B2A6C8AF9DD7CDAE1B75E387B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (s_Instance == null)
ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F * L_0 = ((ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F_StaticFields*)il2cpp_codegen_static_fields_for(ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F_il2cpp_TypeInfo_var))->get_s_Instance_0();
if (L_0)
{
goto IL_0011;
}
}
{
// s_Instance = new ClipperRegistry();
ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F * L_1 = (ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F *)il2cpp_codegen_object_new(ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F_il2cpp_TypeInfo_var);
ClipperRegistry__ctor_mBE6A18696846AD82B4C069BEA3C4318777A59521(L_1, /*hidden argument*/NULL);
((ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F_StaticFields*)il2cpp_codegen_static_fields_for(ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F_il2cpp_TypeInfo_var))->set_s_Instance_0(L_1);
}
IL_0011:
{
// return s_Instance;
ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F * L_2 = ((ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F_StaticFields*)il2cpp_codegen_static_fields_for(ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F_il2cpp_TypeInfo_var))->get_s_Instance_0();
return L_2;
}
}
// System.Void UnityEngine.UI.ClipperRegistry::Cull()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClipperRegistry_Cull_mBCB5139DD0FBCC6436ABA8F014E455DF219ADB18 (ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ClipperRegistry_Cull_mBCB5139DD0FBCC6436ABA8F014E455DF219ADB18_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
// for (var i = 0; i < m_Clippers.Count; ++i)
V_0 = 0;
goto IL_0019;
}
IL_0004:
{
// m_Clippers[i].PerformClipping();
IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A * L_0 = __this->get_m_Clippers_1();
int32_t L_1 = V_0;
RuntimeObject* L_2 = IndexedSet_1_get_Item_m6711F92D6FD706E80DFD8F4F367C165F5902BC15(L_0, L_1, /*hidden argument*/IndexedSet_1_get_Item_m6711F92D6FD706E80DFD8F4F367C165F5902BC15_RuntimeMethod_var);
InterfaceActionInvoker0::Invoke(0 /* System.Void UnityEngine.UI.IClipper::PerformClipping() */, IClipper_t548E5A5A4671DF46008ECF051372EFAEB16C867F_il2cpp_TypeInfo_var, L_2);
// for (var i = 0; i < m_Clippers.Count; ++i)
int32_t L_3 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1));
}
IL_0019:
{
// for (var i = 0; i < m_Clippers.Count; ++i)
int32_t L_4 = V_0;
IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A * L_5 = __this->get_m_Clippers_1();
int32_t L_6 = IndexedSet_1_get_Count_m7E2FD722ACDC5D81B708B075E212803D092D8B68(L_5, /*hidden argument*/IndexedSet_1_get_Count_m7E2FD722ACDC5D81B708B075E212803D092D8B68_RuntimeMethod_var);
if ((((int32_t)L_4) < ((int32_t)L_6)))
{
goto IL_0004;
}
}
{
// }
return;
}
}
// System.Void UnityEngine.UI.ClipperRegistry::Register(UnityEngine.UI.IClipper)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClipperRegistry_Register_m3D9ADBB2F45433ABA125ADC70834A188BE5BB486 (RuntimeObject* ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ClipperRegistry_Register_m3D9ADBB2F45433ABA125ADC70834A188BE5BB486_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (c == null)
RuntimeObject* L_0 = ___c0;
if (L_0)
{
goto IL_0004;
}
}
{
// return;
return;
}
IL_0004:
{
// instance.m_Clippers.AddUnique(c);
ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F * L_1 = ClipperRegistry_get_instance_mE4E214237577A08B2A6C8AF9DD7CDAE1B75E387B(/*hidden argument*/NULL);
IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A * L_2 = L_1->get_m_Clippers_1();
RuntimeObject* L_3 = ___c0;
IndexedSet_1_AddUnique_mC24738E494850E9893B7D7FD5969B097EF1D0C93(L_2, L_3, /*hidden argument*/IndexedSet_1_AddUnique_mC24738E494850E9893B7D7FD5969B097EF1D0C93_RuntimeMethod_var);
// }
return;
}
}
// System.Void UnityEngine.UI.ClipperRegistry::Unregister(UnityEngine.UI.IClipper)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClipperRegistry_Unregister_mA09C34BE5C5BC681695DA6F638C3CA585B236467 (RuntimeObject* ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ClipperRegistry_Unregister_mA09C34BE5C5BC681695DA6F638C3CA585B236467_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// instance.m_Clippers.Remove(c);
ClipperRegistry_t21CAE5706F7A4BC1D3E54AE35468162956BF7F4F * L_0 = ClipperRegistry_get_instance_mE4E214237577A08B2A6C8AF9DD7CDAE1B75E387B(/*hidden argument*/NULL);
IndexedSet_1_t078E2E05FE393B36B32B9E8C5C046FD63C68604A * L_1 = L_0->get_m_Clippers_1();
RuntimeObject* L_2 = ___c0;
IndexedSet_1_Remove_m187CB1B44A3F31785213A5CB7506D91ECD8CCCEF(L_1, L_2, /*hidden argument*/IndexedSet_1_Remove_m187CB1B44A3F31785213A5CB7506D91ECD8CCCEF_RuntimeMethod_var);
// }
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Rect UnityEngine.UI.Clipping::FindCullAndClipWorldRect(System.Collections.Generic.List`1<UnityEngine.UI.RectMask2D>,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_t35B976DE901B5423C11705E156938EA27AB402CE Clipping_FindCullAndClipWorldRect_mF3B79EF5BE61C8D2FCF12B428EA38A55FE1CA31A (List_1_tFE915F05C1A0D10E751CEC3F24F229A6C57E375C * ___rectMaskParents0, bool* ___validRect1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Clipping_FindCullAndClipWorldRect_mF3B79EF5BE61C8D2FCF12B428EA38A55FE1CA31A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Rect_t35B976DE901B5423C11705E156938EA27AB402CE V_0;
memset((&V_0), 0, sizeof(V_0));
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E V_1;
memset((&V_1), 0, sizeof(V_1));
float V_2 = 0.0f;
float V_3 = 0.0f;
float V_4 = 0.0f;
float V_5 = 0.0f;
Rect_t35B976DE901B5423C11705E156938EA27AB402CE V_6;
memset((&V_6), 0, sizeof(V_6));
int32_t V_7 = 0;
bool* G_B15_0 = NULL;
bool* G_B14_0 = NULL;
int32_t G_B16_0 = 0;
bool* G_B16_1 = NULL;
{
// if (rectMaskParents.Count == 0)
List_1_tFE915F05C1A0D10E751CEC3F24F229A6C57E375C * L_0 = ___rectMaskParents0;
int32_t L_1 = List_1_get_Count_mFC002F15947CA8F0F0D6ABE5C6273E357E160AE8_inline(L_0, /*hidden argument*/List_1_get_Count_mFC002F15947CA8F0F0D6ABE5C6273E357E160AE8_RuntimeMethod_var);
if (L_1)
{
goto IL_0016;
}
}
{
// validRect = false;
bool* L_2 = ___validRect1;
*((int8_t*)L_2) = (int8_t)0;
// return new Rect();
il2cpp_codegen_initobj((&V_6), sizeof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE ));
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_3 = V_6;
return L_3;
}
IL_0016:
{
// Rect current = rectMaskParents[0].canvasRect;
List_1_tFE915F05C1A0D10E751CEC3F24F229A6C57E375C * L_4 = ___rectMaskParents0;
RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B * L_5 = List_1_get_Item_m568CF9C5AC5F5D02D8414E6F6C62F0B2D93115C4_inline(L_4, 0, /*hidden argument*/List_1_get_Item_m568CF9C5AC5F5D02D8414E6F6C62F0B2D93115C4_RuntimeMethod_var);
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_6 = RectMask2D_get_canvasRect_m2CFEAC92FBAE3C1E500CAD0BDB3D6CDD263558BA(L_5, /*hidden argument*/NULL);
V_0 = L_6;
// Vector4 offset = rectMaskParents[0].padding;
List_1_tFE915F05C1A0D10E751CEC3F24F229A6C57E375C * L_7 = ___rectMaskParents0;
RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B * L_8 = List_1_get_Item_m568CF9C5AC5F5D02D8414E6F6C62F0B2D93115C4_inline(L_7, 0, /*hidden argument*/List_1_get_Item_m568CF9C5AC5F5D02D8414E6F6C62F0B2D93115C4_RuntimeMethod_var);
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_9 = RectMask2D_get_padding_mAE70AF9C0ABD28AD225A2BFD4965C45883B31E20_inline(L_8, /*hidden argument*/NULL);
V_1 = L_9;
// float xMin = current.xMin + offset.x;
float L_10 = Rect_get_xMin_mFDFA74F66595FD2B8CE360183D1A92B575F0A76E((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_0), /*hidden argument*/NULL);
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_11 = V_1;
float L_12 = L_11.get_x_1();
V_2 = ((float)il2cpp_codegen_add((float)L_10, (float)L_12));
// float xMax = current.xMax - offset.z;
float L_13 = Rect_get_xMax_mA16D7C3C2F30F8608719073ED79028C11CE90983((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_0), /*hidden argument*/NULL);
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_14 = V_1;
float L_15 = L_14.get_z_3();
V_3 = ((float)il2cpp_codegen_subtract((float)L_13, (float)L_15));
// float yMin = current.yMin + offset.y;
float L_16 = Rect_get_yMin_m31EDC3262BE39D2F6464B15397F882237E6158C3((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_0), /*hidden argument*/NULL);
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_17 = V_1;
float L_18 = L_17.get_y_2();
V_4 = ((float)il2cpp_codegen_add((float)L_16, (float)L_18));
// float yMax = current.yMax - offset.w;
float L_19 = Rect_get_yMax_m8AA5E92C322AF3FF571330F00579DA864F33341B((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_0), /*hidden argument*/NULL);
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_20 = V_1;
float L_21 = L_20.get_w_4();
V_5 = ((float)il2cpp_codegen_subtract((float)L_19, (float)L_21));
// for (var i = 1; i < rectMaskParents.Count; ++i)
V_7 = 1;
goto IL_011c;
}
IL_0076:
{
// current = rectMaskParents[i].canvasRect;
List_1_tFE915F05C1A0D10E751CEC3F24F229A6C57E375C * L_22 = ___rectMaskParents0;
int32_t L_23 = V_7;
RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B * L_24 = List_1_get_Item_m568CF9C5AC5F5D02D8414E6F6C62F0B2D93115C4_inline(L_22, L_23, /*hidden argument*/List_1_get_Item_m568CF9C5AC5F5D02D8414E6F6C62F0B2D93115C4_RuntimeMethod_var);
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_25 = RectMask2D_get_canvasRect_m2CFEAC92FBAE3C1E500CAD0BDB3D6CDD263558BA(L_24, /*hidden argument*/NULL);
V_0 = L_25;
// offset = rectMaskParents[i].padding;
List_1_tFE915F05C1A0D10E751CEC3F24F229A6C57E375C * L_26 = ___rectMaskParents0;
int32_t L_27 = V_7;
RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B * L_28 = List_1_get_Item_m568CF9C5AC5F5D02D8414E6F6C62F0B2D93115C4_inline(L_26, L_27, /*hidden argument*/List_1_get_Item_m568CF9C5AC5F5D02D8414E6F6C62F0B2D93115C4_RuntimeMethod_var);
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_29 = RectMask2D_get_padding_mAE70AF9C0ABD28AD225A2BFD4965C45883B31E20_inline(L_28, /*hidden argument*/NULL);
V_1 = L_29;
// if (xMin < current.xMin + offset.x)
float L_30 = V_2;
float L_31 = Rect_get_xMin_mFDFA74F66595FD2B8CE360183D1A92B575F0A76E((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_0), /*hidden argument*/NULL);
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_32 = V_1;
float L_33 = L_32.get_x_1();
if ((!(((float)L_30) < ((float)((float)il2cpp_codegen_add((float)L_31, (float)L_33))))))
{
goto IL_00b2;
}
}
{
// xMin = current.xMin + offset.x;
float L_34 = Rect_get_xMin_mFDFA74F66595FD2B8CE360183D1A92B575F0A76E((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_0), /*hidden argument*/NULL);
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_35 = V_1;
float L_36 = L_35.get_x_1();
V_2 = ((float)il2cpp_codegen_add((float)L_34, (float)L_36));
}
IL_00b2:
{
// if (yMin < current.yMin + offset.y)
float L_37 = V_4;
float L_38 = Rect_get_yMin_m31EDC3262BE39D2F6464B15397F882237E6158C3((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_0), /*hidden argument*/NULL);
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_39 = V_1;
float L_40 = L_39.get_y_2();
if ((!(((float)L_37) < ((float)((float)il2cpp_codegen_add((float)L_38, (float)L_40))))))
{
goto IL_00d4;
}
}
{
// yMin = current.yMin + offset.y;
float L_41 = Rect_get_yMin_m31EDC3262BE39D2F6464B15397F882237E6158C3((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_0), /*hidden argument*/NULL);
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_42 = V_1;
float L_43 = L_42.get_y_2();
V_4 = ((float)il2cpp_codegen_add((float)L_41, (float)L_43));
}
IL_00d4:
{
// if (xMax > current.xMax - offset.z)
float L_44 = V_3;
float L_45 = Rect_get_xMax_mA16D7C3C2F30F8608719073ED79028C11CE90983((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_0), /*hidden argument*/NULL);
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_46 = V_1;
float L_47 = L_46.get_z_3();
if ((!(((float)L_44) > ((float)((float)il2cpp_codegen_subtract((float)L_45, (float)L_47))))))
{
goto IL_00f4;
}
}
{
// xMax = current.xMax - offset.z;
float L_48 = Rect_get_xMax_mA16D7C3C2F30F8608719073ED79028C11CE90983((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_0), /*hidden argument*/NULL);
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_49 = V_1;
float L_50 = L_49.get_z_3();
V_3 = ((float)il2cpp_codegen_subtract((float)L_48, (float)L_50));
}
IL_00f4:
{
// if (yMax > current.yMax - offset.w)
float L_51 = V_5;
float L_52 = Rect_get_yMax_m8AA5E92C322AF3FF571330F00579DA864F33341B((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_0), /*hidden argument*/NULL);
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_53 = V_1;
float L_54 = L_53.get_w_4();
if ((!(((float)L_51) > ((float)((float)il2cpp_codegen_subtract((float)L_52, (float)L_54))))))
{
goto IL_0116;
}
}
{
// yMax = current.yMax - offset.w;
float L_55 = Rect_get_yMax_m8AA5E92C322AF3FF571330F00579DA864F33341B((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_0), /*hidden argument*/NULL);
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_56 = V_1;
float L_57 = L_56.get_w_4();
V_5 = ((float)il2cpp_codegen_subtract((float)L_55, (float)L_57));
}
IL_0116:
{
// for (var i = 1; i < rectMaskParents.Count; ++i)
int32_t L_58 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_58, (int32_t)1));
}
IL_011c:
{
// for (var i = 1; i < rectMaskParents.Count; ++i)
int32_t L_59 = V_7;
List_1_tFE915F05C1A0D10E751CEC3F24F229A6C57E375C * L_60 = ___rectMaskParents0;
int32_t L_61 = List_1_get_Count_mFC002F15947CA8F0F0D6ABE5C6273E357E160AE8_inline(L_60, /*hidden argument*/List_1_get_Count_mFC002F15947CA8F0F0D6ABE5C6273E357E160AE8_RuntimeMethod_var);
if ((((int32_t)L_59) < ((int32_t)L_61)))
{
goto IL_0076;
}
}
{
// validRect = xMax > xMin && yMax > yMin;
bool* L_62 = ___validRect1;
float L_63 = V_3;
float L_64 = V_2;
G_B14_0 = L_62;
if ((!(((float)L_63) > ((float)L_64))))
{
G_B15_0 = L_62;
goto IL_0136;
}
}
{
float L_65 = V_5;
float L_66 = V_4;
G_B16_0 = ((((float)L_65) > ((float)L_66))? 1 : 0);
G_B16_1 = G_B14_0;
goto IL_0137;
}
IL_0136:
{
G_B16_0 = 0;
G_B16_1 = G_B15_0;
}
IL_0137:
{
*((int8_t*)G_B16_1) = (int8_t)G_B16_0;
// if (validRect)
bool* L_67 = ___validRect1;
int32_t L_68 = *((uint8_t*)L_67);
if (!L_68)
{
goto IL_014d;
}
}
{
// return new Rect(xMin, yMin, xMax - xMin, yMax - yMin);
float L_69 = V_2;
float L_70 = V_4;
float L_71 = V_3;
float L_72 = V_2;
float L_73 = V_5;
float L_74 = V_4;
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_75;
memset((&L_75), 0, sizeof(L_75));
Rect__ctor_m50B92C75005C9C5A0D05E6E0EBB43AFAF7C66280((&L_75), L_69, L_70, ((float)il2cpp_codegen_subtract((float)L_71, (float)L_72)), ((float)il2cpp_codegen_subtract((float)L_73, (float)L_74)), /*hidden argument*/NULL);
return L_75;
}
IL_014d:
{
// return new Rect();
il2cpp_codegen_initobj((&V_6), sizeof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE ));
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_76 = V_6;
return L_76;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Color UnityEngine.UI.ColorBlock::get_normalColor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorBlock_get_normalColor_mE0A4EBADEFB7A6F245F590B0A5DBB59F289C0905 (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, const RuntimeMethod* method)
{
{
// public Color normalColor { get { return m_NormalColor; } set { m_NormalColor = value; } }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = __this->get_m_NormalColor_0();
return L_0;
}
}
IL2CPP_EXTERN_C Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorBlock_get_normalColor_mE0A4EBADEFB7A6F245F590B0A5DBB59F289C0905_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * _thisAdjusted = reinterpret_cast<ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *>(__this + _offset);
return ColorBlock_get_normalColor_mE0A4EBADEFB7A6F245F590B0A5DBB59F289C0905_inline(_thisAdjusted, method);
}
// System.Void UnityEngine.UI.ColorBlock::set_normalColor(UnityEngine.Color)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorBlock_set_normalColor_mF36865F66914F3902ACAF7E64B3E6C664EA81911 (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method)
{
{
// public Color normalColor { get { return m_NormalColor; } set { m_NormalColor = value; } }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = ___value0;
__this->set_m_NormalColor_0(L_0);
// public Color normalColor { get { return m_NormalColor; } set { m_NormalColor = value; } }
return;
}
}
IL2CPP_EXTERN_C void ColorBlock_set_normalColor_mF36865F66914F3902ACAF7E64B3E6C664EA81911_AdjustorThunk (RuntimeObject * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * _thisAdjusted = reinterpret_cast<ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *>(__this + _offset);
ColorBlock_set_normalColor_mF36865F66914F3902ACAF7E64B3E6C664EA81911_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.Color UnityEngine.UI.ColorBlock::get_highlightedColor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorBlock_get_highlightedColor_m779349828B304DB2551C3A3CCDDD69861A21EDFF (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, const RuntimeMethod* method)
{
{
// public Color highlightedColor { get { return m_HighlightedColor; } set { m_HighlightedColor = value; } }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = __this->get_m_HighlightedColor_1();
return L_0;
}
}
IL2CPP_EXTERN_C Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorBlock_get_highlightedColor_m779349828B304DB2551C3A3CCDDD69861A21EDFF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * _thisAdjusted = reinterpret_cast<ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *>(__this + _offset);
return ColorBlock_get_highlightedColor_m779349828B304DB2551C3A3CCDDD69861A21EDFF_inline(_thisAdjusted, method);
}
// System.Void UnityEngine.UI.ColorBlock::set_highlightedColor(UnityEngine.Color)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorBlock_set_highlightedColor_mAE0BF4A697744D841048D8BE9A0C8963226B4B3A (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method)
{
{
// public Color highlightedColor { get { return m_HighlightedColor; } set { m_HighlightedColor = value; } }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = ___value0;
__this->set_m_HighlightedColor_1(L_0);
// public Color highlightedColor { get { return m_HighlightedColor; } set { m_HighlightedColor = value; } }
return;
}
}
IL2CPP_EXTERN_C void ColorBlock_set_highlightedColor_mAE0BF4A697744D841048D8BE9A0C8963226B4B3A_AdjustorThunk (RuntimeObject * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * _thisAdjusted = reinterpret_cast<ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *>(__this + _offset);
ColorBlock_set_highlightedColor_mAE0BF4A697744D841048D8BE9A0C8963226B4B3A_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.Color UnityEngine.UI.ColorBlock::get_pressedColor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorBlock_get_pressedColor_m19AA95DCC2519975D93202C997EECB3E06CE96E5 (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, const RuntimeMethod* method)
{
{
// public Color pressedColor { get { return m_PressedColor; } set { m_PressedColor = value; } }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = __this->get_m_PressedColor_2();
return L_0;
}
}
IL2CPP_EXTERN_C Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorBlock_get_pressedColor_m19AA95DCC2519975D93202C997EECB3E06CE96E5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * _thisAdjusted = reinterpret_cast<ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *>(__this + _offset);
return ColorBlock_get_pressedColor_m19AA95DCC2519975D93202C997EECB3E06CE96E5_inline(_thisAdjusted, method);
}
// System.Void UnityEngine.UI.ColorBlock::set_pressedColor(UnityEngine.Color)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorBlock_set_pressedColor_mAE69CAEBA8CA45E089F6C7CA2F1B8C530705E70B (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method)
{
{
// public Color pressedColor { get { return m_PressedColor; } set { m_PressedColor = value; } }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = ___value0;
__this->set_m_PressedColor_2(L_0);
// public Color pressedColor { get { return m_PressedColor; } set { m_PressedColor = value; } }
return;
}
}
IL2CPP_EXTERN_C void ColorBlock_set_pressedColor_mAE69CAEBA8CA45E089F6C7CA2F1B8C530705E70B_AdjustorThunk (RuntimeObject * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * _thisAdjusted = reinterpret_cast<ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *>(__this + _offset);
ColorBlock_set_pressedColor_mAE69CAEBA8CA45E089F6C7CA2F1B8C530705E70B_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.Color UnityEngine.UI.ColorBlock::get_selectedColor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorBlock_get_selectedColor_mE6DDB9D2D3466CCFFFF000286619BEC4AB60F83D (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, const RuntimeMethod* method)
{
{
// public Color selectedColor { get { return m_SelectedColor; } set { m_SelectedColor = value; } }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = __this->get_m_SelectedColor_3();
return L_0;
}
}
IL2CPP_EXTERN_C Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorBlock_get_selectedColor_mE6DDB9D2D3466CCFFFF000286619BEC4AB60F83D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * _thisAdjusted = reinterpret_cast<ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *>(__this + _offset);
return ColorBlock_get_selectedColor_mE6DDB9D2D3466CCFFFF000286619BEC4AB60F83D_inline(_thisAdjusted, method);
}
// System.Void UnityEngine.UI.ColorBlock::set_selectedColor(UnityEngine.Color)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorBlock_set_selectedColor_mA8B032467C571D28563D91766B0E956FB265ACC9 (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method)
{
{
// public Color selectedColor { get { return m_SelectedColor; } set { m_SelectedColor = value; } }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = ___value0;
__this->set_m_SelectedColor_3(L_0);
// public Color selectedColor { get { return m_SelectedColor; } set { m_SelectedColor = value; } }
return;
}
}
IL2CPP_EXTERN_C void ColorBlock_set_selectedColor_mA8B032467C571D28563D91766B0E956FB265ACC9_AdjustorThunk (RuntimeObject * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * _thisAdjusted = reinterpret_cast<ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *>(__this + _offset);
ColorBlock_set_selectedColor_mA8B032467C571D28563D91766B0E956FB265ACC9_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.Color UnityEngine.UI.ColorBlock::get_disabledColor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorBlock_get_disabledColor_mD865FC8BCFE7B8535A51A68E78130409F3C97FC8 (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, const RuntimeMethod* method)
{
{
// public Color disabledColor { get { return m_DisabledColor; } set { m_DisabledColor = value; } }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = __this->get_m_DisabledColor_4();
return L_0;
}
}
IL2CPP_EXTERN_C Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorBlock_get_disabledColor_mD865FC8BCFE7B8535A51A68E78130409F3C97FC8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * _thisAdjusted = reinterpret_cast<ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *>(__this + _offset);
return ColorBlock_get_disabledColor_mD865FC8BCFE7B8535A51A68E78130409F3C97FC8_inline(_thisAdjusted, method);
}
// System.Void UnityEngine.UI.ColorBlock::set_disabledColor(UnityEngine.Color)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorBlock_set_disabledColor_m530D0573E0257BAB82F2FFEA0E22C743911B4588 (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method)
{
{
// public Color disabledColor { get { return m_DisabledColor; } set { m_DisabledColor = value; } }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = ___value0;
__this->set_m_DisabledColor_4(L_0);
// public Color disabledColor { get { return m_DisabledColor; } set { m_DisabledColor = value; } }
return;
}
}
IL2CPP_EXTERN_C void ColorBlock_set_disabledColor_m530D0573E0257BAB82F2FFEA0E22C743911B4588_AdjustorThunk (RuntimeObject * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * _thisAdjusted = reinterpret_cast<ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *>(__this + _offset);
ColorBlock_set_disabledColor_m530D0573E0257BAB82F2FFEA0E22C743911B4588_inline(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.UI.ColorBlock::get_colorMultiplier()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float ColorBlock_get_colorMultiplier_m8B3021855566FCCBD41100EB2B70B18172064DC5 (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, const RuntimeMethod* method)
{
{
// public float colorMultiplier { get { return m_ColorMultiplier; } set { m_ColorMultiplier = value; } }
float L_0 = __this->get_m_ColorMultiplier_5();
return L_0;
}
}
IL2CPP_EXTERN_C float ColorBlock_get_colorMultiplier_m8B3021855566FCCBD41100EB2B70B18172064DC5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * _thisAdjusted = reinterpret_cast<ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *>(__this + _offset);
return ColorBlock_get_colorMultiplier_m8B3021855566FCCBD41100EB2B70B18172064DC5_inline(_thisAdjusted, method);
}
// System.Void UnityEngine.UI.ColorBlock::set_colorMultiplier(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorBlock_set_colorMultiplier_m815DE55D842A1480A11D1051D559D9B63EE34672 (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, float ___value0, const RuntimeMethod* method)
{
{
// public float colorMultiplier { get { return m_ColorMultiplier; } set { m_ColorMultiplier = value; } }
float L_0 = ___value0;
__this->set_m_ColorMultiplier_5(L_0);
// public float colorMultiplier { get { return m_ColorMultiplier; } set { m_ColorMultiplier = value; } }
return;
}
}
IL2CPP_EXTERN_C void ColorBlock_set_colorMultiplier_m815DE55D842A1480A11D1051D559D9B63EE34672_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * _thisAdjusted = reinterpret_cast<ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *>(__this + _offset);
ColorBlock_set_colorMultiplier_m815DE55D842A1480A11D1051D559D9B63EE34672_inline(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.UI.ColorBlock::get_fadeDuration()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float ColorBlock_get_fadeDuration_mD5EA922E1FA90C1BA224652C1DFC25FEE93830D5 (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, const RuntimeMethod* method)
{
{
// public float fadeDuration { get { return m_FadeDuration; } set { m_FadeDuration = value; } }
float L_0 = __this->get_m_FadeDuration_6();
return L_0;
}
}
IL2CPP_EXTERN_C float ColorBlock_get_fadeDuration_mD5EA922E1FA90C1BA224652C1DFC25FEE93830D5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * _thisAdjusted = reinterpret_cast<ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *>(__this + _offset);
return ColorBlock_get_fadeDuration_mD5EA922E1FA90C1BA224652C1DFC25FEE93830D5_inline(_thisAdjusted, method);
}
// System.Void UnityEngine.UI.ColorBlock::set_fadeDuration(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorBlock_set_fadeDuration_mE31362D1331C613F27505EB7581A734A2E58C917 (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, float ___value0, const RuntimeMethod* method)
{
{
// public float fadeDuration { get { return m_FadeDuration; } set { m_FadeDuration = value; } }
float L_0 = ___value0;
__this->set_m_FadeDuration_6(L_0);
// public float fadeDuration { get { return m_FadeDuration; } set { m_FadeDuration = value; } }
return;
}
}
IL2CPP_EXTERN_C void ColorBlock_set_fadeDuration_mE31362D1331C613F27505EB7581A734A2E58C917_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * _thisAdjusted = reinterpret_cast<ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *>(__this + _offset);
ColorBlock_set_fadeDuration_mE31362D1331C613F27505EB7581A734A2E58C917_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.UI.ColorBlock UnityEngine.UI.ColorBlock::get_defaultColorBlock()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA ColorBlock_get_defaultColorBlock_mD3AEFDABCF5F714D81FB2047A744930650EC223E (const RuntimeMethod* method)
{
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA V_0;
memset((&V_0), 0, sizeof(V_0));
{
// var c = new ColorBlock
// {
// m_NormalColor = new Color32(255, 255, 255, 255),
// m_HighlightedColor = new Color32(245, 245, 245, 255),
// m_PressedColor = new Color32(200, 200, 200, 255),
// m_SelectedColor = new Color32(245, 245, 245, 255),
// m_DisabledColor = new Color32(200, 200, 200, 128),
// colorMultiplier = 1.0f,
// fadeDuration = 0.1f
// };
il2cpp_codegen_initobj((&V_0), sizeof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA ));
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 L_0;
memset((&L_0), 0, sizeof(L_0));
Color32__ctor_m1AEF46FBBBE4B522E6984D081A3D158198E10AA2((&L_0), (uint8_t)((int32_t)255), (uint8_t)((int32_t)255), (uint8_t)((int32_t)255), (uint8_t)((int32_t)255), /*hidden argument*/NULL);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_1 = Color32_op_Implicit_mA89CAD76E78975F51DF7374A67D18A5F6EF8DA61(L_0, /*hidden argument*/NULL);
(&V_0)->set_m_NormalColor_0(L_1);
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 L_2;
memset((&L_2), 0, sizeof(L_2));
Color32__ctor_m1AEF46FBBBE4B522E6984D081A3D158198E10AA2((&L_2), (uint8_t)((int32_t)245), (uint8_t)((int32_t)245), (uint8_t)((int32_t)245), (uint8_t)((int32_t)255), /*hidden argument*/NULL);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_3 = Color32_op_Implicit_mA89CAD76E78975F51DF7374A67D18A5F6EF8DA61(L_2, /*hidden argument*/NULL);
(&V_0)->set_m_HighlightedColor_1(L_3);
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 L_4;
memset((&L_4), 0, sizeof(L_4));
Color32__ctor_m1AEF46FBBBE4B522E6984D081A3D158198E10AA2((&L_4), (uint8_t)((int32_t)200), (uint8_t)((int32_t)200), (uint8_t)((int32_t)200), (uint8_t)((int32_t)255), /*hidden argument*/NULL);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_5 = Color32_op_Implicit_mA89CAD76E78975F51DF7374A67D18A5F6EF8DA61(L_4, /*hidden argument*/NULL);
(&V_0)->set_m_PressedColor_2(L_5);
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 L_6;
memset((&L_6), 0, sizeof(L_6));
Color32__ctor_m1AEF46FBBBE4B522E6984D081A3D158198E10AA2((&L_6), (uint8_t)((int32_t)245), (uint8_t)((int32_t)245), (uint8_t)((int32_t)245), (uint8_t)((int32_t)255), /*hidden argument*/NULL);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_7 = Color32_op_Implicit_mA89CAD76E78975F51DF7374A67D18A5F6EF8DA61(L_6, /*hidden argument*/NULL);
(&V_0)->set_m_SelectedColor_3(L_7);
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 L_8;
memset((&L_8), 0, sizeof(L_8));
Color32__ctor_m1AEF46FBBBE4B522E6984D081A3D158198E10AA2((&L_8), (uint8_t)((int32_t)200), (uint8_t)((int32_t)200), (uint8_t)((int32_t)200), (uint8_t)((int32_t)128), /*hidden argument*/NULL);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_9 = Color32_op_Implicit_mA89CAD76E78975F51DF7374A67D18A5F6EF8DA61(L_8, /*hidden argument*/NULL);
(&V_0)->set_m_DisabledColor_4(L_9);
ColorBlock_set_colorMultiplier_m815DE55D842A1480A11D1051D559D9B63EE34672_inline((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(&V_0), (1.0f), /*hidden argument*/NULL);
ColorBlock_set_fadeDuration_mE31362D1331C613F27505EB7581A734A2E58C917_inline((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(&V_0), (0.1f), /*hidden argument*/NULL);
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA L_10 = V_0;
// return c;
return L_10;
}
}
// System.Boolean UnityEngine.UI.ColorBlock::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ColorBlock_Equals_mCA2055CA21C85A585504A447B3B048480BB7AB21 (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ColorBlock_Equals_mCA2055CA21C85A585504A447B3B048480BB7AB21_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (!(obj is ColorBlock))
RuntimeObject * L_0 = ___obj0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_il2cpp_TypeInfo_var)))
{
goto IL_000a;
}
}
{
// return false;
return (bool)0;
}
IL_000a:
{
// return Equals((ColorBlock)obj);
RuntimeObject * L_1 = ___obj0;
bool L_2 = ColorBlock_Equals_m3768CE3E85F9FD55FCA305EA20FF33983B4DB26C((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)__this, ((*(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)UnBox(L_1, ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
}
IL2CPP_EXTERN_C bool ColorBlock_Equals_mCA2055CA21C85A585504A447B3B048480BB7AB21_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * _thisAdjusted = reinterpret_cast<ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *>(__this + _offset);
return ColorBlock_Equals_mCA2055CA21C85A585504A447B3B048480BB7AB21(_thisAdjusted, ___obj0, method);
}
// System.Boolean UnityEngine.UI.ColorBlock::Equals(UnityEngine.UI.ColorBlock)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ColorBlock_Equals_m3768CE3E85F9FD55FCA305EA20FF33983B4DB26C (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA ___other0, const RuntimeMethod* method)
{
{
// return normalColor == other.normalColor &&
// highlightedColor == other.highlightedColor &&
// pressedColor == other.pressedColor &&
// selectedColor == other.selectedColor &&
// disabledColor == other.disabledColor &&
// colorMultiplier == other.colorMultiplier &&
// fadeDuration == other.fadeDuration;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = ColorBlock_get_normalColor_mE0A4EBADEFB7A6F245F590B0A5DBB59F289C0905_inline((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)__this, /*hidden argument*/NULL);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_1 = ColorBlock_get_normalColor_mE0A4EBADEFB7A6F245F590B0A5DBB59F289C0905_inline((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(&___other0), /*hidden argument*/NULL);
bool L_2 = Color_op_Equality_m71B1A2F64AD6228F10E20149EF6440460D2C748E(L_0, L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0083;
}
}
{
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_3 = ColorBlock_get_highlightedColor_m779349828B304DB2551C3A3CCDDD69861A21EDFF_inline((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)__this, /*hidden argument*/NULL);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_4 = ColorBlock_get_highlightedColor_m779349828B304DB2551C3A3CCDDD69861A21EDFF_inline((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(&___other0), /*hidden argument*/NULL);
bool L_5 = Color_op_Equality_m71B1A2F64AD6228F10E20149EF6440460D2C748E(L_3, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0083;
}
}
{
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_6 = ColorBlock_get_pressedColor_m19AA95DCC2519975D93202C997EECB3E06CE96E5_inline((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)__this, /*hidden argument*/NULL);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_7 = ColorBlock_get_pressedColor_m19AA95DCC2519975D93202C997EECB3E06CE96E5_inline((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(&___other0), /*hidden argument*/NULL);
bool L_8 = Color_op_Equality_m71B1A2F64AD6228F10E20149EF6440460D2C748E(L_6, L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_0083;
}
}
{
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_9 = ColorBlock_get_selectedColor_mE6DDB9D2D3466CCFFFF000286619BEC4AB60F83D_inline((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)__this, /*hidden argument*/NULL);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_10 = ColorBlock_get_selectedColor_mE6DDB9D2D3466CCFFFF000286619BEC4AB60F83D_inline((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(&___other0), /*hidden argument*/NULL);
bool L_11 = Color_op_Equality_m71B1A2F64AD6228F10E20149EF6440460D2C748E(L_9, L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0083;
}
}
{
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_12 = ColorBlock_get_disabledColor_mD865FC8BCFE7B8535A51A68E78130409F3C97FC8_inline((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)__this, /*hidden argument*/NULL);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_13 = ColorBlock_get_disabledColor_mD865FC8BCFE7B8535A51A68E78130409F3C97FC8_inline((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(&___other0), /*hidden argument*/NULL);
bool L_14 = Color_op_Equality_m71B1A2F64AD6228F10E20149EF6440460D2C748E(L_12, L_13, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_0083;
}
}
{
float L_15 = ColorBlock_get_colorMultiplier_m8B3021855566FCCBD41100EB2B70B18172064DC5_inline((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)__this, /*hidden argument*/NULL);
float L_16 = ColorBlock_get_colorMultiplier_m8B3021855566FCCBD41100EB2B70B18172064DC5_inline((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(&___other0), /*hidden argument*/NULL);
if ((!(((float)L_15) == ((float)L_16))))
{
goto IL_0083;
}
}
{
float L_17 = ColorBlock_get_fadeDuration_mD5EA922E1FA90C1BA224652C1DFC25FEE93830D5_inline((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)__this, /*hidden argument*/NULL);
float L_18 = ColorBlock_get_fadeDuration_mD5EA922E1FA90C1BA224652C1DFC25FEE93830D5_inline((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(&___other0), /*hidden argument*/NULL);
return (bool)((((float)L_17) == ((float)L_18))? 1 : 0);
}
IL_0083:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool ColorBlock_Equals_m3768CE3E85F9FD55FCA305EA20FF33983B4DB26C_AdjustorThunk (RuntimeObject * __this, ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA ___other0, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * _thisAdjusted = reinterpret_cast<ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *>(__this + _offset);
return ColorBlock_Equals_m3768CE3E85F9FD55FCA305EA20FF33983B4DB26C(_thisAdjusted, ___other0, method);
}
// System.Boolean UnityEngine.UI.ColorBlock::op_Equality(UnityEngine.UI.ColorBlock,UnityEngine.UI.ColorBlock)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ColorBlock_op_Equality_m63592FF29309D3AF64710205FD9797D2E4AF4E3C (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA ___point10, ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA ___point21, const RuntimeMethod* method)
{
{
// return point1.Equals(point2);
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA L_0 = ___point21;
bool L_1 = ColorBlock_Equals_m3768CE3E85F9FD55FCA305EA20FF33983B4DB26C((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(&___point10), L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Boolean UnityEngine.UI.ColorBlock::op_Inequality(UnityEngine.UI.ColorBlock,UnityEngine.UI.ColorBlock)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ColorBlock_op_Inequality_mEC2D35C789210F1825B114A5E224B0FB6975C1A0 (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA ___point10, ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA ___point21, const RuntimeMethod* method)
{
{
// return !point1.Equals(point2);
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA L_0 = ___point21;
bool L_1 = ColorBlock_Equals_m3768CE3E85F9FD55FCA305EA20FF33983B4DB26C((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(&___point10), L_0, /*hidden argument*/NULL);
return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
}
}
// System.Int32 UnityEngine.UI.ColorBlock::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ColorBlock_GetHashCode_m1F4A5EC52681DEE9C205F4A5C5A60051DAF71111 (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ColorBlock_GetHashCode_m1F4A5EC52681DEE9C205F4A5C5A60051DAF71111_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// return base.GetHashCode();
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA L_0 = (*(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)__this);
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA L_1 = L_0;
RuntimeObject * L_2 = Box(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_il2cpp_TypeInfo_var, &L_1);
int32_t L_3 = ValueType_GetHashCode_m48E9FA7FFC7C27D876E764A94E3CF2039ED6C9F9((ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF *)L_2, /*hidden argument*/NULL);
return L_3;
}
}
IL2CPP_EXTERN_C int32_t ColorBlock_GetHashCode_m1F4A5EC52681DEE9C205F4A5C5A60051DAF71111_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * _thisAdjusted = reinterpret_cast<ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *>(__this + _offset);
return ColorBlock_GetHashCode_m1F4A5EC52681DEE9C205F4A5C5A60051DAF71111(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.UI.ContentSizeFitter_FitMode UnityEngine.UI.ContentSizeFitter::get_horizontalFit()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ContentSizeFitter_get_horizontalFit_mB775F652AC10946108F7D44BB52C57413086F524 (ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8 * __this, const RuntimeMethod* method)
{
{
// public FitMode horizontalFit { get { return m_HorizontalFit; } set { if (SetPropertyUtility.SetStruct(ref m_HorizontalFit, value)) SetDirty(); } }
int32_t L_0 = __this->get_m_HorizontalFit_4();
return L_0;
}
}
// System.Void UnityEngine.UI.ContentSizeFitter::set_horizontalFit(UnityEngine.UI.ContentSizeFitter_FitMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentSizeFitter_set_horizontalFit_m38BB1F91ECB19CA55395886DE04404293568DE53 (ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8 * __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ContentSizeFitter_set_horizontalFit_m38BB1F91ECB19CA55395886DE04404293568DE53_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// public FitMode horizontalFit { get { return m_HorizontalFit; } set { if (SetPropertyUtility.SetStruct(ref m_HorizontalFit, value)) SetDirty(); } }
int32_t* L_0 = __this->get_address_of_m_HorizontalFit_4();
int32_t L_1 = ___value0;
bool L_2 = SetPropertyUtility_SetStruct_TisFitMode_tBF783E77415F7063B468C18E758F738D83D60A08_mAB5FD1502245CDD21A16BD16A2E61ECEA23297CA((int32_t*)L_0, L_1, /*hidden argument*/SetPropertyUtility_SetStruct_TisFitMode_tBF783E77415F7063B468C18E758F738D83D60A08_mAB5FD1502245CDD21A16BD16A2E61ECEA23297CA_RuntimeMethod_var);
if (!L_2)
{
goto IL_0014;
}
}
{
// public FitMode horizontalFit { get { return m_HorizontalFit; } set { if (SetPropertyUtility.SetStruct(ref m_HorizontalFit, value)) SetDirty(); } }
ContentSizeFitter_SetDirty_m018F67222A9B6CB351DB14625794E9508A153670(__this, /*hidden argument*/NULL);
}
IL_0014:
{
// public FitMode horizontalFit { get { return m_HorizontalFit; } set { if (SetPropertyUtility.SetStruct(ref m_HorizontalFit, value)) SetDirty(); } }
return;
}
}
// UnityEngine.UI.ContentSizeFitter_FitMode UnityEngine.UI.ContentSizeFitter::get_verticalFit()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ContentSizeFitter_get_verticalFit_m937F784A1D950E72A561B7DF96206ADA5F1FC490 (ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8 * __this, const RuntimeMethod* method)
{
{
// public FitMode verticalFit { get { return m_VerticalFit; } set { if (SetPropertyUtility.SetStruct(ref m_VerticalFit, value)) SetDirty(); } }
int32_t L_0 = __this->get_m_VerticalFit_5();
return L_0;
}
}
// System.Void UnityEngine.UI.ContentSizeFitter::set_verticalFit(UnityEngine.UI.ContentSizeFitter_FitMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentSizeFitter_set_verticalFit_mFE092A2EA456864549B62369A11A711230C181EF (ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8 * __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ContentSizeFitter_set_verticalFit_mFE092A2EA456864549B62369A11A711230C181EF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// public FitMode verticalFit { get { return m_VerticalFit; } set { if (SetPropertyUtility.SetStruct(ref m_VerticalFit, value)) SetDirty(); } }
int32_t* L_0 = __this->get_address_of_m_VerticalFit_5();
int32_t L_1 = ___value0;
bool L_2 = SetPropertyUtility_SetStruct_TisFitMode_tBF783E77415F7063B468C18E758F738D83D60A08_mAB5FD1502245CDD21A16BD16A2E61ECEA23297CA((int32_t*)L_0, L_1, /*hidden argument*/SetPropertyUtility_SetStruct_TisFitMode_tBF783E77415F7063B468C18E758F738D83D60A08_mAB5FD1502245CDD21A16BD16A2E61ECEA23297CA_RuntimeMethod_var);
if (!L_2)
{
goto IL_0014;
}
}
{
// public FitMode verticalFit { get { return m_VerticalFit; } set { if (SetPropertyUtility.SetStruct(ref m_VerticalFit, value)) SetDirty(); } }
ContentSizeFitter_SetDirty_m018F67222A9B6CB351DB14625794E9508A153670(__this, /*hidden argument*/NULL);
}
IL_0014:
{
// public FitMode verticalFit { get { return m_VerticalFit; } set { if (SetPropertyUtility.SetStruct(ref m_VerticalFit, value)) SetDirty(); } }
return;
}
}
// UnityEngine.RectTransform UnityEngine.UI.ContentSizeFitter::get_rectTransform()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ContentSizeFitter_get_rectTransform_mE7FD5F977E954B6D54B9C1CCD112A4A70840CF56 (ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ContentSizeFitter_get_rectTransform_mE7FD5F977E954B6D54B9C1CCD112A4A70840CF56_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (m_Rect == null)
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_0 = __this->get_m_Rect_6();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_001a;
}
}
{
// m_Rect = GetComponent<RectTransform>();
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_2 = Component_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_mEF939F54B6B56187EC11E16F51DCB12EB62C2103(__this, /*hidden argument*/Component_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_mEF939F54B6B56187EC11E16F51DCB12EB62C2103_RuntimeMethod_var);
__this->set_m_Rect_6(L_2);
}
IL_001a:
{
// return m_Rect;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_3 = __this->get_m_Rect_6();
return L_3;
}
}
// System.Void UnityEngine.UI.ContentSizeFitter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentSizeFitter__ctor_mBEE0AF95BB3FAFA553708EBC870D4FE2E3443B65 (ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8 * __this, const RuntimeMethod* method)
{
{
// protected ContentSizeFitter()
UIBehaviour__ctor_m1B44EE4BDA3604F96C48379524B9907FEB15EB53(__this, /*hidden argument*/NULL);
// {}
return;
}
}
// System.Void UnityEngine.UI.ContentSizeFitter::OnEnable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentSizeFitter_OnEnable_m13D8C85D4331DD5890A140523A57221153FE2657 (ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8 * __this, const RuntimeMethod* method)
{
{
// base.OnEnable();
UIBehaviour_OnEnable_m4FF74AADA5E101F59DC5C19DCA82110F7482CB56(__this, /*hidden argument*/NULL);
// SetDirty();
ContentSizeFitter_SetDirty_m018F67222A9B6CB351DB14625794E9508A153670(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.ContentSizeFitter::OnDisable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentSizeFitter_OnDisable_m1E5A38232518EDD43A9B2265B2EB496F91C9DEB8 (ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ContentSizeFitter_OnDisable_m1E5A38232518EDD43A9B2265B2EB496F91C9DEB8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// m_Tracker.Clear();
DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 * L_0 = __this->get_address_of_m_Tracker_7();
DrivenRectTransformTracker_Clear_m328659F339A4FB519C9A208A685DDED106B6FC89((DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 *)L_0, /*hidden argument*/NULL);
// LayoutRebuilder.MarkLayoutForRebuild(rectTransform);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_1 = ContentSizeFitter_get_rectTransform_mE7FD5F977E954B6D54B9C1CCD112A4A70840CF56(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(LayoutRebuilder_t8D3501B43B1DE666140E2931FFA732B5B09EA5BD_il2cpp_TypeInfo_var);
LayoutRebuilder_MarkLayoutForRebuild_m09DF1D1C1BFD83B8D9181E982D745F26D891343A(L_1, /*hidden argument*/NULL);
// base.OnDisable();
UIBehaviour_OnDisable_m43F5502A18FCFFD355381A95175DC71E0D4005EC(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.ContentSizeFitter::OnRectTransformDimensionsChange()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentSizeFitter_OnRectTransformDimensionsChange_m42E361EACC44809C1FFC876582163D1E2D5FE0AC (ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8 * __this, const RuntimeMethod* method)
{
{
// SetDirty();
ContentSizeFitter_SetDirty_m018F67222A9B6CB351DB14625794E9508A153670(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.ContentSizeFitter::HandleSelfFittingAlongAxis(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentSizeFitter_HandleSelfFittingAlongAxis_m6CB47EDA5C86EB609586AC0EA09289063A5E8E21 (ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8 * __this, int32_t ___axis0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * G_B7_0 = NULL;
ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8 * G_B7_1 = NULL;
DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 * G_B7_2 = NULL;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * G_B6_0 = NULL;
ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8 * G_B6_1 = NULL;
DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 * G_B6_2 = NULL;
int32_t G_B8_0 = 0;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * G_B8_1 = NULL;
ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8 * G_B8_2 = NULL;
DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 * G_B8_3 = NULL;
{
// FitMode fitting = (axis == 0 ? horizontalFit : verticalFit);
int32_t L_0 = ___axis0;
if (!L_0)
{
goto IL_000b;
}
}
{
int32_t L_1 = ContentSizeFitter_get_verticalFit_m937F784A1D950E72A561B7DF96206ADA5F1FC490_inline(__this, /*hidden argument*/NULL);
G_B3_0 = L_1;
goto IL_0011;
}
IL_000b:
{
int32_t L_2 = ContentSizeFitter_get_horizontalFit_mB775F652AC10946108F7D44BB52C57413086F524_inline(__this, /*hidden argument*/NULL);
G_B3_0 = L_2;
}
IL_0011:
{
V_0 = G_B3_0;
// if (fitting == FitMode.Unconstrained)
int32_t L_3 = V_0;
if (L_3)
{
goto IL_0029;
}
}
{
// m_Tracker.Add(this, rectTransform, DrivenTransformProperties.None);
DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 * L_4 = __this->get_address_of_m_Tracker_7();
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_5 = ContentSizeFitter_get_rectTransform_mE7FD5F977E954B6D54B9C1CCD112A4A70840CF56(__this, /*hidden argument*/NULL);
DrivenRectTransformTracker_Add_m51059F302FBD574E93820E8116283D1608D1AB5A((DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 *)L_4, __this, L_5, 0, /*hidden argument*/NULL);
// return;
return;
}
IL_0029:
{
// m_Tracker.Add(this, rectTransform, (axis == 0 ? DrivenTransformProperties.SizeDeltaX : DrivenTransformProperties.SizeDeltaY));
DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 * L_6 = __this->get_address_of_m_Tracker_7();
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_7 = ContentSizeFitter_get_rectTransform_mE7FD5F977E954B6D54B9C1CCD112A4A70840CF56(__this, /*hidden argument*/NULL);
int32_t L_8 = ___axis0;
G_B6_0 = L_7;
G_B6_1 = __this;
G_B6_2 = L_6;
if (!L_8)
{
G_B7_0 = L_7;
G_B7_1 = __this;
G_B7_2 = L_6;
goto IL_0040;
}
}
{
G_B8_0 = ((int32_t)8192);
G_B8_1 = G_B6_0;
G_B8_2 = G_B6_1;
G_B8_3 = G_B6_2;
goto IL_0045;
}
IL_0040:
{
G_B8_0 = ((int32_t)4096);
G_B8_1 = G_B7_0;
G_B8_2 = G_B7_1;
G_B8_3 = G_B7_2;
}
IL_0045:
{
DrivenRectTransformTracker_Add_m51059F302FBD574E93820E8116283D1608D1AB5A((DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 *)G_B8_3, G_B8_2, G_B8_1, G_B8_0, /*hidden argument*/NULL);
// if (fitting == FitMode.MinSize)
int32_t L_9 = V_0;
if ((!(((uint32_t)L_9) == ((uint32_t)1))))
{
goto IL_0067;
}
}
{
// rectTransform.SetSizeWithCurrentAnchors((RectTransform.Axis)axis, LayoutUtility.GetMinSize(m_Rect, axis));
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_10 = ContentSizeFitter_get_rectTransform_mE7FD5F977E954B6D54B9C1CCD112A4A70840CF56(__this, /*hidden argument*/NULL);
int32_t L_11 = ___axis0;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_12 = __this->get_m_Rect_6();
int32_t L_13 = ___axis0;
float L_14 = LayoutUtility_GetMinSize_m8A7CF1EB3F3D1CDC9FFA33F34761322F42701CB3(L_12, L_13, /*hidden argument*/NULL);
RectTransform_SetSizeWithCurrentAnchors_m6F93CD5B798E4A53F2085862EA1B4021AEAA6745(L_10, L_11, L_14, /*hidden argument*/NULL);
return;
}
IL_0067:
{
// rectTransform.SetSizeWithCurrentAnchors((RectTransform.Axis)axis, LayoutUtility.GetPreferredSize(m_Rect, axis));
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_15 = ContentSizeFitter_get_rectTransform_mE7FD5F977E954B6D54B9C1CCD112A4A70840CF56(__this, /*hidden argument*/NULL);
int32_t L_16 = ___axis0;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_17 = __this->get_m_Rect_6();
int32_t L_18 = ___axis0;
float L_19 = LayoutUtility_GetPreferredSize_mC035133B1A561870CB8FE14212D8E71BFF1742F6(L_17, L_18, /*hidden argument*/NULL);
RectTransform_SetSizeWithCurrentAnchors_m6F93CD5B798E4A53F2085862EA1B4021AEAA6745(L_15, L_16, L_19, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.ContentSizeFitter::SetLayoutHorizontal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentSizeFitter_SetLayoutHorizontal_m7A86741FD35792D94D3ECD29F258EDB2C1C0E821 (ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8 * __this, const RuntimeMethod* method)
{
{
// m_Tracker.Clear();
DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 * L_0 = __this->get_address_of_m_Tracker_7();
DrivenRectTransformTracker_Clear_m328659F339A4FB519C9A208A685DDED106B6FC89((DrivenRectTransformTracker_tB8FBBE24EEE9618CA32E4B3CF52F4AD7FDDEBE03 *)L_0, /*hidden argument*/NULL);
// HandleSelfFittingAlongAxis(0);
ContentSizeFitter_HandleSelfFittingAlongAxis_m6CB47EDA5C86EB609586AC0EA09289063A5E8E21(__this, 0, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.ContentSizeFitter::SetLayoutVertical()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentSizeFitter_SetLayoutVertical_m32994803FA0364E902848414EE2A906C4A540C7E (ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8 * __this, const RuntimeMethod* method)
{
{
// HandleSelfFittingAlongAxis(1);
ContentSizeFitter_HandleSelfFittingAlongAxis_m6CB47EDA5C86EB609586AC0EA09289063A5E8E21(__this, 1, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.ContentSizeFitter::SetDirty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentSizeFitter_SetDirty_m018F67222A9B6CB351DB14625794E9508A153670 (ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ContentSizeFitter_SetDirty_m018F67222A9B6CB351DB14625794E9508A153670_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (!IsActive())
bool L_0 = VirtFuncInvoker0< bool >::Invoke(9 /* System.Boolean UnityEngine.EventSystems.UIBehaviour::IsActive() */, __this);
if (L_0)
{
goto IL_0009;
}
}
{
// return;
return;
}
IL_0009:
{
// LayoutRebuilder.MarkLayoutForRebuild(rectTransform);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_1 = ContentSizeFitter_get_rectTransform_mE7FD5F977E954B6D54B9C1CCD112A4A70840CF56(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(LayoutRebuilder_t8D3501B43B1DE666140E2931FFA732B5B09EA5BD_il2cpp_TypeInfo_var);
LayoutRebuilder_MarkLayoutForRebuild_m09DF1D1C1BFD83B8D9181E982D745F26D891343A(L_1, /*hidden argument*/NULL);
// }
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.UI.CoroutineTween.ColorTween
IL2CPP_EXTERN_C void ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228_marshal_pinvoke(const ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228& unmarshaled, ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_Target_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Target' of type 'ColorTween': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Target_0Exception, NULL);
}
IL2CPP_EXTERN_C void ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228_marshal_pinvoke_back(const ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228_marshaled_pinvoke& marshaled, ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228& unmarshaled)
{
Exception_t* ___m_Target_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Target' of type 'ColorTween': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Target_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.UI.CoroutineTween.ColorTween
IL2CPP_EXTERN_C void ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228_marshal_pinvoke_cleanup(ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.UI.CoroutineTween.ColorTween
IL2CPP_EXTERN_C void ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228_marshal_com(const ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228& unmarshaled, ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228_marshaled_com& marshaled)
{
Exception_t* ___m_Target_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Target' of type 'ColorTween': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Target_0Exception, NULL);
}
IL2CPP_EXTERN_C void ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228_marshal_com_back(const ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228_marshaled_com& marshaled, ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228& unmarshaled)
{
Exception_t* ___m_Target_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Target' of type 'ColorTween': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Target_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.UI.CoroutineTween.ColorTween
IL2CPP_EXTERN_C void ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228_marshal_com_cleanup(ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228_marshaled_com& marshaled)
{
}
// UnityEngine.Color UnityEngine.UI.CoroutineTween.ColorTween::get_startColor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorTween_get_startColor_mA979B663DFD611DAC95F4A7B98AA36E24EE5E3D6 (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, const RuntimeMethod* method)
{
{
// get { return m_StartColor; }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = __this->get_m_StartColor_1();
return L_0;
}
}
IL2CPP_EXTERN_C Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorTween_get_startColor_mA979B663DFD611DAC95F4A7B98AA36E24EE5E3D6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * _thisAdjusted = reinterpret_cast<ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 *>(__this + _offset);
return ColorTween_get_startColor_mA979B663DFD611DAC95F4A7B98AA36E24EE5E3D6_inline(_thisAdjusted, method);
}
// System.Void UnityEngine.UI.CoroutineTween.ColorTween::set_startColor(UnityEngine.Color)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorTween_set_startColor_mA57B5D1E4C2FA32133D13E91D9B07253CCF3BFD8 (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method)
{
{
// set { m_StartColor = value; }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = ___value0;
__this->set_m_StartColor_1(L_0);
// set { m_StartColor = value; }
return;
}
}
IL2CPP_EXTERN_C void ColorTween_set_startColor_mA57B5D1E4C2FA32133D13E91D9B07253CCF3BFD8_AdjustorThunk (RuntimeObject * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * _thisAdjusted = reinterpret_cast<ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 *>(__this + _offset);
ColorTween_set_startColor_mA57B5D1E4C2FA32133D13E91D9B07253CCF3BFD8_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.Color UnityEngine.UI.CoroutineTween.ColorTween::get_targetColor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorTween_get_targetColor_m2620FDCF03617764286DCDF8000AA3BE59C9E7AF (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, const RuntimeMethod* method)
{
{
// get { return m_TargetColor; }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = __this->get_m_TargetColor_2();
return L_0;
}
}
IL2CPP_EXTERN_C Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorTween_get_targetColor_m2620FDCF03617764286DCDF8000AA3BE59C9E7AF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * _thisAdjusted = reinterpret_cast<ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 *>(__this + _offset);
return ColorTween_get_targetColor_m2620FDCF03617764286DCDF8000AA3BE59C9E7AF_inline(_thisAdjusted, method);
}
// System.Void UnityEngine.UI.CoroutineTween.ColorTween::set_targetColor(UnityEngine.Color)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorTween_set_targetColor_mB57B42752260A735D6F174F925822756088DAD26 (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method)
{
{
// set { m_TargetColor = value; }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = ___value0;
__this->set_m_TargetColor_2(L_0);
// set { m_TargetColor = value; }
return;
}
}
IL2CPP_EXTERN_C void ColorTween_set_targetColor_mB57B42752260A735D6F174F925822756088DAD26_AdjustorThunk (RuntimeObject * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * _thisAdjusted = reinterpret_cast<ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 *>(__this + _offset);
ColorTween_set_targetColor_mB57B42752260A735D6F174F925822756088DAD26_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.UI.CoroutineTween.ColorTween_ColorTweenMode UnityEngine.UI.CoroutineTween.ColorTween::get_tweenMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ColorTween_get_tweenMode_m908DEFB153497AC18AD08CB73AFF655C1F6D05FB (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, const RuntimeMethod* method)
{
{
// get { return m_TweenMode; }
int32_t L_0 = __this->get_m_TweenMode_3();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t ColorTween_get_tweenMode_m908DEFB153497AC18AD08CB73AFF655C1F6D05FB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * _thisAdjusted = reinterpret_cast<ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 *>(__this + _offset);
return ColorTween_get_tweenMode_m908DEFB153497AC18AD08CB73AFF655C1F6D05FB_inline(_thisAdjusted, method);
}
// System.Void UnityEngine.UI.CoroutineTween.ColorTween::set_tweenMode(UnityEngine.UI.CoroutineTween.ColorTween_ColorTweenMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorTween_set_tweenMode_m2C089877F55E0D82F68BFC3EEC33737F7D3D9E54 (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set { m_TweenMode = value; }
int32_t L_0 = ___value0;
__this->set_m_TweenMode_3(L_0);
// set { m_TweenMode = value; }
return;
}
}
IL2CPP_EXTERN_C void ColorTween_set_tweenMode_m2C089877F55E0D82F68BFC3EEC33737F7D3D9E54_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * _thisAdjusted = reinterpret_cast<ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 *>(__this + _offset);
ColorTween_set_tweenMode_m2C089877F55E0D82F68BFC3EEC33737F7D3D9E54_inline(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.UI.CoroutineTween.ColorTween::get_duration()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float ColorTween_get_duration_m7E952A00A8A606D7886422812EFB24A6D5BFB508 (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, const RuntimeMethod* method)
{
{
// get { return m_Duration; }
float L_0 = __this->get_m_Duration_4();
return L_0;
}
}
IL2CPP_EXTERN_C float ColorTween_get_duration_m7E952A00A8A606D7886422812EFB24A6D5BFB508_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * _thisAdjusted = reinterpret_cast<ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 *>(__this + _offset);
return ColorTween_get_duration_m7E952A00A8A606D7886422812EFB24A6D5BFB508_inline(_thisAdjusted, method);
}
// System.Void UnityEngine.UI.CoroutineTween.ColorTween::set_duration(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorTween_set_duration_mA6144F511A40F04787D3BEEAB4A0C0EBD66ADB5C (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, float ___value0, const RuntimeMethod* method)
{
{
// set { m_Duration = value; }
float L_0 = ___value0;
__this->set_m_Duration_4(L_0);
// set { m_Duration = value; }
return;
}
}
IL2CPP_EXTERN_C void ColorTween_set_duration_mA6144F511A40F04787D3BEEAB4A0C0EBD66ADB5C_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * _thisAdjusted = reinterpret_cast<ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 *>(__this + _offset);
ColorTween_set_duration_mA6144F511A40F04787D3BEEAB4A0C0EBD66ADB5C_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.UI.CoroutineTween.ColorTween::get_ignoreTimeScale()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ColorTween_get_ignoreTimeScale_mF935C53CA27D67D47AE0021A0DB8D92C392EF56B (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, const RuntimeMethod* method)
{
{
// get { return m_IgnoreTimeScale; }
bool L_0 = __this->get_m_IgnoreTimeScale_5();
return L_0;
}
}
IL2CPP_EXTERN_C bool ColorTween_get_ignoreTimeScale_mF935C53CA27D67D47AE0021A0DB8D92C392EF56B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * _thisAdjusted = reinterpret_cast<ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 *>(__this + _offset);
return ColorTween_get_ignoreTimeScale_mF935C53CA27D67D47AE0021A0DB8D92C392EF56B_inline(_thisAdjusted, method);
}
// System.Void UnityEngine.UI.CoroutineTween.ColorTween::set_ignoreTimeScale(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorTween_set_ignoreTimeScale_m4B2110395267132EB58541D4355630D0DB466512 (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// set { m_IgnoreTimeScale = value; }
bool L_0 = ___value0;
__this->set_m_IgnoreTimeScale_5(L_0);
// set { m_IgnoreTimeScale = value; }
return;
}
}
IL2CPP_EXTERN_C void ColorTween_set_ignoreTimeScale_m4B2110395267132EB58541D4355630D0DB466512_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * _thisAdjusted = reinterpret_cast<ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 *>(__this + _offset);
ColorTween_set_ignoreTimeScale_m4B2110395267132EB58541D4355630D0DB466512_inline(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.UI.CoroutineTween.ColorTween::TweenValue(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorTween_TweenValue_m4EF3CDDDDC3986BA6D06D4DB785310B131958749 (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, float ___floatPercentage0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ColorTween_TweenValue_m4EF3CDDDDC3986BA6D06D4DB785310B131958749_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// if (!ValidTarget())
bool L_0 = ColorTween_ValidTarget_mA5469658CB631C87CF97FC5AE2B9089A06678696((ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 *)__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_0009;
}
}
{
// return;
return;
}
IL_0009:
{
// var newColor = Color.Lerp(m_StartColor, m_TargetColor, floatPercentage);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_1 = __this->get_m_StartColor_1();
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_2 = __this->get_m_TargetColor_2();
float L_3 = ___floatPercentage0;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_4 = Color_Lerp_mD37EF718F1BAC65A7416655F0BC902CE76559C46(L_1, L_2, L_3, /*hidden argument*/NULL);
V_0 = L_4;
// if (m_TweenMode == ColorTweenMode.Alpha)
int32_t L_5 = __this->get_m_TweenMode_3();
if ((!(((uint32_t)L_5) == ((uint32_t)2))))
{
goto IL_005d;
}
}
{
// newColor.r = m_StartColor.r;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * L_6 = __this->get_address_of_m_StartColor_1();
float L_7 = L_6->get_r_0();
(&V_0)->set_r_0(L_7);
// newColor.g = m_StartColor.g;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * L_8 = __this->get_address_of_m_StartColor_1();
float L_9 = L_8->get_g_1();
(&V_0)->set_g_1(L_9);
// newColor.b = m_StartColor.b;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * L_10 = __this->get_address_of_m_StartColor_1();
float L_11 = L_10->get_b_2();
(&V_0)->set_b_2(L_11);
// }
goto IL_0078;
}
IL_005d:
{
// else if (m_TweenMode == ColorTweenMode.RGB)
int32_t L_12 = __this->get_m_TweenMode_3();
if ((!(((uint32_t)L_12) == ((uint32_t)1))))
{
goto IL_0078;
}
}
{
// newColor.a = m_StartColor.a;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * L_13 = __this->get_address_of_m_StartColor_1();
float L_14 = L_13->get_a_3();
(&V_0)->set_a_3(L_14);
}
IL_0078:
{
// m_Target.Invoke(newColor);
ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 * L_15 = __this->get_m_Target_0();
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_16 = V_0;
UnityEvent_1_Invoke_mB755E72B8F7D26CFA94C8B9B145F6019FB5932CC(L_15, L_16, /*hidden argument*/UnityEvent_1_Invoke_mB755E72B8F7D26CFA94C8B9B145F6019FB5932CC_RuntimeMethod_var);
// }
return;
}
}
IL2CPP_EXTERN_C void ColorTween_TweenValue_m4EF3CDDDDC3986BA6D06D4DB785310B131958749_AdjustorThunk (RuntimeObject * __this, float ___floatPercentage0, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * _thisAdjusted = reinterpret_cast<ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 *>(__this + _offset);
ColorTween_TweenValue_m4EF3CDDDDC3986BA6D06D4DB785310B131958749(_thisAdjusted, ___floatPercentage0, method);
}
// System.Void UnityEngine.UI.CoroutineTween.ColorTween::AddOnChangedCallback(UnityEngine.Events.UnityAction`1<UnityEngine.Color>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorTween_AddOnChangedCallback_mF516F2C835133EB59CB28895961716360131D82D (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, UnityAction_1_t8523D5D21ADA168AED3BD9CFFCED8FF87199DE9D * ___callback0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ColorTween_AddOnChangedCallback_mF516F2C835133EB59CB28895961716360131D82D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (m_Target == null)
ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 * L_0 = __this->get_m_Target_0();
if (L_0)
{
goto IL_0013;
}
}
{
// m_Target = new ColorTweenCallback();
ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 * L_1 = (ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 *)il2cpp_codegen_object_new(ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0_il2cpp_TypeInfo_var);
ColorTweenCallback__ctor_m7F7918E559131B5A1480199E6DC9B03A533D644D(L_1, /*hidden argument*/NULL);
__this->set_m_Target_0(L_1);
}
IL_0013:
{
// m_Target.AddListener(callback);
ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 * L_2 = __this->get_m_Target_0();
UnityAction_1_t8523D5D21ADA168AED3BD9CFFCED8FF87199DE9D * L_3 = ___callback0;
UnityEvent_1_AddListener_mF7F87D2B61E38F1FE1C8328F7125F4F129011AB1(L_2, L_3, /*hidden argument*/UnityEvent_1_AddListener_mF7F87D2B61E38F1FE1C8328F7125F4F129011AB1_RuntimeMethod_var);
// }
return;
}
}
IL2CPP_EXTERN_C void ColorTween_AddOnChangedCallback_mF516F2C835133EB59CB28895961716360131D82D_AdjustorThunk (RuntimeObject * __this, UnityAction_1_t8523D5D21ADA168AED3BD9CFFCED8FF87199DE9D * ___callback0, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * _thisAdjusted = reinterpret_cast<ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 *>(__this + _offset);
ColorTween_AddOnChangedCallback_mF516F2C835133EB59CB28895961716360131D82D(_thisAdjusted, ___callback0, method);
}
// System.Boolean UnityEngine.UI.CoroutineTween.ColorTween::GetIgnoreTimescale()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ColorTween_GetIgnoreTimescale_m1F87CC0531F370154DF63095DA34F0F88E1DDAF6 (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, const RuntimeMethod* method)
{
{
// return m_IgnoreTimeScale;
bool L_0 = __this->get_m_IgnoreTimeScale_5();
return L_0;
}
}
IL2CPP_EXTERN_C bool ColorTween_GetIgnoreTimescale_m1F87CC0531F370154DF63095DA34F0F88E1DDAF6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * _thisAdjusted = reinterpret_cast<ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 *>(__this + _offset);
return ColorTween_GetIgnoreTimescale_m1F87CC0531F370154DF63095DA34F0F88E1DDAF6_inline(_thisAdjusted, method);
}
// System.Single UnityEngine.UI.CoroutineTween.ColorTween::GetDuration()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float ColorTween_GetDuration_mFE7A52AFDCA53B1CCB79D1E3577037A0E44F17C5 (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, const RuntimeMethod* method)
{
{
// return m_Duration;
float L_0 = __this->get_m_Duration_4();
return L_0;
}
}
IL2CPP_EXTERN_C float ColorTween_GetDuration_mFE7A52AFDCA53B1CCB79D1E3577037A0E44F17C5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * _thisAdjusted = reinterpret_cast<ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 *>(__this + _offset);
return ColorTween_GetDuration_mFE7A52AFDCA53B1CCB79D1E3577037A0E44F17C5_inline(_thisAdjusted, method);
}
// System.Boolean UnityEngine.UI.CoroutineTween.ColorTween::ValidTarget()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ColorTween_ValidTarget_mA5469658CB631C87CF97FC5AE2B9089A06678696 (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, const RuntimeMethod* method)
{
{
// return m_Target != null;
ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 * L_0 = __this->get_m_Target_0();
return (bool)((!(((RuntimeObject*)(ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 *)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool ColorTween_ValidTarget_mA5469658CB631C87CF97FC5AE2B9089A06678696_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * _thisAdjusted = reinterpret_cast<ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 *>(__this + _offset);
return ColorTween_ValidTarget_mA5469658CB631C87CF97FC5AE2B9089A06678696(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.UI.CoroutineTween.ColorTween_ColorTweenCallback::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorTweenCallback__ctor_m7F7918E559131B5A1480199E6DC9B03A533D644D (ColorTweenCallback_tA2357F5ECB0BB12F303C2D6EE5A628CFD14C91C0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ColorTweenCallback__ctor_m7F7918E559131B5A1480199E6DC9B03A533D644D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
UnityEvent_1__ctor_m488AA12DF55CA69BD2FEF7750B745B4C04452553(__this, /*hidden argument*/UnityEvent_1__ctor_m488AA12DF55CA69BD2FEF7750B745B4C04452553_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.UI.CoroutineTween.FloatTween
IL2CPP_EXTERN_C void FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A_marshal_pinvoke(const FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A& unmarshaled, FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_Target_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Target' of type 'FloatTween': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Target_0Exception, NULL);
}
IL2CPP_EXTERN_C void FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A_marshal_pinvoke_back(const FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A_marshaled_pinvoke& marshaled, FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A& unmarshaled)
{
Exception_t* ___m_Target_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Target' of type 'FloatTween': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Target_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.UI.CoroutineTween.FloatTween
IL2CPP_EXTERN_C void FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A_marshal_pinvoke_cleanup(FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.UI.CoroutineTween.FloatTween
IL2CPP_EXTERN_C void FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A_marshal_com(const FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A& unmarshaled, FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A_marshaled_com& marshaled)
{
Exception_t* ___m_Target_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Target' of type 'FloatTween': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Target_0Exception, NULL);
}
IL2CPP_EXTERN_C void FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A_marshal_com_back(const FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A_marshaled_com& marshaled, FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A& unmarshaled)
{
Exception_t* ___m_Target_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Target' of type 'FloatTween': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Target_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.UI.CoroutineTween.FloatTween
IL2CPP_EXTERN_C void FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A_marshal_com_cleanup(FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A_marshaled_com& marshaled)
{
}
// System.Single UnityEngine.UI.CoroutineTween.FloatTween::get_startValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FloatTween_get_startValue_m90C461E4383568718E362BF3CB14F14D45585B0A (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, const RuntimeMethod* method)
{
{
// get { return m_StartValue; }
float L_0 = __this->get_m_StartValue_1();
return L_0;
}
}
IL2CPP_EXTERN_C float FloatTween_get_startValue_m90C461E4383568718E362BF3CB14F14D45585B0A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * _thisAdjusted = reinterpret_cast<FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A *>(__this + _offset);
return FloatTween_get_startValue_m90C461E4383568718E362BF3CB14F14D45585B0A_inline(_thisAdjusted, method);
}
// System.Void UnityEngine.UI.CoroutineTween.FloatTween::set_startValue(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatTween_set_startValue_m281ACCD10E8DCB7ADED2B25EB093EE5DCFFF57D8 (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, float ___value0, const RuntimeMethod* method)
{
{
// set { m_StartValue = value; }
float L_0 = ___value0;
__this->set_m_StartValue_1(L_0);
// set { m_StartValue = value; }
return;
}
}
IL2CPP_EXTERN_C void FloatTween_set_startValue_m281ACCD10E8DCB7ADED2B25EB093EE5DCFFF57D8_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * _thisAdjusted = reinterpret_cast<FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A *>(__this + _offset);
FloatTween_set_startValue_m281ACCD10E8DCB7ADED2B25EB093EE5DCFFF57D8_inline(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.UI.CoroutineTween.FloatTween::get_targetValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FloatTween_get_targetValue_mAC9AD7101F181AA03EEA21EBE047376A27B18DC2 (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, const RuntimeMethod* method)
{
{
// get { return m_TargetValue; }
float L_0 = __this->get_m_TargetValue_2();
return L_0;
}
}
IL2CPP_EXTERN_C float FloatTween_get_targetValue_mAC9AD7101F181AA03EEA21EBE047376A27B18DC2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * _thisAdjusted = reinterpret_cast<FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A *>(__this + _offset);
return FloatTween_get_targetValue_mAC9AD7101F181AA03EEA21EBE047376A27B18DC2_inline(_thisAdjusted, method);
}
// System.Void UnityEngine.UI.CoroutineTween.FloatTween::set_targetValue(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatTween_set_targetValue_m948DD0F17FE536F38BFA213D13711B781934165F (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, float ___value0, const RuntimeMethod* method)
{
{
// set { m_TargetValue = value; }
float L_0 = ___value0;
__this->set_m_TargetValue_2(L_0);
// set { m_TargetValue = value; }
return;
}
}
IL2CPP_EXTERN_C void FloatTween_set_targetValue_m948DD0F17FE536F38BFA213D13711B781934165F_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * _thisAdjusted = reinterpret_cast<FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A *>(__this + _offset);
FloatTween_set_targetValue_m948DD0F17FE536F38BFA213D13711B781934165F_inline(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.UI.CoroutineTween.FloatTween::get_duration()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FloatTween_get_duration_m17CD4518038CD642D714B3633236133D309EF13B (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, const RuntimeMethod* method)
{
{
// get { return m_Duration; }
float L_0 = __this->get_m_Duration_3();
return L_0;
}
}
IL2CPP_EXTERN_C float FloatTween_get_duration_m17CD4518038CD642D714B3633236133D309EF13B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * _thisAdjusted = reinterpret_cast<FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A *>(__this + _offset);
return FloatTween_get_duration_m17CD4518038CD642D714B3633236133D309EF13B_inline(_thisAdjusted, method);
}
// System.Void UnityEngine.UI.CoroutineTween.FloatTween::set_duration(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatTween_set_duration_m81021898C4F8F1F4D434CA46EAC596E0CC0F200B (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, float ___value0, const RuntimeMethod* method)
{
{
// set { m_Duration = value; }
float L_0 = ___value0;
__this->set_m_Duration_3(L_0);
// set { m_Duration = value; }
return;
}
}
IL2CPP_EXTERN_C void FloatTween_set_duration_m81021898C4F8F1F4D434CA46EAC596E0CC0F200B_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * _thisAdjusted = reinterpret_cast<FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A *>(__this + _offset);
FloatTween_set_duration_m81021898C4F8F1F4D434CA46EAC596E0CC0F200B_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.UI.CoroutineTween.FloatTween::get_ignoreTimeScale()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FloatTween_get_ignoreTimeScale_m8281CB2B12F1697A512D2E2515F5DA058B429FD0 (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, const RuntimeMethod* method)
{
{
// get { return m_IgnoreTimeScale; }
bool L_0 = __this->get_m_IgnoreTimeScale_4();
return L_0;
}
}
IL2CPP_EXTERN_C bool FloatTween_get_ignoreTimeScale_m8281CB2B12F1697A512D2E2515F5DA058B429FD0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * _thisAdjusted = reinterpret_cast<FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A *>(__this + _offset);
return FloatTween_get_ignoreTimeScale_m8281CB2B12F1697A512D2E2515F5DA058B429FD0_inline(_thisAdjusted, method);
}
// System.Void UnityEngine.UI.CoroutineTween.FloatTween::set_ignoreTimeScale(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatTween_set_ignoreTimeScale_mC586D01F34D6C88892AB3C70A3298C4C7C45EA4D (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, bool ___value0, const RuntimeMethod* method)
{
{
// set { m_IgnoreTimeScale = value; }
bool L_0 = ___value0;
__this->set_m_IgnoreTimeScale_4(L_0);
// set { m_IgnoreTimeScale = value; }
return;
}
}
IL2CPP_EXTERN_C void FloatTween_set_ignoreTimeScale_mC586D01F34D6C88892AB3C70A3298C4C7C45EA4D_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * _thisAdjusted = reinterpret_cast<FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A *>(__this + _offset);
FloatTween_set_ignoreTimeScale_mC586D01F34D6C88892AB3C70A3298C4C7C45EA4D_inline(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.UI.CoroutineTween.FloatTween::TweenValue(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatTween_TweenValue_m78FEB902E18BE0882BC487BC29B6EA3905E4F05C (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, float ___floatPercentage0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FloatTween_TweenValue_m78FEB902E18BE0882BC487BC29B6EA3905E4F05C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
{
// if (!ValidTarget())
bool L_0 = FloatTween_ValidTarget_m7DFE9AC7C8C0EBEF441D80472635CF4F38632E5E((FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A *)__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_0009;
}
}
{
// return;
return;
}
IL_0009:
{
// var newValue = Mathf.Lerp(m_StartValue, m_TargetValue, floatPercentage);
float L_1 = __this->get_m_StartValue_1();
float L_2 = __this->get_m_TargetValue_2();
float L_3 = ___floatPercentage0;
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_4 = Mathf_Lerp_m9A74C5A0C37D0CDF45EE66E7774D12A9B93B1364(L_1, L_2, L_3, /*hidden argument*/NULL);
V_0 = L_4;
// m_Target.Invoke(newValue);
FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502 * L_5 = __this->get_m_Target_0();
float L_6 = V_0;
UnityEvent_1_Invoke_m2B015F1AE7FEA9E2D9E2621E5179AB752B5469CD(L_5, L_6, /*hidden argument*/UnityEvent_1_Invoke_m2B015F1AE7FEA9E2D9E2621E5179AB752B5469CD_RuntimeMethod_var);
// }
return;
}
}
IL2CPP_EXTERN_C void FloatTween_TweenValue_m78FEB902E18BE0882BC487BC29B6EA3905E4F05C_AdjustorThunk (RuntimeObject * __this, float ___floatPercentage0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * _thisAdjusted = reinterpret_cast<FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A *>(__this + _offset);
FloatTween_TweenValue_m78FEB902E18BE0882BC487BC29B6EA3905E4F05C(_thisAdjusted, ___floatPercentage0, method);
}
// System.Void UnityEngine.UI.CoroutineTween.FloatTween::AddOnChangedCallback(UnityEngine.Events.UnityAction`1<System.Single>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatTween_AddOnChangedCallback_mADD5FACCDFA9E77C08CA65B8E5D33AE06DB79D50 (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, UnityAction_1_t0064196FB7635B812E65BA9FD08D39F68C75DCD9 * ___callback0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FloatTween_AddOnChangedCallback_mADD5FACCDFA9E77C08CA65B8E5D33AE06DB79D50_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (m_Target == null)
FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502 * L_0 = __this->get_m_Target_0();
if (L_0)
{
goto IL_0013;
}
}
{
// m_Target = new FloatTweenCallback();
FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502 * L_1 = (FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502 *)il2cpp_codegen_object_new(FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502_il2cpp_TypeInfo_var);
FloatTweenCallback__ctor_mE8AC174FE27E1A12832510D461316FEA939BD2F3(L_1, /*hidden argument*/NULL);
__this->set_m_Target_0(L_1);
}
IL_0013:
{
// m_Target.AddListener(callback);
FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502 * L_2 = __this->get_m_Target_0();
UnityAction_1_t0064196FB7635B812E65BA9FD08D39F68C75DCD9 * L_3 = ___callback0;
UnityEvent_1_AddListener_mCCF08CC8634A4987236EA3C100FFCA94A18C7CC8(L_2, L_3, /*hidden argument*/UnityEvent_1_AddListener_mCCF08CC8634A4987236EA3C100FFCA94A18C7CC8_RuntimeMethod_var);
// }
return;
}
}
IL2CPP_EXTERN_C void FloatTween_AddOnChangedCallback_mADD5FACCDFA9E77C08CA65B8E5D33AE06DB79D50_AdjustorThunk (RuntimeObject * __this, UnityAction_1_t0064196FB7635B812E65BA9FD08D39F68C75DCD9 * ___callback0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * _thisAdjusted = reinterpret_cast<FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A *>(__this + _offset);
FloatTween_AddOnChangedCallback_mADD5FACCDFA9E77C08CA65B8E5D33AE06DB79D50(_thisAdjusted, ___callback0, method);
}
// System.Boolean UnityEngine.UI.CoroutineTween.FloatTween::GetIgnoreTimescale()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FloatTween_GetIgnoreTimescale_m8FDD9D59F72DBC2CDEDD71A522ADD6DAD1438BE8 (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, const RuntimeMethod* method)
{
{
// return m_IgnoreTimeScale;
bool L_0 = __this->get_m_IgnoreTimeScale_4();
return L_0;
}
}
IL2CPP_EXTERN_C bool FloatTween_GetIgnoreTimescale_m8FDD9D59F72DBC2CDEDD71A522ADD6DAD1438BE8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * _thisAdjusted = reinterpret_cast<FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A *>(__this + _offset);
return FloatTween_GetIgnoreTimescale_m8FDD9D59F72DBC2CDEDD71A522ADD6DAD1438BE8_inline(_thisAdjusted, method);
}
// System.Single UnityEngine.UI.CoroutineTween.FloatTween::GetDuration()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FloatTween_GetDuration_m1022A6824C91E5C51E1F7FCD27B9D60D6E83EDB7 (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, const RuntimeMethod* method)
{
{
// return m_Duration;
float L_0 = __this->get_m_Duration_3();
return L_0;
}
}
IL2CPP_EXTERN_C float FloatTween_GetDuration_m1022A6824C91E5C51E1F7FCD27B9D60D6E83EDB7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * _thisAdjusted = reinterpret_cast<FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A *>(__this + _offset);
return FloatTween_GetDuration_m1022A6824C91E5C51E1F7FCD27B9D60D6E83EDB7_inline(_thisAdjusted, method);
}
// System.Boolean UnityEngine.UI.CoroutineTween.FloatTween::ValidTarget()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FloatTween_ValidTarget_m7DFE9AC7C8C0EBEF441D80472635CF4F38632E5E (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, const RuntimeMethod* method)
{
{
// return m_Target != null;
FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502 * L_0 = __this->get_m_Target_0();
return (bool)((!(((RuntimeObject*)(FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502 *)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool FloatTween_ValidTarget_m7DFE9AC7C8C0EBEF441D80472635CF4F38632E5E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * _thisAdjusted = reinterpret_cast<FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A *>(__this + _offset);
return FloatTween_ValidTarget_m7DFE9AC7C8C0EBEF441D80472635CF4F38632E5E(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.UI.CoroutineTween.FloatTween_FloatTweenCallback::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatTweenCallback__ctor_mE8AC174FE27E1A12832510D461316FEA939BD2F3 (FloatTweenCallback_t69056DA8AAB3BCDA97012834C1F1F265F7617502 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FloatTweenCallback__ctor_mE8AC174FE27E1A12832510D461316FEA939BD2F3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
UnityEvent_1__ctor_m90CD771D0B50926E7B8624F1E0697F1FF539098D(__this, /*hidden argument*/UnityEvent_1__ctor_m90CD771D0B50926E7B8624F1E0697F1FF539098D_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.UI.DefaultControls_IFactoryControls UnityEngine.UI.DefaultControls::get_factory()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DefaultControls_get_factory_m616056407908402EFF7E24BC02D0A1B0CDED98B2 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultControls_get_factory_m616056407908402EFF7E24BC02D0A1B0CDED98B2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return m_CurrentFactory; }
IL2CPP_RUNTIME_CLASS_INIT(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var);
RuntimeObject* L_0 = ((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->get_m_CurrentFactory_0();
return L_0;
}
}
// UnityEngine.GameObject UnityEngine.UI.DefaultControls::CreateUIElementRoot(System.String,UnityEngine.Vector2,System.Type[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * DefaultControls_CreateUIElementRoot_m6B5271F0FD59538B62BD2A81C972F919A8F2F184 (String_t* ___name0, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___size1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___components2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultControls_CreateUIElementRoot_m6B5271F0FD59538B62BD2A81C972F919A8F2F184_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// GameObject child = factory.CreateGameObject(name, components);
IL2CPP_RUNTIME_CLASS_INIT(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var);
RuntimeObject* L_0 = DefaultControls_get_factory_m616056407908402EFF7E24BC02D0A1B0CDED98B2_inline(/*hidden argument*/NULL);
String_t* L_1 = ___name0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = ___components2;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_3 = InterfaceFuncInvoker2< GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, String_t*, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(0 /* UnityEngine.GameObject UnityEngine.UI.DefaultControls/IFactoryControls::CreateGameObject(System.String,System.Type[]) */, IFactoryControls_tF346B725AD1BC6274693FDFCFD4665E01E2FC571_il2cpp_TypeInfo_var, L_0, L_1, L_2);
// RectTransform rectTransform = child.GetComponent<RectTransform>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_4 = L_3;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_5 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_4, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// rectTransform.sizeDelta = size;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_6 = ___size1;
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_5, L_6, /*hidden argument*/NULL);
// return child;
return L_4;
}
}
// UnityEngine.GameObject UnityEngine.UI.DefaultControls::CreateUIObject(System.String,UnityEngine.GameObject,System.Type[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988 (String_t* ___name0, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___parent1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___components2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// GameObject go = factory.CreateGameObject(name, components);
IL2CPP_RUNTIME_CLASS_INIT(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var);
RuntimeObject* L_0 = DefaultControls_get_factory_m616056407908402EFF7E24BC02D0A1B0CDED98B2_inline(/*hidden argument*/NULL);
String_t* L_1 = ___name0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = ___components2;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_3 = InterfaceFuncInvoker2< GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, String_t*, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(0 /* UnityEngine.GameObject UnityEngine.UI.DefaultControls/IFactoryControls::CreateGameObject(System.String,System.Type[]) */, IFactoryControls_tF346B725AD1BC6274693FDFCFD4665E01E2FC571_il2cpp_TypeInfo_var, L_0, L_1, L_2);
// SetParentAndAlign(go, parent);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_4 = L_3;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_5 = ___parent1;
DefaultControls_SetParentAndAlign_m4176E84A699CD8A68747888300DC651B765A512A(L_4, L_5, /*hidden argument*/NULL);
// return go;
return L_4;
}
}
// System.Void UnityEngine.UI.DefaultControls::SetDefaultTextValues(UnityEngine.UI.Text)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultControls_SetDefaultTextValues_mA1638BD65C2A72207A3E3EA7D1D8A8485D108A1A (Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___lbl0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultControls_SetDefaultTextValues_mA1638BD65C2A72207A3E3EA7D1D8A8485D108A1A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// lbl.color = s_TextColor;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_0 = ___lbl0;
IL2CPP_RUNTIME_CLASS_INIT(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_1 = ((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->get_s_TextColor_9();
VirtActionInvoker1< Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_0, L_1);
// lbl.AssignDefaultFont();
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_2 = ___lbl0;
Text_AssignDefaultFont_m6667512908BFA6FCAF388E44993574590990212A(L_2, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.DefaultControls::SetDefaultColorTransitionValues(UnityEngine.UI.Selectable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultControls_SetDefaultColorTransitionValues_mA5D98948B9EB25EFC8EB302A63EDA5FC239F9B02 (Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___slider0, const RuntimeMethod* method)
{
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA V_0;
memset((&V_0), 0, sizeof(V_0));
{
// ColorBlock colors = slider.colors;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * L_0 = ___slider0;
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA L_1 = Selectable_get_colors_m9E63E13A7B6C40CB0F20414FFBE15873BE5F3E4E_inline(L_0, /*hidden argument*/NULL);
V_0 = L_1;
// colors.highlightedColor = new Color(0.882f, 0.882f, 0.882f);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_2;
memset((&L_2), 0, sizeof(L_2));
Color__ctor_mC9AEEB3931D5B8C37483A884DD8EB40DC8946369((&L_2), (0.882f), (0.882f), (0.882f), /*hidden argument*/NULL);
ColorBlock_set_highlightedColor_mAE0BF4A697744D841048D8BE9A0C8963226B4B3A_inline((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(&V_0), L_2, /*hidden argument*/NULL);
// colors.pressedColor = new Color(0.698f, 0.698f, 0.698f);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_3;
memset((&L_3), 0, sizeof(L_3));
Color__ctor_mC9AEEB3931D5B8C37483A884DD8EB40DC8946369((&L_3), (0.698f), (0.698f), (0.698f), /*hidden argument*/NULL);
ColorBlock_set_pressedColor_mAE69CAEBA8CA45E089F6C7CA2F1B8C530705E70B_inline((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(&V_0), L_3, /*hidden argument*/NULL);
// colors.disabledColor = new Color(0.521f, 0.521f, 0.521f);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_4;
memset((&L_4), 0, sizeof(L_4));
Color__ctor_mC9AEEB3931D5B8C37483A884DD8EB40DC8946369((&L_4), (0.521f), (0.521f), (0.521f), /*hidden argument*/NULL);
ColorBlock_set_disabledColor_m530D0573E0257BAB82F2FFEA0E22C743911B4588_inline((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(&V_0), L_4, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.DefaultControls::SetParentAndAlign(UnityEngine.GameObject,UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultControls_SetParentAndAlign_m4176E84A699CD8A68747888300DC651B765A512A (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___child0, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___parent1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultControls_SetParentAndAlign_m4176E84A699CD8A68747888300DC651B765A512A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (parent == null)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___parent1;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_000a;
}
}
{
// return;
return;
}
IL_000a:
{
// child.transform.SetParent(parent.transform, false);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_2 = ___child0;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_3 = GameObject_get_transform_mA5C38857137F137CB96C69FAA624199EB1C2FB2C(L_2, /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_4 = ___parent1;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_5 = GameObject_get_transform_mA5C38857137F137CB96C69FAA624199EB1C2FB2C(L_4, /*hidden argument*/NULL);
Transform_SetParent_m268E3814921D90882EFECE244A797264DE2A5E35(L_3, L_5, (bool)0, /*hidden argument*/NULL);
// SetLayerRecursively(child, parent.layer);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_6 = ___child0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_7 = ___parent1;
int32_t L_8 = GameObject_get_layer_m0DE90D8A3D3AA80497A3A80FBEAC2D207C16B9C8(L_7, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var);
DefaultControls_SetLayerRecursively_m090900DE7A3FFC976E3DBE9B54C11769EE126BF1(L_6, L_8, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.DefaultControls::SetLayerRecursively(UnityEngine.GameObject,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultControls_SetLayerRecursively_m090900DE7A3FFC976E3DBE9B54C11769EE126BF1 (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___go0, int32_t ___layer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultControls_SetLayerRecursively_m090900DE7A3FFC976E3DBE9B54C11769EE126BF1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * V_0 = NULL;
int32_t V_1 = 0;
{
// go.layer = layer;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___go0;
int32_t L_1 = ___layer1;
GameObject_set_layer_mDAC8037FCFD0CE62DB66004C4342EA20CF604907(L_0, L_1, /*hidden argument*/NULL);
// Transform t = go.transform;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_2 = ___go0;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_3 = GameObject_get_transform_mA5C38857137F137CB96C69FAA624199EB1C2FB2C(L_2, /*hidden argument*/NULL);
V_0 = L_3;
// for (int i = 0; i < t.childCount; i++)
V_1 = 0;
goto IL_0028;
}
IL_0012:
{
// SetLayerRecursively(t.GetChild(i).gameObject, layer);
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_4 = V_0;
int32_t L_5 = V_1;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_6 = Transform_GetChild_mC86B9B61E4EC086A571B09EA7A33FFBF50DF52D3(L_4, L_5, /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_7 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(L_6, /*hidden argument*/NULL);
int32_t L_8 = ___layer1;
IL2CPP_RUNTIME_CLASS_INIT(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var);
DefaultControls_SetLayerRecursively_m090900DE7A3FFC976E3DBE9B54C11769EE126BF1(L_7, L_8, /*hidden argument*/NULL);
// for (int i = 0; i < t.childCount; i++)
int32_t L_9 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0028:
{
// for (int i = 0; i < t.childCount; i++)
int32_t L_10 = V_1;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_11 = V_0;
int32_t L_12 = Transform_get_childCount_m7665D779DCDB6B175FB52A254276CDF0C384A724(L_11, /*hidden argument*/NULL);
if ((((int32_t)L_10) < ((int32_t)L_12)))
{
goto IL_0012;
}
}
{
// }
return;
}
}
// UnityEngine.GameObject UnityEngine.UI.DefaultControls::CreatePanel(UnityEngine.UI.DefaultControls_Resources)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * DefaultControls_CreatePanel_m6CC4319B8D81426FC2A4E94CA836AB4F0ECA0205 (Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 ___resources0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultControls_CreatePanel_m6CC4319B8D81426FC2A4E94CA836AB4F0ECA0205_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// GameObject panelRoot = CreateUIElementRoot("Panel", s_ThickElementSize, typeof(Image));
IL2CPP_RUNTIME_CLASS_INIT(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = ((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->get_s_ThickElementSize_4();
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_1 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = L_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_4);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_5 = DefaultControls_CreateUIElementRoot_m6B5271F0FD59538B62BD2A81C972F919A8F2F184(_stringLiteral2F4BD749ECF708FF53A15E9E7904176BD92AD347, L_0, L_2, /*hidden argument*/NULL);
// RectTransform rectTransform = panelRoot.GetComponent<RectTransform>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_6 = L_5;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_7 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_6, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// rectTransform.anchorMin = Vector2.zero;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_8 = L_7;
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_9 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_8, L_9, /*hidden argument*/NULL);
// rectTransform.anchorMax = Vector2.one;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_10 = L_8;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_11 = Vector2_get_one_m6E01BE09CEA40781CB12CCB6AF33BBDA0F60CEED(/*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_10, L_11, /*hidden argument*/NULL);
// rectTransform.anchoredPosition = Vector2.zero;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_12 = L_10;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_13 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
RectTransform_set_anchoredPosition_m4DD45DB1A97734A1F3A81E5F259638ECAF35962F(L_12, L_13, /*hidden argument*/NULL);
// rectTransform.sizeDelta = Vector2.zero;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_14 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_12, L_14, /*hidden argument*/NULL);
// Image image = panelRoot.GetComponent<Image>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_15 = L_6;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_16 = GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75(L_15, /*hidden argument*/GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75_RuntimeMethod_var);
// image.sprite = resources.background;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_17 = L_16;
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 L_18 = ___resources0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_19 = L_18.get_background_1();
Image_set_sprite_m77F8D681D4EE6D58F4F235AFF704C3EB165A9646(L_17, L_19, /*hidden argument*/NULL);
// image.type = Image.Type.Sliced;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_20 = L_17;
Image_set_type_mB5B2391926DA2F7326A98B2A847877C6CB8F0E2B(L_20, 1, /*hidden argument*/NULL);
// image.color = s_PanelColor;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_21 = ((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->get_s_PanelColor_8();
VirtActionInvoker1< Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_20, L_21);
// return panelRoot;
return L_15;
}
}
// UnityEngine.GameObject UnityEngine.UI.DefaultControls::CreateButton(UnityEngine.UI.DefaultControls_Resources)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * DefaultControls_CreateButton_m73704B2DEB6F80CF622B31A7B14BBEC3A24737C2 (Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 ___resources0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultControls_CreateButton_m73704B2DEB6F80CF622B31A7B14BBEC3A24737C2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_0 = NULL;
{
// GameObject buttonRoot = CreateUIElementRoot("Button", s_ThickElementSize, typeof(Image), typeof(Button));
IL2CPP_RUNTIME_CLASS_INIT(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = ((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->get_s_ThickElementSize_4();
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_1 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = L_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_4);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_5 = L_2;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B_0_0_0_var) };
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_5, L_7);
(L_5)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_7);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_8 = DefaultControls_CreateUIElementRoot_m6B5271F0FD59538B62BD2A81C972F919A8F2F184(_stringLiteral794145F030FF721599A0353A9B2E59E9A92B9BF1, L_0, L_5, /*hidden argument*/NULL);
V_0 = L_8;
// GameObject childText = CreateUIObject("Text", buttonRoot, typeof(Text));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_9 = V_0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_10 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_11 = L_10;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_0_0_0_var) };
Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_12, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_11, L_13);
(L_11)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_13);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_14 = DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988(_stringLiteralC3328C39B0E29F78E9FF45DB674248B1D245887D, L_9, L_11, /*hidden argument*/NULL);
// Image image = buttonRoot.GetComponent<Image>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_15 = V_0;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_16 = GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75(L_15, /*hidden argument*/GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75_RuntimeMethod_var);
// image.sprite = resources.standard;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_17 = L_16;
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 L_18 = ___resources0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_19 = L_18.get_standard_0();
Image_set_sprite_m77F8D681D4EE6D58F4F235AFF704C3EB165A9646(L_17, L_19, /*hidden argument*/NULL);
// image.type = Image.Type.Sliced;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_20 = L_17;
Image_set_type_mB5B2391926DA2F7326A98B2A847877C6CB8F0E2B(L_20, 1, /*hidden argument*/NULL);
// image.color = s_DefaultSelectableColor;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_21 = ((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->get_s_DefaultSelectableColor_7();
VirtActionInvoker1< Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_20, L_21);
// Button bt = buttonRoot.GetComponent<Button>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_22 = V_0;
Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * L_23 = GameObject_GetComponent_TisButton_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B_m04725F873F765AF3EA906137A60CD58809FE1C80(L_22, /*hidden argument*/GameObject_GetComponent_TisButton_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B_m04725F873F765AF3EA906137A60CD58809FE1C80_RuntimeMethod_var);
// SetDefaultColorTransitionValues(bt);
DefaultControls_SetDefaultColorTransitionValues_mA5D98948B9EB25EFC8EB302A63EDA5FC239F9B02(L_23, /*hidden argument*/NULL);
// Text text = childText.GetComponent<Text>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_24 = L_14;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_25 = GameObject_GetComponent_TisText_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_m24A42DAE3900B867697FFD9DFB6E448D6978CD4A(L_24, /*hidden argument*/GameObject_GetComponent_TisText_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_m24A42DAE3900B867697FFD9DFB6E448D6978CD4A_RuntimeMethod_var);
// text.text = "Button";
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_26 = L_25;
VirtActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_26, _stringLiteral794145F030FF721599A0353A9B2E59E9A92B9BF1);
// text.alignment = TextAnchor.MiddleCenter;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_27 = L_26;
Text_set_alignment_m7C6F240D274640BFBCDAEDACB08684939900CB29(L_27, 4, /*hidden argument*/NULL);
// SetDefaultTextValues(text);
DefaultControls_SetDefaultTextValues_mA1638BD65C2A72207A3E3EA7D1D8A8485D108A1A(L_27, /*hidden argument*/NULL);
// RectTransform textRectTransform = childText.GetComponent<RectTransform>();
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_28 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_24, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// textRectTransform.anchorMin = Vector2.zero;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_29 = L_28;
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_30 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_29, L_30, /*hidden argument*/NULL);
// textRectTransform.anchorMax = Vector2.one;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_31 = L_29;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_32 = Vector2_get_one_m6E01BE09CEA40781CB12CCB6AF33BBDA0F60CEED(/*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_31, L_32, /*hidden argument*/NULL);
// textRectTransform.sizeDelta = Vector2.zero;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_33 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_31, L_33, /*hidden argument*/NULL);
// return buttonRoot;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_34 = V_0;
return L_34;
}
}
// UnityEngine.GameObject UnityEngine.UI.DefaultControls::CreateText(UnityEngine.UI.DefaultControls_Resources)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * DefaultControls_CreateText_mB0CA319F4BF0C8EC8773075885BD67D78A4582FE (Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 ___resources0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultControls_CreateText_mB0CA319F4BF0C8EC8773075885BD67D78A4582FE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// GameObject go = CreateUIElementRoot("Text", s_ThickElementSize, typeof(Text));
IL2CPP_RUNTIME_CLASS_INIT(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = ((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->get_s_ThickElementSize_4();
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_1 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = L_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_4);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_5 = DefaultControls_CreateUIElementRoot_m6B5271F0FD59538B62BD2A81C972F919A8F2F184(_stringLiteralC3328C39B0E29F78E9FF45DB674248B1D245887D, L_0, L_2, /*hidden argument*/NULL);
// Text lbl = go.GetComponent<Text>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_6 = L_5;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_7 = GameObject_GetComponent_TisText_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_m24A42DAE3900B867697FFD9DFB6E448D6978CD4A(L_6, /*hidden argument*/GameObject_GetComponent_TisText_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_m24A42DAE3900B867697FFD9DFB6E448D6978CD4A_RuntimeMethod_var);
// lbl.text = "New Text";
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_8 = L_7;
VirtActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_8, _stringLiteral28578FAF0062012EBA720DFDE2523B539E900054);
// SetDefaultTextValues(lbl);
DefaultControls_SetDefaultTextValues_mA1638BD65C2A72207A3E3EA7D1D8A8485D108A1A(L_8, /*hidden argument*/NULL);
// return go;
return L_6;
}
}
// UnityEngine.GameObject UnityEngine.UI.DefaultControls::CreateImage(UnityEngine.UI.DefaultControls_Resources)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * DefaultControls_CreateImage_m5A948ACE15B86771B6F3EB7A8A74EBE938CEB3E6 (Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 ___resources0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultControls_CreateImage_m5A948ACE15B86771B6F3EB7A8A74EBE938CEB3E6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// GameObject go = CreateUIElementRoot("Image", s_ImageElementSize, typeof(Image));
IL2CPP_RUNTIME_CLASS_INIT(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = ((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->get_s_ImageElementSize_6();
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_1 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = L_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_4);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_5 = DefaultControls_CreateUIElementRoot_m6B5271F0FD59538B62BD2A81C972F919A8F2F184(_stringLiteral50E19FDA0D5B4B74A4A1A1D584E56578693A4EA4, L_0, L_2, /*hidden argument*/NULL);
// return go;
return L_5;
}
}
// UnityEngine.GameObject UnityEngine.UI.DefaultControls::CreateRawImage(UnityEngine.UI.DefaultControls_Resources)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * DefaultControls_CreateRawImage_m3704C3F2E829FBCFEEDA34F27668000B1E6E5A02 (Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 ___resources0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultControls_CreateRawImage_m3704C3F2E829FBCFEEDA34F27668000B1E6E5A02_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// GameObject go = CreateUIElementRoot("RawImage", s_ImageElementSize, typeof(RawImage));
IL2CPP_RUNTIME_CLASS_INIT(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = ((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->get_s_ImageElementSize_6();
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_1 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = L_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (RawImage_t68991514DB8F48442D614E7904A298C936B3C7C8_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_4);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_5 = DefaultControls_CreateUIElementRoot_m6B5271F0FD59538B62BD2A81C972F919A8F2F184(_stringLiteralFB64202B49F93523AA4F932B4BC04BD68BF1DC9F, L_0, L_2, /*hidden argument*/NULL);
// return go;
return L_5;
}
}
// UnityEngine.GameObject UnityEngine.UI.DefaultControls::CreateSlider(UnityEngine.UI.DefaultControls_Resources)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * DefaultControls_CreateSlider_m2AF0A50D2FF4EB21A68A5DBF92076C8DB6D50C5B (Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 ___resources0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultControls_CreateSlider_m2AF0A50D2FF4EB21A68A5DBF92076C8DB6D50C5B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_0 = NULL;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_1 = NULL;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_2 = NULL;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_3 = NULL;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_4 = NULL;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_5 = NULL;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * V_6 = NULL;
{
// GameObject root = CreateUIElementRoot("Slider", s_ThinElementSize, typeof(Slider));
IL2CPP_RUNTIME_CLASS_INIT(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = ((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->get_s_ThinElementSize_5();
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_1 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = L_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_4);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_5 = DefaultControls_CreateUIElementRoot_m6B5271F0FD59538B62BD2A81C972F919A8F2F184(_stringLiteralAA5DB7D82232EE34651EB5ADEA59B01C839EB843, L_0, L_2, /*hidden argument*/NULL);
V_0 = L_5;
// GameObject background = CreateUIObject("Background", root, typeof(Image));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_6 = V_0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_7 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_8 = L_7;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_0_0_0_var) };
Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_9, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_8, L_10);
(L_8)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_10);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_11 = DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988(_stringLiteral64DD60FE1A049FE6DB3EB1369DEC2E42BF428E21, L_6, L_8, /*hidden argument*/NULL);
V_1 = L_11;
// GameObject fillArea = CreateUIObject("Fill Area", root, typeof(RectTransform));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_12 = V_0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_13 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_14 = L_13;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_0_0_0_var) };
Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_15, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_14, L_16);
(L_14)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_16);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_17 = DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988(_stringLiteralCAD12779BCC9AD20C6B50FEC90E3818C9473FEF6, L_12, L_14, /*hidden argument*/NULL);
V_2 = L_17;
// GameObject fill = CreateUIObject("Fill", fillArea, typeof(Image));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_18 = V_2;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_19 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_20 = L_19;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_0_0_0_var) };
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_21, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_20, L_22);
(L_20)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_22);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_23 = DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988(_stringLiteral7ADB6736CF2C9AE017B128F98738FFBAE0E58655, L_18, L_20, /*hidden argument*/NULL);
V_3 = L_23;
// GameObject handleArea = CreateUIObject("Handle Slide Area", root, typeof(RectTransform));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_24 = V_0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_25 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_26 = L_25;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_27 = { reinterpret_cast<intptr_t> (RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_0_0_0_var) };
Type_t * L_28 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_27, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_26, L_28);
(L_26)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_28);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_29 = DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988(_stringLiteral1A6434BFF89BE97BECFB2E7B808BB4F9E9F3F8ED, L_24, L_26, /*hidden argument*/NULL);
V_4 = L_29;
// GameObject handle = CreateUIObject("Handle", handleArea, typeof(Image));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_30 = V_4;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_31 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_32 = L_31;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_33 = { reinterpret_cast<intptr_t> (Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_0_0_0_var) };
Type_t * L_34 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_33, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_32, L_34);
(L_32)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_34);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_35 = DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988(_stringLiteralC0392B2B1C472815BA8D1A1E3B20F4A279BF6C50, L_30, L_32, /*hidden argument*/NULL);
V_5 = L_35;
// Image backgroundImage = background.GetComponent<Image>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_36 = V_1;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_37 = GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75(L_36, /*hidden argument*/GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75_RuntimeMethod_var);
// backgroundImage.sprite = resources.background;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_38 = L_37;
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 L_39 = ___resources0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_40 = L_39.get_background_1();
Image_set_sprite_m77F8D681D4EE6D58F4F235AFF704C3EB165A9646(L_38, L_40, /*hidden argument*/NULL);
// backgroundImage.type = Image.Type.Sliced;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_41 = L_38;
Image_set_type_mB5B2391926DA2F7326A98B2A847877C6CB8F0E2B(L_41, 1, /*hidden argument*/NULL);
// backgroundImage.color = s_DefaultSelectableColor;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_42 = ((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->get_s_DefaultSelectableColor_7();
VirtActionInvoker1< Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_41, L_42);
// RectTransform backgroundRect = background.GetComponent<RectTransform>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_43 = V_1;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_44 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_43, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// backgroundRect.anchorMin = new Vector2(0, 0.25f);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_45 = L_44;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_46;
memset((&L_46), 0, sizeof(L_46));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_46), (0.0f), (0.25f), /*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_45, L_46, /*hidden argument*/NULL);
// backgroundRect.anchorMax = new Vector2(1, 0.75f);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_47 = L_45;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_48;
memset((&L_48), 0, sizeof(L_48));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_48), (1.0f), (0.75f), /*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_47, L_48, /*hidden argument*/NULL);
// backgroundRect.sizeDelta = new Vector2(0, 0);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_49;
memset((&L_49), 0, sizeof(L_49));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_49), (0.0f), (0.0f), /*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_47, L_49, /*hidden argument*/NULL);
// RectTransform fillAreaRect = fillArea.GetComponent<RectTransform>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_50 = V_2;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_51 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_50, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// fillAreaRect.anchorMin = new Vector2(0, 0.25f);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_52 = L_51;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_53;
memset((&L_53), 0, sizeof(L_53));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_53), (0.0f), (0.25f), /*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_52, L_53, /*hidden argument*/NULL);
// fillAreaRect.anchorMax = new Vector2(1, 0.75f);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_54 = L_52;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_55;
memset((&L_55), 0, sizeof(L_55));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_55), (1.0f), (0.75f), /*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_54, L_55, /*hidden argument*/NULL);
// fillAreaRect.anchoredPosition = new Vector2(-5, 0);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_56 = L_54;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_57;
memset((&L_57), 0, sizeof(L_57));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_57), (-5.0f), (0.0f), /*hidden argument*/NULL);
RectTransform_set_anchoredPosition_m4DD45DB1A97734A1F3A81E5F259638ECAF35962F(L_56, L_57, /*hidden argument*/NULL);
// fillAreaRect.sizeDelta = new Vector2(-20, 0);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_58;
memset((&L_58), 0, sizeof(L_58));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_58), (-20.0f), (0.0f), /*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_56, L_58, /*hidden argument*/NULL);
// Image fillImage = fill.GetComponent<Image>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_59 = V_3;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_60 = GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75(L_59, /*hidden argument*/GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75_RuntimeMethod_var);
// fillImage.sprite = resources.standard;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_61 = L_60;
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 L_62 = ___resources0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_63 = L_62.get_standard_0();
Image_set_sprite_m77F8D681D4EE6D58F4F235AFF704C3EB165A9646(L_61, L_63, /*hidden argument*/NULL);
// fillImage.type = Image.Type.Sliced;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_64 = L_61;
Image_set_type_mB5B2391926DA2F7326A98B2A847877C6CB8F0E2B(L_64, 1, /*hidden argument*/NULL);
// fillImage.color = s_DefaultSelectableColor;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_65 = ((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->get_s_DefaultSelectableColor_7();
VirtActionInvoker1< Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_64, L_65);
// RectTransform fillRect = fill.GetComponent<RectTransform>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_66 = V_3;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_67 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_66, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// fillRect.sizeDelta = new Vector2(10, 0);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_68;
memset((&L_68), 0, sizeof(L_68));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_68), (10.0f), (0.0f), /*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_67, L_68, /*hidden argument*/NULL);
// RectTransform handleAreaRect = handleArea.GetComponent<RectTransform>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_69 = V_4;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_70 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_69, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// handleAreaRect.sizeDelta = new Vector2(-20, 0);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_71 = L_70;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_72;
memset((&L_72), 0, sizeof(L_72));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_72), (-20.0f), (0.0f), /*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_71, L_72, /*hidden argument*/NULL);
// handleAreaRect.anchorMin = new Vector2(0, 0);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_73 = L_71;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_74;
memset((&L_74), 0, sizeof(L_74));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_74), (0.0f), (0.0f), /*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_73, L_74, /*hidden argument*/NULL);
// handleAreaRect.anchorMax = new Vector2(1, 1);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_75;
memset((&L_75), 0, sizeof(L_75));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_75), (1.0f), (1.0f), /*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_73, L_75, /*hidden argument*/NULL);
// Image handleImage = handle.GetComponent<Image>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_76 = V_5;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_77 = GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75(L_76, /*hidden argument*/GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75_RuntimeMethod_var);
V_6 = L_77;
// handleImage.sprite = resources.knob;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_78 = V_6;
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 L_79 = ___resources0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_80 = L_79.get_knob_3();
Image_set_sprite_m77F8D681D4EE6D58F4F235AFF704C3EB165A9646(L_78, L_80, /*hidden argument*/NULL);
// handleImage.color = s_DefaultSelectableColor;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_81 = V_6;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_82 = ((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->get_s_DefaultSelectableColor_7();
VirtActionInvoker1< Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_81, L_82);
// RectTransform handleRect = handle.GetComponent<RectTransform>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_83 = V_5;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_84 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_83, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// handleRect.sizeDelta = new Vector2(20, 0);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_85;
memset((&L_85), 0, sizeof(L_85));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_85), (20.0f), (0.0f), /*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_84, L_85, /*hidden argument*/NULL);
// Slider slider = root.GetComponent<Slider>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_86 = V_0;
Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09 * L_87 = GameObject_GetComponent_TisSlider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09_m688424BCA2C09954B36F15A3C82F17CAECEB91A7(L_86, /*hidden argument*/GameObject_GetComponent_TisSlider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09_m688424BCA2C09954B36F15A3C82F17CAECEB91A7_RuntimeMethod_var);
// slider.fillRect = fill.GetComponent<RectTransform>();
Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09 * L_88 = L_87;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_89 = V_3;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_90 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_89, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
Slider_set_fillRect_m7055CC8682DDB328A754116BDAE0AF6DFFF437AF(L_88, L_90, /*hidden argument*/NULL);
// slider.handleRect = handle.GetComponent<RectTransform>();
Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09 * L_91 = L_88;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_92 = V_5;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_93 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_92, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
Slider_set_handleRect_m25A60ED142D621A5243E48AEDE097986FA3B2E10(L_91, L_93, /*hidden argument*/NULL);
// slider.targetGraphic = handleImage;
Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09 * L_94 = L_91;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_95 = V_6;
Selectable_set_targetGraphic_m69C71056F05A767EC0D2ED14E80ABCA15B5E2FDE(L_94, L_95, /*hidden argument*/NULL);
// slider.direction = Slider.Direction.LeftToRight;
Slider_t0654A41304B5CE7074CA86F4E66CB681D0D52C09 * L_96 = L_94;
Slider_set_direction_m804216132A017C3D68832C8941B49B4038B5A72E(L_96, 0, /*hidden argument*/NULL);
// SetDefaultColorTransitionValues(slider);
DefaultControls_SetDefaultColorTransitionValues_mA5D98948B9EB25EFC8EB302A63EDA5FC239F9B02(L_96, /*hidden argument*/NULL);
// return root;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_97 = V_0;
return L_97;
}
}
// UnityEngine.GameObject UnityEngine.UI.DefaultControls::CreateScrollbar(UnityEngine.UI.DefaultControls_Resources)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * DefaultControls_CreateScrollbar_m876785B77922E7A0918137096FE9CEEC4BBCA1C6 (Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 ___resources0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultControls_CreateScrollbar_m876785B77922E7A0918137096FE9CEEC4BBCA1C6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_0 = NULL;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_1 = NULL;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * V_2 = NULL;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * V_3 = NULL;
{
// GameObject scrollbarRoot = CreateUIElementRoot("Scrollbar", s_ThinElementSize, typeof(Image), typeof(Scrollbar));
IL2CPP_RUNTIME_CLASS_INIT(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = ((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->get_s_ThinElementSize_5();
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_1 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = L_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_4);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_5 = L_2;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389_0_0_0_var) };
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_5, L_7);
(L_5)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_7);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_8 = DefaultControls_CreateUIElementRoot_m6B5271F0FD59538B62BD2A81C972F919A8F2F184(_stringLiteralCD289AA6ADCBDEB8448BBE98E9F19873F2B45B16, L_0, L_5, /*hidden argument*/NULL);
V_0 = L_8;
// GameObject sliderArea = CreateUIObject("Sliding Area", scrollbarRoot, typeof(RectTransform));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_9 = V_0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_10 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_11 = L_10;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_0_0_0_var) };
Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_12, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_11, L_13);
(L_11)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_13);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_14 = DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988(_stringLiteral564F9BE925CC7F60130686E7C28A11036FFBEBBA, L_9, L_11, /*hidden argument*/NULL);
V_1 = L_14;
// GameObject handle = CreateUIObject("Handle", sliderArea, typeof(Image));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_15 = V_1;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_16 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_17 = L_16;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_18 = { reinterpret_cast<intptr_t> (Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_0_0_0_var) };
Type_t * L_19 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_18, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_17, L_19);
(L_17)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_19);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_20 = DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988(_stringLiteralC0392B2B1C472815BA8D1A1E3B20F4A279BF6C50, L_15, L_17, /*hidden argument*/NULL);
// Image bgImage = scrollbarRoot.GetComponent<Image>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_21 = V_0;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_22 = GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75(L_21, /*hidden argument*/GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75_RuntimeMethod_var);
// bgImage.sprite = resources.background;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_23 = L_22;
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 L_24 = ___resources0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_25 = L_24.get_background_1();
Image_set_sprite_m77F8D681D4EE6D58F4F235AFF704C3EB165A9646(L_23, L_25, /*hidden argument*/NULL);
// bgImage.type = Image.Type.Sliced;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_26 = L_23;
Image_set_type_mB5B2391926DA2F7326A98B2A847877C6CB8F0E2B(L_26, 1, /*hidden argument*/NULL);
// bgImage.color = s_DefaultSelectableColor;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_27 = ((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->get_s_DefaultSelectableColor_7();
VirtActionInvoker1< Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_26, L_27);
// Image handleImage = handle.GetComponent<Image>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_28 = L_20;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_29 = GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75(L_28, /*hidden argument*/GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75_RuntimeMethod_var);
V_2 = L_29;
// handleImage.sprite = resources.standard;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_30 = V_2;
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 L_31 = ___resources0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_32 = L_31.get_standard_0();
Image_set_sprite_m77F8D681D4EE6D58F4F235AFF704C3EB165A9646(L_30, L_32, /*hidden argument*/NULL);
// handleImage.type = Image.Type.Sliced;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_33 = V_2;
Image_set_type_mB5B2391926DA2F7326A98B2A847877C6CB8F0E2B(L_33, 1, /*hidden argument*/NULL);
// handleImage.color = s_DefaultSelectableColor;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_34 = V_2;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_35 = ((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->get_s_DefaultSelectableColor_7();
VirtActionInvoker1< Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_34, L_35);
// RectTransform sliderAreaRect = sliderArea.GetComponent<RectTransform>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_36 = V_1;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_37 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_36, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// sliderAreaRect.sizeDelta = new Vector2(-20, -20);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_38 = L_37;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_39;
memset((&L_39), 0, sizeof(L_39));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_39), (-20.0f), (-20.0f), /*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_38, L_39, /*hidden argument*/NULL);
// sliderAreaRect.anchorMin = Vector2.zero;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_40 = L_38;
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_41 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_40, L_41, /*hidden argument*/NULL);
// sliderAreaRect.anchorMax = Vector2.one;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_42 = Vector2_get_one_m6E01BE09CEA40781CB12CCB6AF33BBDA0F60CEED(/*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_40, L_42, /*hidden argument*/NULL);
// RectTransform handleRect = handle.GetComponent<RectTransform>();
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_43 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_28, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
V_3 = L_43;
// handleRect.sizeDelta = new Vector2(20, 20);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_44 = V_3;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_45;
memset((&L_45), 0, sizeof(L_45));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_45), (20.0f), (20.0f), /*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_44, L_45, /*hidden argument*/NULL);
// Scrollbar scrollbar = scrollbarRoot.GetComponent<Scrollbar>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_46 = V_0;
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * L_47 = GameObject_GetComponent_TisScrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389_m100E1B7CD3A739F07F5E190A8C25AE41512BD8A6(L_46, /*hidden argument*/GameObject_GetComponent_TisScrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389_m100E1B7CD3A739F07F5E190A8C25AE41512BD8A6_RuntimeMethod_var);
// scrollbar.handleRect = handleRect;
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * L_48 = L_47;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_49 = V_3;
Scrollbar_set_handleRect_mF48210CE73FD1F67BAC1CAD76FA07132FDBA5C40(L_48, L_49, /*hidden argument*/NULL);
// scrollbar.targetGraphic = handleImage;
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * L_50 = L_48;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_51 = V_2;
Selectable_set_targetGraphic_m69C71056F05A767EC0D2ED14E80ABCA15B5E2FDE(L_50, L_51, /*hidden argument*/NULL);
// SetDefaultColorTransitionValues(scrollbar);
DefaultControls_SetDefaultColorTransitionValues_mA5D98948B9EB25EFC8EB302A63EDA5FC239F9B02(L_50, /*hidden argument*/NULL);
// return scrollbarRoot;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_52 = V_0;
return L_52;
}
}
// UnityEngine.GameObject UnityEngine.UI.DefaultControls::CreateToggle(UnityEngine.UI.DefaultControls_Resources)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * DefaultControls_CreateToggle_m9F0611E37F71C5C077EB3D64D998A7117C830B7F (Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 ___resources0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultControls_CreateToggle_m9F0611E37F71C5C077EB3D64D998A7117C830B7F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_0 = NULL;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_1 = NULL;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_2 = NULL;
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * V_3 = NULL;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * V_4 = NULL;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * V_5 = NULL;
{
// GameObject toggleRoot = CreateUIElementRoot("Toggle", s_ThinElementSize, typeof(Toggle));
IL2CPP_RUNTIME_CLASS_INIT(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = ((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->get_s_ThinElementSize_5();
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_1 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = L_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_4);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_5 = DefaultControls_CreateUIElementRoot_m6B5271F0FD59538B62BD2A81C972F919A8F2F184(_stringLiteralD5E14B063514CB6630E55F0AEB0AD3B37897EFCA, L_0, L_2, /*hidden argument*/NULL);
V_0 = L_5;
// GameObject background = CreateUIObject("Background", toggleRoot, typeof(Image));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_6 = V_0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_7 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_8 = L_7;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_0_0_0_var) };
Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_9, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_8, L_10);
(L_8)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_10);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_11 = DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988(_stringLiteral64DD60FE1A049FE6DB3EB1369DEC2E42BF428E21, L_6, L_8, /*hidden argument*/NULL);
V_1 = L_11;
// GameObject checkmark = CreateUIObject("Checkmark", background, typeof(Image));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_12 = V_1;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_13 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_14 = L_13;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_0_0_0_var) };
Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_15, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_14, L_16);
(L_14)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_16);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_17 = DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988(_stringLiteral02D0D18716CB3B951810309E5A5A906EFF9A88A2, L_12, L_14, /*hidden argument*/NULL);
V_2 = L_17;
// GameObject childLabel = CreateUIObject("Label", toggleRoot, typeof(Text));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_18 = V_0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_19 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_20 = L_19;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_0_0_0_var) };
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_21, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_20, L_22);
(L_20)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_22);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_23 = DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988(_stringLiteral74341E3C271DF3C784E595B804B1F90BE0F80429, L_18, L_20, /*hidden argument*/NULL);
// Toggle toggle = toggleRoot.GetComponent<Toggle>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_24 = V_0;
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_25 = GameObject_GetComponent_TisToggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106_m9F98F777EFF307DC0F6FEA2C006044097874BE11(L_24, /*hidden argument*/GameObject_GetComponent_TisToggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106_m9F98F777EFF307DC0F6FEA2C006044097874BE11_RuntimeMethod_var);
V_3 = L_25;
// toggle.isOn = true;
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_26 = V_3;
Toggle_set_isOn_mCAA660F49688DBA29E896B961E0054154C42EA2B(L_26, (bool)1, /*hidden argument*/NULL);
// Image bgImage = background.GetComponent<Image>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_27 = V_1;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_28 = GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75(L_27, /*hidden argument*/GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75_RuntimeMethod_var);
V_4 = L_28;
// bgImage.sprite = resources.standard;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_29 = V_4;
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 L_30 = ___resources0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_31 = L_30.get_standard_0();
Image_set_sprite_m77F8D681D4EE6D58F4F235AFF704C3EB165A9646(L_29, L_31, /*hidden argument*/NULL);
// bgImage.type = Image.Type.Sliced;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_32 = V_4;
Image_set_type_mB5B2391926DA2F7326A98B2A847877C6CB8F0E2B(L_32, 1, /*hidden argument*/NULL);
// bgImage.color = s_DefaultSelectableColor;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_33 = V_4;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_34 = ((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->get_s_DefaultSelectableColor_7();
VirtActionInvoker1< Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_33, L_34);
// Image checkmarkImage = checkmark.GetComponent<Image>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_35 = V_2;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_36 = GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75(L_35, /*hidden argument*/GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75_RuntimeMethod_var);
V_5 = L_36;
// checkmarkImage.sprite = resources.checkmark;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_37 = V_5;
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 L_38 = ___resources0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_39 = L_38.get_checkmark_4();
Image_set_sprite_m77F8D681D4EE6D58F4F235AFF704C3EB165A9646(L_37, L_39, /*hidden argument*/NULL);
// Text label = childLabel.GetComponent<Text>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_40 = L_23;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_41 = GameObject_GetComponent_TisText_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_m24A42DAE3900B867697FFD9DFB6E448D6978CD4A(L_40, /*hidden argument*/GameObject_GetComponent_TisText_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_m24A42DAE3900B867697FFD9DFB6E448D6978CD4A_RuntimeMethod_var);
// label.text = "Toggle";
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_42 = L_41;
VirtActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_42, _stringLiteralD5E14B063514CB6630E55F0AEB0AD3B37897EFCA);
// SetDefaultTextValues(label);
DefaultControls_SetDefaultTextValues_mA1638BD65C2A72207A3E3EA7D1D8A8485D108A1A(L_42, /*hidden argument*/NULL);
// toggle.graphic = checkmarkImage;
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_43 = V_3;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_44 = V_5;
L_43->set_graphic_21(L_44);
// toggle.targetGraphic = bgImage;
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_45 = V_3;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_46 = V_4;
Selectable_set_targetGraphic_m69C71056F05A767EC0D2ED14E80ABCA15B5E2FDE(L_45, L_46, /*hidden argument*/NULL);
// SetDefaultColorTransitionValues(toggle);
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_47 = V_3;
DefaultControls_SetDefaultColorTransitionValues_mA5D98948B9EB25EFC8EB302A63EDA5FC239F9B02(L_47, /*hidden argument*/NULL);
// RectTransform bgRect = background.GetComponent<RectTransform>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_48 = V_1;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_49 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_48, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// bgRect.anchorMin = new Vector2(0f, 1f);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_50 = L_49;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_51;
memset((&L_51), 0, sizeof(L_51));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_51), (0.0f), (1.0f), /*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_50, L_51, /*hidden argument*/NULL);
// bgRect.anchorMax = new Vector2(0f, 1f);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_52 = L_50;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_53;
memset((&L_53), 0, sizeof(L_53));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_53), (0.0f), (1.0f), /*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_52, L_53, /*hidden argument*/NULL);
// bgRect.anchoredPosition = new Vector2(10f, -10f);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_54 = L_52;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_55;
memset((&L_55), 0, sizeof(L_55));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_55), (10.0f), (-10.0f), /*hidden argument*/NULL);
RectTransform_set_anchoredPosition_m4DD45DB1A97734A1F3A81E5F259638ECAF35962F(L_54, L_55, /*hidden argument*/NULL);
// bgRect.sizeDelta = new Vector2(kThinHeight, kThinHeight);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_56;
memset((&L_56), 0, sizeof(L_56));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_56), (20.0f), (20.0f), /*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_54, L_56, /*hidden argument*/NULL);
// RectTransform checkmarkRect = checkmark.GetComponent<RectTransform>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_57 = V_2;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_58 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_57, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// checkmarkRect.anchorMin = new Vector2(0.5f, 0.5f);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_59 = L_58;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_60;
memset((&L_60), 0, sizeof(L_60));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_60), (0.5f), (0.5f), /*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_59, L_60, /*hidden argument*/NULL);
// checkmarkRect.anchorMax = new Vector2(0.5f, 0.5f);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_61 = L_59;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_62;
memset((&L_62), 0, sizeof(L_62));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_62), (0.5f), (0.5f), /*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_61, L_62, /*hidden argument*/NULL);
// checkmarkRect.anchoredPosition = Vector2.zero;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_63 = L_61;
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_64 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
RectTransform_set_anchoredPosition_m4DD45DB1A97734A1F3A81E5F259638ECAF35962F(L_63, L_64, /*hidden argument*/NULL);
// checkmarkRect.sizeDelta = new Vector2(20f, 20f);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_65;
memset((&L_65), 0, sizeof(L_65));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_65), (20.0f), (20.0f), /*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_63, L_65, /*hidden argument*/NULL);
// RectTransform labelRect = childLabel.GetComponent<RectTransform>();
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_66 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_40, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// labelRect.anchorMin = new Vector2(0f, 0f);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_67 = L_66;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_68;
memset((&L_68), 0, sizeof(L_68));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_68), (0.0f), (0.0f), /*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_67, L_68, /*hidden argument*/NULL);
// labelRect.anchorMax = new Vector2(1f, 1f);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_69 = L_67;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_70;
memset((&L_70), 0, sizeof(L_70));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_70), (1.0f), (1.0f), /*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_69, L_70, /*hidden argument*/NULL);
// labelRect.offsetMin = new Vector2(23f, 1f);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_71 = L_69;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_72;
memset((&L_72), 0, sizeof(L_72));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_72), (23.0f), (1.0f), /*hidden argument*/NULL);
RectTransform_set_offsetMin_m7455ED64FF16C597E648E022BA768CFDCF4531AC(L_71, L_72, /*hidden argument*/NULL);
// labelRect.offsetMax = new Vector2(-5f, -2f);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_73;
memset((&L_73), 0, sizeof(L_73));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_73), (-5.0f), (-2.0f), /*hidden argument*/NULL);
RectTransform_set_offsetMax_mD55D44AD4740C79B5C2C83C60B0C38BF1090501C(L_71, L_73, /*hidden argument*/NULL);
// return toggleRoot;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_74 = V_0;
return L_74;
}
}
// UnityEngine.GameObject UnityEngine.UI.DefaultControls::CreateInputField(UnityEngine.UI.DefaultControls_Resources)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * DefaultControls_CreateInputField_mDF85B76D7CDE06E5E49F537EA5FDD8192DA5E65A (Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 ___resources0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultControls_CreateInputField_mDF85B76D7CDE06E5E49F537EA5FDD8192DA5E65A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_0 = NULL;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_1 = NULL;
InputField_t533609195B110760BCFF00B746C87D81969CB005 * V_2 = NULL;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * V_3 = NULL;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * V_4 = NULL;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 V_5;
memset((&V_5), 0, sizeof(V_5));
{
// GameObject root = CreateUIElementRoot("InputField", s_ThickElementSize, typeof(Image), typeof(InputField));
IL2CPP_RUNTIME_CLASS_INIT(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = ((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->get_s_ThickElementSize_4();
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_1 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = L_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_4);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_5 = L_2;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (InputField_t533609195B110760BCFF00B746C87D81969CB005_0_0_0_var) };
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_5, L_7);
(L_5)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_7);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_8 = DefaultControls_CreateUIElementRoot_m6B5271F0FD59538B62BD2A81C972F919A8F2F184(_stringLiteralBDE4849D61262D79AEE48F2D9E10F7257C63A7CA, L_0, L_5, /*hidden argument*/NULL);
V_0 = L_8;
// GameObject childPlaceholder = CreateUIObject("Placeholder", root, typeof(Text));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_9 = V_0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_10 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_11 = L_10;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_0_0_0_var) };
Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_12, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_11, L_13);
(L_11)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_13);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_14 = DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988(_stringLiteralED212FA164B940B935EC0A25B32878A0917C7268, L_9, L_11, /*hidden argument*/NULL);
V_1 = L_14;
// GameObject childText = CreateUIObject("Text", root, typeof(Text));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_15 = V_0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_16 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_17 = L_16;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_18 = { reinterpret_cast<intptr_t> (Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_0_0_0_var) };
Type_t * L_19 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_18, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_17, L_19);
(L_17)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_19);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_20 = DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988(_stringLiteralC3328C39B0E29F78E9FF45DB674248B1D245887D, L_15, L_17, /*hidden argument*/NULL);
// Image image = root.GetComponent<Image>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_21 = V_0;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_22 = GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75(L_21, /*hidden argument*/GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75_RuntimeMethod_var);
// image.sprite = resources.inputField;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_23 = L_22;
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 L_24 = ___resources0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_25 = L_24.get_inputField_2();
Image_set_sprite_m77F8D681D4EE6D58F4F235AFF704C3EB165A9646(L_23, L_25, /*hidden argument*/NULL);
// image.type = Image.Type.Sliced;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_26 = L_23;
Image_set_type_mB5B2391926DA2F7326A98B2A847877C6CB8F0E2B(L_26, 1, /*hidden argument*/NULL);
// image.color = s_DefaultSelectableColor;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_27 = ((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->get_s_DefaultSelectableColor_7();
VirtActionInvoker1< Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_26, L_27);
// InputField inputField = root.GetComponent<InputField>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_28 = V_0;
InputField_t533609195B110760BCFF00B746C87D81969CB005 * L_29 = GameObject_GetComponent_TisInputField_t533609195B110760BCFF00B746C87D81969CB005_mA51516D144F85CAE471A6A68DF98CFB88FCE87AA(L_28, /*hidden argument*/GameObject_GetComponent_TisInputField_t533609195B110760BCFF00B746C87D81969CB005_mA51516D144F85CAE471A6A68DF98CFB88FCE87AA_RuntimeMethod_var);
V_2 = L_29;
// SetDefaultColorTransitionValues(inputField);
InputField_t533609195B110760BCFF00B746C87D81969CB005 * L_30 = V_2;
DefaultControls_SetDefaultColorTransitionValues_mA5D98948B9EB25EFC8EB302A63EDA5FC239F9B02(L_30, /*hidden argument*/NULL);
// Text text = childText.GetComponent<Text>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_31 = L_20;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_32 = GameObject_GetComponent_TisText_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_m24A42DAE3900B867697FFD9DFB6E448D6978CD4A(L_31, /*hidden argument*/GameObject_GetComponent_TisText_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_m24A42DAE3900B867697FFD9DFB6E448D6978CD4A_RuntimeMethod_var);
V_3 = L_32;
// text.text = "";
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_33 = V_3;
VirtActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_33, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
// text.supportRichText = false;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_34 = V_3;
Text_set_supportRichText_mE34FE6932EE7B93912E760AB30DC5F48DD8F98FB(L_34, (bool)0, /*hidden argument*/NULL);
// SetDefaultTextValues(text);
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_35 = V_3;
DefaultControls_SetDefaultTextValues_mA1638BD65C2A72207A3E3EA7D1D8A8485D108A1A(L_35, /*hidden argument*/NULL);
// Text placeholder = childPlaceholder.GetComponent<Text>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_36 = V_1;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_37 = GameObject_GetComponent_TisText_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_m24A42DAE3900B867697FFD9DFB6E448D6978CD4A(L_36, /*hidden argument*/GameObject_GetComponent_TisText_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_m24A42DAE3900B867697FFD9DFB6E448D6978CD4A_RuntimeMethod_var);
V_4 = L_37;
// placeholder.text = "Enter text...";
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_38 = V_4;
VirtActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_38, _stringLiteralF211CC2AA8CA0E451A49A1F44483A3C0A24BCFCA);
// placeholder.fontStyle = FontStyle.Italic;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_39 = V_4;
Text_set_fontStyle_mF63C76D954DB1E7BC689FE3BE02E14FABECAADF1(L_39, 2, /*hidden argument*/NULL);
// Color placeholderColor = text.color;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_40 = V_3;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_41 = VirtFuncInvoker0< Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 >::Invoke(22 /* UnityEngine.Color UnityEngine.UI.Graphic::get_color() */, L_40);
V_5 = L_41;
// placeholderColor.a *= 0.5f;
float* L_42 = (&V_5)->get_address_of_a_3();
float* L_43 = L_42;
float L_44 = *((float*)L_43);
*((float*)L_43) = (float)((float)il2cpp_codegen_multiply((float)L_44, (float)(0.5f)));
// placeholder.color = placeholderColor;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_45 = V_4;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_46 = V_5;
VirtActionInvoker1< Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_45, L_46);
// RectTransform textRectTransform = childText.GetComponent<RectTransform>();
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_47 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_31, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// textRectTransform.anchorMin = Vector2.zero;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_48 = L_47;
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_49 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_48, L_49, /*hidden argument*/NULL);
// textRectTransform.anchorMax = Vector2.one;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_50 = L_48;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_51 = Vector2_get_one_m6E01BE09CEA40781CB12CCB6AF33BBDA0F60CEED(/*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_50, L_51, /*hidden argument*/NULL);
// textRectTransform.sizeDelta = Vector2.zero;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_52 = L_50;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_53 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_52, L_53, /*hidden argument*/NULL);
// textRectTransform.offsetMin = new Vector2(10, 6);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_54 = L_52;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_55;
memset((&L_55), 0, sizeof(L_55));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_55), (10.0f), (6.0f), /*hidden argument*/NULL);
RectTransform_set_offsetMin_m7455ED64FF16C597E648E022BA768CFDCF4531AC(L_54, L_55, /*hidden argument*/NULL);
// textRectTransform.offsetMax = new Vector2(-10, -7);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_56;
memset((&L_56), 0, sizeof(L_56));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_56), (-10.0f), (-7.0f), /*hidden argument*/NULL);
RectTransform_set_offsetMax_mD55D44AD4740C79B5C2C83C60B0C38BF1090501C(L_54, L_56, /*hidden argument*/NULL);
// RectTransform placeholderRectTransform = childPlaceholder.GetComponent<RectTransform>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_57 = V_1;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_58 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_57, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// placeholderRectTransform.anchorMin = Vector2.zero;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_59 = L_58;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_60 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_59, L_60, /*hidden argument*/NULL);
// placeholderRectTransform.anchorMax = Vector2.one;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_61 = L_59;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_62 = Vector2_get_one_m6E01BE09CEA40781CB12CCB6AF33BBDA0F60CEED(/*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_61, L_62, /*hidden argument*/NULL);
// placeholderRectTransform.sizeDelta = Vector2.zero;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_63 = L_61;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_64 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_63, L_64, /*hidden argument*/NULL);
// placeholderRectTransform.offsetMin = new Vector2(10, 6);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_65 = L_63;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_66;
memset((&L_66), 0, sizeof(L_66));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_66), (10.0f), (6.0f), /*hidden argument*/NULL);
RectTransform_set_offsetMin_m7455ED64FF16C597E648E022BA768CFDCF4531AC(L_65, L_66, /*hidden argument*/NULL);
// placeholderRectTransform.offsetMax = new Vector2(-10, -7);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_67;
memset((&L_67), 0, sizeof(L_67));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_67), (-10.0f), (-7.0f), /*hidden argument*/NULL);
RectTransform_set_offsetMax_mD55D44AD4740C79B5C2C83C60B0C38BF1090501C(L_65, L_67, /*hidden argument*/NULL);
// inputField.textComponent = text;
InputField_t533609195B110760BCFF00B746C87D81969CB005 * L_68 = V_2;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_69 = V_3;
InputField_set_textComponent_m6706EFF9E1F112E923041792E86515FB0E9A0661(L_68, L_69, /*hidden argument*/NULL);
// inputField.placeholder = placeholder;
InputField_t533609195B110760BCFF00B746C87D81969CB005 * L_70 = V_2;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_71 = V_4;
InputField_set_placeholder_m1DBBD3A9F82F0660B33CE7B08CE62BD2CCA5E859(L_70, L_71, /*hidden argument*/NULL);
// return root;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_72 = V_0;
return L_72;
}
}
// UnityEngine.GameObject UnityEngine.UI.DefaultControls::CreateDropdown(UnityEngine.UI.DefaultControls_Resources)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * DefaultControls_CreateDropdown_m00FF9DE1B54D5EA9B22EECC23EAB2D465538C0B2 (Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 ___resources0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultControls_CreateDropdown_m00FF9DE1B54D5EA9B22EECC23EAB2D465538C0B2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_0 = NULL;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_1 = NULL;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_2 = NULL;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_3 = NULL;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_4 = NULL;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_5 = NULL;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_6 = NULL;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_7 = NULL;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_8 = NULL;
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * V_9 = NULL;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * V_10 = NULL;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * V_11 = NULL;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * V_12 = NULL;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * V_13 = NULL;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * V_14 = NULL;
{
// GameObject root = CreateUIElementRoot("Dropdown", s_ThickElementSize, typeof(Image), typeof(Dropdown));
IL2CPP_RUNTIME_CLASS_INIT(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = ((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->get_s_ThickElementSize_4();
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_1 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = L_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_4);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_5 = L_2;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F_0_0_0_var) };
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_5, L_7);
(L_5)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_7);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_8 = DefaultControls_CreateUIElementRoot_m6B5271F0FD59538B62BD2A81C972F919A8F2F184(_stringLiteralFC2D12B944ACEBE30DD287A5A171FEECA740C24D, L_0, L_5, /*hidden argument*/NULL);
V_0 = L_8;
// GameObject label = CreateUIObject("Label", root, typeof(Text));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_9 = V_0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_10 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_11 = L_10;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_0_0_0_var) };
Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_12, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_11, L_13);
(L_11)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_13);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_14 = DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988(_stringLiteral74341E3C271DF3C784E595B804B1F90BE0F80429, L_9, L_11, /*hidden argument*/NULL);
V_1 = L_14;
// GameObject arrow = CreateUIObject("Arrow", root, typeof(Image));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_15 = V_0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_16 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_17 = L_16;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_18 = { reinterpret_cast<intptr_t> (Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_0_0_0_var) };
Type_t * L_19 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_18, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_17, L_19);
(L_17)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_19);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_20 = DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988(_stringLiteral3A4758C3CC8DAC2D76026D0733816741F9B21D43, L_15, L_17, /*hidden argument*/NULL);
V_2 = L_20;
// GameObject template = CreateUIObject("Template", root, typeof(Image), typeof(ScrollRect));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_21 = V_0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_22 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = L_22;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_24 = { reinterpret_cast<intptr_t> (Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_0_0_0_var) };
Type_t * L_25 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_24, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_23, L_25);
(L_23)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_25);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_26 = L_23;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_27 = { reinterpret_cast<intptr_t> (ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51_0_0_0_var) };
Type_t * L_28 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_27, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_26, L_28);
(L_26)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_28);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_29 = DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988(_stringLiteral3EC1AE061C27325C7ECB543ADF91235E22CBC9ED, L_21, L_26, /*hidden argument*/NULL);
V_3 = L_29;
// GameObject viewport = CreateUIObject("Viewport", template, typeof(Image), typeof(Mask));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_30 = V_3;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_31 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_32 = L_31;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_33 = { reinterpret_cast<intptr_t> (Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_0_0_0_var) };
Type_t * L_34 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_33, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_32, L_34);
(L_32)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_34);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_35 = L_32;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_36 = { reinterpret_cast<intptr_t> (Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB_0_0_0_var) };
Type_t * L_37 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_36, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_35, L_37);
(L_35)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_37);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_38 = DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988(_stringLiteral09E594A52BE3A0E6E14D1A2606F909F43C8B96D0, L_30, L_35, /*hidden argument*/NULL);
V_4 = L_38;
// GameObject content = CreateUIObject("Content", viewport, typeof(RectTransform));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_39 = V_4;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_40 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_41 = L_40;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_42 = { reinterpret_cast<intptr_t> (RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_0_0_0_var) };
Type_t * L_43 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_42, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_41, L_43);
(L_41)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_43);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_44 = DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988(_stringLiteral4F9BE057F0EA5D2BA72FD2C810E8D7B9AA98B469, L_39, L_41, /*hidden argument*/NULL);
V_5 = L_44;
// GameObject item = CreateUIObject("Item", content, typeof(Toggle));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_45 = V_5;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_46 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_47 = L_46;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_48 = { reinterpret_cast<intptr_t> (Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106_0_0_0_var) };
Type_t * L_49 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_48, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_47, L_49);
(L_47)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_49);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_50 = DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988(_stringLiteralECDDA59AEA5EE67D7D854C969CCF7F4F4B4A4C54, L_45, L_47, /*hidden argument*/NULL);
V_6 = L_50;
// GameObject itemBackground = CreateUIObject("Item Background", item, typeof(Image));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_51 = V_6;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_52 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_53 = L_52;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_54 = { reinterpret_cast<intptr_t> (Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_0_0_0_var) };
Type_t * L_55 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_54, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_53, L_55);
(L_53)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_55);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_56 = DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988(_stringLiteral96D7E9F2E4825831074F9250E51D3BA8B94AF597, L_51, L_53, /*hidden argument*/NULL);
V_7 = L_56;
// GameObject itemCheckmark = CreateUIObject("Item Checkmark", item, typeof(Image));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_57 = V_6;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_58 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_59 = L_58;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_60 = { reinterpret_cast<intptr_t> (Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_0_0_0_var) };
Type_t * L_61 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_60, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_59, L_61);
(L_59)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_61);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_62 = DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988(_stringLiteral9F963877002FE8B751675B18E72CE57B05DB38A5, L_57, L_59, /*hidden argument*/NULL);
V_8 = L_62;
// GameObject itemLabel = CreateUIObject("Item Label", item, typeof(Text));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_63 = V_6;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_64 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_65 = L_64;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_66 = { reinterpret_cast<intptr_t> (Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_0_0_0_var) };
Type_t * L_67 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_66, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_65, L_67);
(L_65)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_67);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_68 = DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988(_stringLiteral2F0DBE96EDB83FAE28D899C9197D4DA6E4EABC5B, L_63, L_65, /*hidden argument*/NULL);
// GameObject scrollbar = CreateScrollbar(resources);
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 L_69 = ___resources0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_70 = DefaultControls_CreateScrollbar_m876785B77922E7A0918137096FE9CEEC4BBCA1C6(L_69, /*hidden argument*/NULL);
// scrollbar.name = "Scrollbar";
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_71 = L_70;
Object_set_name_m538711B144CDE30F929376BCF72D0DC8F85D0826(L_71, _stringLiteralCD289AA6ADCBDEB8448BBE98E9F19873F2B45B16, /*hidden argument*/NULL);
// SetParentAndAlign(scrollbar, template);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_72 = L_71;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_73 = V_3;
DefaultControls_SetParentAndAlign_m4176E84A699CD8A68747888300DC651B765A512A(L_72, L_73, /*hidden argument*/NULL);
// Scrollbar scrollbarScrollbar = scrollbar.GetComponent<Scrollbar>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_74 = L_72;
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * L_75 = GameObject_GetComponent_TisScrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389_m100E1B7CD3A739F07F5E190A8C25AE41512BD8A6(L_74, /*hidden argument*/GameObject_GetComponent_TisScrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389_m100E1B7CD3A739F07F5E190A8C25AE41512BD8A6_RuntimeMethod_var);
V_9 = L_75;
// scrollbarScrollbar.SetDirection(Scrollbar.Direction.BottomToTop, true);
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * L_76 = V_9;
Scrollbar_SetDirection_mA9024B104537EDF63AFF1C437A8F0D193CA562F8(L_76, 2, (bool)1, /*hidden argument*/NULL);
// RectTransform vScrollbarRT = scrollbar.GetComponent<RectTransform>();
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_77 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_74, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// vScrollbarRT.anchorMin = Vector2.right;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_78 = L_77;
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_79 = Vector2_get_right_mB4BD67462D579461853F297C0DE85D81E07E911E(/*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_78, L_79, /*hidden argument*/NULL);
// vScrollbarRT.anchorMax = Vector2.one;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_80 = L_78;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_81 = Vector2_get_one_m6E01BE09CEA40781CB12CCB6AF33BBDA0F60CEED(/*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_80, L_81, /*hidden argument*/NULL);
// vScrollbarRT.pivot = Vector2.one;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_82 = L_80;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_83 = Vector2_get_one_m6E01BE09CEA40781CB12CCB6AF33BBDA0F60CEED(/*hidden argument*/NULL);
RectTransform_set_pivot_mB791A383B3C870B9CBD7BC51B2C95711C88E9DCF(L_82, L_83, /*hidden argument*/NULL);
// vScrollbarRT.sizeDelta = new Vector2(vScrollbarRT.sizeDelta.x, 0);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_84 = L_82;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_85 = RectTransform_get_sizeDelta_mDA0A3E73679143B1B52CE2F9A417F90CB9F3DAFF(L_84, /*hidden argument*/NULL);
float L_86 = L_85.get_x_0();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_87;
memset((&L_87), 0, sizeof(L_87));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_87), L_86, (0.0f), /*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_84, L_87, /*hidden argument*/NULL);
// Text itemLabelText = itemLabel.GetComponent<Text>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_88 = L_68;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_89 = GameObject_GetComponent_TisText_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_m24A42DAE3900B867697FFD9DFB6E448D6978CD4A(L_88, /*hidden argument*/GameObject_GetComponent_TisText_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_m24A42DAE3900B867697FFD9DFB6E448D6978CD4A_RuntimeMethod_var);
V_10 = L_89;
// SetDefaultTextValues(itemLabelText);
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_90 = V_10;
DefaultControls_SetDefaultTextValues_mA1638BD65C2A72207A3E3EA7D1D8A8485D108A1A(L_90, /*hidden argument*/NULL);
// itemLabelText.alignment = TextAnchor.MiddleLeft;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_91 = V_10;
Text_set_alignment_m7C6F240D274640BFBCDAEDACB08684939900CB29(L_91, 3, /*hidden argument*/NULL);
// Image itemBackgroundImage = itemBackground.GetComponent<Image>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_92 = V_7;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_93 = GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75(L_92, /*hidden argument*/GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75_RuntimeMethod_var);
V_11 = L_93;
// itemBackgroundImage.color = new Color32(245, 245, 245, 255);
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_94 = V_11;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 L_95;
memset((&L_95), 0, sizeof(L_95));
Color32__ctor_m1AEF46FBBBE4B522E6984D081A3D158198E10AA2((&L_95), (uint8_t)((int32_t)245), (uint8_t)((int32_t)245), (uint8_t)((int32_t)245), (uint8_t)((int32_t)255), /*hidden argument*/NULL);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_96 = Color32_op_Implicit_mA89CAD76E78975F51DF7374A67D18A5F6EF8DA61(L_95, /*hidden argument*/NULL);
VirtActionInvoker1< Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_94, L_96);
// Image itemCheckmarkImage = itemCheckmark.GetComponent<Image>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_97 = V_8;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_98 = GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75(L_97, /*hidden argument*/GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75_RuntimeMethod_var);
V_12 = L_98;
// itemCheckmarkImage.sprite = resources.checkmark;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_99 = V_12;
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 L_100 = ___resources0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_101 = L_100.get_checkmark_4();
Image_set_sprite_m77F8D681D4EE6D58F4F235AFF704C3EB165A9646(L_99, L_101, /*hidden argument*/NULL);
// Toggle itemToggle = item.GetComponent<Toggle>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_102 = V_6;
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_103 = GameObject_GetComponent_TisToggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106_m9F98F777EFF307DC0F6FEA2C006044097874BE11(L_102, /*hidden argument*/GameObject_GetComponent_TisToggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106_m9F98F777EFF307DC0F6FEA2C006044097874BE11_RuntimeMethod_var);
// itemToggle.targetGraphic = itemBackgroundImage;
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_104 = L_103;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_105 = V_11;
Selectable_set_targetGraphic_m69C71056F05A767EC0D2ED14E80ABCA15B5E2FDE(L_104, L_105, /*hidden argument*/NULL);
// itemToggle.graphic = itemCheckmarkImage;
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_106 = L_104;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_107 = V_12;
L_106->set_graphic_21(L_107);
// itemToggle.isOn = true;
Toggle_set_isOn_mCAA660F49688DBA29E896B961E0054154C42EA2B(L_106, (bool)1, /*hidden argument*/NULL);
// Image templateImage = template.GetComponent<Image>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_108 = V_3;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_109 = GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75(L_108, /*hidden argument*/GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75_RuntimeMethod_var);
// templateImage.sprite = resources.standard;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_110 = L_109;
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 L_111 = ___resources0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_112 = L_111.get_standard_0();
Image_set_sprite_m77F8D681D4EE6D58F4F235AFF704C3EB165A9646(L_110, L_112, /*hidden argument*/NULL);
// templateImage.type = Image.Type.Sliced;
Image_set_type_mB5B2391926DA2F7326A98B2A847877C6CB8F0E2B(L_110, 1, /*hidden argument*/NULL);
// ScrollRect templateScrollRect = template.GetComponent<ScrollRect>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_113 = V_3;
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * L_114 = GameObject_GetComponent_TisScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51_m86F516439BCE4785DEF4C19316FF222CD6DD91E7(L_113, /*hidden argument*/GameObject_GetComponent_TisScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51_m86F516439BCE4785DEF4C19316FF222CD6DD91E7_RuntimeMethod_var);
// templateScrollRect.content = content.GetComponent<RectTransform>();
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * L_115 = L_114;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_116 = V_5;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_117 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_116, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
ScrollRect_set_content_m1D59059E32D0563BDF511A547978965B2C4F81F7_inline(L_115, L_117, /*hidden argument*/NULL);
// templateScrollRect.viewport = viewport.GetComponent<RectTransform>();
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * L_118 = L_115;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_119 = V_4;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_120 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_119, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
ScrollRect_set_viewport_mBBD71C770D85A0C3B131B919255CEE568EA48506(L_118, L_120, /*hidden argument*/NULL);
// templateScrollRect.horizontal = false;
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * L_121 = L_118;
ScrollRect_set_horizontal_m62275F56268C9EF22F5E71F68BC8026779A60B7E_inline(L_121, (bool)0, /*hidden argument*/NULL);
// templateScrollRect.movementType = ScrollRect.MovementType.Clamped;
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * L_122 = L_121;
ScrollRect_set_movementType_m2953F8BC5ABFDD067D5DDC54AE15953DBD754942_inline(L_122, 2, /*hidden argument*/NULL);
// templateScrollRect.verticalScrollbar = scrollbarScrollbar;
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * L_123 = L_122;
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * L_124 = V_9;
ScrollRect_set_verticalScrollbar_mF02C8BDC24D4FB53A5B25ACFC61B9134BC5ABB61(L_123, L_124, /*hidden argument*/NULL);
// templateScrollRect.verticalScrollbarVisibility = ScrollRect.ScrollbarVisibility.AutoHideAndExpandViewport;
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * L_125 = L_123;
ScrollRect_set_verticalScrollbarVisibility_m20B34375553122E7EEA5BEEDBFD80E87E18177F6(L_125, 2, /*hidden argument*/NULL);
// templateScrollRect.verticalScrollbarSpacing = -3;
ScrollRect_set_verticalScrollbarSpacing_m782C4FC20B2D4C50D151344F6E501BD03BBBD8B5(L_125, (-3.0f), /*hidden argument*/NULL);
// Mask scrollRectMask = viewport.GetComponent<Mask>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_126 = V_4;
Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB * L_127 = GameObject_GetComponent_TisMask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB_mC09F1E3135566B979D6505E5F69268E8DDE16D47(L_126, /*hidden argument*/GameObject_GetComponent_TisMask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB_mC09F1E3135566B979D6505E5F69268E8DDE16D47_RuntimeMethod_var);
// scrollRectMask.showMaskGraphic = false;
Mask_set_showMaskGraphic_m26E107B60ECE971C8EC07A92755F3DB5308CF568(L_127, (bool)0, /*hidden argument*/NULL);
// Image viewportImage = viewport.GetComponent<Image>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_128 = V_4;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_129 = GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75(L_128, /*hidden argument*/GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75_RuntimeMethod_var);
// viewportImage.sprite = resources.mask;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_130 = L_129;
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 L_131 = ___resources0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_132 = L_131.get_mask_6();
Image_set_sprite_m77F8D681D4EE6D58F4F235AFF704C3EB165A9646(L_130, L_132, /*hidden argument*/NULL);
// viewportImage.type = Image.Type.Sliced;
Image_set_type_mB5B2391926DA2F7326A98B2A847877C6CB8F0E2B(L_130, 1, /*hidden argument*/NULL);
// Text labelText = label.GetComponent<Text>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_133 = V_1;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_134 = GameObject_GetComponent_TisText_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_m24A42DAE3900B867697FFD9DFB6E448D6978CD4A(L_133, /*hidden argument*/GameObject_GetComponent_TisText_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030_m24A42DAE3900B867697FFD9DFB6E448D6978CD4A_RuntimeMethod_var);
V_13 = L_134;
// SetDefaultTextValues(labelText);
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_135 = V_13;
DefaultControls_SetDefaultTextValues_mA1638BD65C2A72207A3E3EA7D1D8A8485D108A1A(L_135, /*hidden argument*/NULL);
// labelText.alignment = TextAnchor.MiddleLeft;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_136 = V_13;
Text_set_alignment_m7C6F240D274640BFBCDAEDACB08684939900CB29(L_136, 3, /*hidden argument*/NULL);
// Image arrowImage = arrow.GetComponent<Image>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_137 = V_2;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_138 = GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75(L_137, /*hidden argument*/GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75_RuntimeMethod_var);
// arrowImage.sprite = resources.dropdown;
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 L_139 = ___resources0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_140 = L_139.get_dropdown_5();
Image_set_sprite_m77F8D681D4EE6D58F4F235AFF704C3EB165A9646(L_138, L_140, /*hidden argument*/NULL);
// Image backgroundImage = root.GetComponent<Image>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_141 = V_0;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_142 = GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75(L_141, /*hidden argument*/GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75_RuntimeMethod_var);
V_14 = L_142;
// backgroundImage.sprite = resources.standard;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_143 = V_14;
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 L_144 = ___resources0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_145 = L_144.get_standard_0();
Image_set_sprite_m77F8D681D4EE6D58F4F235AFF704C3EB165A9646(L_143, L_145, /*hidden argument*/NULL);
// backgroundImage.color = s_DefaultSelectableColor;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_146 = V_14;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_147 = ((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->get_s_DefaultSelectableColor_7();
VirtActionInvoker1< Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_146, L_147);
// backgroundImage.type = Image.Type.Sliced;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_148 = V_14;
Image_set_type_mB5B2391926DA2F7326A98B2A847877C6CB8F0E2B(L_148, 1, /*hidden argument*/NULL);
// Dropdown dropdown = root.GetComponent<Dropdown>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_149 = V_0;
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * L_150 = GameObject_GetComponent_TisDropdown_tF6331401084B1213CAB10587A6EC81461501930F_mCEDADB496C533D2B1022FE5C0B5D68493866A5E2(L_149, /*hidden argument*/GameObject_GetComponent_TisDropdown_tF6331401084B1213CAB10587A6EC81461501930F_mCEDADB496C533D2B1022FE5C0B5D68493866A5E2_RuntimeMethod_var);
// dropdown.targetGraphic = backgroundImage;
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * L_151 = L_150;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_152 = V_14;
Selectable_set_targetGraphic_m69C71056F05A767EC0D2ED14E80ABCA15B5E2FDE(L_151, L_152, /*hidden argument*/NULL);
// SetDefaultColorTransitionValues(dropdown);
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * L_153 = L_151;
DefaultControls_SetDefaultColorTransitionValues_mA5D98948B9EB25EFC8EB302A63EDA5FC239F9B02(L_153, /*hidden argument*/NULL);
// dropdown.template = template.GetComponent<RectTransform>();
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * L_154 = L_153;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_155 = V_3;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_156 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_155, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
Dropdown_set_template_m2B92A6B03345CAFB7C987C648B6FC075420DF85A(L_154, L_156, /*hidden argument*/NULL);
// dropdown.captionText = labelText;
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * L_157 = L_154;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_158 = V_13;
Dropdown_set_captionText_mFF1957B5BFA13D2295B54A092E863D0F582A3054(L_157, L_158, /*hidden argument*/NULL);
// dropdown.itemText = itemLabelText;
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * L_159 = L_157;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_160 = V_10;
Dropdown_set_itemText_m3FA2FA21BFB8D097F11F642B4061544FE97A250D(L_159, L_160, /*hidden argument*/NULL);
// itemLabelText.text = "Option A";
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_161 = V_10;
VirtActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_161, _stringLiteralF65F17E852927D59CCF5ED29D413A07B7FF6977A);
// dropdown.options.Add(new Dropdown.OptionData {text = "Option A"});
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * L_162 = L_159;
List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * L_163 = Dropdown_get_options_mE95E87D4EA905E9769CE8AC1CD1D9DB86A34F823(L_162, /*hidden argument*/NULL);
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * L_164 = (OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 *)il2cpp_codegen_object_new(OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831_il2cpp_TypeInfo_var);
OptionData__ctor_m45CB705FD6717ECEBDDA3E6F137BCC38C388CA1F(L_164, /*hidden argument*/NULL);
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * L_165 = L_164;
OptionData_set_text_mED7FEA5D1C3CB30CD7B8878CE86CE57D8E68C735_inline(L_165, _stringLiteralF65F17E852927D59CCF5ED29D413A07B7FF6977A, /*hidden argument*/NULL);
List_1_Add_mE0B46236A82E92B7F76C0F3A94ABBD0F4625A77C(L_163, L_165, /*hidden argument*/List_1_Add_mE0B46236A82E92B7F76C0F3A94ABBD0F4625A77C_RuntimeMethod_var);
// dropdown.options.Add(new Dropdown.OptionData {text = "Option B"});
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * L_166 = L_162;
List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * L_167 = Dropdown_get_options_mE95E87D4EA905E9769CE8AC1CD1D9DB86A34F823(L_166, /*hidden argument*/NULL);
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * L_168 = (OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 *)il2cpp_codegen_object_new(OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831_il2cpp_TypeInfo_var);
OptionData__ctor_m45CB705FD6717ECEBDDA3E6F137BCC38C388CA1F(L_168, /*hidden argument*/NULL);
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * L_169 = L_168;
OptionData_set_text_mED7FEA5D1C3CB30CD7B8878CE86CE57D8E68C735_inline(L_169, _stringLiteral82434DCEAD715602381B1E58A901E55BFE52DDE7, /*hidden argument*/NULL);
List_1_Add_mE0B46236A82E92B7F76C0F3A94ABBD0F4625A77C(L_167, L_169, /*hidden argument*/List_1_Add_mE0B46236A82E92B7F76C0F3A94ABBD0F4625A77C_RuntimeMethod_var);
// dropdown.options.Add(new Dropdown.OptionData {text = "Option C"});
Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * L_170 = L_166;
List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * L_171 = Dropdown_get_options_mE95E87D4EA905E9769CE8AC1CD1D9DB86A34F823(L_170, /*hidden argument*/NULL);
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * L_172 = (OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 *)il2cpp_codegen_object_new(OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831_il2cpp_TypeInfo_var);
OptionData__ctor_m45CB705FD6717ECEBDDA3E6F137BCC38C388CA1F(L_172, /*hidden argument*/NULL);
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * L_173 = L_172;
OptionData_set_text_mED7FEA5D1C3CB30CD7B8878CE86CE57D8E68C735_inline(L_173, _stringLiteralBBC3ECFBA5F94B95E90E1DB38E22C69A38723019, /*hidden argument*/NULL);
List_1_Add_mE0B46236A82E92B7F76C0F3A94ABBD0F4625A77C(L_171, L_173, /*hidden argument*/List_1_Add_mE0B46236A82E92B7F76C0F3A94ABBD0F4625A77C_RuntimeMethod_var);
// dropdown.RefreshShownValue();
Dropdown_RefreshShownValue_m310DF4ABCFE31C74153AAE3874B40DDF3D6959E1(L_170, /*hidden argument*/NULL);
// RectTransform labelRT = label.GetComponent<RectTransform>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_174 = V_1;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_175 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_174, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// labelRT.anchorMin = Vector2.zero;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_176 = L_175;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_177 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_176, L_177, /*hidden argument*/NULL);
// labelRT.anchorMax = Vector2.one;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_178 = L_176;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_179 = Vector2_get_one_m6E01BE09CEA40781CB12CCB6AF33BBDA0F60CEED(/*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_178, L_179, /*hidden argument*/NULL);
// labelRT.offsetMin = new Vector2(10, 6);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_180 = L_178;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_181;
memset((&L_181), 0, sizeof(L_181));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_181), (10.0f), (6.0f), /*hidden argument*/NULL);
RectTransform_set_offsetMin_m7455ED64FF16C597E648E022BA768CFDCF4531AC(L_180, L_181, /*hidden argument*/NULL);
// labelRT.offsetMax = new Vector2(-25, -7);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_182;
memset((&L_182), 0, sizeof(L_182));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_182), (-25.0f), (-7.0f), /*hidden argument*/NULL);
RectTransform_set_offsetMax_mD55D44AD4740C79B5C2C83C60B0C38BF1090501C(L_180, L_182, /*hidden argument*/NULL);
// RectTransform arrowRT = arrow.GetComponent<RectTransform>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_183 = V_2;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_184 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_183, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// arrowRT.anchorMin = new Vector2(1, 0.5f);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_185 = L_184;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_186;
memset((&L_186), 0, sizeof(L_186));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_186), (1.0f), (0.5f), /*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_185, L_186, /*hidden argument*/NULL);
// arrowRT.anchorMax = new Vector2(1, 0.5f);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_187 = L_185;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_188;
memset((&L_188), 0, sizeof(L_188));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_188), (1.0f), (0.5f), /*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_187, L_188, /*hidden argument*/NULL);
// arrowRT.sizeDelta = new Vector2(20, 20);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_189 = L_187;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_190;
memset((&L_190), 0, sizeof(L_190));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_190), (20.0f), (20.0f), /*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_189, L_190, /*hidden argument*/NULL);
// arrowRT.anchoredPosition = new Vector2(-15, 0);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_191;
memset((&L_191), 0, sizeof(L_191));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_191), (-15.0f), (0.0f), /*hidden argument*/NULL);
RectTransform_set_anchoredPosition_m4DD45DB1A97734A1F3A81E5F259638ECAF35962F(L_189, L_191, /*hidden argument*/NULL);
// RectTransform templateRT = template.GetComponent<RectTransform>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_192 = V_3;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_193 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_192, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// templateRT.anchorMin = new Vector2(0, 0);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_194 = L_193;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_195;
memset((&L_195), 0, sizeof(L_195));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_195), (0.0f), (0.0f), /*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_194, L_195, /*hidden argument*/NULL);
// templateRT.anchorMax = new Vector2(1, 0);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_196 = L_194;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_197;
memset((&L_197), 0, sizeof(L_197));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_197), (1.0f), (0.0f), /*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_196, L_197, /*hidden argument*/NULL);
// templateRT.pivot = new Vector2(0.5f, 1);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_198 = L_196;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_199;
memset((&L_199), 0, sizeof(L_199));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_199), (0.5f), (1.0f), /*hidden argument*/NULL);
RectTransform_set_pivot_mB791A383B3C870B9CBD7BC51B2C95711C88E9DCF(L_198, L_199, /*hidden argument*/NULL);
// templateRT.anchoredPosition = new Vector2(0, 2);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_200 = L_198;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_201;
memset((&L_201), 0, sizeof(L_201));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_201), (0.0f), (2.0f), /*hidden argument*/NULL);
RectTransform_set_anchoredPosition_m4DD45DB1A97734A1F3A81E5F259638ECAF35962F(L_200, L_201, /*hidden argument*/NULL);
// templateRT.sizeDelta = new Vector2(0, 150);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_202;
memset((&L_202), 0, sizeof(L_202));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_202), (0.0f), (150.0f), /*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_200, L_202, /*hidden argument*/NULL);
// RectTransform viewportRT = viewport.GetComponent<RectTransform>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_203 = V_4;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_204 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_203, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// viewportRT.anchorMin = new Vector2(0, 0);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_205 = L_204;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_206;
memset((&L_206), 0, sizeof(L_206));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_206), (0.0f), (0.0f), /*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_205, L_206, /*hidden argument*/NULL);
// viewportRT.anchorMax = new Vector2(1, 1);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_207 = L_205;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_208;
memset((&L_208), 0, sizeof(L_208));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_208), (1.0f), (1.0f), /*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_207, L_208, /*hidden argument*/NULL);
// viewportRT.sizeDelta = new Vector2(-18, 0);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_209 = L_207;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_210;
memset((&L_210), 0, sizeof(L_210));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_210), (-18.0f), (0.0f), /*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_209, L_210, /*hidden argument*/NULL);
// viewportRT.pivot = new Vector2(0, 1);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_211;
memset((&L_211), 0, sizeof(L_211));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_211), (0.0f), (1.0f), /*hidden argument*/NULL);
RectTransform_set_pivot_mB791A383B3C870B9CBD7BC51B2C95711C88E9DCF(L_209, L_211, /*hidden argument*/NULL);
// RectTransform contentRT = content.GetComponent<RectTransform>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_212 = V_5;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_213 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_212, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// contentRT.anchorMin = new Vector2(0f, 1);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_214 = L_213;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_215;
memset((&L_215), 0, sizeof(L_215));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_215), (0.0f), (1.0f), /*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_214, L_215, /*hidden argument*/NULL);
// contentRT.anchorMax = new Vector2(1f, 1);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_216 = L_214;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_217;
memset((&L_217), 0, sizeof(L_217));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_217), (1.0f), (1.0f), /*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_216, L_217, /*hidden argument*/NULL);
// contentRT.pivot = new Vector2(0.5f, 1);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_218 = L_216;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_219;
memset((&L_219), 0, sizeof(L_219));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_219), (0.5f), (1.0f), /*hidden argument*/NULL);
RectTransform_set_pivot_mB791A383B3C870B9CBD7BC51B2C95711C88E9DCF(L_218, L_219, /*hidden argument*/NULL);
// contentRT.anchoredPosition = new Vector2(0, 0);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_220 = L_218;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_221;
memset((&L_221), 0, sizeof(L_221));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_221), (0.0f), (0.0f), /*hidden argument*/NULL);
RectTransform_set_anchoredPosition_m4DD45DB1A97734A1F3A81E5F259638ECAF35962F(L_220, L_221, /*hidden argument*/NULL);
// contentRT.sizeDelta = new Vector2(0, 28);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_222;
memset((&L_222), 0, sizeof(L_222));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_222), (0.0f), (28.0f), /*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_220, L_222, /*hidden argument*/NULL);
// RectTransform itemRT = item.GetComponent<RectTransform>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_223 = V_6;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_224 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_223, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// itemRT.anchorMin = new Vector2(0, 0.5f);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_225 = L_224;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_226;
memset((&L_226), 0, sizeof(L_226));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_226), (0.0f), (0.5f), /*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_225, L_226, /*hidden argument*/NULL);
// itemRT.anchorMax = new Vector2(1, 0.5f);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_227 = L_225;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_228;
memset((&L_228), 0, sizeof(L_228));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_228), (1.0f), (0.5f), /*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_227, L_228, /*hidden argument*/NULL);
// itemRT.sizeDelta = new Vector2(0, 20);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_229;
memset((&L_229), 0, sizeof(L_229));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_229), (0.0f), (20.0f), /*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_227, L_229, /*hidden argument*/NULL);
// RectTransform itemBackgroundRT = itemBackground.GetComponent<RectTransform>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_230 = V_7;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_231 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_230, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// itemBackgroundRT.anchorMin = Vector2.zero;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_232 = L_231;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_233 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_232, L_233, /*hidden argument*/NULL);
// itemBackgroundRT.anchorMax = Vector2.one;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_234 = L_232;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_235 = Vector2_get_one_m6E01BE09CEA40781CB12CCB6AF33BBDA0F60CEED(/*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_234, L_235, /*hidden argument*/NULL);
// itemBackgroundRT.sizeDelta = Vector2.zero;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_236 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_234, L_236, /*hidden argument*/NULL);
// RectTransform itemCheckmarkRT = itemCheckmark.GetComponent<RectTransform>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_237 = V_8;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_238 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_237, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// itemCheckmarkRT.anchorMin = new Vector2(0, 0.5f);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_239 = L_238;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_240;
memset((&L_240), 0, sizeof(L_240));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_240), (0.0f), (0.5f), /*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_239, L_240, /*hidden argument*/NULL);
// itemCheckmarkRT.anchorMax = new Vector2(0, 0.5f);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_241 = L_239;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_242;
memset((&L_242), 0, sizeof(L_242));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_242), (0.0f), (0.5f), /*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_241, L_242, /*hidden argument*/NULL);
// itemCheckmarkRT.sizeDelta = new Vector2(20, 20);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_243 = L_241;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_244;
memset((&L_244), 0, sizeof(L_244));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_244), (20.0f), (20.0f), /*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_243, L_244, /*hidden argument*/NULL);
// itemCheckmarkRT.anchoredPosition = new Vector2(10, 0);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_245;
memset((&L_245), 0, sizeof(L_245));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_245), (10.0f), (0.0f), /*hidden argument*/NULL);
RectTransform_set_anchoredPosition_m4DD45DB1A97734A1F3A81E5F259638ECAF35962F(L_243, L_245, /*hidden argument*/NULL);
// RectTransform itemLabelRT = itemLabel.GetComponent<RectTransform>();
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_246 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_88, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// itemLabelRT.anchorMin = Vector2.zero;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_247 = L_246;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_248 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_247, L_248, /*hidden argument*/NULL);
// itemLabelRT.anchorMax = Vector2.one;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_249 = L_247;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_250 = Vector2_get_one_m6E01BE09CEA40781CB12CCB6AF33BBDA0F60CEED(/*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_249, L_250, /*hidden argument*/NULL);
// itemLabelRT.offsetMin = new Vector2(20, 1);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_251 = L_249;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_252;
memset((&L_252), 0, sizeof(L_252));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_252), (20.0f), (1.0f), /*hidden argument*/NULL);
RectTransform_set_offsetMin_m7455ED64FF16C597E648E022BA768CFDCF4531AC(L_251, L_252, /*hidden argument*/NULL);
// itemLabelRT.offsetMax = new Vector2(-10, -2);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_253;
memset((&L_253), 0, sizeof(L_253));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_253), (-10.0f), (-2.0f), /*hidden argument*/NULL);
RectTransform_set_offsetMax_mD55D44AD4740C79B5C2C83C60B0C38BF1090501C(L_251, L_253, /*hidden argument*/NULL);
// template.SetActive(false);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_254 = V_3;
GameObject_SetActive_m25A39F6D9FB68C51F13313F9804E85ACC937BC04(L_254, (bool)0, /*hidden argument*/NULL);
// return root;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_255 = V_0;
return L_255;
}
}
// UnityEngine.GameObject UnityEngine.UI.DefaultControls::CreateScrollView(UnityEngine.UI.DefaultControls_Resources)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * DefaultControls_CreateScrollView_m18E2B79533E8C63917A90B112C7861D8777FAB89 (Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 ___resources0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultControls_CreateScrollView_m18E2B79533E8C63917A90B112C7861D8777FAB89_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_0 = NULL;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_1 = NULL;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_2 = NULL;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * V_3 = NULL;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_4 = NULL;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * V_5 = NULL;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * V_6 = NULL;
{
// GameObject root = CreateUIElementRoot("Scroll View", new Vector2(200, 200), typeof(Image), typeof(ScrollRect));
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0;
memset((&L_0), 0, sizeof(L_0));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_0), (200.0f), (200.0f), /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_1 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = L_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_4);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_5 = L_2;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51_0_0_0_var) };
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_5, L_7);
(L_5)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_7);
IL2CPP_RUNTIME_CLASS_INIT(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_8 = DefaultControls_CreateUIElementRoot_m6B5271F0FD59538B62BD2A81C972F919A8F2F184(_stringLiteral3005AF5906F0D0E9834355CBD9CF24C4332FFA1D, L_0, L_5, /*hidden argument*/NULL);
V_0 = L_8;
// GameObject viewport = CreateUIObject("Viewport", root, typeof(Image), typeof(Mask));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_9 = V_0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_10 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_11 = L_10;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E_0_0_0_var) };
Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_12, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_11, L_13);
(L_11)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_13);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_14 = L_11;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB_0_0_0_var) };
Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_15, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_14, L_16);
(L_14)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_16);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_17 = DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988(_stringLiteral09E594A52BE3A0E6E14D1A2606F909F43C8B96D0, L_9, L_14, /*hidden argument*/NULL);
V_1 = L_17;
// GameObject content = CreateUIObject("Content", viewport, typeof(RectTransform));
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_18 = V_1;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_19 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_20 = L_19;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_0_0_0_var) };
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_21, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_20, L_22);
(L_20)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_22);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_23 = DefaultControls_CreateUIObject_m40EAC1469CBFAFB6162127C38E148719A986C988(_stringLiteral4F9BE057F0EA5D2BA72FD2C810E8D7B9AA98B469, L_18, L_20, /*hidden argument*/NULL);
// GameObject hScrollbar = CreateScrollbar(resources);
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 L_24 = ___resources0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_25 = DefaultControls_CreateScrollbar_m876785B77922E7A0918137096FE9CEEC4BBCA1C6(L_24, /*hidden argument*/NULL);
V_2 = L_25;
// hScrollbar.name = "Scrollbar Horizontal";
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_26 = V_2;
Object_set_name_m538711B144CDE30F929376BCF72D0DC8F85D0826(L_26, _stringLiteralEC9F7D96DE56795EBE514797581798242F817D49, /*hidden argument*/NULL);
// SetParentAndAlign(hScrollbar, root);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_27 = V_2;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_28 = V_0;
DefaultControls_SetParentAndAlign_m4176E84A699CD8A68747888300DC651B765A512A(L_27, L_28, /*hidden argument*/NULL);
// RectTransform hScrollbarRT = hScrollbar.GetComponent<RectTransform>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_29 = V_2;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_30 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_29, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
V_3 = L_30;
// hScrollbarRT.anchorMin = Vector2.zero;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_31 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_32 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_31, L_32, /*hidden argument*/NULL);
// hScrollbarRT.anchorMax = Vector2.right;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_33 = V_3;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_34 = Vector2_get_right_mB4BD67462D579461853F297C0DE85D81E07E911E(/*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_33, L_34, /*hidden argument*/NULL);
// hScrollbarRT.pivot = Vector2.zero;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_35 = V_3;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_36 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
RectTransform_set_pivot_mB791A383B3C870B9CBD7BC51B2C95711C88E9DCF(L_35, L_36, /*hidden argument*/NULL);
// hScrollbarRT.sizeDelta = new Vector2(0, hScrollbarRT.sizeDelta.y);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_37 = V_3;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_38 = V_3;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_39 = RectTransform_get_sizeDelta_mDA0A3E73679143B1B52CE2F9A417F90CB9F3DAFF(L_38, /*hidden argument*/NULL);
float L_40 = L_39.get_y_1();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_41;
memset((&L_41), 0, sizeof(L_41));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_41), (0.0f), L_40, /*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_37, L_41, /*hidden argument*/NULL);
// GameObject vScrollbar = CreateScrollbar(resources);
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 L_42 = ___resources0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_43 = DefaultControls_CreateScrollbar_m876785B77922E7A0918137096FE9CEEC4BBCA1C6(L_42, /*hidden argument*/NULL);
V_4 = L_43;
// vScrollbar.name = "Scrollbar Vertical";
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_44 = V_4;
Object_set_name_m538711B144CDE30F929376BCF72D0DC8F85D0826(L_44, _stringLiteral2CA317AB11597AD5389641AFD61F772E8AD833A5, /*hidden argument*/NULL);
// SetParentAndAlign(vScrollbar, root);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_45 = V_4;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_46 = V_0;
DefaultControls_SetParentAndAlign_m4176E84A699CD8A68747888300DC651B765A512A(L_45, L_46, /*hidden argument*/NULL);
// vScrollbar.GetComponent<Scrollbar>().SetDirection(Scrollbar.Direction.BottomToTop, true);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_47 = V_4;
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * L_48 = GameObject_GetComponent_TisScrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389_m100E1B7CD3A739F07F5E190A8C25AE41512BD8A6(L_47, /*hidden argument*/GameObject_GetComponent_TisScrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389_m100E1B7CD3A739F07F5E190A8C25AE41512BD8A6_RuntimeMethod_var);
Scrollbar_SetDirection_mA9024B104537EDF63AFF1C437A8F0D193CA562F8(L_48, 2, (bool)1, /*hidden argument*/NULL);
// RectTransform vScrollbarRT = vScrollbar.GetComponent<RectTransform>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_49 = V_4;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_50 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_49, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
// vScrollbarRT.anchorMin = Vector2.right;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_51 = L_50;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_52 = Vector2_get_right_mB4BD67462D579461853F297C0DE85D81E07E911E(/*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_51, L_52, /*hidden argument*/NULL);
// vScrollbarRT.anchorMax = Vector2.one;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_53 = L_51;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_54 = Vector2_get_one_m6E01BE09CEA40781CB12CCB6AF33BBDA0F60CEED(/*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_53, L_54, /*hidden argument*/NULL);
// vScrollbarRT.pivot = Vector2.one;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_55 = L_53;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_56 = Vector2_get_one_m6E01BE09CEA40781CB12CCB6AF33BBDA0F60CEED(/*hidden argument*/NULL);
RectTransform_set_pivot_mB791A383B3C870B9CBD7BC51B2C95711C88E9DCF(L_55, L_56, /*hidden argument*/NULL);
// vScrollbarRT.sizeDelta = new Vector2(vScrollbarRT.sizeDelta.x, 0);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_57 = L_55;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_58 = RectTransform_get_sizeDelta_mDA0A3E73679143B1B52CE2F9A417F90CB9F3DAFF(L_57, /*hidden argument*/NULL);
float L_59 = L_58.get_x_0();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_60;
memset((&L_60), 0, sizeof(L_60));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_60), L_59, (0.0f), /*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_57, L_60, /*hidden argument*/NULL);
// RectTransform viewportRT = viewport.GetComponent<RectTransform>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_61 = V_1;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_62 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_61, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
V_5 = L_62;
// viewportRT.anchorMin = Vector2.zero;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_63 = V_5;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_64 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_63, L_64, /*hidden argument*/NULL);
// viewportRT.anchorMax = Vector2.one;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_65 = V_5;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_66 = Vector2_get_one_m6E01BE09CEA40781CB12CCB6AF33BBDA0F60CEED(/*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_65, L_66, /*hidden argument*/NULL);
// viewportRT.sizeDelta = Vector2.zero;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_67 = V_5;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_68 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_67, L_68, /*hidden argument*/NULL);
// viewportRT.pivot = Vector2.up;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_69 = V_5;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_70 = Vector2_get_up_mC4548731D5E7C71164D18C390A1AC32501DAE441(/*hidden argument*/NULL);
RectTransform_set_pivot_mB791A383B3C870B9CBD7BC51B2C95711C88E9DCF(L_69, L_70, /*hidden argument*/NULL);
// RectTransform contentRT = content.GetComponent<RectTransform>();
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_71 = GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C(L_23, /*hidden argument*/GameObject_GetComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_m2E5F02DDA13C176AF75B4E7C1DB801D89E053B2C_RuntimeMethod_var);
V_6 = L_71;
// contentRT.anchorMin = Vector2.up;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_72 = V_6;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_73 = Vector2_get_up_mC4548731D5E7C71164D18C390A1AC32501DAE441(/*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_72, L_73, /*hidden argument*/NULL);
// contentRT.anchorMax = Vector2.one;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_74 = V_6;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_75 = Vector2_get_one_m6E01BE09CEA40781CB12CCB6AF33BBDA0F60CEED(/*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_74, L_75, /*hidden argument*/NULL);
// contentRT.sizeDelta = new Vector2(0, 300);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_76 = V_6;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_77;
memset((&L_77), 0, sizeof(L_77));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_77), (0.0f), (300.0f), /*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_76, L_77, /*hidden argument*/NULL);
// contentRT.pivot = Vector2.up;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_78 = V_6;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_79 = Vector2_get_up_mC4548731D5E7C71164D18C390A1AC32501DAE441(/*hidden argument*/NULL);
RectTransform_set_pivot_mB791A383B3C870B9CBD7BC51B2C95711C88E9DCF(L_78, L_79, /*hidden argument*/NULL);
// ScrollRect scrollRect = root.GetComponent<ScrollRect>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_80 = V_0;
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * L_81 = GameObject_GetComponent_TisScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51_m86F516439BCE4785DEF4C19316FF222CD6DD91E7(L_80, /*hidden argument*/GameObject_GetComponent_TisScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51_m86F516439BCE4785DEF4C19316FF222CD6DD91E7_RuntimeMethod_var);
// scrollRect.content = contentRT;
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * L_82 = L_81;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_83 = V_6;
ScrollRect_set_content_m1D59059E32D0563BDF511A547978965B2C4F81F7_inline(L_82, L_83, /*hidden argument*/NULL);
// scrollRect.viewport = viewportRT;
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * L_84 = L_82;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_85 = V_5;
ScrollRect_set_viewport_mBBD71C770D85A0C3B131B919255CEE568EA48506(L_84, L_85, /*hidden argument*/NULL);
// scrollRect.horizontalScrollbar = hScrollbar.GetComponent<Scrollbar>();
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * L_86 = L_84;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_87 = V_2;
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * L_88 = GameObject_GetComponent_TisScrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389_m100E1B7CD3A739F07F5E190A8C25AE41512BD8A6(L_87, /*hidden argument*/GameObject_GetComponent_TisScrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389_m100E1B7CD3A739F07F5E190A8C25AE41512BD8A6_RuntimeMethod_var);
ScrollRect_set_horizontalScrollbar_mA67D54C0D2CE7E492F6E58190EE00BB1A46BFC3A(L_86, L_88, /*hidden argument*/NULL);
// scrollRect.verticalScrollbar = vScrollbar.GetComponent<Scrollbar>();
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * L_89 = L_86;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_90 = V_4;
Scrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389 * L_91 = GameObject_GetComponent_TisScrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389_m100E1B7CD3A739F07F5E190A8C25AE41512BD8A6(L_90, /*hidden argument*/GameObject_GetComponent_TisScrollbar_t8F8679D0EAFACBCBD603E6B0E741E6A783DB3389_m100E1B7CD3A739F07F5E190A8C25AE41512BD8A6_RuntimeMethod_var);
ScrollRect_set_verticalScrollbar_mF02C8BDC24D4FB53A5B25ACFC61B9134BC5ABB61(L_89, L_91, /*hidden argument*/NULL);
// scrollRect.horizontalScrollbarVisibility = ScrollRect.ScrollbarVisibility.AutoHideAndExpandViewport;
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * L_92 = L_89;
ScrollRect_set_horizontalScrollbarVisibility_m2D6DB4D340121E55942254C331B5EA343D0ED082(L_92, 2, /*hidden argument*/NULL);
// scrollRect.verticalScrollbarVisibility = ScrollRect.ScrollbarVisibility.AutoHideAndExpandViewport;
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * L_93 = L_92;
ScrollRect_set_verticalScrollbarVisibility_m20B34375553122E7EEA5BEEDBFD80E87E18177F6(L_93, 2, /*hidden argument*/NULL);
// scrollRect.horizontalScrollbarSpacing = -3;
ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * L_94 = L_93;
ScrollRect_set_horizontalScrollbarSpacing_m22675D0F7497561D02FC4171023BD297688D445F(L_94, (-3.0f), /*hidden argument*/NULL);
// scrollRect.verticalScrollbarSpacing = -3;
ScrollRect_set_verticalScrollbarSpacing_m782C4FC20B2D4C50D151344F6E501BD03BBBD8B5(L_94, (-3.0f), /*hidden argument*/NULL);
// Image rootImage = root.GetComponent<Image>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_95 = V_0;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_96 = GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75(L_95, /*hidden argument*/GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75_RuntimeMethod_var);
// rootImage.sprite = resources.background;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_97 = L_96;
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 L_98 = ___resources0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_99 = L_98.get_background_1();
Image_set_sprite_m77F8D681D4EE6D58F4F235AFF704C3EB165A9646(L_97, L_99, /*hidden argument*/NULL);
// rootImage.type = Image.Type.Sliced;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_100 = L_97;
Image_set_type_mB5B2391926DA2F7326A98B2A847877C6CB8F0E2B(L_100, 1, /*hidden argument*/NULL);
// rootImage.color = s_PanelColor;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_101 = ((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->get_s_PanelColor_8();
VirtActionInvoker1< Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_100, L_101);
// Mask viewportMask = viewport.GetComponent<Mask>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_102 = V_1;
Mask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB * L_103 = GameObject_GetComponent_TisMask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB_mC09F1E3135566B979D6505E5F69268E8DDE16D47(L_102, /*hidden argument*/GameObject_GetComponent_TisMask_t082A7A79B4BF2063E5F81D2F84D968569D737CCB_mC09F1E3135566B979D6505E5F69268E8DDE16D47_RuntimeMethod_var);
// viewportMask.showMaskGraphic = false;
Mask_set_showMaskGraphic_m26E107B60ECE971C8EC07A92755F3DB5308CF568(L_103, (bool)0, /*hidden argument*/NULL);
// Image viewportImage = viewport.GetComponent<Image>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_104 = V_1;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_105 = GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75(L_104, /*hidden argument*/GameObject_GetComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_m9008044B066CF5830B44DEB0C6CD94872D501A75_RuntimeMethod_var);
// viewportImage.sprite = resources.mask;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_106 = L_105;
Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4 L_107 = ___resources0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_108 = L_107.get_mask_6();
Image_set_sprite_m77F8D681D4EE6D58F4F235AFF704C3EB165A9646(L_106, L_108, /*hidden argument*/NULL);
// viewportImage.type = Image.Type.Sliced;
Image_set_type_mB5B2391926DA2F7326A98B2A847877C6CB8F0E2B(L_106, 1, /*hidden argument*/NULL);
// return root;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_109 = V_0;
return L_109;
}
}
// System.Void UnityEngine.UI.DefaultControls::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultControls__cctor_m2CFE7925A4D7254130F760EBE94A377BB86417A9 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultControls__cctor_m2CFE7925A4D7254130F760EBE94A377BB86417A9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// static IFactoryControls m_CurrentFactory = DefaultRuntimeFactory.Default;
IL2CPP_RUNTIME_CLASS_INIT(DefaultRuntimeFactory_t220869A7714E77F38D078944261214EF14D509F2_il2cpp_TypeInfo_var);
RuntimeObject* L_0 = ((DefaultRuntimeFactory_t220869A7714E77F38D078944261214EF14D509F2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultRuntimeFactory_t220869A7714E77F38D078944261214EF14D509F2_il2cpp_TypeInfo_var))->get_Default_0();
((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->set_m_CurrentFactory_0(L_0);
// private static Vector2 s_ThickElementSize = new Vector2(kWidth, kThickHeight);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_1;
memset((&L_1), 0, sizeof(L_1));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_1), (160.0f), (30.0f), /*hidden argument*/NULL);
((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->set_s_ThickElementSize_4(L_1);
// private static Vector2 s_ThinElementSize = new Vector2(kWidth, kThinHeight);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_2;
memset((&L_2), 0, sizeof(L_2));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_2), (160.0f), (20.0f), /*hidden argument*/NULL);
((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->set_s_ThinElementSize_5(L_2);
// private static Vector2 s_ImageElementSize = new Vector2(100f, 100f);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_3;
memset((&L_3), 0, sizeof(L_3));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_3), (100.0f), (100.0f), /*hidden argument*/NULL);
((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->set_s_ImageElementSize_6(L_3);
// private static Color s_DefaultSelectableColor = new Color(1f, 1f, 1f, 1f);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_4;
memset((&L_4), 0, sizeof(L_4));
Color__ctor_m20DF490CEB364C4FC36D7EE392640DF5B7420D7C((&L_4), (1.0f), (1.0f), (1.0f), (1.0f), /*hidden argument*/NULL);
((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->set_s_DefaultSelectableColor_7(L_4);
// private static Color s_PanelColor = new Color(1f, 1f, 1f, 0.392f);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_5;
memset((&L_5), 0, sizeof(L_5));
Color__ctor_m20DF490CEB364C4FC36D7EE392640DF5B7420D7C((&L_5), (1.0f), (1.0f), (1.0f), (0.392f), /*hidden argument*/NULL);
((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->set_s_PanelColor_8(L_5);
// private static Color s_TextColor = new Color(50f / 255f, 50f / 255f, 50f / 255f, 1f);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_6;
memset((&L_6), 0, sizeof(L_6));
Color__ctor_m20DF490CEB364C4FC36D7EE392640DF5B7420D7C((&L_6), (0.196078435f), (0.196078435f), (0.196078435f), (1.0f), /*hidden argument*/NULL);
((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->set_s_TextColor_9(L_6);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.GameObject UnityEngine.UI.DefaultControls_DefaultRuntimeFactory::CreateGameObject(System.String,System.Type[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * DefaultRuntimeFactory_CreateGameObject_m76DCCBEF0431C815F2AC2360614D4FF09F98E34C (DefaultRuntimeFactory_t220869A7714E77F38D078944261214EF14D509F2 * __this, String_t* ___name0, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___components1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultRuntimeFactory_CreateGameObject_m76DCCBEF0431C815F2AC2360614D4FF09F98E34C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// return new GameObject(name, components);
String_t* L_0 = ___name0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_1 = ___components1;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_2 = (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)il2cpp_codegen_object_new(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F_il2cpp_TypeInfo_var);
GameObject__ctor_m20BE06980A232E1D64016957059A9DD834173F68(L_2, L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Void UnityEngine.UI.DefaultControls_DefaultRuntimeFactory::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultRuntimeFactory__ctor_mC84BC30364958D9A5EEE040D5D4BE254393809CF (DefaultRuntimeFactory_t220869A7714E77F38D078944261214EF14D509F2 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.UI.DefaultControls_DefaultRuntimeFactory::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultRuntimeFactory__cctor_m917CD6F4766028435BE57F5EAFD83A887E0CA4E8 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultRuntimeFactory__cctor_m917CD6F4766028435BE57F5EAFD83A887E0CA4E8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// public static IFactoryControls Default = new DefaultRuntimeFactory();
DefaultRuntimeFactory_t220869A7714E77F38D078944261214EF14D509F2 * L_0 = (DefaultRuntimeFactory_t220869A7714E77F38D078944261214EF14D509F2 *)il2cpp_codegen_object_new(DefaultRuntimeFactory_t220869A7714E77F38D078944261214EF14D509F2_il2cpp_TypeInfo_var);
DefaultRuntimeFactory__ctor_mC84BC30364958D9A5EEE040D5D4BE254393809CF(L_0, /*hidden argument*/NULL);
((DefaultRuntimeFactory_t220869A7714E77F38D078944261214EF14D509F2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultRuntimeFactory_t220869A7714E77F38D078944261214EF14D509F2_il2cpp_TypeInfo_var))->set_Default_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.UI.DefaultControls/Resources
IL2CPP_EXTERN_C void Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4_marshal_pinvoke(const Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4& unmarshaled, Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4_marshaled_pinvoke& marshaled)
{
Exception_t* ___standard_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'standard' of type 'Resources': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___standard_0Exception, NULL);
}
IL2CPP_EXTERN_C void Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4_marshal_pinvoke_back(const Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4_marshaled_pinvoke& marshaled, Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4& unmarshaled)
{
Exception_t* ___standard_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'standard' of type 'Resources': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___standard_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.UI.DefaultControls/Resources
IL2CPP_EXTERN_C void Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4_marshal_pinvoke_cleanup(Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.UI.DefaultControls/Resources
IL2CPP_EXTERN_C void Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4_marshal_com(const Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4& unmarshaled, Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4_marshaled_com& marshaled)
{
Exception_t* ___standard_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'standard' of type 'Resources': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___standard_0Exception, NULL);
}
IL2CPP_EXTERN_C void Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4_marshal_com_back(const Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4_marshaled_com& marshaled, Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4& unmarshaled)
{
Exception_t* ___standard_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'standard' of type 'Resources': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___standard_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.UI.DefaultControls/Resources
IL2CPP_EXTERN_C void Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4_marshal_com_cleanup(Resources_t0D3248037D186E6B8BB5CF2BD1EB021CF3E6DEE4_marshaled_com& marshaled)
{
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.RectTransform UnityEngine.UI.Dropdown::get_template()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * Dropdown_get_template_m9C83BB0CFD2BA72F08ACC8B0FA9A274FAD0FC9C4 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method)
{
{
// public RectTransform template { get { return m_Template; } set { m_Template = value; RefreshShownValue(); } }
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_0 = __this->get_m_Template_20();
return L_0;
}
}
// System.Void UnityEngine.UI.Dropdown::set_template(UnityEngine.RectTransform)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_set_template_m2B92A6B03345CAFB7C987C648B6FC075420DF85A (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___value0, const RuntimeMethod* method)
{
{
// public RectTransform template { get { return m_Template; } set { m_Template = value; RefreshShownValue(); } }
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_0 = ___value0;
__this->set_m_Template_20(L_0);
// public RectTransform template { get { return m_Template; } set { m_Template = value; RefreshShownValue(); } }
Dropdown_RefreshShownValue_m310DF4ABCFE31C74153AAE3874B40DDF3D6959E1(__this, /*hidden argument*/NULL);
// public RectTransform template { get { return m_Template; } set { m_Template = value; RefreshShownValue(); } }
return;
}
}
// UnityEngine.UI.Text UnityEngine.UI.Dropdown::get_captionText()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * Dropdown_get_captionText_m3E3FF20006F7EC8A8FD7ABBB7F9F723A0E3CD5FF (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method)
{
{
// public Text captionText { get { return m_CaptionText; } set { m_CaptionText = value; RefreshShownValue(); } }
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_0 = __this->get_m_CaptionText_21();
return L_0;
}
}
// System.Void UnityEngine.UI.Dropdown::set_captionText(UnityEngine.UI.Text)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_set_captionText_mFF1957B5BFA13D2295B54A092E863D0F582A3054 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___value0, const RuntimeMethod* method)
{
{
// public Text captionText { get { return m_CaptionText; } set { m_CaptionText = value; RefreshShownValue(); } }
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_0 = ___value0;
__this->set_m_CaptionText_21(L_0);
// public Text captionText { get { return m_CaptionText; } set { m_CaptionText = value; RefreshShownValue(); } }
Dropdown_RefreshShownValue_m310DF4ABCFE31C74153AAE3874B40DDF3D6959E1(__this, /*hidden argument*/NULL);
// public Text captionText { get { return m_CaptionText; } set { m_CaptionText = value; RefreshShownValue(); } }
return;
}
}
// UnityEngine.UI.Image UnityEngine.UI.Dropdown::get_captionImage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * Dropdown_get_captionImage_mB846CCDC2F81DEC05EFC9FA1E38505409B428253 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method)
{
{
// public Image captionImage { get { return m_CaptionImage; } set { m_CaptionImage = value; RefreshShownValue(); } }
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_0 = __this->get_m_CaptionImage_22();
return L_0;
}
}
// System.Void UnityEngine.UI.Dropdown::set_captionImage(UnityEngine.UI.Image)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_set_captionImage_mE671828EC16733683973D78B53EAAD8BF928C3FB (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * ___value0, const RuntimeMethod* method)
{
{
// public Image captionImage { get { return m_CaptionImage; } set { m_CaptionImage = value; RefreshShownValue(); } }
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_0 = ___value0;
__this->set_m_CaptionImage_22(L_0);
// public Image captionImage { get { return m_CaptionImage; } set { m_CaptionImage = value; RefreshShownValue(); } }
Dropdown_RefreshShownValue_m310DF4ABCFE31C74153AAE3874B40DDF3D6959E1(__this, /*hidden argument*/NULL);
// public Image captionImage { get { return m_CaptionImage; } set { m_CaptionImage = value; RefreshShownValue(); } }
return;
}
}
// UnityEngine.UI.Text UnityEngine.UI.Dropdown::get_itemText()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * Dropdown_get_itemText_m1AEEFE1ACF751CD3483659F5E5B703239C28C7D5 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method)
{
{
// public Text itemText { get { return m_ItemText; } set { m_ItemText = value; RefreshShownValue(); } }
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_0 = __this->get_m_ItemText_23();
return L_0;
}
}
// System.Void UnityEngine.UI.Dropdown::set_itemText(UnityEngine.UI.Text)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_set_itemText_m3FA2FA21BFB8D097F11F642B4061544FE97A250D (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___value0, const RuntimeMethod* method)
{
{
// public Text itemText { get { return m_ItemText; } set { m_ItemText = value; RefreshShownValue(); } }
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_0 = ___value0;
__this->set_m_ItemText_23(L_0);
// public Text itemText { get { return m_ItemText; } set { m_ItemText = value; RefreshShownValue(); } }
Dropdown_RefreshShownValue_m310DF4ABCFE31C74153AAE3874B40DDF3D6959E1(__this, /*hidden argument*/NULL);
// public Text itemText { get { return m_ItemText; } set { m_ItemText = value; RefreshShownValue(); } }
return;
}
}
// UnityEngine.UI.Image UnityEngine.UI.Dropdown::get_itemImage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * Dropdown_get_itemImage_m3B115ACA023FC279CAE1757FD4AB0DF91242BA50 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method)
{
{
// public Image itemImage { get { return m_ItemImage; } set { m_ItemImage = value; RefreshShownValue(); } }
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_0 = __this->get_m_ItemImage_24();
return L_0;
}
}
// System.Void UnityEngine.UI.Dropdown::set_itemImage(UnityEngine.UI.Image)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_set_itemImage_mF609D2C91FC45643A9F61E1F651BA1FC9DA4DF45 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * ___value0, const RuntimeMethod* method)
{
{
// public Image itemImage { get { return m_ItemImage; } set { m_ItemImage = value; RefreshShownValue(); } }
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_0 = ___value0;
__this->set_m_ItemImage_24(L_0);
// public Image itemImage { get { return m_ItemImage; } set { m_ItemImage = value; RefreshShownValue(); } }
Dropdown_RefreshShownValue_m310DF4ABCFE31C74153AAE3874B40DDF3D6959E1(__this, /*hidden argument*/NULL);
// public Image itemImage { get { return m_ItemImage; } set { m_ItemImage = value; RefreshShownValue(); } }
return;
}
}
// System.Collections.Generic.List`1<UnityEngine.UI.Dropdown_OptionData> UnityEngine.UI.Dropdown::get_options()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * Dropdown_get_options_mE95E87D4EA905E9769CE8AC1CD1D9DB86A34F823 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method)
{
{
// get { return m_Options.options; }
OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D * L_0 = __this->get_m_Options_26();
List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * L_1 = OptionDataList_get_options_mEA305423DD1C0F201310F97CFD3FD1B89F063ED0_inline(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Void UnityEngine.UI.Dropdown::set_options(System.Collections.Generic.List`1<UnityEngine.UI.Dropdown_OptionData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_set_options_m6606D7A610BA8B07CE330099250482F230B41CAB (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * ___value0, const RuntimeMethod* method)
{
{
// set { m_Options.options = value; RefreshShownValue(); }
OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D * L_0 = __this->get_m_Options_26();
List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * L_1 = ___value0;
OptionDataList_set_options_m674C45F57F90F85B6E33EF4C05BD0F0E236BF823_inline(L_0, L_1, /*hidden argument*/NULL);
// set { m_Options.options = value; RefreshShownValue(); }
Dropdown_RefreshShownValue_m310DF4ABCFE31C74153AAE3874B40DDF3D6959E1(__this, /*hidden argument*/NULL);
// set { m_Options.options = value; RefreshShownValue(); }
return;
}
}
// UnityEngine.UI.Dropdown_DropdownEvent UnityEngine.UI.Dropdown::get_onValueChanged()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306 * Dropdown_get_onValueChanged_m4EE82DC9AE8618C52CECA362EBDE6284F41E88FE (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method)
{
{
// public DropdownEvent onValueChanged { get { return m_OnValueChanged; } set { m_OnValueChanged = value; } }
DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306 * L_0 = __this->get_m_OnValueChanged_27();
return L_0;
}
}
// System.Void UnityEngine.UI.Dropdown::set_onValueChanged(UnityEngine.UI.Dropdown_DropdownEvent)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_set_onValueChanged_m5933FE1D9A345810C095C9152A5A3FDE97132C59 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306 * ___value0, const RuntimeMethod* method)
{
{
// public DropdownEvent onValueChanged { get { return m_OnValueChanged; } set { m_OnValueChanged = value; } }
DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306 * L_0 = ___value0;
__this->set_m_OnValueChanged_27(L_0);
// public DropdownEvent onValueChanged { get { return m_OnValueChanged; } set { m_OnValueChanged = value; } }
return;
}
}
// System.Single UnityEngine.UI.Dropdown::get_alphaFadeSpeed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Dropdown_get_alphaFadeSpeed_m6622DC342399634C72CE480D339380EDDFB41CBD (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method)
{
{
// public float alphaFadeSpeed { get { return m_AlphaFadeSpeed; } set { m_AlphaFadeSpeed = value; } }
float L_0 = __this->get_m_AlphaFadeSpeed_28();
return L_0;
}
}
// System.Void UnityEngine.UI.Dropdown::set_alphaFadeSpeed(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_set_alphaFadeSpeed_m8B30DC0B7FE44FBAFD99455204B6EA904A903107 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, float ___value0, const RuntimeMethod* method)
{
{
// public float alphaFadeSpeed { get { return m_AlphaFadeSpeed; } set { m_AlphaFadeSpeed = value; } }
float L_0 = ___value0;
__this->set_m_AlphaFadeSpeed_28(L_0);
// public float alphaFadeSpeed { get { return m_AlphaFadeSpeed; } set { m_AlphaFadeSpeed = value; } }
return;
}
}
// System.Int32 UnityEngine.UI.Dropdown::get_value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dropdown_get_value_mF388FA389F2A050264AA87E61D4F9AFC41F48873 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method)
{
{
// return m_Value;
int32_t L_0 = __this->get_m_Value_25();
return L_0;
}
}
// System.Void UnityEngine.UI.Dropdown::set_value(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_set_value_m155A45649AB62AC1B7AB10213EA556F22E8E91F3 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// Set(value);
int32_t L_0 = ___value0;
Dropdown_Set_mB556E466A427314DC78F38EA38DB4462672B2A49(__this, L_0, (bool)1, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.Dropdown::SetValueWithoutNotify(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_SetValueWithoutNotify_m6D653006F090CE272709B7A777589C338AE81362 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, int32_t ___input0, const RuntimeMethod* method)
{
{
// Set(input, false);
int32_t L_0 = ___input0;
Dropdown_Set_mB556E466A427314DC78F38EA38DB4462672B2A49(__this, L_0, (bool)0, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.Dropdown::Set(System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_Set_mB556E466A427314DC78F38EA38DB4462672B2A49 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, int32_t ___value0, bool ___sendCallback1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_Set_mB556E466A427314DC78F38EA38DB4462672B2A49_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (Application.isPlaying && (value == m_Value || options.Count == 0))
bool L_0 = Application_get_isPlaying_mF43B519662E7433DD90D883E5AE22EC3CFB65CA5(/*hidden argument*/NULL);
if (!L_0)
{
goto IL_001e;
}
}
{
int32_t L_1 = ___value0;
int32_t L_2 = __this->get_m_Value_25();
if ((((int32_t)L_1) == ((int32_t)L_2)))
{
goto IL_001d;
}
}
{
List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * L_3 = Dropdown_get_options_mE95E87D4EA905E9769CE8AC1CD1D9DB86A34F823(__this, /*hidden argument*/NULL);
int32_t L_4 = List_1_get_Count_m2D6E8205805CC637E4E517EE4EDF52B89D70AB51_inline(L_3, /*hidden argument*/List_1_get_Count_m2D6E8205805CC637E4E517EE4EDF52B89D70AB51_RuntimeMethod_var);
if (L_4)
{
goto IL_001e;
}
}
IL_001d:
{
// return;
return;
}
IL_001e:
{
// m_Value = Mathf.Clamp(value, 0, options.Count - 1);
int32_t L_5 = ___value0;
List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * L_6 = Dropdown_get_options_mE95E87D4EA905E9769CE8AC1CD1D9DB86A34F823(__this, /*hidden argument*/NULL);
int32_t L_7 = List_1_get_Count_m2D6E8205805CC637E4E517EE4EDF52B89D70AB51_inline(L_6, /*hidden argument*/List_1_get_Count_m2D6E8205805CC637E4E517EE4EDF52B89D70AB51_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
int32_t L_8 = Mathf_Clamp_mE1EA15D719BF2F632741D42DF96F0BC797A20389(L_5, 0, ((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)1)), /*hidden argument*/NULL);
__this->set_m_Value_25(L_8);
// RefreshShownValue();
Dropdown_RefreshShownValue_m310DF4ABCFE31C74153AAE3874B40DDF3D6959E1(__this, /*hidden argument*/NULL);
// if (sendCallback)
bool L_9 = ___sendCallback1;
if (!L_9)
{
goto IL_005d;
}
}
{
// UISystemProfilerApi.AddMarker("Dropdown.value", this);
UISystemProfilerApi_AddMarker_m9193DB5B08C1B7DD35835D6F0E2DF9DD20483FFA(_stringLiteral2552DAA6D8E7210E423D5962E63BE9B909D92A30, __this, /*hidden argument*/NULL);
// m_OnValueChanged.Invoke(m_Value);
DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306 * L_10 = __this->get_m_OnValueChanged_27();
int32_t L_11 = __this->get_m_Value_25();
UnityEvent_1_Invoke_mAC9BEEF287D58E79A447A57E28D3679F9B199D70(L_10, L_11, /*hidden argument*/UnityEvent_1_Invoke_mAC9BEEF287D58E79A447A57E28D3679F9B199D70_RuntimeMethod_var);
}
IL_005d:
{
// }
return;
}
}
// System.Void UnityEngine.UI.Dropdown::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown__ctor_m441023FADC43E0D5215546260F0230D92439AA9C (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown__ctor_m441023FADC43E0D5215546260F0230D92439AA9C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// private OptionDataList m_Options = new OptionDataList();
OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D * L_0 = (OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D *)il2cpp_codegen_object_new(OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D_il2cpp_TypeInfo_var);
OptionDataList__ctor_m658891495892A98D411AC971EE3EF96C01560F73(L_0, /*hidden argument*/NULL);
__this->set_m_Options_26(L_0);
// private DropdownEvent m_OnValueChanged = new DropdownEvent();
DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306 * L_1 = (DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306 *)il2cpp_codegen_object_new(DropdownEvent_t429FBB093ED3586F5D49859EBD338125EAB76306_il2cpp_TypeInfo_var);
DropdownEvent__ctor_m9E61AABA58765E640C5044E5C82574ED362D2875(L_1, /*hidden argument*/NULL);
__this->set_m_OnValueChanged_27(L_1);
// private float m_AlphaFadeSpeed = 0.15f;
__this->set_m_AlphaFadeSpeed_28((0.15f));
// private List<DropdownItem> m_Items = new List<DropdownItem>();
List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * L_2 = (List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 *)il2cpp_codegen_object_new(List_1_t836CD930F5F0862929A362435417DA9BCD4186F8_il2cpp_TypeInfo_var);
List_1__ctor_m845B01994938B8BFB0C5DD50966CFAF8986EB7E4(L_2, /*hidden argument*/List_1__ctor_m845B01994938B8BFB0C5DD50966CFAF8986EB7E4_RuntimeMethod_var);
__this->set_m_Items_31(L_2);
// protected Dropdown()
IL2CPP_RUNTIME_CLASS_INIT(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A_il2cpp_TypeInfo_var);
Selectable__ctor_mDADF3659E1B861470987564058F1D0B89FF3660A(__this, /*hidden argument*/NULL);
// {}
return;
}
}
// System.Void UnityEngine.UI.Dropdown::Awake()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_Awake_mDEFE3A3991573E2C6942EF866CC4D2350481322E (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_Awake_mDEFE3A3991573E2C6942EF866CC4D2350481322E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// m_AlphaTweenRunner = new TweenRunner<FloatTween>();
TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF * L_0 = (TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF *)il2cpp_codegen_object_new(TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF_il2cpp_TypeInfo_var);
TweenRunner_1__ctor_mBCECADAAC67B34851BF7AE7F23AAA7BEDD17CDAE(L_0, /*hidden argument*/TweenRunner_1__ctor_mBCECADAAC67B34851BF7AE7F23AAA7BEDD17CDAE_RuntimeMethod_var);
__this->set_m_AlphaTweenRunner_32(L_0);
// m_AlphaTweenRunner.Init(this);
TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF * L_1 = __this->get_m_AlphaTweenRunner_32();
TweenRunner_1_Init_m36554C1037EC37B2D67A1BDE9B4D2407FE2C7657_inline(L_1, __this, /*hidden argument*/TweenRunner_1_Init_m36554C1037EC37B2D67A1BDE9B4D2407FE2C7657_RuntimeMethod_var);
// if (m_CaptionImage)
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_2 = __this->get_m_CaptionImage_22();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_3 = Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534(L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0040;
}
}
{
// m_CaptionImage.enabled = (m_CaptionImage.sprite != null);
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_4 = __this->get_m_CaptionImage_22();
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_5 = __this->get_m_CaptionImage_22();
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_6 = Image_get_sprite_m642D753672A8CBCEB67950914B44EF34C62DD137_inline(L_5, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_7 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_6, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
Behaviour_set_enabled_m9755D3B17D7022D23D1E4C618BD9A6B66A5ADC6B(L_4, L_7, /*hidden argument*/NULL);
}
IL_0040:
{
// if (m_Template)
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_8 = __this->get_m_Template_20();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_9 = Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534(L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_005e;
}
}
{
// m_Template.gameObject.SetActive(false);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_10 = __this->get_m_Template_20();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_11 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(L_10, /*hidden argument*/NULL);
GameObject_SetActive_m25A39F6D9FB68C51F13313F9804E85ACC937BC04(L_11, (bool)0, /*hidden argument*/NULL);
}
IL_005e:
{
// }
return;
}
}
// System.Void UnityEngine.UI.Dropdown::Start()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_Start_m32F9113294B5F5EB5EFE41F9D2B6C49A516182E5 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_Start_m32F9113294B5F5EB5EFE41F9D2B6C49A516182E5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// m_AlphaTweenRunner = new TweenRunner<FloatTween>();
TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF * L_0 = (TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF *)il2cpp_codegen_object_new(TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF_il2cpp_TypeInfo_var);
TweenRunner_1__ctor_mBCECADAAC67B34851BF7AE7F23AAA7BEDD17CDAE(L_0, /*hidden argument*/TweenRunner_1__ctor_mBCECADAAC67B34851BF7AE7F23AAA7BEDD17CDAE_RuntimeMethod_var);
__this->set_m_AlphaTweenRunner_32(L_0);
// m_AlphaTweenRunner.Init(this);
TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF * L_1 = __this->get_m_AlphaTweenRunner_32();
TweenRunner_1_Init_m36554C1037EC37B2D67A1BDE9B4D2407FE2C7657_inline(L_1, __this, /*hidden argument*/TweenRunner_1_Init_m36554C1037EC37B2D67A1BDE9B4D2407FE2C7657_RuntimeMethod_var);
// base.Start();
UIBehaviour_Start_m9717CD32EA9B3C678EB0D73CCF59C801C5E5207C(__this, /*hidden argument*/NULL);
// RefreshShownValue();
Dropdown_RefreshShownValue_m310DF4ABCFE31C74153AAE3874B40DDF3D6959E1(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.Dropdown::OnDisable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_OnDisable_m7CBB6617F6557D89C1E92EC5A7433426AADCF53C (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_OnDisable_m7CBB6617F6557D89C1E92EC5A7433426AADCF53C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// ImmediateDestroyDropdownList();
Dropdown_ImmediateDestroyDropdownList_mB3CE7E1B2B95662433A48B5BA20A51755AAE677E(__this, /*hidden argument*/NULL);
// if (m_Blocker != null)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = __this->get_m_Blocker_30();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0020;
}
}
{
// DestroyBlocker(m_Blocker);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_2 = __this->get_m_Blocker_30();
VirtActionInvoker1< GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * >::Invoke(46 /* System.Void UnityEngine.UI.Dropdown::DestroyBlocker(UnityEngine.GameObject) */, __this, L_2);
}
IL_0020:
{
// m_Blocker = null;
__this->set_m_Blocker_30((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL);
// base.OnDisable();
Selectable_OnDisable_m258B5CEC8D2EA2F2FF1225CB76970EF089BF6349(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.Dropdown::RefreshShownValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_RefreshShownValue_m310DF4ABCFE31C74153AAE3874B40DDF3D6959E1 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_RefreshShownValue_m310DF4ABCFE31C74153AAE3874B40DDF3D6959E1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * V_0 = NULL;
{
// OptionData data = s_NoOptionData;
IL2CPP_RUNTIME_CLASS_INIT(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F_il2cpp_TypeInfo_var);
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * L_0 = ((Dropdown_tF6331401084B1213CAB10587A6EC81461501930F_StaticFields*)il2cpp_codegen_static_fields_for(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F_il2cpp_TypeInfo_var))->get_s_NoOptionData_34();
V_0 = L_0;
// if (options.Count > 0)
List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * L_1 = Dropdown_get_options_mE95E87D4EA905E9769CE8AC1CD1D9DB86A34F823(__this, /*hidden argument*/NULL);
int32_t L_2 = List_1_get_Count_m2D6E8205805CC637E4E517EE4EDF52B89D70AB51_inline(L_1, /*hidden argument*/List_1_get_Count_m2D6E8205805CC637E4E517EE4EDF52B89D70AB51_RuntimeMethod_var);
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_0039;
}
}
{
// data = options[Mathf.Clamp(m_Value, 0, options.Count - 1)];
List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * L_3 = Dropdown_get_options_mE95E87D4EA905E9769CE8AC1CD1D9DB86A34F823(__this, /*hidden argument*/NULL);
int32_t L_4 = __this->get_m_Value_25();
List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * L_5 = Dropdown_get_options_mE95E87D4EA905E9769CE8AC1CD1D9DB86A34F823(__this, /*hidden argument*/NULL);
int32_t L_6 = List_1_get_Count_m2D6E8205805CC637E4E517EE4EDF52B89D70AB51_inline(L_5, /*hidden argument*/List_1_get_Count_m2D6E8205805CC637E4E517EE4EDF52B89D70AB51_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
int32_t L_7 = Mathf_Clamp_mE1EA15D719BF2F632741D42DF96F0BC797A20389(L_4, 0, ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), /*hidden argument*/NULL);
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * L_8 = List_1_get_Item_m82892B79752B36DB7663E25E080C6FFAA0C125BD_inline(L_3, L_7, /*hidden argument*/List_1_get_Item_m82892B79752B36DB7663E25E080C6FFAA0C125BD_RuntimeMethod_var);
V_0 = L_8;
}
IL_0039:
{
// if (m_CaptionText)
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_9 = __this->get_m_CaptionText_21();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_10 = Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534(L_9, /*hidden argument*/NULL);
if (!L_10)
{
goto IL_0074;
}
}
{
// if (data != null && data.text != null)
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * L_11 = V_0;
if (!L_11)
{
goto IL_0064;
}
}
{
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * L_12 = V_0;
String_t* L_13 = OptionData_get_text_m3AA3E93AC9264EB140F873BEFF0A6FCB48FB1BFF_inline(L_12, /*hidden argument*/NULL);
if (!L_13)
{
goto IL_0064;
}
}
{
// m_CaptionText.text = data.text;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_14 = __this->get_m_CaptionText_21();
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * L_15 = V_0;
String_t* L_16 = OptionData_get_text_m3AA3E93AC9264EB140F873BEFF0A6FCB48FB1BFF_inline(L_15, /*hidden argument*/NULL);
VirtActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_14, L_16);
goto IL_0074;
}
IL_0064:
{
// m_CaptionText.text = "";
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_17 = __this->get_m_CaptionText_21();
VirtActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_17, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
}
IL_0074:
{
// if (m_CaptionImage)
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_18 = __this->get_m_CaptionImage_22();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_19 = Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534(L_18, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_00bf;
}
}
{
// if (data != null)
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * L_20 = V_0;
if (!L_20)
{
goto IL_0097;
}
}
{
// m_CaptionImage.sprite = data.image;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_21 = __this->get_m_CaptionImage_22();
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * L_22 = V_0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_23 = OptionData_get_image_m0BF991D02528EE3C67FE841C3AA87EC1AE7D8E31_inline(L_22, /*hidden argument*/NULL);
Image_set_sprite_m77F8D681D4EE6D58F4F235AFF704C3EB165A9646(L_21, L_23, /*hidden argument*/NULL);
goto IL_00a3;
}
IL_0097:
{
// m_CaptionImage.sprite = null;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_24 = __this->get_m_CaptionImage_22();
Image_set_sprite_m77F8D681D4EE6D58F4F235AFF704C3EB165A9646(L_24, (Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 *)NULL, /*hidden argument*/NULL);
}
IL_00a3:
{
// m_CaptionImage.enabled = (m_CaptionImage.sprite != null);
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_25 = __this->get_m_CaptionImage_22();
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_26 = __this->get_m_CaptionImage_22();
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_27 = Image_get_sprite_m642D753672A8CBCEB67950914B44EF34C62DD137_inline(L_26, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_28 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_27, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
Behaviour_set_enabled_m9755D3B17D7022D23D1E4C618BD9A6B66A5ADC6B(L_25, L_28, /*hidden argument*/NULL);
}
IL_00bf:
{
// }
return;
}
}
// System.Void UnityEngine.UI.Dropdown::AddOptions(System.Collections.Generic.List`1<UnityEngine.UI.Dropdown_OptionData>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_AddOptions_m00D0E094A726D9E20E42CDE57430879266456ABB (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * ___options0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_AddOptions_m00D0E094A726D9E20E42CDE57430879266456ABB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// this.options.AddRange(options);
List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * L_0 = Dropdown_get_options_mE95E87D4EA905E9769CE8AC1CD1D9DB86A34F823(__this, /*hidden argument*/NULL);
List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * L_1 = ___options0;
List_1_AddRange_m7D0134D50AC3C08AD30A14C602366AF88E5B9164(L_0, L_1, /*hidden argument*/List_1_AddRange_m7D0134D50AC3C08AD30A14C602366AF88E5B9164_RuntimeMethod_var);
// RefreshShownValue();
Dropdown_RefreshShownValue_m310DF4ABCFE31C74153AAE3874B40DDF3D6959E1(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.Dropdown::AddOptions(System.Collections.Generic.List`1<System.String>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_AddOptions_m1F55A888671D01E7933300CEFF571556EE717AC8 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___options0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_AddOptions_m1F55A888671D01E7933300CEFF571556EE717AC8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
// for (int i = 0; i < options.Count; i++)
V_0 = 0;
goto IL_001f;
}
IL_0004:
{
// this.options.Add(new OptionData(options[i]));
List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * L_0 = Dropdown_get_options_mE95E87D4EA905E9769CE8AC1CD1D9DB86A34F823(__this, /*hidden argument*/NULL);
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_1 = ___options0;
int32_t L_2 = V_0;
String_t* L_3 = List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_inline(L_1, L_2, /*hidden argument*/List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_RuntimeMethod_var);
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * L_4 = (OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 *)il2cpp_codegen_object_new(OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831_il2cpp_TypeInfo_var);
OptionData__ctor_m8AA4FDEB8771F714C90DF651743B77E0C75DEC00(L_4, L_3, /*hidden argument*/NULL);
List_1_Add_mE0B46236A82E92B7F76C0F3A94ABBD0F4625A77C(L_0, L_4, /*hidden argument*/List_1_Add_mE0B46236A82E92B7F76C0F3A94ABBD0F4625A77C_RuntimeMethod_var);
// for (int i = 0; i < options.Count; i++)
int32_t L_5 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
}
IL_001f:
{
// for (int i = 0; i < options.Count; i++)
int32_t L_6 = V_0;
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_7 = ___options0;
int32_t L_8 = List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_inline(L_7, /*hidden argument*/List_1_get_Count_m4151A68BD4CB1D737213E7595F574987F8C812B4_RuntimeMethod_var);
if ((((int32_t)L_6) < ((int32_t)L_8)))
{
goto IL_0004;
}
}
{
// RefreshShownValue();
Dropdown_RefreshShownValue_m310DF4ABCFE31C74153AAE3874B40DDF3D6959E1(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.Dropdown::AddOptions(System.Collections.Generic.List`1<UnityEngine.Sprite>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_AddOptions_m07425DFFE48698B71FFAA7A88EA4EB9191A0A20D (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, List_1_tF23BA9E080B0770882049C6DC281D5C589990D67 * ___options0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_AddOptions_m07425DFFE48698B71FFAA7A88EA4EB9191A0A20D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
// for (int i = 0; i < options.Count; i++)
V_0 = 0;
goto IL_001f;
}
IL_0004:
{
// this.options.Add(new OptionData(options[i]));
List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * L_0 = Dropdown_get_options_mE95E87D4EA905E9769CE8AC1CD1D9DB86A34F823(__this, /*hidden argument*/NULL);
List_1_tF23BA9E080B0770882049C6DC281D5C589990D67 * L_1 = ___options0;
int32_t L_2 = V_0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_3 = List_1_get_Item_m03F4D33FFA4A999ED58836C70404EDFFA0AF3C21_inline(L_1, L_2, /*hidden argument*/List_1_get_Item_m03F4D33FFA4A999ED58836C70404EDFFA0AF3C21_RuntimeMethod_var);
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * L_4 = (OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 *)il2cpp_codegen_object_new(OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831_il2cpp_TypeInfo_var);
OptionData__ctor_m024A52D2CDF4A551D94A861B1D5255D528BC6FF2(L_4, L_3, /*hidden argument*/NULL);
List_1_Add_mE0B46236A82E92B7F76C0F3A94ABBD0F4625A77C(L_0, L_4, /*hidden argument*/List_1_Add_mE0B46236A82E92B7F76C0F3A94ABBD0F4625A77C_RuntimeMethod_var);
// for (int i = 0; i < options.Count; i++)
int32_t L_5 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
}
IL_001f:
{
// for (int i = 0; i < options.Count; i++)
int32_t L_6 = V_0;
List_1_tF23BA9E080B0770882049C6DC281D5C589990D67 * L_7 = ___options0;
int32_t L_8 = List_1_get_Count_m9345B2AB981B955CA4FB16F0D1EE6CCF01E5115E_inline(L_7, /*hidden argument*/List_1_get_Count_m9345B2AB981B955CA4FB16F0D1EE6CCF01E5115E_RuntimeMethod_var);
if ((((int32_t)L_6) < ((int32_t)L_8)))
{
goto IL_0004;
}
}
{
// RefreshShownValue();
Dropdown_RefreshShownValue_m310DF4ABCFE31C74153AAE3874B40DDF3D6959E1(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.Dropdown::ClearOptions()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_ClearOptions_mC20522EBB5C22EFC938740AB7A2524EF8CCCDD0D (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_ClearOptions_mC20522EBB5C22EFC938740AB7A2524EF8CCCDD0D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// options.Clear();
List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * L_0 = Dropdown_get_options_mE95E87D4EA905E9769CE8AC1CD1D9DB86A34F823(__this, /*hidden argument*/NULL);
List_1_Clear_m0F6A2806D11105299DC8E4D83E06D49BAABB8ABE(L_0, /*hidden argument*/List_1_Clear_m0F6A2806D11105299DC8E4D83E06D49BAABB8ABE_RuntimeMethod_var);
// m_Value = 0;
__this->set_m_Value_25(0);
// RefreshShownValue();
Dropdown_RefreshShownValue_m310DF4ABCFE31C74153AAE3874B40DDF3D6959E1(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.Dropdown::SetupTemplate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_SetupTemplate_m3F4C22ABEF75FEC05E3D42D277EF2299A7934E0C (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_SetupTemplate_m3F4C22ABEF75FEC05E3D42D277EF2299A7934E0C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_0 = NULL;
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * V_1 = NULL;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * V_2 = NULL;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * V_3 = NULL;
ComponentU5BU5D_t7BE50AFB6301C06D990819B3D8F35CA326CDD155* V_4 = NULL;
ComponentU5BU5D_t7BE50AFB6301C06D990819B3D8F35CA326CDD155* V_5 = NULL;
int32_t V_6 = 0;
Type_t * V_7 = NULL;
{
// validTemplate = false;
__this->set_validTemplate_33((bool)0);
// if (!m_Template)
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_0 = __this->get_m_Template_20();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534(L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0020;
}
}
{
// Debug.LogError("The dropdown template is not assigned. The template needs to be assigned and must have a child GameObject with a Toggle component serving as the item.", this);
IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var);
Debug_LogError_m97139CB2EE76D5CD8308C1AD0499A5F163FC7F51(_stringLiteralA612F48B98C756C1FEAA6FC55AECCAF6E4329460, __this, /*hidden argument*/NULL);
// return;
return;
}
IL_0020:
{
// GameObject templateGo = m_Template.gameObject;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_2 = __this->get_m_Template_20();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_3 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(L_2, /*hidden argument*/NULL);
V_0 = L_3;
// templateGo.SetActive(true);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_4 = V_0;
GameObject_SetActive_m25A39F6D9FB68C51F13313F9804E85ACC937BC04(L_4, (bool)1, /*hidden argument*/NULL);
// Toggle itemToggle = m_Template.GetComponentInChildren<Toggle>();
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_5 = __this->get_m_Template_20();
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_6 = Component_GetComponentInChildren_TisToggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106_mF1F1602C88EB98A9831EEC9AFCFD142E3EE781AC(L_5, /*hidden argument*/Component_GetComponentInChildren_TisToggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106_mF1F1602C88EB98A9831EEC9AFCFD142E3EE781AC_RuntimeMethod_var);
V_1 = L_6;
// validTemplate = true;
__this->set_validTemplate_33((bool)1);
// if (!itemToggle || itemToggle.transform == template)
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_7 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_8 = Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534(L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_0061;
}
}
{
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_9 = V_1;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_10 = Component_get_transform_m00F05BD782F920C301A7EBA480F3B7A904C07EC9(L_9, /*hidden argument*/NULL);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_11 = Dropdown_get_template_m9C83BB0CFD2BA72F08ACC8B0FA9A274FAD0FC9C4_inline(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_12 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_10, L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_007d;
}
}
IL_0061:
{
// validTemplate = false;
__this->set_validTemplate_33((bool)0);
// Debug.LogError("The dropdown template is not valid. The template must have a child GameObject with a Toggle component serving as the item.", template);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_13 = Dropdown_get_template_m9C83BB0CFD2BA72F08ACC8B0FA9A274FAD0FC9C4_inline(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var);
Debug_LogError_m97139CB2EE76D5CD8308C1AD0499A5F163FC7F51(_stringLiteralFEACA56F70C915BCC63DA18ADA9707F8BC2618CE, L_13, /*hidden argument*/NULL);
// }
goto IL_0124;
}
IL_007d:
{
// else if (!(itemToggle.transform.parent is RectTransform))
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_14 = V_1;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_15 = Component_get_transform_m00F05BD782F920C301A7EBA480F3B7A904C07EC9(L_14, /*hidden argument*/NULL);
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_16 = Transform_get_parent_m8FA24E38A1FA29D90CBF3CDC9F9F017C65BB3403(L_15, /*hidden argument*/NULL);
if (((RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 *)IsInstSealed((RuntimeObject*)L_16, RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_il2cpp_TypeInfo_var)))
{
goto IL_00a8;
}
}
{
// validTemplate = false;
__this->set_validTemplate_33((bool)0);
// Debug.LogError("The dropdown template is not valid. The child GameObject with a Toggle component (the item) must have a RectTransform on its parent.", template);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_17 = Dropdown_get_template_m9C83BB0CFD2BA72F08ACC8B0FA9A274FAD0FC9C4_inline(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var);
Debug_LogError_m97139CB2EE76D5CD8308C1AD0499A5F163FC7F51(_stringLiteral2AEE32C4064725FCC569475A6985841039579F2F, L_17, /*hidden argument*/NULL);
// }
goto IL_0124;
}
IL_00a8:
{
// else if (itemText != null && !itemText.transform.IsChildOf(itemToggle.transform))
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_18 = Dropdown_get_itemText_m1AEEFE1ACF751CD3483659F5E5B703239C28C7D5_inline(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_19 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_18, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_00e7;
}
}
{
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_20 = Dropdown_get_itemText_m1AEEFE1ACF751CD3483659F5E5B703239C28C7D5_inline(__this, /*hidden argument*/NULL);
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_21 = Component_get_transform_m00F05BD782F920C301A7EBA480F3B7A904C07EC9(L_20, /*hidden argument*/NULL);
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_22 = V_1;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_23 = Component_get_transform_m00F05BD782F920C301A7EBA480F3B7A904C07EC9(L_22, /*hidden argument*/NULL);
bool L_24 = Transform_IsChildOf_mCB98BA14F7FB82B6AF6AE961E84C47AE1D99AA80(L_21, L_23, /*hidden argument*/NULL);
if (L_24)
{
goto IL_00e7;
}
}
{
// validTemplate = false;
__this->set_validTemplate_33((bool)0);
// Debug.LogError("The dropdown template is not valid. The Item Text must be on the item GameObject or children of it.", template);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_25 = Dropdown_get_template_m9C83BB0CFD2BA72F08ACC8B0FA9A274FAD0FC9C4_inline(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var);
Debug_LogError_m97139CB2EE76D5CD8308C1AD0499A5F163FC7F51(_stringLiteralFF690B28AEC4D9B83774DB8CF0DF55185F949A97, L_25, /*hidden argument*/NULL);
// }
goto IL_0124;
}
IL_00e7:
{
// else if (itemImage != null && !itemImage.transform.IsChildOf(itemToggle.transform))
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_26 = Dropdown_get_itemImage_m3B115ACA023FC279CAE1757FD4AB0DF91242BA50_inline(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_27 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_26, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_27)
{
goto IL_0124;
}
}
{
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_28 = Dropdown_get_itemImage_m3B115ACA023FC279CAE1757FD4AB0DF91242BA50_inline(__this, /*hidden argument*/NULL);
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_29 = Component_get_transform_m00F05BD782F920C301A7EBA480F3B7A904C07EC9(L_28, /*hidden argument*/NULL);
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_30 = V_1;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_31 = Component_get_transform_m00F05BD782F920C301A7EBA480F3B7A904C07EC9(L_30, /*hidden argument*/NULL);
bool L_32 = Transform_IsChildOf_mCB98BA14F7FB82B6AF6AE961E84C47AE1D99AA80(L_29, L_31, /*hidden argument*/NULL);
if (L_32)
{
goto IL_0124;
}
}
{
// validTemplate = false;
__this->set_validTemplate_33((bool)0);
// Debug.LogError("The dropdown template is not valid. The Item Image must be on the item GameObject or children of it.", template);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_33 = Dropdown_get_template_m9C83BB0CFD2BA72F08ACC8B0FA9A274FAD0FC9C4_inline(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var);
Debug_LogError_m97139CB2EE76D5CD8308C1AD0499A5F163FC7F51(_stringLiteralD5FBD98C76A709F16314AF71D2B65C99359F9B0D, L_33, /*hidden argument*/NULL);
}
IL_0124:
{
// if (!validTemplate)
bool L_34 = __this->get_validTemplate_33();
if (L_34)
{
goto IL_0134;
}
}
{
// templateGo.SetActive(false);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_35 = V_0;
GameObject_SetActive_m25A39F6D9FB68C51F13313F9804E85ACC937BC04(L_35, (bool)0, /*hidden argument*/NULL);
// return;
return;
}
IL_0134:
{
// DropdownItem item = itemToggle.gameObject.AddComponent<DropdownItem>();
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_36 = V_1;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_37 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(L_36, /*hidden argument*/NULL);
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_38 = GameObject_AddComponent_TisDropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46_m3FC7D1DDC3117BA73A6208371C6A4896FF21FC83(L_37, /*hidden argument*/GameObject_AddComponent_TisDropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46_m3FC7D1DDC3117BA73A6208371C6A4896FF21FC83_RuntimeMethod_var);
// item.text = m_ItemText;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_39 = L_38;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_40 = __this->get_m_ItemText_23();
DropdownItem_set_text_m2F87962E683F7DCF4CCD6CEA4E4E4562E89F939E_inline(L_39, L_40, /*hidden argument*/NULL);
// item.image = m_ItemImage;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_41 = L_39;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_42 = __this->get_m_ItemImage_24();
DropdownItem_set_image_mEACD24E324362E50180808DEF29E160E52C81BDC_inline(L_41, L_42, /*hidden argument*/NULL);
// item.toggle = itemToggle;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_43 = L_41;
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_44 = V_1;
DropdownItem_set_toggle_m4D3247AE384827C5F3C49FFDADECED4A91B3B5CE_inline(L_43, L_44, /*hidden argument*/NULL);
// item.rectTransform = (RectTransform)itemToggle.transform;
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_45 = V_1;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_46 = Component_get_transform_m00F05BD782F920C301A7EBA480F3B7A904C07EC9(L_45, /*hidden argument*/NULL);
DropdownItem_set_rectTransform_mEDEAE741CC3B0473F332D9B55B413EA290889240_inline(L_43, ((RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 *)CastclassSealed((RuntimeObject*)L_46, RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
// Canvas parentCanvas = null;
V_2 = (Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 *)NULL;
// Transform parentTransform = m_Template.parent;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_47 = __this->get_m_Template_20();
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_48 = Transform_get_parent_m8FA24E38A1FA29D90CBF3CDC9F9F017C65BB3403(L_47, /*hidden argument*/NULL);
V_3 = L_48;
goto IL_0195;
}
IL_017e:
{
// parentCanvas = parentTransform.GetComponent<Canvas>();
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_49 = V_3;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_50 = Component_GetComponent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_mAD461B8F1BB5C616749FAA2B63155D710C3CD21C(L_49, /*hidden argument*/Component_GetComponent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_mAD461B8F1BB5C616749FAA2B63155D710C3CD21C_RuntimeMethod_var);
V_2 = L_50;
// if (parentCanvas != null)
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_51 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_52 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_51, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (L_52)
{
goto IL_019e;
}
}
{
// parentTransform = parentTransform.parent;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_53 = V_3;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_54 = Transform_get_parent_m8FA24E38A1FA29D90CBF3CDC9F9F017C65BB3403(L_53, /*hidden argument*/NULL);
V_3 = L_54;
}
IL_0195:
{
// while (parentTransform != null)
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_55 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_56 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_55, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (L_56)
{
goto IL_017e;
}
}
IL_019e:
{
// Canvas popupCanvas = GetOrAddComponent<Canvas>(templateGo);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_57 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F_il2cpp_TypeInfo_var);
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_58 = Dropdown_GetOrAddComponent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_m64A328B1FAA7DE95B776B343E70B913984E4BE3C(L_57, /*hidden argument*/Dropdown_GetOrAddComponent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_m64A328B1FAA7DE95B776B343E70B913984E4BE3C_RuntimeMethod_var);
// popupCanvas.overrideSorting = true;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_59 = L_58;
Canvas_set_overrideSorting_m446842097ED576AB8706B9980E85AECC24C13015(L_59, (bool)1, /*hidden argument*/NULL);
// popupCanvas.sortingOrder = 30000;
Canvas_set_sortingOrder_m4387540EBDF2716DFAE26F27074DBF15F32382E7(L_59, ((int32_t)30000), /*hidden argument*/NULL);
// if (parentCanvas != null)
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_60 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_61 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_60, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_61)
{
goto IL_0204;
}
}
{
// Component[] components = parentCanvas.GetComponents<BaseRaycaster>();
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_62 = V_2;
BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6* L_63 = Component_GetComponents_TisBaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966_mC5D7B6F2AF3B637F8CF0F1DEF4E96FEADB5C6814(L_62, /*hidden argument*/Component_GetComponents_TisBaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966_mC5D7B6F2AF3B637F8CF0F1DEF4E96FEADB5C6814_RuntimeMethod_var);
V_5 = (ComponentU5BU5D_t7BE50AFB6301C06D990819B3D8F35CA326CDD155*)L_63;
ComponentU5BU5D_t7BE50AFB6301C06D990819B3D8F35CA326CDD155* L_64 = V_5;
V_4 = L_64;
// for (int i = 0; i < components.Length; i++)
V_6 = 0;
goto IL_01fa;
}
IL_01cf:
{
// Type raycasterType = components[i].GetType();
ComponentU5BU5D_t7BE50AFB6301C06D990819B3D8F35CA326CDD155* L_65 = V_4;
int32_t L_66 = V_6;
int32_t L_67 = L_66;
Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * L_68 = (L_65)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_67));
Type_t * L_69 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_68, /*hidden argument*/NULL);
V_7 = L_69;
// if (templateGo.GetComponent(raycasterType) == null)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_70 = V_0;
Type_t * L_71 = V_7;
Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * L_72 = GameObject_GetComponent_mECB756C7EB39F6BB79F8C065AB0013354763B151(L_70, L_71, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_73 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_72, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_73)
{
goto IL_01f4;
}
}
{
// templateGo.AddComponent(raycasterType);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_74 = V_0;
Type_t * L_75 = V_7;
GameObject_AddComponent_m489C9D5426F2050795FA696CD478BB49AAE4BD70(L_74, L_75, /*hidden argument*/NULL);
}
IL_01f4:
{
// for (int i = 0; i < components.Length; i++)
int32_t L_76 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_76, (int32_t)1));
}
IL_01fa:
{
// for (int i = 0; i < components.Length; i++)
int32_t L_77 = V_6;
ComponentU5BU5D_t7BE50AFB6301C06D990819B3D8F35CA326CDD155* L_78 = V_4;
if ((((int32_t)L_77) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_78)->max_length)))))))
{
goto IL_01cf;
}
}
{
// }
goto IL_020b;
}
IL_0204:
{
// GetOrAddComponent<GraphicRaycaster>(templateGo);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_79 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F_il2cpp_TypeInfo_var);
Dropdown_GetOrAddComponent_TisGraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83_m9B1D258B962FAF4A5D69605ED9910224F26E7294(L_79, /*hidden argument*/Dropdown_GetOrAddComponent_TisGraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83_m9B1D258B962FAF4A5D69605ED9910224F26E7294_RuntimeMethod_var);
}
IL_020b:
{
// GetOrAddComponent<CanvasGroup>(templateGo);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_80 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F_il2cpp_TypeInfo_var);
Dropdown_GetOrAddComponent_TisCanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90_mC688692DBB92788BACDED774AD6D005B6EC5F838(L_80, /*hidden argument*/Dropdown_GetOrAddComponent_TisCanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90_mC688692DBB92788BACDED774AD6D005B6EC5F838_RuntimeMethod_var);
// templateGo.SetActive(false);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_81 = V_0;
GameObject_SetActive_m25A39F6D9FB68C51F13313F9804E85ACC937BC04(L_81, (bool)0, /*hidden argument*/NULL);
// validTemplate = true;
__this->set_validTemplate_33((bool)1);
// }
return;
}
}
// System.Void UnityEngine.UI.Dropdown::OnPointerClick(UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_OnPointerClick_m2D739C0E96E848C4384C7BFEF289259717593B3A (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___eventData0, const RuntimeMethod* method)
{
{
// Show();
Dropdown_Show_m996910C935BA7D778E35EBAA55F1AC7299A0B3D9(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.Dropdown::OnSubmit(UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_OnSubmit_m51215780EC68329BEE4F305748A1EFBB501EDE6B (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData0, const RuntimeMethod* method)
{
{
// Show();
Dropdown_Show_m996910C935BA7D778E35EBAA55F1AC7299A0B3D9(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.Dropdown::OnCancel(UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_OnCancel_mCB303E40BF5CA8862F28F6E377C74AD618C6A54B (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData0, const RuntimeMethod* method)
{
{
// Hide();
Dropdown_Hide_m396A627BAA21433514959C71BD8B13A31B7B99A8(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.Dropdown::Show()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_Show_m996910C935BA7D778E35EBAA55F1AC7299A0B3D9 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_Show_m996910C935BA7D778E35EBAA55F1AC7299A0B3D9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14 * V_0 = NULL;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * V_1 = NULL;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * V_2 = NULL;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * V_3 = NULL;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * V_4 = NULL;
Rect_t35B976DE901B5423C11705E156938EA27AB402CE V_5;
memset((&V_5), 0, sizeof(V_5));
Rect_t35B976DE901B5423C11705E156938EA27AB402CE V_6;
memset((&V_6), 0, sizeof(V_6));
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_7;
memset((&V_7), 0, sizeof(V_7));
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_8;
memset((&V_8), 0, sizeof(V_8));
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_9;
memset((&V_9), 0, sizeof(V_9));
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * V_10 = NULL;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_11;
memset((&V_11), 0, sizeof(V_11));
float V_12 = 0.0f;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* V_13 = NULL;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * V_14 = NULL;
Rect_t35B976DE901B5423C11705E156938EA27AB402CE V_15;
memset((&V_15), 0, sizeof(V_15));
int32_t V_16 = 0;
int32_t V_17 = 0;
U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A * V_18 = NULL;
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * V_19 = NULL;
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 V_20;
memset((&V_20), 0, sizeof(V_20));
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 V_21;
memset((&V_21), 0, sizeof(V_21));
Rect_t35B976DE901B5423C11705E156938EA27AB402CE V_22;
memset((&V_22), 0, sizeof(V_22));
int32_t V_23 = 0;
bool V_24 = false;
int32_t V_25 = 0;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 V_26;
memset((&V_26), 0, sizeof(V_26));
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_27;
memset((&V_27), 0, sizeof(V_27));
int32_t V_28 = 0;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * V_29 = NULL;
{
// if (!IsActive() || !IsInteractable() || m_Dropdown != null)
bool L_0 = VirtFuncInvoker0< bool >::Invoke(9 /* System.Boolean UnityEngine.EventSystems.UIBehaviour::IsActive() */, __this);
if (!L_0)
{
goto IL_001e;
}
}
{
bool L_1 = VirtFuncInvoker0< bool >::Invoke(24 /* System.Boolean UnityEngine.UI.Selectable::IsInteractable() */, __this);
if (!L_1)
{
goto IL_001e;
}
}
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_2 = __this->get_m_Dropdown_29();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_3 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_2, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_001f;
}
}
IL_001e:
{
// return;
return;
}
IL_001f:
{
// var list = ListPool<Canvas>.Get();
IL2CPP_RUNTIME_CLASS_INIT(ListPool_1_tC8893BDDEA491654D06C2BC46017B9267D683021_il2cpp_TypeInfo_var);
List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14 * L_4 = ListPool_1_Get_m569D7CB2B16135A09E11EA59285A1AF81E3FA294(/*hidden argument*/ListPool_1_Get_m569D7CB2B16135A09E11EA59285A1AF81E3FA294_RuntimeMethod_var);
V_0 = L_4;
// gameObject.GetComponentsInParent(false, list);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_5 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(__this, /*hidden argument*/NULL);
List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14 * L_6 = V_0;
GameObject_GetComponentsInParent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_mB625178DAF7A6B4A9380DCA09EB411F65B24569A(L_5, (bool)0, L_6, /*hidden argument*/GameObject_GetComponentsInParent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_mB625178DAF7A6B4A9380DCA09EB411F65B24569A_RuntimeMethod_var);
// if (list.Count == 0)
List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14 * L_7 = V_0;
int32_t L_8 = List_1_get_Count_mC0AFF39B43A58B72EE46643C311C0292B1272966_inline(L_7, /*hidden argument*/List_1_get_Count_mC0AFF39B43A58B72EE46643C311C0292B1272966_RuntimeMethod_var);
if (L_8)
{
goto IL_003b;
}
}
{
// return;
return;
}
IL_003b:
{
// Canvas rootCanvas = list[list.Count - 1];
List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14 * L_9 = V_0;
List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14 * L_10 = V_0;
int32_t L_11 = List_1_get_Count_mC0AFF39B43A58B72EE46643C311C0292B1272966_inline(L_10, /*hidden argument*/List_1_get_Count_mC0AFF39B43A58B72EE46643C311C0292B1272966_RuntimeMethod_var);
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_12 = List_1_get_Item_m5B8C7F9E17F03DAC2C891DFAFEF7BE2F1B4BDFAE_inline(L_9, ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1)), /*hidden argument*/List_1_get_Item_m5B8C7F9E17F03DAC2C891DFAFEF7BE2F1B4BDFAE_RuntimeMethod_var);
V_1 = L_12;
// for (int i = 0; i < list.Count; i++)
V_16 = 0;
goto IL_006f;
}
IL_004f:
{
// if (list[i].isRootCanvas)
List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14 * L_13 = V_0;
int32_t L_14 = V_16;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_15 = List_1_get_Item_m5B8C7F9E17F03DAC2C891DFAFEF7BE2F1B4BDFAE_inline(L_13, L_14, /*hidden argument*/List_1_get_Item_m5B8C7F9E17F03DAC2C891DFAFEF7BE2F1B4BDFAE_RuntimeMethod_var);
bool L_16 = Canvas_get_isRootCanvas_mA4ADE90017884B88AF7A9DD3114FDD4FEB73918A(L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_0069;
}
}
{
// rootCanvas = list[i];
List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14 * L_17 = V_0;
int32_t L_18 = V_16;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_19 = List_1_get_Item_m5B8C7F9E17F03DAC2C891DFAFEF7BE2F1B4BDFAE_inline(L_17, L_18, /*hidden argument*/List_1_get_Item_m5B8C7F9E17F03DAC2C891DFAFEF7BE2F1B4BDFAE_RuntimeMethod_var);
V_1 = L_19;
// break;
goto IL_0079;
}
IL_0069:
{
// for (int i = 0; i < list.Count; i++)
int32_t L_20 = V_16;
V_16 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1));
}
IL_006f:
{
// for (int i = 0; i < list.Count; i++)
int32_t L_21 = V_16;
List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14 * L_22 = V_0;
int32_t L_23 = List_1_get_Count_mC0AFF39B43A58B72EE46643C311C0292B1272966_inline(L_22, /*hidden argument*/List_1_get_Count_mC0AFF39B43A58B72EE46643C311C0292B1272966_RuntimeMethod_var);
if ((((int32_t)L_21) < ((int32_t)L_23)))
{
goto IL_004f;
}
}
IL_0079:
{
// ListPool<Canvas>.Release(list);
List_1_tCA7EFB47D98458589D50AECEE448BDCDF1F6DF14 * L_24 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(ListPool_1_tC8893BDDEA491654D06C2BC46017B9267D683021_il2cpp_TypeInfo_var);
ListPool_1_Release_m6F9B015A45FC521BC50CB2103FD6F7816609F2A3(L_24, /*hidden argument*/ListPool_1_Release_m6F9B015A45FC521BC50CB2103FD6F7816609F2A3_RuntimeMethod_var);
// if (!validTemplate)
bool L_25 = __this->get_validTemplate_33();
if (L_25)
{
goto IL_0096;
}
}
{
// SetupTemplate();
Dropdown_SetupTemplate_m3F4C22ABEF75FEC05E3D42D277EF2299A7934E0C(__this, /*hidden argument*/NULL);
// if (!validTemplate)
bool L_26 = __this->get_validTemplate_33();
if (L_26)
{
goto IL_0096;
}
}
{
// return;
return;
}
IL_0096:
{
// m_Template.gameObject.SetActive(true);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_27 = __this->get_m_Template_20();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_28 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(L_27, /*hidden argument*/NULL);
GameObject_SetActive_m25A39F6D9FB68C51F13313F9804E85ACC937BC04(L_28, (bool)1, /*hidden argument*/NULL);
// m_Template.GetComponent<Canvas>().sortingLayerID = rootCanvas.sortingLayerID;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_29 = __this->get_m_Template_20();
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_30 = Component_GetComponent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_mAD461B8F1BB5C616749FAA2B63155D710C3CD21C(L_29, /*hidden argument*/Component_GetComponent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_mAD461B8F1BB5C616749FAA2B63155D710C3CD21C_RuntimeMethod_var);
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_31 = V_1;
int32_t L_32 = Canvas_get_sortingLayerID_mD0EB8964D1C7E68F429F83B5C5AF58426D354C75(L_31, /*hidden argument*/NULL);
Canvas_set_sortingLayerID_m9FE5A69A22DB3316964C9D5CD49E5B4352550747(L_30, L_32, /*hidden argument*/NULL);
// m_Dropdown = CreateDropdownList(m_Template.gameObject);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_33 = __this->get_m_Template_20();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_34 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(L_33, /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_35 = VirtFuncInvoker1< GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * >::Invoke(47 /* UnityEngine.GameObject UnityEngine.UI.Dropdown::CreateDropdownList(UnityEngine.GameObject) */, __this, L_34);
__this->set_m_Dropdown_29(L_35);
// m_Dropdown.name = "Dropdown List";
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_36 = __this->get_m_Dropdown_29();
Object_set_name_m538711B144CDE30F929376BCF72D0DC8F85D0826(L_36, _stringLiteralDA4A5529E49998E18123CD19ED2CDF7D0F9FCC86, /*hidden argument*/NULL);
// m_Dropdown.SetActive(true);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_37 = __this->get_m_Dropdown_29();
GameObject_SetActive_m25A39F6D9FB68C51F13313F9804E85ACC937BC04(L_37, (bool)1, /*hidden argument*/NULL);
// RectTransform dropdownRectTransform = m_Dropdown.transform as RectTransform;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_38 = __this->get_m_Dropdown_29();
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_39 = GameObject_get_transform_mA5C38857137F137CB96C69FAA624199EB1C2FB2C(L_38, /*hidden argument*/NULL);
V_2 = ((RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 *)IsInstSealed((RuntimeObject*)L_39, RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_il2cpp_TypeInfo_var));
// dropdownRectTransform.SetParent(m_Template.transform.parent, false);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_40 = V_2;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_41 = __this->get_m_Template_20();
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_42 = Component_get_transform_m00F05BD782F920C301A7EBA480F3B7A904C07EC9(L_41, /*hidden argument*/NULL);
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_43 = Transform_get_parent_m8FA24E38A1FA29D90CBF3CDC9F9F017C65BB3403(L_42, /*hidden argument*/NULL);
Transform_SetParent_m268E3814921D90882EFECE244A797264DE2A5E35(L_40, L_43, (bool)0, /*hidden argument*/NULL);
// DropdownItem itemTemplate = m_Dropdown.GetComponentInChildren<DropdownItem>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_44 = __this->get_m_Dropdown_29();
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_45 = GameObject_GetComponentInChildren_TisDropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46_m9193A9BC92DC89CED4377A4B8719AB4F79D12E56(L_44, /*hidden argument*/GameObject_GetComponentInChildren_TisDropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46_m9193A9BC92DC89CED4377A4B8719AB4F79D12E56_RuntimeMethod_var);
V_3 = L_45;
// GameObject content = itemTemplate.rectTransform.parent.gameObject;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_46 = V_3;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_47 = DropdownItem_get_rectTransform_mADBE4D843FE38C832CC1C9CFE03DC4D55B18E897_inline(L_46, /*hidden argument*/NULL);
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_48 = Transform_get_parent_m8FA24E38A1FA29D90CBF3CDC9F9F017C65BB3403(L_47, /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_49 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(L_48, /*hidden argument*/NULL);
// RectTransform contentRectTransform = content.transform as RectTransform;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_50 = GameObject_get_transform_mA5C38857137F137CB96C69FAA624199EB1C2FB2C(L_49, /*hidden argument*/NULL);
V_4 = ((RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 *)IsInstSealed((RuntimeObject*)L_50, RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_il2cpp_TypeInfo_var));
// itemTemplate.rectTransform.gameObject.SetActive(true);
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_51 = V_3;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_52 = DropdownItem_get_rectTransform_mADBE4D843FE38C832CC1C9CFE03DC4D55B18E897_inline(L_51, /*hidden argument*/NULL);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_53 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(L_52, /*hidden argument*/NULL);
GameObject_SetActive_m25A39F6D9FB68C51F13313F9804E85ACC937BC04(L_53, (bool)1, /*hidden argument*/NULL);
// Rect dropdownContentRect = contentRectTransform.rect;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_54 = V_4;
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_55 = RectTransform_get_rect_mE5F283FCB99A66403AC1F0607CA49C156D73A15E(L_54, /*hidden argument*/NULL);
V_5 = L_55;
// Rect itemTemplateRect = itemTemplate.rectTransform.rect;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_56 = V_3;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_57 = DropdownItem_get_rectTransform_mADBE4D843FE38C832CC1C9CFE03DC4D55B18E897_inline(L_56, /*hidden argument*/NULL);
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_58 = RectTransform_get_rect_mE5F283FCB99A66403AC1F0607CA49C156D73A15E(L_57, /*hidden argument*/NULL);
V_6 = L_58;
// Vector2 offsetMin = itemTemplateRect.min - dropdownContentRect.min + (Vector2)itemTemplate.rectTransform.localPosition;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_59 = Rect_get_min_m17345668569CF57C5F1D2B2DADD05DD4220A5950((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_6), /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_60 = Rect_get_min_m17345668569CF57C5F1D2B2DADD05DD4220A5950((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_5), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_61 = Vector2_op_Subtraction_m2B347E4311EDBBBF27573E34899D2492E6B063C0(L_59, L_60, /*hidden argument*/NULL);
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_62 = V_3;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_63 = DropdownItem_get_rectTransform_mADBE4D843FE38C832CC1C9CFE03DC4D55B18E897_inline(L_62, /*hidden argument*/NULL);
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_64 = Transform_get_localPosition_m812D43318E05BDCB78310EB7308785A13D85EFD8(L_63, /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_65 = Vector2_op_Implicit_mEA1F75961E3D368418BA8CEB9C40E55C25BA3C28(L_64, /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_66 = Vector2_op_Addition_m81A4D928B8E399DA3A4E3ACD8937EDFDCB014682(L_61, L_65, /*hidden argument*/NULL);
V_7 = L_66;
// Vector2 offsetMax = itemTemplateRect.max - dropdownContentRect.max + (Vector2)itemTemplate.rectTransform.localPosition;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_67 = Rect_get_max_m3BFB033D741F205FB04EF163A9D5785E7E020756((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_6), /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_68 = Rect_get_max_m3BFB033D741F205FB04EF163A9D5785E7E020756((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_5), /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_69 = Vector2_op_Subtraction_m2B347E4311EDBBBF27573E34899D2492E6B063C0(L_67, L_68, /*hidden argument*/NULL);
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_70 = V_3;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_71 = DropdownItem_get_rectTransform_mADBE4D843FE38C832CC1C9CFE03DC4D55B18E897_inline(L_70, /*hidden argument*/NULL);
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_72 = Transform_get_localPosition_m812D43318E05BDCB78310EB7308785A13D85EFD8(L_71, /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_73 = Vector2_op_Implicit_mEA1F75961E3D368418BA8CEB9C40E55C25BA3C28(L_72, /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_74 = Vector2_op_Addition_m81A4D928B8E399DA3A4E3ACD8937EDFDCB014682(L_69, L_73, /*hidden argument*/NULL);
V_8 = L_74;
// Vector2 itemSize = itemTemplateRect.size;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_75 = Rect_get_size_m731642B8F03F6CE372A2C9E2E4A925450630606C((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_6), /*hidden argument*/NULL);
V_9 = L_75;
// m_Items.Clear();
List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * L_76 = __this->get_m_Items_31();
List_1_Clear_mDBBCE26B5F5EC83363B9BA4E83C11CCBD8731A6B(L_76, /*hidden argument*/List_1_Clear_mDBBCE26B5F5EC83363B9BA4E83C11CCBD8731A6B_RuntimeMethod_var);
// Toggle prev = null;
V_10 = (Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 *)NULL;
// for (int i = 0; i < options.Count; ++i)
V_17 = 0;
goto IL_032d;
}
IL_01da:
{
U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A * L_77 = (U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A_il2cpp_TypeInfo_var);
U3CU3Ec__DisplayClass62_0__ctor_mE4628B27FE0F4517EFB2699040AFEB957D6A5FA8(L_77, /*hidden argument*/NULL);
V_18 = L_77;
U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A * L_78 = V_18;
L_78->set_U3CU3E4__this_1(__this);
// OptionData data = options[i];
List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * L_79 = Dropdown_get_options_mE95E87D4EA905E9769CE8AC1CD1D9DB86A34F823(__this, /*hidden argument*/NULL);
int32_t L_80 = V_17;
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * L_81 = List_1_get_Item_m82892B79752B36DB7663E25E080C6FFAA0C125BD_inline(L_79, L_80, /*hidden argument*/List_1_get_Item_m82892B79752B36DB7663E25E080C6FFAA0C125BD_RuntimeMethod_var);
V_19 = L_81;
// DropdownItem item = AddItem(data, value == i, itemTemplate, m_Items);
U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A * L_82 = V_18;
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * L_83 = V_19;
int32_t L_84 = Dropdown_get_value_mF388FA389F2A050264AA87E61D4F9AFC41F48873_inline(__this, /*hidden argument*/NULL);
int32_t L_85 = V_17;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_86 = V_3;
List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * L_87 = __this->get_m_Items_31();
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_88 = Dropdown_AddItem_m0E0D9C4C7C73622BC2E7AC785BD4CEA48FE952EF(__this, L_83, (bool)((((int32_t)L_84) == ((int32_t)L_85))? 1 : 0), L_86, L_87, /*hidden argument*/NULL);
L_82->set_item_0(L_88);
// if (item == null)
U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A * L_89 = V_18;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_90 = L_89->get_item_0();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_91 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_90, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (L_91)
{
goto IL_0327;
}
}
{
// item.toggle.isOn = value == i;
U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A * L_92 = V_18;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_93 = L_92->get_item_0();
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_94 = DropdownItem_get_toggle_m6DAC29FD2E711343DBCDF240B3218BD6211886DE_inline(L_93, /*hidden argument*/NULL);
int32_t L_95 = Dropdown_get_value_mF388FA389F2A050264AA87E61D4F9AFC41F48873_inline(__this, /*hidden argument*/NULL);
int32_t L_96 = V_17;
Toggle_set_isOn_mCAA660F49688DBA29E896B961E0054154C42EA2B(L_94, (bool)((((int32_t)L_95) == ((int32_t)L_96))? 1 : 0), /*hidden argument*/NULL);
// item.toggle.onValueChanged.AddListener(x => OnSelectItem(item.toggle));
U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A * L_97 = V_18;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_98 = L_97->get_item_0();
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_99 = DropdownItem_get_toggle_m6DAC29FD2E711343DBCDF240B3218BD6211886DE_inline(L_98, /*hidden argument*/NULL);
ToggleEvent_t50D925F8E220FB47DA738411CEF9C57FF7E1DC43 * L_100 = L_99->get_onValueChanged_23();
U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A * L_101 = V_18;
UnityAction_1_tB994D127B02789CE2010397AEF756615E5F84FDC * L_102 = (UnityAction_1_tB994D127B02789CE2010397AEF756615E5F84FDC *)il2cpp_codegen_object_new(UnityAction_1_tB994D127B02789CE2010397AEF756615E5F84FDC_il2cpp_TypeInfo_var);
UnityAction_1__ctor_mBB2754F539A754A4BA916AF035A54BCEC7A00CA5(L_102, L_101, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass62_0_U3CShowU3Eb__0_m63D2341A7D8EC695D01B0F934D58C2F9C3F306A3_RuntimeMethod_var), /*hidden argument*/UnityAction_1__ctor_mBB2754F539A754A4BA916AF035A54BCEC7A00CA5_RuntimeMethod_var);
UnityEvent_1_AddListener_m5A6D7B15EFC39EFA12721981E727CBD81E3051AF(L_100, L_102, /*hidden argument*/UnityEvent_1_AddListener_m5A6D7B15EFC39EFA12721981E727CBD81E3051AF_RuntimeMethod_var);
// if (item.toggle.isOn)
U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A * L_103 = V_18;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_104 = L_103->get_item_0();
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_105 = DropdownItem_get_toggle_m6DAC29FD2E711343DBCDF240B3218BD6211886DE_inline(L_104, /*hidden argument*/NULL);
bool L_106 = Toggle_get_isOn_mA34B03BED48C7189F0AB8498F986485B4CD6B44A_inline(L_105, /*hidden argument*/NULL);
if (!L_106)
{
goto IL_028c;
}
}
{
// item.toggle.Select();
U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A * L_107 = V_18;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_108 = L_107->get_item_0();
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_109 = DropdownItem_get_toggle_m6DAC29FD2E711343DBCDF240B3218BD6211886DE_inline(L_108, /*hidden argument*/NULL);
VirtActionInvoker0::Invoke(38 /* System.Void UnityEngine.UI.Selectable::Select() */, L_109);
}
IL_028c:
{
// if (prev != null)
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_110 = V_10;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_111 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_110, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_111)
{
goto IL_0319;
}
}
{
// Navigation prevNav = prev.navigation;
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_112 = V_10;
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 L_113 = Selectable_get_navigation_mE0FE811B11269EFDEE21C98701059F786580FB50_inline(L_112, /*hidden argument*/NULL);
V_20 = L_113;
// Navigation toggleNav = item.toggle.navigation;
U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A * L_114 = V_18;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_115 = L_114->get_item_0();
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_116 = DropdownItem_get_toggle_m6DAC29FD2E711343DBCDF240B3218BD6211886DE_inline(L_115, /*hidden argument*/NULL);
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 L_117 = Selectable_get_navigation_mE0FE811B11269EFDEE21C98701059F786580FB50_inline(L_116, /*hidden argument*/NULL);
V_21 = L_117;
// prevNav.mode = Navigation.Mode.Explicit;
Navigation_set_mode_m35D711F016E4F41230C710882696279BA04399D2_inline((Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)(&V_20), 4, /*hidden argument*/NULL);
// toggleNav.mode = Navigation.Mode.Explicit;
Navigation_set_mode_m35D711F016E4F41230C710882696279BA04399D2_inline((Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)(&V_21), 4, /*hidden argument*/NULL);
// prevNav.selectOnDown = item.toggle;
U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A * L_118 = V_18;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_119 = L_118->get_item_0();
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_120 = DropdownItem_get_toggle_m6DAC29FD2E711343DBCDF240B3218BD6211886DE_inline(L_119, /*hidden argument*/NULL);
Navigation_set_selectOnDown_m0EEC959195918EDDBF71B0D640D42BB85061D0A5_inline((Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)(&V_20), L_120, /*hidden argument*/NULL);
// prevNav.selectOnRight = item.toggle;
U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A * L_121 = V_18;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_122 = L_121->get_item_0();
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_123 = DropdownItem_get_toggle_m6DAC29FD2E711343DBCDF240B3218BD6211886DE_inline(L_122, /*hidden argument*/NULL);
Navigation_set_selectOnRight_m3429A471ECA0295B871C161960FB3F8C1D1D3571_inline((Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)(&V_20), L_123, /*hidden argument*/NULL);
// toggleNav.selectOnLeft = prev;
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_124 = V_10;
Navigation_set_selectOnLeft_m51D5BC3AE8C05E4233269B961ADA98BB3FBF9D53_inline((Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)(&V_21), L_124, /*hidden argument*/NULL);
// toggleNav.selectOnUp = prev;
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_125 = V_10;
Navigation_set_selectOnUp_mB61F72B8B577FB9424150F42EC57767A8F3B4453_inline((Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)(&V_21), L_125, /*hidden argument*/NULL);
// prev.navigation = prevNav;
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_126 = V_10;
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 L_127 = V_20;
Selectable_set_navigation_m9680DCFEEBF25F70A64BF24B5890A429CB389029(L_126, L_127, /*hidden argument*/NULL);
// item.toggle.navigation = toggleNav;
U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A * L_128 = V_18;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_129 = L_128->get_item_0();
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_130 = DropdownItem_get_toggle_m6DAC29FD2E711343DBCDF240B3218BD6211886DE_inline(L_129, /*hidden argument*/NULL);
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 L_131 = V_21;
Selectable_set_navigation_m9680DCFEEBF25F70A64BF24B5890A429CB389029(L_130, L_131, /*hidden argument*/NULL);
}
IL_0319:
{
// prev = item.toggle;
U3CU3Ec__DisplayClass62_0_t1F0325C99F37D0AA9A6FB09CBF04290AEFD21E6A * L_132 = V_18;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_133 = L_132->get_item_0();
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_134 = DropdownItem_get_toggle_m6DAC29FD2E711343DBCDF240B3218BD6211886DE_inline(L_133, /*hidden argument*/NULL);
V_10 = L_134;
}
IL_0327:
{
// for (int i = 0; i < options.Count; ++i)
int32_t L_135 = V_17;
V_17 = ((int32_t)il2cpp_codegen_add((int32_t)L_135, (int32_t)1));
}
IL_032d:
{
// for (int i = 0; i < options.Count; ++i)
int32_t L_136 = V_17;
List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * L_137 = Dropdown_get_options_mE95E87D4EA905E9769CE8AC1CD1D9DB86A34F823(__this, /*hidden argument*/NULL);
int32_t L_138 = List_1_get_Count_m2D6E8205805CC637E4E517EE4EDF52B89D70AB51_inline(L_137, /*hidden argument*/List_1_get_Count_m2D6E8205805CC637E4E517EE4EDF52B89D70AB51_RuntimeMethod_var);
if ((((int32_t)L_136) < ((int32_t)L_138)))
{
goto IL_01da;
}
}
{
// Vector2 sizeDelta = contentRectTransform.sizeDelta;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_139 = V_4;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_140 = RectTransform_get_sizeDelta_mDA0A3E73679143B1B52CE2F9A417F90CB9F3DAFF(L_139, /*hidden argument*/NULL);
V_11 = L_140;
// sizeDelta.y = itemSize.y * m_Items.Count + offsetMin.y - offsetMax.y;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_141 = V_9;
float L_142 = L_141.get_y_1();
List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * L_143 = __this->get_m_Items_31();
int32_t L_144 = List_1_get_Count_mDC92CDF088A4BBE454D68D038801327048A187E9_inline(L_143, /*hidden argument*/List_1_get_Count_mDC92CDF088A4BBE454D68D038801327048A187E9_RuntimeMethod_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_145 = V_7;
float L_146 = L_145.get_y_1();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_147 = V_8;
float L_148 = L_147.get_y_1();
(&V_11)->set_y_1(((float)il2cpp_codegen_subtract((float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_multiply((float)L_142, (float)(((float)((float)L_144))))), (float)L_146)), (float)L_148)));
// contentRectTransform.sizeDelta = sizeDelta;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_149 = V_4;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_150 = V_11;
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_149, L_150, /*hidden argument*/NULL);
// float extraSpace = dropdownRectTransform.rect.height - contentRectTransform.rect.height;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_151 = V_2;
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_152 = RectTransform_get_rect_mE5F283FCB99A66403AC1F0607CA49C156D73A15E(L_151, /*hidden argument*/NULL);
V_22 = L_152;
float L_153 = Rect_get_height_m088C36990E0A255C5D7DCE36575DCE23ABB364B5((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_22), /*hidden argument*/NULL);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_154 = V_4;
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_155 = RectTransform_get_rect_mE5F283FCB99A66403AC1F0607CA49C156D73A15E(L_154, /*hidden argument*/NULL);
V_22 = L_155;
float L_156 = Rect_get_height_m088C36990E0A255C5D7DCE36575DCE23ABB364B5((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_22), /*hidden argument*/NULL);
V_12 = ((float)il2cpp_codegen_subtract((float)L_153, (float)L_156));
// if (extraSpace > 0)
float L_157 = V_12;
if ((!(((float)L_157) > ((float)(0.0f)))))
{
goto IL_03cb;
}
}
{
// dropdownRectTransform.sizeDelta = new Vector2(dropdownRectTransform.sizeDelta.x, dropdownRectTransform.sizeDelta.y - extraSpace);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_158 = V_2;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_159 = V_2;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_160 = RectTransform_get_sizeDelta_mDA0A3E73679143B1B52CE2F9A417F90CB9F3DAFF(L_159, /*hidden argument*/NULL);
float L_161 = L_160.get_x_0();
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_162 = V_2;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_163 = RectTransform_get_sizeDelta_mDA0A3E73679143B1B52CE2F9A417F90CB9F3DAFF(L_162, /*hidden argument*/NULL);
float L_164 = L_163.get_y_1();
float L_165 = V_12;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_166;
memset((&L_166), 0, sizeof(L_166));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_166), L_161, ((float)il2cpp_codegen_subtract((float)L_164, (float)L_165)), /*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_158, L_166, /*hidden argument*/NULL);
}
IL_03cb:
{
// Vector3[] corners = new Vector3[4];
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_167 = (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)SZArrayNew(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28_il2cpp_TypeInfo_var, (uint32_t)4);
V_13 = L_167;
// dropdownRectTransform.GetWorldCorners(corners);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_168 = V_2;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_169 = V_13;
RectTransform_GetWorldCorners_m073AA4D13C51C5654A5983EE3FE7E2E60F7761B6(L_168, L_169, /*hidden argument*/NULL);
// RectTransform rootCanvasRectTransform = rootCanvas.transform as RectTransform;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_170 = V_1;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_171 = Component_get_transform_m00F05BD782F920C301A7EBA480F3B7A904C07EC9(L_170, /*hidden argument*/NULL);
V_14 = ((RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 *)IsInstSealed((RuntimeObject*)L_171, RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_il2cpp_TypeInfo_var));
// Rect rootCanvasRect = rootCanvasRectTransform.rect;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_172 = V_14;
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_173 = RectTransform_get_rect_mE5F283FCB99A66403AC1F0607CA49C156D73A15E(L_172, /*hidden argument*/NULL);
V_15 = L_173;
// for (int axis = 0; axis < 2; axis++)
V_23 = 0;
goto IL_04bb;
}
IL_03f9:
{
// bool outside = false;
V_24 = (bool)0;
// for (int i = 0; i < 4; i++)
V_25 = 0;
goto IL_049f;
}
IL_0404:
{
// Vector3 corner = rootCanvasRectTransform.InverseTransformPoint(corners[i]);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_174 = V_14;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_175 = V_13;
int32_t L_176 = V_25;
int32_t L_177 = L_176;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_178 = (L_175)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_177));
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_179 = Transform_InverseTransformPoint_mB6E3145F20B531B4A781C194BAC43A8255C96C47(L_174, L_178, /*hidden argument*/NULL);
V_26 = L_179;
// if ((corner[axis] < rootCanvasRect.min[axis] && !Mathf.Approximately(corner[axis], rootCanvasRect.min[axis])) ||
// (corner[axis] > rootCanvasRect.max[axis] && !Mathf.Approximately(corner[axis], rootCanvasRect.max[axis])))
int32_t L_180 = V_23;
float L_181 = Vector3_get_Item_mC3B9D35C070A91D7CA5C5B47280BD0EA3E148AC6((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)(&V_26), L_180, /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_182 = Rect_get_min_m17345668569CF57C5F1D2B2DADD05DD4220A5950((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_15), /*hidden argument*/NULL);
V_27 = L_182;
int32_t L_183 = V_23;
float L_184 = Vector2_get_Item_m67344A67120E48C32D9419E24BA7AED29F063379((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&V_27), L_183, /*hidden argument*/NULL);
if ((!(((float)L_181) < ((float)L_184))))
{
goto IL_0455;
}
}
{
int32_t L_185 = V_23;
float L_186 = Vector3_get_Item_mC3B9D35C070A91D7CA5C5B47280BD0EA3E148AC6((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)(&V_26), L_185, /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_187 = Rect_get_min_m17345668569CF57C5F1D2B2DADD05DD4220A5950((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_15), /*hidden argument*/NULL);
V_27 = L_187;
int32_t L_188 = V_23;
float L_189 = Vector2_get_Item_m67344A67120E48C32D9419E24BA7AED29F063379((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&V_27), L_188, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
bool L_190 = Mathf_Approximately_m91AF00403E0D2DEA1AAE68601AD218CFAD70DF7E(L_186, L_189, /*hidden argument*/NULL);
if (!L_190)
{
goto IL_0494;
}
}
IL_0455:
{
int32_t L_191 = V_23;
float L_192 = Vector3_get_Item_mC3B9D35C070A91D7CA5C5B47280BD0EA3E148AC6((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)(&V_26), L_191, /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_193 = Rect_get_max_m3BFB033D741F205FB04EF163A9D5785E7E020756((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_15), /*hidden argument*/NULL);
V_27 = L_193;
int32_t L_194 = V_23;
float L_195 = Vector2_get_Item_m67344A67120E48C32D9419E24BA7AED29F063379((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&V_27), L_194, /*hidden argument*/NULL);
if ((!(((float)L_192) > ((float)L_195))))
{
goto IL_0499;
}
}
{
int32_t L_196 = V_23;
float L_197 = Vector3_get_Item_mC3B9D35C070A91D7CA5C5B47280BD0EA3E148AC6((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)(&V_26), L_196, /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_198 = Rect_get_max_m3BFB033D741F205FB04EF163A9D5785E7E020756((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_15), /*hidden argument*/NULL);
V_27 = L_198;
int32_t L_199 = V_23;
float L_200 = Vector2_get_Item_m67344A67120E48C32D9419E24BA7AED29F063379((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&V_27), L_199, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
bool L_201 = Mathf_Approximately_m91AF00403E0D2DEA1AAE68601AD218CFAD70DF7E(L_197, L_200, /*hidden argument*/NULL);
if (L_201)
{
goto IL_0499;
}
}
IL_0494:
{
// outside = true;
V_24 = (bool)1;
// break;
goto IL_04a7;
}
IL_0499:
{
// for (int i = 0; i < 4; i++)
int32_t L_202 = V_25;
V_25 = ((int32_t)il2cpp_codegen_add((int32_t)L_202, (int32_t)1));
}
IL_049f:
{
// for (int i = 0; i < 4; i++)
int32_t L_203 = V_25;
if ((((int32_t)L_203) < ((int32_t)4)))
{
goto IL_0404;
}
}
IL_04a7:
{
// if (outside)
bool L_204 = V_24;
if (!L_204)
{
goto IL_04b5;
}
}
{
// RectTransformUtility.FlipLayoutOnAxis(dropdownRectTransform, axis, false, false);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_205 = V_2;
int32_t L_206 = V_23;
IL2CPP_RUNTIME_CLASS_INIT(RectTransformUtility_t9B90669A72B05A33DD88BEBB817BC9CDBB614BBA_il2cpp_TypeInfo_var);
RectTransformUtility_FlipLayoutOnAxis_mFECCA330C80845D0B75829C7DD242688911006AE(L_205, L_206, (bool)0, (bool)0, /*hidden argument*/NULL);
}
IL_04b5:
{
// for (int axis = 0; axis < 2; axis++)
int32_t L_207 = V_23;
V_23 = ((int32_t)il2cpp_codegen_add((int32_t)L_207, (int32_t)1));
}
IL_04bb:
{
// for (int axis = 0; axis < 2; axis++)
int32_t L_208 = V_23;
if ((((int32_t)L_208) < ((int32_t)2)))
{
goto IL_03f9;
}
}
{
// for (int i = 0; i < m_Items.Count; i++)
V_28 = 0;
goto IL_058c;
}
IL_04cb:
{
// RectTransform itemRect = m_Items[i].rectTransform;
List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * L_209 = __this->get_m_Items_31();
int32_t L_210 = V_28;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_211 = List_1_get_Item_m82CCD5EC107FD608ACAAE67A6ED50F1076469157_inline(L_209, L_210, /*hidden argument*/List_1_get_Item_m82CCD5EC107FD608ACAAE67A6ED50F1076469157_RuntimeMethod_var);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_212 = DropdownItem_get_rectTransform_mADBE4D843FE38C832CC1C9CFE03DC4D55B18E897_inline(L_211, /*hidden argument*/NULL);
V_29 = L_212;
// itemRect.anchorMin = new Vector2(itemRect.anchorMin.x, 0);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_213 = V_29;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_214 = V_29;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_215 = RectTransform_get_anchorMin_mB62D77CAC5A2A086320638AE7DF08135B7028744(L_214, /*hidden argument*/NULL);
float L_216 = L_215.get_x_0();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_217;
memset((&L_217), 0, sizeof(L_217));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_217), L_216, (0.0f), /*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_213, L_217, /*hidden argument*/NULL);
// itemRect.anchorMax = new Vector2(itemRect.anchorMax.x, 0);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_218 = V_29;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_219 = V_29;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_220 = RectTransform_get_anchorMax_m1E51C211FBB32326C884375C9F1E8E8221E5C086(L_219, /*hidden argument*/NULL);
float L_221 = L_220.get_x_0();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_222;
memset((&L_222), 0, sizeof(L_222));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_222), L_221, (0.0f), /*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_218, L_222, /*hidden argument*/NULL);
// itemRect.anchoredPosition = new Vector2(itemRect.anchoredPosition.x, offsetMin.y + itemSize.y * (m_Items.Count - 1 - i) + itemSize.y * itemRect.pivot.y);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_223 = V_29;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_224 = V_29;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_225 = RectTransform_get_anchoredPosition_mCB2171DBADBC572F354CCFE3ACA19F9506F97907(L_224, /*hidden argument*/NULL);
float L_226 = L_225.get_x_0();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_227 = V_7;
float L_228 = L_227.get_y_1();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_229 = V_9;
float L_230 = L_229.get_y_1();
List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * L_231 = __this->get_m_Items_31();
int32_t L_232 = List_1_get_Count_mDC92CDF088A4BBE454D68D038801327048A187E9_inline(L_231, /*hidden argument*/List_1_get_Count_mDC92CDF088A4BBE454D68D038801327048A187E9_RuntimeMethod_var);
int32_t L_233 = V_28;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_234 = V_9;
float L_235 = L_234.get_y_1();
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_236 = V_29;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_237 = RectTransform_get_pivot_mA5BEEE2069ACA7C0C717530EED3E7D811D46C463(L_236, /*hidden argument*/NULL);
float L_238 = L_237.get_y_1();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_239;
memset((&L_239), 0, sizeof(L_239));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_239), L_226, ((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)L_228, (float)((float)il2cpp_codegen_multiply((float)L_230, (float)(((float)((float)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_232, (int32_t)1)), (int32_t)L_233))))))))), (float)((float)il2cpp_codegen_multiply((float)L_235, (float)L_238)))), /*hidden argument*/NULL);
RectTransform_set_anchoredPosition_m4DD45DB1A97734A1F3A81E5F259638ECAF35962F(L_223, L_239, /*hidden argument*/NULL);
// itemRect.sizeDelta = new Vector2(itemRect.sizeDelta.x, itemSize.y);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_240 = V_29;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_241 = V_29;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_242 = RectTransform_get_sizeDelta_mDA0A3E73679143B1B52CE2F9A417F90CB9F3DAFF(L_241, /*hidden argument*/NULL);
float L_243 = L_242.get_x_0();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_244 = V_9;
float L_245 = L_244.get_y_1();
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_246;
memset((&L_246), 0, sizeof(L_246));
Vector2__ctor_mEE8FB117AB1F8DB746FB8B3EB4C0DA3BF2A230D0((&L_246), L_243, L_245, /*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_240, L_246, /*hidden argument*/NULL);
// for (int i = 0; i < m_Items.Count; i++)
int32_t L_247 = V_28;
V_28 = ((int32_t)il2cpp_codegen_add((int32_t)L_247, (int32_t)1));
}
IL_058c:
{
// for (int i = 0; i < m_Items.Count; i++)
int32_t L_248 = V_28;
List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * L_249 = __this->get_m_Items_31();
int32_t L_250 = List_1_get_Count_mDC92CDF088A4BBE454D68D038801327048A187E9_inline(L_249, /*hidden argument*/List_1_get_Count_mDC92CDF088A4BBE454D68D038801327048A187E9_RuntimeMethod_var);
if ((((int32_t)L_248) < ((int32_t)L_250)))
{
goto IL_04cb;
}
}
{
// AlphaFadeList(m_AlphaFadeSpeed, 0f, 1f);
float L_251 = __this->get_m_AlphaFadeSpeed_28();
Dropdown_AlphaFadeList_m86254B5CBD02903E1D9AF108EB1E86234DCE45E2(__this, L_251, (0.0f), (1.0f), /*hidden argument*/NULL);
// m_Template.gameObject.SetActive(false);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_252 = __this->get_m_Template_20();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_253 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(L_252, /*hidden argument*/NULL);
GameObject_SetActive_m25A39F6D9FB68C51F13313F9804E85ACC937BC04(L_253, (bool)0, /*hidden argument*/NULL);
// itemTemplate.gameObject.SetActive(false);
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_254 = V_3;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_255 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(L_254, /*hidden argument*/NULL);
GameObject_SetActive_m25A39F6D9FB68C51F13313F9804E85ACC937BC04(L_255, (bool)0, /*hidden argument*/NULL);
// m_Blocker = CreateBlocker(rootCanvas);
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_256 = V_1;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_257 = VirtFuncInvoker1< GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *, Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * >::Invoke(45 /* UnityEngine.GameObject UnityEngine.UI.Dropdown::CreateBlocker(UnityEngine.Canvas) */, __this, L_256);
__this->set_m_Blocker_30(L_257);
// }
return;
}
}
// UnityEngine.GameObject UnityEngine.UI.Dropdown::CreateBlocker(UnityEngine.Canvas)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * Dropdown_CreateBlocker_m036190311A5551395BC6DD3807D909F851AC8075 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * ___rootCanvas0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_CreateBlocker_m036190311A5551395BC6DD3807D909F851AC8075_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * V_0 = NULL;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * V_1 = NULL;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * V_2 = NULL;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * V_3 = NULL;
ComponentU5BU5D_t7BE50AFB6301C06D990819B3D8F35CA326CDD155* V_4 = NULL;
ComponentU5BU5D_t7BE50AFB6301C06D990819B3D8F35CA326CDD155* V_5 = NULL;
int32_t V_6 = 0;
Type_t * V_7 = NULL;
{
// GameObject blocker = new GameObject("Blocker");
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)il2cpp_codegen_object_new(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F_il2cpp_TypeInfo_var);
GameObject__ctor_mBB454E679AD9CF0B84D3609A01E6A9753ACF4686(L_0, _stringLiteral7ED53365DD1C43099B49726626A637D3E0BD800E, /*hidden argument*/NULL);
V_0 = L_0;
// RectTransform blockerRect = blocker.AddComponent<RectTransform>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_1 = V_0;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_2 = GameObject_AddComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_mBCFCAB2CB522FEE3E8160D6B53776131804C0B25(L_1, /*hidden argument*/GameObject_AddComponent_TisRectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20_mBCFCAB2CB522FEE3E8160D6B53776131804C0B25_RuntimeMethod_var);
// blockerRect.SetParent(rootCanvas.transform, false);
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_3 = L_2;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_4 = ___rootCanvas0;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_5 = Component_get_transform_m00F05BD782F920C301A7EBA480F3B7A904C07EC9(L_4, /*hidden argument*/NULL);
Transform_SetParent_m268E3814921D90882EFECE244A797264DE2A5E35(L_3, L_5, (bool)0, /*hidden argument*/NULL);
// blockerRect.anchorMin = Vector3.zero;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_6 = L_3;
IL2CPP_RUNTIME_CLASS_INIT(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_il2cpp_TypeInfo_var);
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_7 = Vector3_get_zero_m3CDDCAE94581DF3BB16C4B40A100E28E9C6649C2(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_8 = Vector2_op_Implicit_mEA1F75961E3D368418BA8CEB9C40E55C25BA3C28(L_7, /*hidden argument*/NULL);
RectTransform_set_anchorMin_mE965F5B0902C2554635010A5752728414A57020A(L_6, L_8, /*hidden argument*/NULL);
// blockerRect.anchorMax = Vector3.one;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_9 = L_6;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_10 = Vector3_get_one_mA11B83037CB269C6076CBCF754E24C8F3ACEC2AB(/*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_11 = Vector2_op_Implicit_mEA1F75961E3D368418BA8CEB9C40E55C25BA3C28(L_10, /*hidden argument*/NULL);
RectTransform_set_anchorMax_m55EEF00D9E42FE542B5346D7CEDAF9248736F7D3(L_9, L_11, /*hidden argument*/NULL);
// blockerRect.sizeDelta = Vector2.zero;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_12 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
RectTransform_set_sizeDelta_m7729BA56325BA667F0F7D60D642124F7909F1302(L_9, L_12, /*hidden argument*/NULL);
// Canvas blockerCanvas = blocker.AddComponent<Canvas>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_13 = V_0;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_14 = GameObject_AddComponent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_m474E23A3E8CBCA25DD03C7614EEF1E47AD566618(L_13, /*hidden argument*/GameObject_AddComponent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_m474E23A3E8CBCA25DD03C7614EEF1E47AD566618_RuntimeMethod_var);
// blockerCanvas.overrideSorting = true;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_15 = L_14;
Canvas_set_overrideSorting_m446842097ED576AB8706B9980E85AECC24C13015(L_15, (bool)1, /*hidden argument*/NULL);
// Canvas dropdownCanvas = m_Dropdown.GetComponent<Canvas>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_16 = __this->get_m_Dropdown_29();
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_17 = GameObject_GetComponent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_m5EA55BE80E8E0FB0551D6C16C2BC57A726758C9A(L_16, /*hidden argument*/GameObject_GetComponent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_m5EA55BE80E8E0FB0551D6C16C2BC57A726758C9A_RuntimeMethod_var);
V_1 = L_17;
// blockerCanvas.sortingLayerID = dropdownCanvas.sortingLayerID;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_18 = L_15;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_19 = V_1;
int32_t L_20 = Canvas_get_sortingLayerID_mD0EB8964D1C7E68F429F83B5C5AF58426D354C75(L_19, /*hidden argument*/NULL);
Canvas_set_sortingLayerID_m9FE5A69A22DB3316964C9D5CD49E5B4352550747(L_18, L_20, /*hidden argument*/NULL);
// blockerCanvas.sortingOrder = dropdownCanvas.sortingOrder - 1;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_21 = V_1;
int32_t L_22 = Canvas_get_sortingOrder_mA3FC1159A6594B522A7B682F5792845E2DC7C540(L_21, /*hidden argument*/NULL);
Canvas_set_sortingOrder_m4387540EBDF2716DFAE26F27074DBF15F32382E7(L_18, ((int32_t)il2cpp_codegen_subtract((int32_t)L_22, (int32_t)1)), /*hidden argument*/NULL);
// Canvas parentCanvas = null;
V_2 = (Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 *)NULL;
// Transform parentTransform = m_Template.parent;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_23 = __this->get_m_Template_20();
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_24 = Transform_get_parent_m8FA24E38A1FA29D90CBF3CDC9F9F017C65BB3403(L_23, /*hidden argument*/NULL);
V_3 = L_24;
goto IL_00a1;
}
IL_008a:
{
// parentCanvas = parentTransform.GetComponent<Canvas>();
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_25 = V_3;
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_26 = Component_GetComponent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_mAD461B8F1BB5C616749FAA2B63155D710C3CD21C(L_25, /*hidden argument*/Component_GetComponent_TisCanvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591_mAD461B8F1BB5C616749FAA2B63155D710C3CD21C_RuntimeMethod_var);
V_2 = L_26;
// if (parentCanvas != null)
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_27 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_28 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_27, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (L_28)
{
goto IL_00aa;
}
}
{
// parentTransform = parentTransform.parent;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_29 = V_3;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_30 = Transform_get_parent_m8FA24E38A1FA29D90CBF3CDC9F9F017C65BB3403(L_29, /*hidden argument*/NULL);
V_3 = L_30;
}
IL_00a1:
{
// while (parentTransform != null)
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_31 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_32 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_31, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (L_32)
{
goto IL_008a;
}
}
IL_00aa:
{
// if (parentCanvas != null)
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_33 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_34 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_33, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_34)
{
goto IL_00f9;
}
}
{
// Component[] components = parentCanvas.GetComponents<BaseRaycaster>();
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * L_35 = V_2;
BaseRaycasterU5BU5D_tBAB92856D134B954B807C51A3228248F5393F0A6* L_36 = Component_GetComponents_TisBaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966_mC5D7B6F2AF3B637F8CF0F1DEF4E96FEADB5C6814(L_35, /*hidden argument*/Component_GetComponents_TisBaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966_mC5D7B6F2AF3B637F8CF0F1DEF4E96FEADB5C6814_RuntimeMethod_var);
V_5 = (ComponentU5BU5D_t7BE50AFB6301C06D990819B3D8F35CA326CDD155*)L_36;
ComponentU5BU5D_t7BE50AFB6301C06D990819B3D8F35CA326CDD155* L_37 = V_5;
V_4 = L_37;
// for (int i = 0; i < components.Length; i++)
V_6 = 0;
goto IL_00ef;
}
IL_00c4:
{
// Type raycasterType = components[i].GetType();
ComponentU5BU5D_t7BE50AFB6301C06D990819B3D8F35CA326CDD155* L_38 = V_4;
int32_t L_39 = V_6;
int32_t L_40 = L_39;
Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * L_41 = (L_38)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_40));
Type_t * L_42 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_41, /*hidden argument*/NULL);
V_7 = L_42;
// if (blocker.GetComponent(raycasterType) == null)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_43 = V_0;
Type_t * L_44 = V_7;
Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 * L_45 = GameObject_GetComponent_mECB756C7EB39F6BB79F8C065AB0013354763B151(L_43, L_44, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_46 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_45, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_46)
{
goto IL_00e9;
}
}
{
// blocker.AddComponent(raycasterType);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_47 = V_0;
Type_t * L_48 = V_7;
GameObject_AddComponent_m489C9D5426F2050795FA696CD478BB49AAE4BD70(L_47, L_48, /*hidden argument*/NULL);
}
IL_00e9:
{
// for (int i = 0; i < components.Length; i++)
int32_t L_49 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)1));
}
IL_00ef:
{
// for (int i = 0; i < components.Length; i++)
int32_t L_50 = V_6;
ComponentU5BU5D_t7BE50AFB6301C06D990819B3D8F35CA326CDD155* L_51 = V_4;
if ((((int32_t)L_50) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_51)->max_length)))))))
{
goto IL_00c4;
}
}
{
// }
goto IL_0100;
}
IL_00f9:
{
// GetOrAddComponent<GraphicRaycaster>(blocker);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_52 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F_il2cpp_TypeInfo_var);
Dropdown_GetOrAddComponent_TisGraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83_m9B1D258B962FAF4A5D69605ED9910224F26E7294(L_52, /*hidden argument*/Dropdown_GetOrAddComponent_TisGraphicRaycaster_t9AA334998113578A7FC0B27D7D6FEF19E74B9D83_m9B1D258B962FAF4A5D69605ED9910224F26E7294_RuntimeMethod_var);
}
IL_0100:
{
// Image blockerImage = blocker.AddComponent<Image>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_53 = V_0;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_54 = GameObject_AddComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_mD30135D66AFB92E25180A1358319B74A4621D79F(L_53, /*hidden argument*/GameObject_AddComponent_TisImage_t18FED07D8646917E1C563745518CF3DD57FF0B3E_mD30135D66AFB92E25180A1358319B74A4621D79F_RuntimeMethod_var);
// blockerImage.color = Color.clear;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_55 = Color_get_clear_m419239BDAEB3D3C4B4291BF2C6EF09A7D7D81360(/*hidden argument*/NULL);
VirtActionInvoker1< Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_54, L_55);
// Button blockerButton = blocker.AddComponent<Button>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_56 = V_0;
Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * L_57 = GameObject_AddComponent_TisButton_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B_m36473E834D5F26A115FB3A704AC6A86C8C95FD95(L_56, /*hidden argument*/GameObject_AddComponent_TisButton_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B_m36473E834D5F26A115FB3A704AC6A86C8C95FD95_RuntimeMethod_var);
// blockerButton.onClick.AddListener(Hide);
ButtonClickedEvent_t975D9C903BC4880557ADD7D3ACFB01CB2B3D6DDB * L_58 = Button_get_onClick_m77E8CA6917881760CC7900930F4C789F3E2F8817_inline(L_57, /*hidden argument*/NULL);
UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * L_59 = (UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 *)il2cpp_codegen_object_new(UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4_il2cpp_TypeInfo_var);
UnityAction__ctor_mEFC4B92529CE83DF72501F92E07EC5598C54BDAC(L_59, __this, (intptr_t)((intptr_t)Dropdown_Hide_m396A627BAA21433514959C71BD8B13A31B7B99A8_RuntimeMethod_var), /*hidden argument*/NULL);
UnityEvent_AddListener_m31973FDDC5BB0B2828AB6EF519EC4FD6563499C9(L_58, L_59, /*hidden argument*/NULL);
// return blocker;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_60 = V_0;
return L_60;
}
}
// System.Void UnityEngine.UI.Dropdown::DestroyBlocker(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_DestroyBlocker_mEF1CA103B452EBED15714974CEE056CB44C17A58 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___blocker0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_DestroyBlocker_mEF1CA103B452EBED15714974CEE056CB44C17A58_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// Destroy(blocker);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___blocker0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
Object_Destroy_m23B4562495BA35A74266D4372D45368F8C05109A(L_0, /*hidden argument*/NULL);
// }
return;
}
}
// UnityEngine.GameObject UnityEngine.UI.Dropdown::CreateDropdownList(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * Dropdown_CreateDropdownList_m4C38DE76864D27BBA2033CD5DD72A88B1D2896A9 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___template0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_CreateDropdownList_m4C38DE76864D27BBA2033CD5DD72A88B1D2896A9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// return (GameObject)Instantiate(template);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___template0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_1 = Object_Instantiate_TisGameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F_mC4AB712D7F18E0991E1542CE53F11385E21E7B90(L_0, /*hidden argument*/Object_Instantiate_TisGameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F_mC4AB712D7F18E0991E1542CE53F11385E21E7B90_RuntimeMethod_var);
return L_1;
}
}
// System.Void UnityEngine.UI.Dropdown::DestroyDropdownList(UnityEngine.GameObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_DestroyDropdownList_m1049B8618DF9EFDC6504F4CF29F240252BCAC0A5 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___dropdownList0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_DestroyDropdownList_m1049B8618DF9EFDC6504F4CF29F240252BCAC0A5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// Destroy(dropdownList);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___dropdownList0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
Object_Destroy_m23B4562495BA35A74266D4372D45368F8C05109A(L_0, /*hidden argument*/NULL);
// }
return;
}
}
// UnityEngine.UI.Dropdown_DropdownItem UnityEngine.UI.Dropdown::CreateItem(UnityEngine.UI.Dropdown_DropdownItem)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * Dropdown_CreateItem_m591B3B4546D13786893F9930BE702F3A9AAE3CDC (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * ___itemTemplate0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_CreateItem_m591B3B4546D13786893F9930BE702F3A9AAE3CDC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// return (DropdownItem)Instantiate(itemTemplate);
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_0 = ___itemTemplate0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_1 = Object_Instantiate_TisDropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46_m5063405ACD5422343C447BB6F01EA28525635C50(L_0, /*hidden argument*/Object_Instantiate_TisDropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46_m5063405ACD5422343C447BB6F01EA28525635C50_RuntimeMethod_var);
return L_1;
}
}
// System.Void UnityEngine.UI.Dropdown::DestroyItem(UnityEngine.UI.Dropdown_DropdownItem)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_DestroyItem_mC2B1258A6EF53D30D7C7693BB62B63B12E3283AB (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * ___item0, const RuntimeMethod* method)
{
{
// {}
return;
}
}
// UnityEngine.UI.Dropdown_DropdownItem UnityEngine.UI.Dropdown::AddItem(UnityEngine.UI.Dropdown_OptionData,System.Boolean,UnityEngine.UI.Dropdown_DropdownItem,System.Collections.Generic.List`1<UnityEngine.UI.Dropdown_DropdownItem>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * Dropdown_AddItem_m0E0D9C4C7C73622BC2E7AC785BD4CEA48FE952EF (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * ___data0, bool ___selected1, DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * ___itemTemplate2, List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * ___items3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_AddItem_m0E0D9C4C7C73622BC2E7AC785BD4CEA48FE952EF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * V_0 = NULL;
RuntimeObject * G_B2_0 = NULL;
String_t* G_B2_1 = NULL;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * G_B2_2 = NULL;
RuntimeObject * G_B1_0 = NULL;
String_t* G_B1_1 = NULL;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * G_B1_2 = NULL;
String_t* G_B3_0 = NULL;
RuntimeObject * G_B3_1 = NULL;
String_t* G_B3_2 = NULL;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * G_B3_3 = NULL;
{
// DropdownItem item = CreateItem(itemTemplate);
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_0 = ___itemTemplate2;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_1 = VirtFuncInvoker1< DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 *, DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * >::Invoke(49 /* UnityEngine.UI.Dropdown/DropdownItem UnityEngine.UI.Dropdown::CreateItem(UnityEngine.UI.Dropdown/DropdownItem) */, __this, L_0);
V_0 = L_1;
// item.rectTransform.SetParent(itemTemplate.rectTransform.parent, false);
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_2 = V_0;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_3 = DropdownItem_get_rectTransform_mADBE4D843FE38C832CC1C9CFE03DC4D55B18E897_inline(L_2, /*hidden argument*/NULL);
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_4 = ___itemTemplate2;
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_5 = DropdownItem_get_rectTransform_mADBE4D843FE38C832CC1C9CFE03DC4D55B18E897_inline(L_4, /*hidden argument*/NULL);
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_6 = Transform_get_parent_m8FA24E38A1FA29D90CBF3CDC9F9F017C65BB3403(L_5, /*hidden argument*/NULL);
Transform_SetParent_m268E3814921D90882EFECE244A797264DE2A5E35(L_3, L_6, (bool)0, /*hidden argument*/NULL);
// item.gameObject.SetActive(true);
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_7 = V_0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_8 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(L_7, /*hidden argument*/NULL);
GameObject_SetActive_m25A39F6D9FB68C51F13313F9804E85ACC937BC04(L_8, (bool)1, /*hidden argument*/NULL);
// item.gameObject.name = "Item " + items.Count + (data.text != null ? ": " + data.text : "");
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_9 = V_0;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_10 = Component_get_gameObject_m0B0570BA8DDD3CD78A9DB568EA18D7317686603C(L_9, /*hidden argument*/NULL);
List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * L_11 = ___items3;
int32_t L_12 = List_1_get_Count_mDC92CDF088A4BBE454D68D038801327048A187E9_inline(L_11, /*hidden argument*/List_1_get_Count_mDC92CDF088A4BBE454D68D038801327048A187E9_RuntimeMethod_var);
int32_t L_13 = L_12;
RuntimeObject * L_14 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_13);
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * L_15 = ___data0;
String_t* L_16 = OptionData_get_text_m3AA3E93AC9264EB140F873BEFF0A6FCB48FB1BFF_inline(L_15, /*hidden argument*/NULL);
G_B1_0 = L_14;
G_B1_1 = _stringLiteral284E12472DB8D8A36F74982258C91605C9D47A2B;
G_B1_2 = L_10;
if (L_16)
{
G_B2_0 = L_14;
G_B2_1 = _stringLiteral284E12472DB8D8A36F74982258C91605C9D47A2B;
G_B2_2 = L_10;
goto IL_0051;
}
}
{
G_B3_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
G_B3_3 = G_B1_2;
goto IL_0061;
}
IL_0051:
{
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * L_17 = ___data0;
String_t* L_18 = OptionData_get_text_m3AA3E93AC9264EB140F873BEFF0A6FCB48FB1BFF_inline(L_17, /*hidden argument*/NULL);
String_t* L_19 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteralCECA32E904728D1645727CB2B9CDEAA153807D77, L_18, /*hidden argument*/NULL);
G_B3_0 = L_19;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
G_B3_3 = G_B2_2;
}
IL_0061:
{
String_t* L_20 = String_Concat_m2E1F71C491D2429CC80A28745488FEA947BB7AAC(G_B3_2, G_B3_1, G_B3_0, /*hidden argument*/NULL);
Object_set_name_m538711B144CDE30F929376BCF72D0DC8F85D0826(G_B3_3, L_20, /*hidden argument*/NULL);
// if (item.toggle != null)
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_21 = V_0;
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_22 = DropdownItem_get_toggle_m6DAC29FD2E711343DBCDF240B3218BD6211886DE_inline(L_21, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_23 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_22, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_23)
{
goto IL_0085;
}
}
{
// item.toggle.isOn = false;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_24 = V_0;
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_25 = DropdownItem_get_toggle_m6DAC29FD2E711343DBCDF240B3218BD6211886DE_inline(L_24, /*hidden argument*/NULL);
Toggle_set_isOn_mCAA660F49688DBA29E896B961E0054154C42EA2B(L_25, (bool)0, /*hidden argument*/NULL);
}
IL_0085:
{
// if (item.text)
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_26 = V_0;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_27 = DropdownItem_get_text_mABB014D2DEE9F6B24515DE71A08EBFA82BB44829_inline(L_26, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_28 = Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534(L_27, /*hidden argument*/NULL);
if (!L_28)
{
goto IL_00a3;
}
}
{
// item.text.text = data.text;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_29 = V_0;
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_30 = DropdownItem_get_text_mABB014D2DEE9F6B24515DE71A08EBFA82BB44829_inline(L_29, /*hidden argument*/NULL);
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * L_31 = ___data0;
String_t* L_32 = OptionData_get_text_m3AA3E93AC9264EB140F873BEFF0A6FCB48FB1BFF_inline(L_31, /*hidden argument*/NULL);
VirtActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_30, L_32);
}
IL_00a3:
{
// if (item.image)
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_33 = V_0;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_34 = DropdownItem_get_image_m2879EEFCAB097FBA79BC4DA41ECBA4EBE3CB6185_inline(L_33, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_35 = Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534(L_34, /*hidden argument*/NULL);
if (!L_35)
{
goto IL_00dd;
}
}
{
// item.image.sprite = data.image;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_36 = V_0;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_37 = DropdownItem_get_image_m2879EEFCAB097FBA79BC4DA41ECBA4EBE3CB6185_inline(L_36, /*hidden argument*/NULL);
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * L_38 = ___data0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_39 = OptionData_get_image_m0BF991D02528EE3C67FE841C3AA87EC1AE7D8E31_inline(L_38, /*hidden argument*/NULL);
Image_set_sprite_m77F8D681D4EE6D58F4F235AFF704C3EB165A9646(L_37, L_39, /*hidden argument*/NULL);
// item.image.enabled = (item.image.sprite != null);
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_40 = V_0;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_41 = DropdownItem_get_image_m2879EEFCAB097FBA79BC4DA41ECBA4EBE3CB6185_inline(L_40, /*hidden argument*/NULL);
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_42 = V_0;
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_43 = DropdownItem_get_image_m2879EEFCAB097FBA79BC4DA41ECBA4EBE3CB6185_inline(L_42, /*hidden argument*/NULL);
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_44 = Image_get_sprite_m642D753672A8CBCEB67950914B44EF34C62DD137_inline(L_43, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_45 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_44, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
Behaviour_set_enabled_m9755D3B17D7022D23D1E4C618BD9A6B66A5ADC6B(L_41, L_45, /*hidden argument*/NULL);
}
IL_00dd:
{
// items.Add(item);
List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * L_46 = ___items3;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_47 = V_0;
List_1_Add_m8575648623727491C638FB4E8D7F5E1A1E4863F7(L_46, L_47, /*hidden argument*/List_1_Add_m8575648623727491C638FB4E8D7F5E1A1E4863F7_RuntimeMethod_var);
// return item;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_48 = V_0;
return L_48;
}
}
// System.Void UnityEngine.UI.Dropdown::AlphaFadeList(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_AlphaFadeList_m7E0D67E3ED4F3578B5850B47E4A6F9CFF19A49BB (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, float ___duration0, float ___alpha1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_AlphaFadeList_m7E0D67E3ED4F3578B5850B47E4A6F9CFF19A49BB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90 * V_0 = NULL;
{
// CanvasGroup group = m_Dropdown.GetComponent<CanvasGroup>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = __this->get_m_Dropdown_29();
CanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90 * L_1 = GameObject_GetComponent_TisCanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90_m1E62EC28BAFB3FD20C659FFCDADD4A12105219E0(L_0, /*hidden argument*/GameObject_GetComponent_TisCanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90_m1E62EC28BAFB3FD20C659FFCDADD4A12105219E0_RuntimeMethod_var);
V_0 = L_1;
// AlphaFadeList(duration, group.alpha, alpha);
float L_2 = ___duration0;
CanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90 * L_3 = V_0;
float L_4 = CanvasGroup_get_alpha_mF6AFB387E643765758F1461369A65F59BA06D26E(L_3, /*hidden argument*/NULL);
float L_5 = ___alpha1;
Dropdown_AlphaFadeList_m86254B5CBD02903E1D9AF108EB1E86234DCE45E2(__this, L_2, L_4, L_5, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.Dropdown::AlphaFadeList(System.Single,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_AlphaFadeList_m86254B5CBD02903E1D9AF108EB1E86234DCE45E2 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, float ___duration0, float ___start1, float ___end2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_AlphaFadeList_m86254B5CBD02903E1D9AF108EB1E86234DCE45E2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A V_0;
memset((&V_0), 0, sizeof(V_0));
FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A V_1;
memset((&V_1), 0, sizeof(V_1));
{
// if (end.Equals(start))
float L_0 = ___start1;
bool L_1 = Single_Equals_mCDFA927E712FBA83D076864E16C77E39A6E66FE7((float*)(&___end2), L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_000b;
}
}
{
// return;
return;
}
IL_000b:
{
// FloatTween tween = new FloatTween {duration = duration, startValue = start, targetValue = end};
il2cpp_codegen_initobj((&V_1), sizeof(FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A ));
float L_2 = ___duration0;
FloatTween_set_duration_m81021898C4F8F1F4D434CA46EAC596E0CC0F200B_inline((FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A *)(&V_1), L_2, /*hidden argument*/NULL);
float L_3 = ___start1;
FloatTween_set_startValue_m281ACCD10E8DCB7ADED2B25EB093EE5DCFFF57D8_inline((FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A *)(&V_1), L_3, /*hidden argument*/NULL);
float L_4 = ___end2;
FloatTween_set_targetValue_m948DD0F17FE536F38BFA213D13711B781934165F_inline((FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A *)(&V_1), L_4, /*hidden argument*/NULL);
FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A L_5 = V_1;
V_0 = L_5;
// tween.AddOnChangedCallback(SetAlpha);
UnityAction_1_t0064196FB7635B812E65BA9FD08D39F68C75DCD9 * L_6 = (UnityAction_1_t0064196FB7635B812E65BA9FD08D39F68C75DCD9 *)il2cpp_codegen_object_new(UnityAction_1_t0064196FB7635B812E65BA9FD08D39F68C75DCD9_il2cpp_TypeInfo_var);
UnityAction_1__ctor_mDF0761DC432ADAE690B100D381AAEE87CD2C3DCB(L_6, __this, (intptr_t)((intptr_t)Dropdown_SetAlpha_mEFF1F7A014A6A66AEFFA937DA3EE8591B7F2336D_RuntimeMethod_var), /*hidden argument*/UnityAction_1__ctor_mDF0761DC432ADAE690B100D381AAEE87CD2C3DCB_RuntimeMethod_var);
FloatTween_AddOnChangedCallback_mADD5FACCDFA9E77C08CA65B8E5D33AE06DB79D50((FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A *)(&V_0), L_6, /*hidden argument*/NULL);
// tween.ignoreTimeScale = true;
FloatTween_set_ignoreTimeScale_mC586D01F34D6C88892AB3C70A3298C4C7C45EA4D_inline((FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A *)(&V_0), (bool)1, /*hidden argument*/NULL);
// m_AlphaTweenRunner.StartTween(tween);
TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF * L_7 = __this->get_m_AlphaTweenRunner_32();
FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A L_8 = V_0;
TweenRunner_1_StartTween_mCD6A38F2A78EADA8BFD4D710333E6263D32DAEFE(L_7, L_8, /*hidden argument*/TweenRunner_1_StartTween_mCD6A38F2A78EADA8BFD4D710333E6263D32DAEFE_RuntimeMethod_var);
// }
return;
}
}
// System.Void UnityEngine.UI.Dropdown::SetAlpha(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_SetAlpha_mEFF1F7A014A6A66AEFFA937DA3EE8591B7F2336D (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, float ___alpha0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_SetAlpha_mEFF1F7A014A6A66AEFFA937DA3EE8591B7F2336D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (!m_Dropdown)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = __this->get_m_Dropdown_29();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534(L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_000e;
}
}
{
// return;
return;
}
IL_000e:
{
// CanvasGroup group = m_Dropdown.GetComponent<CanvasGroup>();
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_2 = __this->get_m_Dropdown_29();
CanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90 * L_3 = GameObject_GetComponent_TisCanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90_m1E62EC28BAFB3FD20C659FFCDADD4A12105219E0(L_2, /*hidden argument*/GameObject_GetComponent_TisCanvasGroup_tE2C664C60990D1DCCEE0CC6545CC3E80369C7F90_m1E62EC28BAFB3FD20C659FFCDADD4A12105219E0_RuntimeMethod_var);
// group.alpha = alpha;
float L_4 = ___alpha0;
CanvasGroup_set_alpha_m7E3C4DCD13E6B1FD43C797EFF9698BACA1FBEC3D(L_3, L_4, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.Dropdown::Hide()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_Hide_m396A627BAA21433514959C71BD8B13A31B7B99A8 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_Hide_m396A627BAA21433514959C71BD8B13A31B7B99A8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// if (m_Dropdown != null)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = __this->get_m_Dropdown_29();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_0, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_003a;
}
}
{
// AlphaFadeList(m_AlphaFadeSpeed, 0f);
float L_2 = __this->get_m_AlphaFadeSpeed_28();
Dropdown_AlphaFadeList_m7E0D67E3ED4F3578B5850B47E4A6F9CFF19A49BB(__this, L_2, (0.0f), /*hidden argument*/NULL);
// if (IsActive())
bool L_3 = VirtFuncInvoker0< bool >::Invoke(9 /* System.Boolean UnityEngine.EventSystems.UIBehaviour::IsActive() */, __this);
if (!L_3)
{
goto IL_003a;
}
}
{
// StartCoroutine(DelayedDestroyDropdownList(m_AlphaFadeSpeed));
float L_4 = __this->get_m_AlphaFadeSpeed_28();
RuntimeObject* L_5 = Dropdown_DelayedDestroyDropdownList_m09235010EDBDA0A0341350E1D34BC0BA9A326CBF(__this, L_4, /*hidden argument*/NULL);
MonoBehaviour_StartCoroutine_mBF8044CE06A35D76A69669ADD8977D05956616B7(__this, L_5, /*hidden argument*/NULL);
}
IL_003a:
{
// if (m_Blocker != null)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_6 = __this->get_m_Blocker_30();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_7 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_6, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0054;
}
}
{
// DestroyBlocker(m_Blocker);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_8 = __this->get_m_Blocker_30();
VirtActionInvoker1< GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * >::Invoke(46 /* System.Void UnityEngine.UI.Dropdown::DestroyBlocker(UnityEngine.GameObject) */, __this, L_8);
}
IL_0054:
{
// m_Blocker = null;
__this->set_m_Blocker_30((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL);
// Select();
VirtActionInvoker0::Invoke(38 /* System.Void UnityEngine.UI.Selectable::Select() */, __this);
// }
return;
}
}
// System.Collections.IEnumerator UnityEngine.UI.Dropdown::DelayedDestroyDropdownList(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dropdown_DelayedDestroyDropdownList_m09235010EDBDA0A0341350E1D34BC0BA9A326CBF (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, float ___delay0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_DelayedDestroyDropdownList_m09235010EDBDA0A0341350E1D34BC0BA9A326CBF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
U3CDelayedDestroyDropdownListU3Ed__74_tE1C8F40CDF9DE52D3A9F431CB712B752DE9F6D69 * L_0 = (U3CDelayedDestroyDropdownListU3Ed__74_tE1C8F40CDF9DE52D3A9F431CB712B752DE9F6D69 *)il2cpp_codegen_object_new(U3CDelayedDestroyDropdownListU3Ed__74_tE1C8F40CDF9DE52D3A9F431CB712B752DE9F6D69_il2cpp_TypeInfo_var);
U3CDelayedDestroyDropdownListU3Ed__74__ctor_mAD9EFC641FEA13E4B5E4BE5013C1784223CAEC3E(L_0, 0, /*hidden argument*/NULL);
U3CDelayedDestroyDropdownListU3Ed__74_tE1C8F40CDF9DE52D3A9F431CB712B752DE9F6D69 * L_1 = L_0;
L_1->set_U3CU3E4__this_3(__this);
U3CDelayedDestroyDropdownListU3Ed__74_tE1C8F40CDF9DE52D3A9F431CB712B752DE9F6D69 * L_2 = L_1;
float L_3 = ___delay0;
L_2->set_delay_2(L_3);
return L_2;
}
}
// System.Void UnityEngine.UI.Dropdown::ImmediateDestroyDropdownList()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_ImmediateDestroyDropdownList_mB3CE7E1B2B95662433A48B5BA20A51755AAE677E (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_ImmediateDestroyDropdownList_mB3CE7E1B2B95662433A48B5BA20A51755AAE677E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
// for (int i = 0; i < m_Items.Count; i++)
V_0 = 0;
goto IL_002e;
}
IL_0004:
{
// if (m_Items[i] != null)
List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * L_0 = __this->get_m_Items_31();
int32_t L_1 = V_0;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_2 = List_1_get_Item_m82CCD5EC107FD608ACAAE67A6ED50F1076469157_inline(L_0, L_1, /*hidden argument*/List_1_get_Item_m82CCD5EC107FD608ACAAE67A6ED50F1076469157_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_3 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_2, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_002a;
}
}
{
// DestroyItem(m_Items[i]);
List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * L_4 = __this->get_m_Items_31();
int32_t L_5 = V_0;
DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * L_6 = List_1_get_Item_m82CCD5EC107FD608ACAAE67A6ED50F1076469157_inline(L_4, L_5, /*hidden argument*/List_1_get_Item_m82CCD5EC107FD608ACAAE67A6ED50F1076469157_RuntimeMethod_var);
VirtActionInvoker1< DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * >::Invoke(50 /* System.Void UnityEngine.UI.Dropdown::DestroyItem(UnityEngine.UI.Dropdown/DropdownItem) */, __this, L_6);
}
IL_002a:
{
// for (int i = 0; i < m_Items.Count; i++)
int32_t L_7 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
}
IL_002e:
{
// for (int i = 0; i < m_Items.Count; i++)
int32_t L_8 = V_0;
List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * L_9 = __this->get_m_Items_31();
int32_t L_10 = List_1_get_Count_mDC92CDF088A4BBE454D68D038801327048A187E9_inline(L_9, /*hidden argument*/List_1_get_Count_mDC92CDF088A4BBE454D68D038801327048A187E9_RuntimeMethod_var);
if ((((int32_t)L_8) < ((int32_t)L_10)))
{
goto IL_0004;
}
}
{
// m_Items.Clear();
List_1_t836CD930F5F0862929A362435417DA9BCD4186F8 * L_11 = __this->get_m_Items_31();
List_1_Clear_mDBBCE26B5F5EC83363B9BA4E83C11CCBD8731A6B(L_11, /*hidden argument*/List_1_Clear_mDBBCE26B5F5EC83363B9BA4E83C11CCBD8731A6B_RuntimeMethod_var);
// if (m_Dropdown != null)
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_12 = __this->get_m_Dropdown_29();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_13 = Object_op_Inequality_m31EF58E217E8F4BDD3E409DEF79E1AEE95874FC1(L_12, (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)NULL, /*hidden argument*/NULL);
if (!L_13)
{
goto IL_0061;
}
}
{
// DestroyDropdownList(m_Dropdown);
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_14 = __this->get_m_Dropdown_29();
VirtActionInvoker1< GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * >::Invoke(48 /* System.Void UnityEngine.UI.Dropdown::DestroyDropdownList(UnityEngine.GameObject) */, __this, L_14);
}
IL_0061:
{
// m_Dropdown = null;
__this->set_m_Dropdown_29((GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.Dropdown::OnSelectItem(UnityEngine.UI.Toggle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown_OnSelectItem_m28AC73C405708C623F4EE5C42E61D5C8D2ECC011 (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * ___toggle0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown_OnSelectItem_m28AC73C405708C623F4EE5C42E61D5C8D2ECC011_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * V_1 = NULL;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * V_2 = NULL;
int32_t V_3 = 0;
{
// if (!toggle.isOn)
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_0 = ___toggle0;
bool L_1 = Toggle_get_isOn_mA34B03BED48C7189F0AB8498F986485B4CD6B44A_inline(L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_000f;
}
}
{
// toggle.isOn = true;
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_2 = ___toggle0;
Toggle_set_isOn_mCAA660F49688DBA29E896B961E0054154C42EA2B(L_2, (bool)1, /*hidden argument*/NULL);
}
IL_000f:
{
// int selectedIndex = -1;
V_0 = (-1);
// Transform tr = toggle.transform;
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_3 = ___toggle0;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_4 = Component_get_transform_m00F05BD782F920C301A7EBA480F3B7A904C07EC9(L_3, /*hidden argument*/NULL);
V_1 = L_4;
// Transform parent = tr.parent;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_5 = V_1;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_6 = Transform_get_parent_m8FA24E38A1FA29D90CBF3CDC9F9F017C65BB3403(L_5, /*hidden argument*/NULL);
V_2 = L_6;
// for (int i = 0; i < parent.childCount; i++)
V_3 = 0;
goto IL_003c;
}
IL_0023:
{
// if (parent.GetChild(i) == tr)
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_7 = V_2;
int32_t L_8 = V_3;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_9 = Transform_GetChild_mC86B9B61E4EC086A571B09EA7A33FFBF50DF52D3(L_7, L_8, /*hidden argument*/NULL);
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_10 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_11 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_9, L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0038;
}
}
{
// selectedIndex = i - 1;
int32_t L_12 = V_3;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1));
// break;
goto IL_0045;
}
IL_0038:
{
// for (int i = 0; i < parent.childCount; i++)
int32_t L_13 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
}
IL_003c:
{
// for (int i = 0; i < parent.childCount; i++)
int32_t L_14 = V_3;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * L_15 = V_2;
int32_t L_16 = Transform_get_childCount_m7665D779DCDB6B175FB52A254276CDF0C384A724(L_15, /*hidden argument*/NULL);
if ((((int32_t)L_14) < ((int32_t)L_16)))
{
goto IL_0023;
}
}
IL_0045:
{
// if (selectedIndex < 0)
int32_t L_17 = V_0;
if ((((int32_t)L_17) >= ((int32_t)0)))
{
goto IL_004a;
}
}
{
// return;
return;
}
IL_004a:
{
// value = selectedIndex;
int32_t L_18 = V_0;
Dropdown_set_value_m155A45649AB62AC1B7AB10213EA556F22E8E91F3(__this, L_18, /*hidden argument*/NULL);
// Hide();
Dropdown_Hide_m396A627BAA21433514959C71BD8B13A31B7B99A8(__this, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.UI.Dropdown::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dropdown__cctor_mC1DD8DB000D6E2DCA6CD41C429DDF120B6535442 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Dropdown__cctor_mC1DD8DB000D6E2DCA6CD41C429DDF120B6535442_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// private static OptionData s_NoOptionData = new OptionData();
OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * L_0 = (OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 *)il2cpp_codegen_object_new(OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831_il2cpp_TypeInfo_var);
OptionData__ctor_m45CB705FD6717ECEBDDA3E6F137BCC38C388CA1F(L_0, /*hidden argument*/NULL);
((Dropdown_tF6331401084B1213CAB10587A6EC81461501930F_StaticFields*)il2cpp_codegen_static_fields_for(Dropdown_tF6331401084B1213CAB10587A6EC81461501930F_il2cpp_TypeInfo_var))->set_s_NoOptionData_34(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void AxisEventData_set_moveVector_m863F26BE1230CBCCA2DEF5651CE0FC8B8F1D45A3_inline (AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method)
{
{
// public Vector2 moveVector { get; set; }
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = ___value0;
__this->set_U3CmoveVectorU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void AxisEventData_set_moveDir_m6C647B27688638E9C02A98E47BEC5292C07465EE_inline (AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public MoveDirection moveDir { get; set; }
int32_t L_0 = ___value0;
__this->set_U3CmoveDirU3Ek__BackingField_3(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * EventSystem_get_currentInputModule_mAA917C940E32ECAC4324D6824A9E0A951F16D891_inline (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method)
{
{
// get { return m_CurrentInputModule; }
BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * L_0 = __this->get_m_CurrentInputModule_5();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * EventSystem_get_currentSelectedGameObject_mE28E78D268403602DE1FB6F059EE3E9CDB7325A4_inline (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method)
{
{
// get { return m_CurrentSelected; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = __this->get_m_CurrentSelected_10();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * RaycastResult_get_gameObject_m9D77DEDFF498BAFE29A5F88E9F238400D04C8FDD_inline (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * __this, const RuntimeMethod* method)
{
{
// get { return m_GameObject; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = __this->get_m_GameObject_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * PointerEventData_get_pointerEnter_m47E87ACB1557B6380D0E66F57C2F9FFFD5E86DC2_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public GameObject pointerEnter { get; set; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = __this->get_U3CpointerEnterU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA * ExecuteEvents_get_pointerExitHandler_mE5EC9537676A055EEE178A4E6B58D96F9B4AC301_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_pointerExitHandler_mE5EC9537676A055EEE178A4E6B58D96F9B4AC301UnityEngine_UI_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_PointerExitHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t156B38372E4198DF5F3BFB91B163298206561AAA * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_PointerExitHandler_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_pointerEnter_mCA947226697EEC596FD611B31C10D7CE981026CC_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___value0, const RuntimeMethod* method)
{
{
// public GameObject pointerEnter { get; set; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___value0;
__this->set_U3CpointerEnterU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 * ExecuteEvents_get_pointerEnterHandler_mFD5296E38EB1C5EB6D16CB83913430FEEBF889A5_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_pointerEnterHandler_mFD5296E38EB1C5EB6D16CB83913430FEEBF889A5UnityEngine_UI_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_PointerEnterHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t500F03BFA685F0E6C5888E69E10E9A4BDCFF29E4 * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_PointerEnterHandler_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * BaseInputModule_get_eventSystem_mEF6DEC17FF56D786AA217A52FCCFE8C6F38546BE_inline (BaseInputModule_t904837FCFA79B6C3CED862FF85C9C5F8D6F32939 * __this, const RuntimeMethod* method)
{
{
// get { return m_EventSystem; }
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * L_0 = __this->get_m_EventSystem_6();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 * ExecuteEvents_get_deselectHandler_mEAA9E3701CC972EFDD20B30E9B3CD9302B2FD668_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_deselectHandler_mEAA9E3701CC972EFDD20B30E9B3CD9302B2FD668UnityEngine_UI_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_DeselectHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t945B1CBADCA0B509D2BDA6B166CBCCBC80030FC8 * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_DeselectHandler_13();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_t7521247C87411935E8A2CA38683533083459473F * ExecuteEvents_get_selectHandler_m26186C0D78CA4A8AFA0789A09F488F7E186BE1C8_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_selectHandler_m26186C0D78CA4A8AFA0789A09F488F7E186BE1C8UnityEngine_UI_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_SelectHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t7521247C87411935E8A2CA38683533083459473F * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_SelectHandler_12();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR List_1_tE44A303DE85018C722D021A9716A97568780A0E1 * RaycasterManager_GetRaycasters_mA2491B7F058FB2DA88179C0BDE0EFB0B0E28B740_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RaycasterManager_GetRaycasters_mA2491B7F058FB2DA88179C0BDE0EFB0B0E28B740UnityEngine_UI_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// return s_Raycasters;
IL2CPP_RUNTIME_CLASS_INIT(RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_il2cpp_TypeInfo_var);
List_1_tE44A303DE85018C722D021A9716A97568780A0E1 * L_0 = ((RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_StaticFields*)il2cpp_codegen_static_fields_for(RaycasterManager_tB52F7D391E0E8A513AC945496EACEC93B2D83C3A_il2cpp_TypeInfo_var))->get_s_Raycasters_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void EventTrigger_set_triggers_mF70F72B1E143AEE94E07B032C3E057A22625467C_inline (EventTrigger_t594B0A2EC0E92150FF56250E207ECB7A90BB6298 * __this, List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 * ___value0, const RuntimeMethod* method)
{
{
// set { m_Delegates = value; }
List_1_tC15A65556094A4ABD5351623DC379450BBA4C2E2 * L_0 = ___value0;
__this->set_m_Delegates_4(L_0);
// set { m_Delegates = value; }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t PhysicsRaycaster_get_maxRayIntersections_m473112CC291635C45D0590CC4B03C07D652FB69A_inline (PhysicsRaycaster_tA2270920B561715BFCB1BDF0D759889B5985826C * __this, const RuntimeMethod* method)
{
{
// get { return m_MaxRayIntersections; }
int32_t L_0 = __this->get_m_MaxRayIntersections_8();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void RaycastResult_set_gameObject_m5EF3316E0D32FC1B45BB2BC087EC42E436DA1C07_inline (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___value0, const RuntimeMethod* method)
{
{
// set { m_GameObject = value; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___value0;
__this->set_m_GameObject_0(L_0);
// set { m_GameObject = value; }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D PointerEventData_get_position_mF25FC495A9C968C65BF34B5984616CBFB6332D55_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public Vector2 position { get; set; }
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = __this->get_U3CpositionU3Ek__BackingField_12();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_eligibleForClick_m403F4068866F6A5CC9814729B3918C8FF1C21DBD_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool eligibleForClick { get; set; }
bool L_0 = ___value0;
__this->set_U3CeligibleForClickU3Ek__BackingField_10(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_pointerId_m4CF9E4E445D841D14E46AE00B0B687EE3435C03E_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public int pointerId { get; set; }
int32_t L_0 = ___value0;
__this->set_U3CpointerIdU3Ek__BackingField_11(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_position_mD63B59E6D4EF9B2B2E26D1F4893A7C67BD04266A_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method)
{
{
// public Vector2 position { get; set; }
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = ___value0;
__this->set_U3CpositionU3Ek__BackingField_12(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_delta_mDFEB23DF789E945F2CEC51C1F902CEE6AF674415_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method)
{
{
// public Vector2 delta { get; set; }
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = ___value0;
__this->set_U3CdeltaU3Ek__BackingField_13(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_pressPosition_m9DDE0BA5D6C31CBCDA926CEB62E51140F23013EA_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method)
{
{
// public Vector2 pressPosition { get; set; }
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = ___value0;
__this->set_U3CpressPositionU3Ek__BackingField_14(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_clickTime_mFB2FD722D5898826A1D57379C153B8023272653C_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, float ___value0, const RuntimeMethod* method)
{
{
// public float clickTime { get; set; }
float L_0 = ___value0;
__this->set_U3CclickTimeU3Ek__BackingField_17(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_clickCount_mE56F748082C3D03A340345630FAC2B119451E003_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public int clickCount { get; set; }
int32_t L_0 = ___value0;
__this->set_U3CclickCountU3Ek__BackingField_18(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_scrollDelta_m2B7F400B1DD1B45C36D22F291E625B02C76F9751_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value0, const RuntimeMethod* method)
{
{
// public Vector2 scrollDelta { get; set; }
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = ___value0;
__this->set_U3CscrollDeltaU3Ek__BackingField_19(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_useDragThreshold_mB5F06D15C2D1DB8D57F5B79CAEC3F58E4BF79684_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool useDragThreshold { get; set; }
bool L_0 = ___value0;
__this->set_U3CuseDragThresholdU3Ek__BackingField_20(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_dragging_m4A4C08AB5A2173557EA62190F47AEFF1E9332821_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool dragging { get; set; }
bool L_0 = ___value0;
__this->set_U3CdraggingU3Ek__BackingField_21(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_button_mD5D63D10CFE13D720287DD76AE0D8A852F8324CC_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public InputButton button { get; set; }
int32_t L_0 = ___value0;
__this->set_U3CbuttonU3Ek__BackingField_22(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D PointerEventData_get_delta_mC5D62E985D40A7708316C6E07B699B96D9C8184E_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public Vector2 delta { get; set; }
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = __this->get_U3CdeltaU3Ek__BackingField_13();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D PointerEventData_get_scrollDelta_mF473A122C860EC5279F6F5D085912BDA6418690B_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public Vector2 scrollDelta { get; set; }
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = __this->get_U3CscrollDeltaU3Ek__BackingField_19();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 PointerEventData_get_pointerCurrentRaycast_mE58F786484E13AF2E6C2706E20C889E7453E3A7A_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public RaycastResult pointerCurrentRaycast { get; set; }
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_0 = __this->get_U3CpointerCurrentRaycastU3Ek__BackingField_7();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 PointerEventData_get_pointerPressRaycast_m722BCA823E0405C9DF20312CDFBBEB5B1B05B7AE_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public RaycastResult pointerPressRaycast { get; set; }
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_0 = __this->get_U3CpointerPressRaycastU3Ek__BackingField_8();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_lastPress_m3A938CE59A47898263BE6A6F880A3B3CD21D063D_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___value0, const RuntimeMethod* method)
{
{
// public GameObject lastPress { get; private set; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___value0;
__this->set_U3ClastPressU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool PointerEventData_get_eligibleForClick_m2039146EE2E6940436E592D0655FBA06096DBFFA_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public bool eligibleForClick { get; set; }
bool L_0 = __this->get_U3CeligibleForClickU3Ek__BackingField_10();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * PointerEventData_get_pointerPress_m7B8C9E16E2B9E86C4DA93A2A2E3A58E56536406B_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// get { return m_PointerPress; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = __this->get_m_PointerPress_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * PointerEventData_get_lastPress_m6B005D786FC5B30ECD8D5BC068420D0C361357F4_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public GameObject lastPress { get; private set; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = __this->get_U3ClastPressU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * PointerEventData_get_pointerDrag_m20299CC70BC6DA11AFDB8A33A957AC306FBEE5C7_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public GameObject pointerDrag { get; set; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = __this->get_U3CpointerDragU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool PointerEventData_get_useDragThreshold_mD254C2D9572E12F10EC86A21F28E4284EE29D39A_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public bool useDragThreshold { get; set; }
bool L_0 = __this->get_U3CuseDragThresholdU3Ek__BackingField_20();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t PointerEventData_get_pointerId_m73B8DCE39BDCB5BD7894D192DDA7FF8817FBE6C6_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public int pointerId { get; set; }
int32_t L_0 = __this->get_U3CpointerIdU3Ek__BackingField_11();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_pointerCurrentRaycast_m0B0B77AF61C5402D29574A9031AEED66AE4C8455_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___value0, const RuntimeMethod* method)
{
{
// public RaycastResult pointerCurrentRaycast { get; set; }
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_0 = ___value0;
__this->set_U3CpointerCurrentRaycastU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool PointerEventData_get_dragging_mA3B420FFEB0856189D7A7646AA00A981C745D4B4_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public bool dragging { get; set; }
bool L_0 = __this->get_U3CdraggingU3Ek__BackingField_21();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D PointerEventData_get_pressPosition_m7C8D5A54C81C801EB577A60718C4211DFA1A3624_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public Vector2 pressPosition { get; set; }
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = __this->get_U3CpressPositionU3Ek__BackingField_14();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventSystem_get_pixelDragThreshold_m8E8607E0C4E56387677507B45455A24D4680E0D3_inline (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method)
{
{
// get { return m_DragThreshold; }
int32_t L_0 = __this->get_m_DragThreshold_9();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 * ExecuteEvents_get_beginDragHandler_m7F238765714F73899EAFDF0BA203D9A8A57AED31_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_beginDragHandler_m7F238765714F73899EAFDF0BA203D9A8A57AED31UnityEngine_UI_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_BeginDragHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t51AEB71F82F660F259E3704B0234135B58AFFC27 * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_BeginDragHandler_6();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 * ExecuteEvents_get_pointerUpHandler_m7EDDD1128DC04344CECEBCB9B6B7CD064F7FAED2_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_pointerUpHandler_m7EDDD1128DC04344CECEBCB9B6B7CD064F7FAED2UnityEngine_UI_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_PointerUpHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_tB4C54A8FCB75F989CB93F264C377A493ADE6C3B6 * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_PointerUpHandler_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_rawPointerPress_mB7E32587FD73925A689A71FCAB560F9B78A233A5_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___value0, const RuntimeMethod* method)
{
{
// public GameObject rawPointerPress { get; set; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___value0;
__this->set_U3CrawPointerPressU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 * ExecuteEvents_get_dragHandler_m41B7D77771806788CD773C83C2E5A53D5ED5B179_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_dragHandler_m41B7D77771806788CD773C83C2E5A53D5ED5B179UnityEngine_UI_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_DragHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t0E9496F82F057823DBF9B209D6D8F04FC499CEA1 * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_DragHandler_7();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * ButtonState_get_eventData_mA9D054D526473A2481A997758CDDEB022E67351D_inline (ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * __this, const RuntimeMethod* method)
{
{
// get { return m_EventData; }
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_0 = __this->get_m_EventData_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t ButtonState_get_button_mB538B2D483C482A7E628D26BA390449A54C958A3_inline (ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * __this, const RuntimeMethod* method)
{
{
// get { return m_Button; }
int32_t L_0 = __this->get_m_Button_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ButtonState_set_button_mCC7BFBDDA9AA0710CBB64C456583CDCBAD227971_inline (ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set { m_Button = value; }
int32_t L_0 = ___value0;
__this->set_m_Button_0(L_0);
// set { m_Button = value; }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ButtonState_set_eventData_m844CA9F09A826E89AF0F8F137C016D96C71B30BD_inline (ButtonState_tCF0544E1131CD058FABBEE56FA1D0A4716A17F9D * __this, MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * ___value0, const RuntimeMethod* method)
{
{
// set { m_EventData = value; }
MouseButtonEventData_tDD4D7A2BEE7C4674ADFD921AB2323FBFF7317988 * L_0 = ___value0;
__this->set_m_EventData_1(L_0);
// set { m_EventData = value; }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool EventSystem_get_isFocused_mB7275507B3AFEC15722B1F128CACB1BA578AEC3B_inline (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method)
{
{
// get { return m_HasFocus; }
bool L_0 = __this->get_m_HasFocus_11();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E * ExecuteEvents_get_pointerClickHandler_mA657195AEC7D0A42036CBCAC9AD48F215C3C69E3_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_pointerClickHandler_mA657195AEC7D0A42036CBCAC9AD48F215C3C69E3UnityEngine_UI_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_PointerClickHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t7BFB6A90DB6AE5607866DE2A89133CA327285B1E * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_PointerClickHandler_4();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 * ExecuteEvents_get_dropHandler_mC2362B96C6CD3628B83722F4B7C73E707C6C1EAF_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_dropHandler_mC2362B96C6CD3628B83722F4B7C73E707C6C1EAFUnityEngine_UI_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_DropHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t720BFA53CC728483A4F8F3E442824FBB413960B5 * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_DropHandler_9();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 * ExecuteEvents_get_endDragHandler_m23B60D3E3873043263069A3C3145393475690769_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_endDragHandler_m23B60D3E3873043263069A3C3145393475690769UnityEngine_UI_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_EndDragHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t27247279794E7FDE55DC4CE9990E1DED38CDAF20 * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_EndDragHandler_8();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_pointerDrag_m7E4BF3CF39EF734A80FA1994310FB09A5B095AF8_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___value0, const RuntimeMethod* method)
{
{
// public GameObject pointerDrag { get; set; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = ___value0;
__this->set_U3CpointerDragU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * EventSystem_get_firstSelectedGameObject_m8CAFDA874F89BDA34E0984860046C1C171B200E1_inline (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method)
{
{
// get { return m_FirstSelected; }
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_0 = __this->get_m_FirstSelected_7();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool EventSystem_get_sendNavigationEvents_m38D86573D180189D107B782AD1F1ED183D45DAD3_inline (EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * __this, const RuntimeMethod* method)
{
{
// get { return m_sendNavigationEvents; }
bool L_0 = __this->get_m_sendNavigationEvents_8();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void PointerEventData_set_pointerPressRaycast_m559F6127EC11B0F1B5EEB7BFCA478128DE8E5536_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___value0, const RuntimeMethod* method)
{
{
// public RaycastResult pointerPressRaycast { get; set; }
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_0 = ___value0;
__this->set_U3CpointerPressRaycastU3Ek__BackingField_8(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E * ExecuteEvents_get_pointerDownHandler_m8AE9CA906C86BBBEB75BA2D05F5DAB01F62519E3_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_pointerDownHandler_m8AE9CA906C86BBBEB75BA2D05F5DAB01F62519E3UnityEngine_UI_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_PointerDownHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t94FBBDEF418C6167886272036699D1A74444B57E * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_PointerDownHandler_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float PointerEventData_get_clickTime_m023B539AF9EDF3782FD9406EC79F4742C855A3AF_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public float clickTime { get; set; }
float L_0 = __this->get_U3CclickTimeU3Ek__BackingField_17();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t PointerEventData_get_clickCount_mF3A09A090E418FAAAFFE55668D9761C2F23BCE24_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public int clickCount { get; set; }
int32_t L_0 = __this->get_U3CclickCountU3Ek__BackingField_18();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 * ExecuteEvents_get_initializePotentialDrag_m5B3D899EB08DA227EFBFC67778DDB98D7505C6D4_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_initializePotentialDrag_m5B3D899EB08DA227EFBFC67778DDB98D7505C6D4UnityEngine_UI_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_InitializePotentialDragHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_tBDB74EA8100B6A332148C484883D175247B86418 * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_InitializePotentialDragHandler_5();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B * ExecuteEvents_get_submitHandler_m734C2BE2F7CDA7F5C42897E3C8023D3C7E1EDF88_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_submitHandler_m734C2BE2F7CDA7F5C42897E3C8023D3C7E1EDF88UnityEngine_UI_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_SubmitHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t5BB945D5F864E6359484E402D1FE8929D197BE5B * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_SubmitHandler_15();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 * ExecuteEvents_get_cancelHandler_m5DB4A9513FB8B9248AE555F7D8E8043175B8D995_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_cancelHandler_m5DB4A9513FB8B9248AE555F7D8E8043175B8D995UnityEngine_UI_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_CancelHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_tB1E06A1C7DCF49735FC24FF0D18D41AC38573258 * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_CancelHandler_16();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t AxisEventData_get_moveDir_mD9CF8343509BAE60C581138D824F9C53659DBBD4_inline (AxisEventData_t6684191CFC2ADB0DD66DD195174D92F017862442 * __this, const RuntimeMethod* method)
{
{
// public MoveDirection moveDir { get; set; }
int32_t L_0 = __this->get_U3CmoveDirU3Ek__BackingField_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB * ExecuteEvents_get_moveHandler_m113A4222FC10723B2E38398E182C02F6624D6F24_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_moveHandler_m113A4222FC10723B2E38398E182C02F6624D6F24UnityEngine_UI_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_MoveHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_tB2C19C9019D16125E4D50F9E2BD670A9A4DE01FB * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_MoveHandler_14();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A * ExecuteEvents_get_scrollHandler_m48E5B17388986BD59EC7A7BF27E3D30A9FD057F7_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_scrollHandler_m48E5B17388986BD59EC7A7BF27E3D30A9FD057F7UnityEngine_UI_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_ScrollHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_t5B706CE4B39EE6E9686FF18638472F67BD7FB99A * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_ScrollHandler_10();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 * ExecuteEvents_get_updateSelectedHandler_mE18DBB058B1EDC75D4F690A1E35003749BBC0567_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ExecuteEvents_get_updateSelectedHandler_mE18DBB058B1EDC75D4F690A1E35003749BBC0567UnityEngine_UI_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return s_UpdateSelectedHandler; }
IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var);
EventFunction_1_tB6296132C4DCDE6C05DD1F342941985DC893E173 * L_0 = ((ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t622B95FF46A568C8205B76C1D4111049FC265985_il2cpp_TypeInfo_var))->get_s_UpdateSelectedHandler_11();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool TouchInputModule_get_forceModuleActive_m000AEC6C27D5CA88EA2B87C33C9991F4F50D007F_inline (TouchInputModule_t9D8F03041D5F5C10102782C1FD3264794CF6F945 * __this, const RuntimeMethod* method)
{
{
// get { return m_ForceModuleActive; }
bool L_0 = __this->get_m_ForceModuleActive_19();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float AspectRatioFitter_get_aspectRatio_mCA6B68F9D4FB640574390BF43ACF3DC8D42AEF99_inline (AspectRatioFitter_t3CA8A085831067C09B872C67F6E7F6F4EBB967B6 * __this, const RuntimeMethod* method)
{
{
// public float aspectRatio { get { return m_AspectRatio; } set { if (SetPropertyUtility.SetStruct(ref m_AspectRatio, value)) SetDirty(); } }
float L_0 = __this->get_m_AspectRatio_5();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t PointerEventData_get_button_mC662D5DAC02F0ED6AE9205259116CC91BB92BD3E_inline (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * __this, const RuntimeMethod* method)
{
{
// public InputButton button { get; set; }
int32_t L_0 = __this->get_U3CbuttonU3Ek__BackingField_22();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA Selectable_get_colors_m9E63E13A7B6C40CB0F20414FFBE15873BE5F3E4E_inline (Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * __this, const RuntimeMethod* method)
{
{
// public ColorBlock colors { get { return m_Colors; } set { if (SetPropertyUtility.SetStruct(ref m_Colors, value)) OnSetProperty(); } }
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA L_0 = __this->get_m_Colors_9();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float ColorBlock_get_fadeDuration_mD5EA922E1FA90C1BA224652C1DFC25FEE93830D5_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, const RuntimeMethod* method)
{
{
// public float fadeDuration { get { return m_FadeDuration; } set { m_FadeDuration = value; } }
float L_0 = __this->get_m_FadeDuration_6();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E RectMask2D_get_padding_mAE70AF9C0ABD28AD225A2BFD4965C45883B31E20_inline (RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B * __this, const RuntimeMethod* method)
{
{
// get { return m_Padding; }
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_0 = __this->get_m_Padding_12();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorBlock_get_normalColor_mE0A4EBADEFB7A6F245F590B0A5DBB59F289C0905_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, const RuntimeMethod* method)
{
{
// public Color normalColor { get { return m_NormalColor; } set { m_NormalColor = value; } }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = __this->get_m_NormalColor_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ColorBlock_set_normalColor_mF36865F66914F3902ACAF7E64B3E6C664EA81911_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method)
{
{
// public Color normalColor { get { return m_NormalColor; } set { m_NormalColor = value; } }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = ___value0;
__this->set_m_NormalColor_0(L_0);
// public Color normalColor { get { return m_NormalColor; } set { m_NormalColor = value; } }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorBlock_get_highlightedColor_m779349828B304DB2551C3A3CCDDD69861A21EDFF_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, const RuntimeMethod* method)
{
{
// public Color highlightedColor { get { return m_HighlightedColor; } set { m_HighlightedColor = value; } }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = __this->get_m_HighlightedColor_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ColorBlock_set_highlightedColor_mAE0BF4A697744D841048D8BE9A0C8963226B4B3A_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method)
{
{
// public Color highlightedColor { get { return m_HighlightedColor; } set { m_HighlightedColor = value; } }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = ___value0;
__this->set_m_HighlightedColor_1(L_0);
// public Color highlightedColor { get { return m_HighlightedColor; } set { m_HighlightedColor = value; } }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorBlock_get_pressedColor_m19AA95DCC2519975D93202C997EECB3E06CE96E5_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, const RuntimeMethod* method)
{
{
// public Color pressedColor { get { return m_PressedColor; } set { m_PressedColor = value; } }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = __this->get_m_PressedColor_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ColorBlock_set_pressedColor_mAE69CAEBA8CA45E089F6C7CA2F1B8C530705E70B_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method)
{
{
// public Color pressedColor { get { return m_PressedColor; } set { m_PressedColor = value; } }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = ___value0;
__this->set_m_PressedColor_2(L_0);
// public Color pressedColor { get { return m_PressedColor; } set { m_PressedColor = value; } }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorBlock_get_selectedColor_mE6DDB9D2D3466CCFFFF000286619BEC4AB60F83D_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, const RuntimeMethod* method)
{
{
// public Color selectedColor { get { return m_SelectedColor; } set { m_SelectedColor = value; } }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = __this->get_m_SelectedColor_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ColorBlock_set_selectedColor_mA8B032467C571D28563D91766B0E956FB265ACC9_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method)
{
{
// public Color selectedColor { get { return m_SelectedColor; } set { m_SelectedColor = value; } }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = ___value0;
__this->set_m_SelectedColor_3(L_0);
// public Color selectedColor { get { return m_SelectedColor; } set { m_SelectedColor = value; } }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorBlock_get_disabledColor_mD865FC8BCFE7B8535A51A68E78130409F3C97FC8_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, const RuntimeMethod* method)
{
{
// public Color disabledColor { get { return m_DisabledColor; } set { m_DisabledColor = value; } }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = __this->get_m_DisabledColor_4();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ColorBlock_set_disabledColor_m530D0573E0257BAB82F2FFEA0E22C743911B4588_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method)
{
{
// public Color disabledColor { get { return m_DisabledColor; } set { m_DisabledColor = value; } }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = ___value0;
__this->set_m_DisabledColor_4(L_0);
// public Color disabledColor { get { return m_DisabledColor; } set { m_DisabledColor = value; } }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float ColorBlock_get_colorMultiplier_m8B3021855566FCCBD41100EB2B70B18172064DC5_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, const RuntimeMethod* method)
{
{
// public float colorMultiplier { get { return m_ColorMultiplier; } set { m_ColorMultiplier = value; } }
float L_0 = __this->get_m_ColorMultiplier_5();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ColorBlock_set_colorMultiplier_m815DE55D842A1480A11D1051D559D9B63EE34672_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, float ___value0, const RuntimeMethod* method)
{
{
// public float colorMultiplier { get { return m_ColorMultiplier; } set { m_ColorMultiplier = value; } }
float L_0 = ___value0;
__this->set_m_ColorMultiplier_5(L_0);
// public float colorMultiplier { get { return m_ColorMultiplier; } set { m_ColorMultiplier = value; } }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ColorBlock_set_fadeDuration_mE31362D1331C613F27505EB7581A734A2E58C917_inline (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, float ___value0, const RuntimeMethod* method)
{
{
// public float fadeDuration { get { return m_FadeDuration; } set { m_FadeDuration = value; } }
float L_0 = ___value0;
__this->set_m_FadeDuration_6(L_0);
// public float fadeDuration { get { return m_FadeDuration; } set { m_FadeDuration = value; } }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t ContentSizeFitter_get_verticalFit_m937F784A1D950E72A561B7DF96206ADA5F1FC490_inline (ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8 * __this, const RuntimeMethod* method)
{
{
// public FitMode verticalFit { get { return m_VerticalFit; } set { if (SetPropertyUtility.SetStruct(ref m_VerticalFit, value)) SetDirty(); } }
int32_t L_0 = __this->get_m_VerticalFit_5();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t ContentSizeFitter_get_horizontalFit_mB775F652AC10946108F7D44BB52C57413086F524_inline (ContentSizeFitter_t4EA7B51457F7EFAD3BAAC51613C7D4E0C26BF4A8 * __this, const RuntimeMethod* method)
{
{
// public FitMode horizontalFit { get { return m_HorizontalFit; } set { if (SetPropertyUtility.SetStruct(ref m_HorizontalFit, value)) SetDirty(); } }
int32_t L_0 = __this->get_m_HorizontalFit_4();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorTween_get_startColor_mA979B663DFD611DAC95F4A7B98AA36E24EE5E3D6_inline (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, const RuntimeMethod* method)
{
{
// get { return m_StartColor; }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = __this->get_m_StartColor_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ColorTween_set_startColor_mA57B5D1E4C2FA32133D13E91D9B07253CCF3BFD8_inline (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method)
{
{
// set { m_StartColor = value; }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = ___value0;
__this->set_m_StartColor_1(L_0);
// set { m_StartColor = value; }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ColorTween_get_targetColor_m2620FDCF03617764286DCDF8000AA3BE59C9E7AF_inline (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, const RuntimeMethod* method)
{
{
// get { return m_TargetColor; }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = __this->get_m_TargetColor_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ColorTween_set_targetColor_mB57B42752260A735D6F174F925822756088DAD26_inline (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method)
{
{
// set { m_TargetColor = value; }
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = ___value0;
__this->set_m_TargetColor_2(L_0);
// set { m_TargetColor = value; }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t ColorTween_get_tweenMode_m908DEFB153497AC18AD08CB73AFF655C1F6D05FB_inline (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, const RuntimeMethod* method)
{
{
// get { return m_TweenMode; }
int32_t L_0 = __this->get_m_TweenMode_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ColorTween_set_tweenMode_m2C089877F55E0D82F68BFC3EEC33737F7D3D9E54_inline (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set { m_TweenMode = value; }
int32_t L_0 = ___value0;
__this->set_m_TweenMode_3(L_0);
// set { m_TweenMode = value; }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float ColorTween_get_duration_m7E952A00A8A606D7886422812EFB24A6D5BFB508_inline (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, const RuntimeMethod* method)
{
{
// get { return m_Duration; }
float L_0 = __this->get_m_Duration_4();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ColorTween_set_duration_mA6144F511A40F04787D3BEEAB4A0C0EBD66ADB5C_inline (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, float ___value0, const RuntimeMethod* method)
{
{
// set { m_Duration = value; }
float L_0 = ___value0;
__this->set_m_Duration_4(L_0);
// set { m_Duration = value; }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool ColorTween_get_ignoreTimeScale_mF935C53CA27D67D47AE0021A0DB8D92C392EF56B_inline (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, const RuntimeMethod* method)
{
{
// get { return m_IgnoreTimeScale; }
bool L_0 = __this->get_m_IgnoreTimeScale_5();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ColorTween_set_ignoreTimeScale_m4B2110395267132EB58541D4355630D0DB466512_inline (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// set { m_IgnoreTimeScale = value; }
bool L_0 = ___value0;
__this->set_m_IgnoreTimeScale_5(L_0);
// set { m_IgnoreTimeScale = value; }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool ColorTween_GetIgnoreTimescale_m1F87CC0531F370154DF63095DA34F0F88E1DDAF6_inline (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, const RuntimeMethod* method)
{
{
// return m_IgnoreTimeScale;
bool L_0 = __this->get_m_IgnoreTimeScale_5();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float ColorTween_GetDuration_mFE7A52AFDCA53B1CCB79D1E3577037A0E44F17C5_inline (ColorTween_t4CBBF5875FA391053DB62E98D8D9603040413228 * __this, const RuntimeMethod* method)
{
{
// return m_Duration;
float L_0 = __this->get_m_Duration_4();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float FloatTween_get_startValue_m90C461E4383568718E362BF3CB14F14D45585B0A_inline (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, const RuntimeMethod* method)
{
{
// get { return m_StartValue; }
float L_0 = __this->get_m_StartValue_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void FloatTween_set_startValue_m281ACCD10E8DCB7ADED2B25EB093EE5DCFFF57D8_inline (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, float ___value0, const RuntimeMethod* method)
{
{
// set { m_StartValue = value; }
float L_0 = ___value0;
__this->set_m_StartValue_1(L_0);
// set { m_StartValue = value; }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float FloatTween_get_targetValue_mAC9AD7101F181AA03EEA21EBE047376A27B18DC2_inline (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, const RuntimeMethod* method)
{
{
// get { return m_TargetValue; }
float L_0 = __this->get_m_TargetValue_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void FloatTween_set_targetValue_m948DD0F17FE536F38BFA213D13711B781934165F_inline (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, float ___value0, const RuntimeMethod* method)
{
{
// set { m_TargetValue = value; }
float L_0 = ___value0;
__this->set_m_TargetValue_2(L_0);
// set { m_TargetValue = value; }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float FloatTween_get_duration_m17CD4518038CD642D714B3633236133D309EF13B_inline (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, const RuntimeMethod* method)
{
{
// get { return m_Duration; }
float L_0 = __this->get_m_Duration_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void FloatTween_set_duration_m81021898C4F8F1F4D434CA46EAC596E0CC0F200B_inline (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, float ___value0, const RuntimeMethod* method)
{
{
// set { m_Duration = value; }
float L_0 = ___value0;
__this->set_m_Duration_3(L_0);
// set { m_Duration = value; }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool FloatTween_get_ignoreTimeScale_m8281CB2B12F1697A512D2E2515F5DA058B429FD0_inline (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, const RuntimeMethod* method)
{
{
// get { return m_IgnoreTimeScale; }
bool L_0 = __this->get_m_IgnoreTimeScale_4();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void FloatTween_set_ignoreTimeScale_mC586D01F34D6C88892AB3C70A3298C4C7C45EA4D_inline (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, bool ___value0, const RuntimeMethod* method)
{
{
// set { m_IgnoreTimeScale = value; }
bool L_0 = ___value0;
__this->set_m_IgnoreTimeScale_4(L_0);
// set { m_IgnoreTimeScale = value; }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool FloatTween_GetIgnoreTimescale_m8FDD9D59F72DBC2CDEDD71A522ADD6DAD1438BE8_inline (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, const RuntimeMethod* method)
{
{
// return m_IgnoreTimeScale;
bool L_0 = __this->get_m_IgnoreTimeScale_4();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float FloatTween_GetDuration_m1022A6824C91E5C51E1F7FCD27B9D60D6E83EDB7_inline (FloatTween_tF6BB24C266F36BD80E20C91AED453F7CE516919A * __this, const RuntimeMethod* method)
{
{
// return m_Duration;
float L_0 = __this->get_m_Duration_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject* DefaultControls_get_factory_m616056407908402EFF7E24BC02D0A1B0CDED98B2_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultControls_get_factory_m616056407908402EFF7E24BC02D0A1B0CDED98B2UnityEngine_UI_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
// get { return m_CurrentFactory; }
IL2CPP_RUNTIME_CLASS_INIT(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var);
RuntimeObject* L_0 = ((DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_StaticFields*)il2cpp_codegen_static_fields_for(DefaultControls_t4838A96D37D23D24AD2554A4ACB05B901EF86DB2_il2cpp_TypeInfo_var))->get_m_CurrentFactory_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ScrollRect_set_content_m1D59059E32D0563BDF511A547978965B2C4F81F7_inline (ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * __this, RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___value0, const RuntimeMethod* method)
{
{
// public RectTransform content { get { return m_Content; } set { m_Content = value; } }
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_0 = ___value0;
__this->set_m_Content_4(L_0);
// public RectTransform content { get { return m_Content; } set { m_Content = value; } }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ScrollRect_set_horizontal_m62275F56268C9EF22F5E71F68BC8026779A60B7E_inline (ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool horizontal { get { return m_Horizontal; } set { m_Horizontal = value; } }
bool L_0 = ___value0;
__this->set_m_Horizontal_5(L_0);
// public bool horizontal { get { return m_Horizontal; } set { m_Horizontal = value; } }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ScrollRect_set_movementType_m2953F8BC5ABFDD067D5DDC54AE15953DBD754942_inline (ScrollRect_tAD21D8FB1D33789C39BF4E4CD5CD012D9BD7DD51 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public MovementType movementType { get { return m_MovementType; } set { m_MovementType = value; } }
int32_t L_0 = ___value0;
__this->set_m_MovementType_7(L_0);
// public MovementType movementType { get { return m_MovementType; } set { m_MovementType = value; } }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void OptionData_set_text_mED7FEA5D1C3CB30CD7B8878CE86CE57D8E68C735_inline (OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string text { get { return m_Text; } set { m_Text = value; } }
String_t* L_0 = ___value0;
__this->set_m_Text_0(L_0);
// public string text { get { return m_Text; } set { m_Text = value; } }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * OptionDataList_get_options_mEA305423DD1C0F201310F97CFD3FD1B89F063ED0_inline (OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D * __this, const RuntimeMethod* method)
{
{
// public List<OptionData> options { get { return m_Options; } set { m_Options = value; } }
List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * L_0 = __this->get_m_Options_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void OptionDataList_set_options_m674C45F57F90F85B6E33EF4C05BD0F0E236BF823_inline (OptionDataList_tE70C398434952658ED61EEEDC56766239E2C856D * __this, List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * ___value0, const RuntimeMethod* method)
{
{
// public List<OptionData> options { get { return m_Options; } set { m_Options = value; } }
List_1_t0DDB27AB6344CB9453EA6F22B7CB0057BD9F5D83 * L_0 = ___value0;
__this->set_m_Options_0(L_0);
// public List<OptionData> options { get { return m_Options; } set { m_Options = value; } }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * Image_get_sprite_m642D753672A8CBCEB67950914B44EF34C62DD137_inline (Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * __this, const RuntimeMethod* method)
{
{
// get { return m_Sprite; }
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_0 = __this->get_m_Sprite_36();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* OptionData_get_text_m3AA3E93AC9264EB140F873BEFF0A6FCB48FB1BFF_inline (OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * __this, const RuntimeMethod* method)
{
{
// public string text { get { return m_Text; } set { m_Text = value; } }
String_t* L_0 = __this->get_m_Text_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * OptionData_get_image_m0BF991D02528EE3C67FE841C3AA87EC1AE7D8E31_inline (OptionData_t5522C87AD5C3F1C8D3748D1FF1825A24F3835831 * __this, const RuntimeMethod* method)
{
{
// public Sprite image { get { return m_Image; } set { m_Image = value; } }
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * L_0 = __this->get_m_Image_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * Dropdown_get_template_m9C83BB0CFD2BA72F08ACC8B0FA9A274FAD0FC9C4_inline (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method)
{
{
// public RectTransform template { get { return m_Template; } set { m_Template = value; RefreshShownValue(); } }
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_0 = __this->get_m_Template_20();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * Dropdown_get_itemText_m1AEEFE1ACF751CD3483659F5E5B703239C28C7D5_inline (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method)
{
{
// public Text itemText { get { return m_ItemText; } set { m_ItemText = value; RefreshShownValue(); } }
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_0 = __this->get_m_ItemText_23();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * Dropdown_get_itemImage_m3B115ACA023FC279CAE1757FD4AB0DF91242BA50_inline (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method)
{
{
// public Image itemImage { get { return m_ItemImage; } set { m_ItemImage = value; RefreshShownValue(); } }
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_0 = __this->get_m_ItemImage_24();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void DropdownItem_set_text_m2F87962E683F7DCF4CCD6CEA4E4E4562E89F939E_inline (DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * __this, Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * ___value0, const RuntimeMethod* method)
{
{
// public Text text { get { return m_Text; } set { m_Text = value; } }
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_0 = ___value0;
__this->set_m_Text_4(L_0);
// public Text text { get { return m_Text; } set { m_Text = value; } }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void DropdownItem_set_image_mEACD24E324362E50180808DEF29E160E52C81BDC_inline (DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * __this, Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * ___value0, const RuntimeMethod* method)
{
{
// public Image image { get { return m_Image; } set { m_Image = value; } }
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_0 = ___value0;
__this->set_m_Image_5(L_0);
// public Image image { get { return m_Image; } set { m_Image = value; } }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void DropdownItem_set_toggle_m4D3247AE384827C5F3C49FFDADECED4A91B3B5CE_inline (DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * __this, Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * ___value0, const RuntimeMethod* method)
{
{
// public Toggle toggle { get { return m_Toggle; } set { m_Toggle = value; } }
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_0 = ___value0;
__this->set_m_Toggle_7(L_0);
// public Toggle toggle { get { return m_Toggle; } set { m_Toggle = value; } }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void DropdownItem_set_rectTransform_mEDEAE741CC3B0473F332D9B55B413EA290889240_inline (DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * __this, RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___value0, const RuntimeMethod* method)
{
{
// public RectTransform rectTransform { get { return m_RectTransform; } set { m_RectTransform = value; } }
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_0 = ___value0;
__this->set_m_RectTransform_6(L_0);
// public RectTransform rectTransform { get { return m_RectTransform; } set { m_RectTransform = value; } }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * DropdownItem_get_rectTransform_mADBE4D843FE38C832CC1C9CFE03DC4D55B18E897_inline (DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * __this, const RuntimeMethod* method)
{
{
// public RectTransform rectTransform { get { return m_RectTransform; } set { m_RectTransform = value; } }
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * L_0 = __this->get_m_RectTransform_6();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Dropdown_get_value_mF388FA389F2A050264AA87E61D4F9AFC41F48873_inline (Dropdown_tF6331401084B1213CAB10587A6EC81461501930F * __this, const RuntimeMethod* method)
{
{
// return m_Value;
int32_t L_0 = __this->get_m_Value_25();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * DropdownItem_get_toggle_m6DAC29FD2E711343DBCDF240B3218BD6211886DE_inline (DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * __this, const RuntimeMethod* method)
{
{
// public Toggle toggle { get { return m_Toggle; } set { m_Toggle = value; } }
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * L_0 = __this->get_m_Toggle_7();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Toggle_get_isOn_mA34B03BED48C7189F0AB8498F986485B4CD6B44A_inline (Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * __this, const RuntimeMethod* method)
{
{
// get { return m_IsOn; }
bool L_0 = __this->get_m_IsOn_24();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 Selectable_get_navigation_mE0FE811B11269EFDEE21C98701059F786580FB50_inline (Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * __this, const RuntimeMethod* method)
{
{
// public Navigation navigation { get { return m_Navigation; } set { if (SetPropertyUtility.SetStruct(ref m_Navigation, value)) OnSetProperty(); } }
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 L_0 = __this->get_m_Navigation_7();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Navigation_set_mode_m35D711F016E4F41230C710882696279BA04399D2_inline (Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public Mode mode { get { return m_Mode; } set { m_Mode = value; } }
int32_t L_0 = ___value0;
__this->set_m_Mode_0(L_0);
// public Mode mode { get { return m_Mode; } set { m_Mode = value; } }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Navigation_set_selectOnDown_m0EEC959195918EDDBF71B0D640D42BB85061D0A5_inline (Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 * __this, Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___value0, const RuntimeMethod* method)
{
{
// public Selectable selectOnDown { get { return m_SelectOnDown; } set { m_SelectOnDown = value; } }
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * L_0 = ___value0;
__this->set_m_SelectOnDown_2(L_0);
// public Selectable selectOnDown { get { return m_SelectOnDown; } set { m_SelectOnDown = value; } }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Navigation_set_selectOnRight_m3429A471ECA0295B871C161960FB3F8C1D1D3571_inline (Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 * __this, Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___value0, const RuntimeMethod* method)
{
{
// public Selectable selectOnRight { get { return m_SelectOnRight; } set { m_SelectOnRight = value; } }
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * L_0 = ___value0;
__this->set_m_SelectOnRight_4(L_0);
// public Selectable selectOnRight { get { return m_SelectOnRight; } set { m_SelectOnRight = value; } }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Navigation_set_selectOnLeft_m51D5BC3AE8C05E4233269B961ADA98BB3FBF9D53_inline (Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 * __this, Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___value0, const RuntimeMethod* method)
{
{
// public Selectable selectOnLeft { get { return m_SelectOnLeft; } set { m_SelectOnLeft = value; } }
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * L_0 = ___value0;
__this->set_m_SelectOnLeft_3(L_0);
// public Selectable selectOnLeft { get { return m_SelectOnLeft; } set { m_SelectOnLeft = value; } }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Navigation_set_selectOnUp_mB61F72B8B577FB9424150F42EC57767A8F3B4453_inline (Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 * __this, Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___value0, const RuntimeMethod* method)
{
{
// public Selectable selectOnUp { get { return m_SelectOnUp; } set { m_SelectOnUp = value; } }
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * L_0 = ___value0;
__this->set_m_SelectOnUp_1(L_0);
// public Selectable selectOnUp { get { return m_SelectOnUp; } set { m_SelectOnUp = value; } }
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ButtonClickedEvent_t975D9C903BC4880557ADD7D3ACFB01CB2B3D6DDB * Button_get_onClick_m77E8CA6917881760CC7900930F4C789F3E2F8817_inline (Button_t1203820000D5513FDCCE3D4BFF9C1C9CC755CC2B * __this, const RuntimeMethod* method)
{
{
// get { return m_OnClick; }
ButtonClickedEvent_t975D9C903BC4880557ADD7D3ACFB01CB2B3D6DDB * L_0 = __this->get_m_OnClick_20();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * DropdownItem_get_text_mABB014D2DEE9F6B24515DE71A08EBFA82BB44829_inline (DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * __this, const RuntimeMethod* method)
{
{
// public Text text { get { return m_Text; } set { m_Text = value; } }
Text_tE9317B57477F4B50AA4C16F460DE6F82DAD6D030 * L_0 = __this->get_m_Text_4();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * DropdownItem_get_image_m2879EEFCAB097FBA79BC4DA41ECBA4EBE3CB6185_inline (DropdownItem_tFDD72F3D25AC0CAF12393C7EE460B47468BD2B46 * __this, const RuntimeMethod* method)
{
{
// public Image image { get { return m_Image; } set { m_Image = value; } }
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * L_0 = __this->get_m_Image_5();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 List_1_get_Item_m2A56C2A02EB54A7A40292117D706176EB29A9CF6_gshared_inline (List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->get__size_2();
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_mBA2AF20A35144E0C43CD721A22EAC9FCA15D6550(/*hidden argument*/NULL);
}
IL_000e:
{
RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* L_2 = (RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65*)__this->get__items_1();
int32_t L_3 = ___index0;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65*)L_2, (int32_t)L_3);
return (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 )L_4;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m3CE6A18703ABFF7312511F654475662716BF8F51_gshared_inline (List_1_t9B42195BBE4C4201734D1B55FB0B9EC97F597098 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__size_2();
return (int32_t)L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->get__size_2();
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_mBA2AF20A35144E0C43CD721A22EAC9FCA15D6550(/*hidden argument*/NULL);
}
IL_000e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)__this->get__items_1();
int32_t L_3 = ___index0;
RuntimeObject * L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (int32_t)L_3);
return (RuntimeObject *)L_4;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__size_2();
return (int32_t)L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m7478A1B54D9B92E960D1E1C1E95C475E4E6627F7_gshared_inline (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3();
return (RuntimeObject *)L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 Enumerator_get_Current_m06BE1BB610C63E4879934D506F770C25B6BBA73E_gshared_inline (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 L_0 = (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 )__this->get_current_3();
return (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 )L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m6A192504C64D61B2B59FF5641E62E5094F3914C1_gshared_inline (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1();
return (RuntimeObject *)L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m3BF2B782A34C5DBE7E9F7F1D0B69F9D248B6DD94_gshared_inline (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_key_0();
return (int32_t)L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void TweenRunner_1_Init_m36554C1037EC37B2D67A1BDE9B4D2407FE2C7657_gshared_inline (TweenRunner_1_tA7C92F52BF30E9A20EDA2DD956E11A1493D098EF * __this, MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429 * ___coroutineContainer0, const RuntimeMethod* method)
{
{
// m_CoroutineContainer = coroutineContainer;
MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429 * L_0 = ___coroutineContainer0;
__this->set_m_CoroutineContainer_0(L_0);
// }
return;
}
}
| [
"jlewisait@gmail.com"
] | jlewisait@gmail.com |
ba5ea4b328bd477af490274c484001ec198e54e9 | e51954212c29816c0773cb44e95109ee5219e81d | /tests/test_aeconst.cpp | 804cbbc2b4a22a3d753437104969d0214fa0296b | [] | no_license | criptych/aegis | b53ebf4f69c4ddf2f0ba780a60c3d2b05c928ccf | ebf4d76f767a69742ca6baf4e17cec6caa523c50 | refs/heads/master | 2021-07-16T08:12:09.106131 | 2015-12-11T19:11:00 | 2015-12-11T19:11:00 | 43,752,827 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,019 | cpp | ////////////////////////////////////////////////////////////////////////////////
//
////////////////////////////////////////////////////////////////////////////////
#include "catch.hpp"
#include "aeconst.hpp"
////////////////////////////////////////////////////////////////////////////////
#include <cmath>
////////////////////////////////////////////////////////////////////////////////
TEST_CASE("constants", "[aeConst]") {
SECTION("value of aeEpsilon") {
CHECK(aeEpsilon == Approx(0.0));
CHECK(aeEpsilon != 0.0);
}
SECTION("value of aeNaN") {
CHECK(aeNaN != aeNaN);
}
SECTION("value of aePi") {
CHECK(std::sin(aePi) == Approx(0.0));
CHECK(std::cos(aePi) == Approx(-1.0));
CHECK(std::tan(aePi) == Approx(0.0));
CHECK(std::atan(1.0) == Approx(aePi / 4.0));
}
}
////////////////////////////////////////////////////////////////////////////////
// EOF
////////////////////////////////////////////////////////////////////////////////
| [
"criptych@gmail.com"
] | criptych@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.